From 96d5c8c35d37f734a1548a02d7e2648e50db8d76 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Thu, 6 Feb 2020 14:09:48 +0100 Subject: [PATCH 01/91] Add elephant foot compensation to SLA print Work in progress Convert efc input to the right scaling Apply EFC on the slice index to make it visible in the preview. --- src/libslic3r/ElephantFootCompensation.cpp | 21 ++++++++++++++++++--- src/libslic3r/ElephantFootCompensation.hpp | 2 ++ src/libslic3r/PrintConfig.cpp | 10 ++++++++++ src/libslic3r/PrintConfig.hpp | 2 ++ src/libslic3r/SLAPrint.cpp | 1 + src/libslic3r/SLAPrintSteps.cpp | 15 +++++++++++++++ src/slic3r/GUI/Preset.cpp | 1 + src/slic3r/GUI/Tab.cpp | 3 ++- 8 files changed, 51 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/ElephantFootCompensation.cpp b/src/libslic3r/ElephantFootCompensation.cpp index 2694b5e8a3..a19aa26875 100644 --- a/src/libslic3r/ElephantFootCompensation.cpp +++ b/src/libslic3r/ElephantFootCompensation.cpp @@ -524,11 +524,10 @@ static inline void smooth_compensation_banded(const Points &contour, float band, } } -ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, const Flow &external_perimeter_flow, const double compensation) +ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, double min_contour_width, const double compensation) { - // The contour shall be wide enough to apply the external perimeter plus compensation on both sides. - double min_contour_width = double(external_perimeter_flow.scaled_width() + external_perimeter_flow.scaled_spacing()); double scaled_compensation = scale_(compensation); + min_contour_width = scale_(min_contour_width); double min_contour_width_compensated = min_contour_width + 2. * scaled_compensation; // Make the search radius a bit larger for the averaging in contour_distance over a fan of rays to work. double search_radius = min_contour_width_compensated + min_contour_width * 0.5; @@ -597,6 +596,13 @@ ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, const Flow & return out; } +ExPolygon elephant_foot_compensation(const ExPolygon &input, const Flow &external_perimeter_flow, const double compensation) +{ + // The contour shall be wide enough to apply the external perimeter plus compensation on both sides. + double min_contour_width = double(external_perimeter_flow.width + external_perimeter_flow.spacing()); + return elephant_foot_compensation(input, min_contour_width, compensation); +} + ExPolygons elephant_foot_compensation(const ExPolygons &input, const Flow &external_perimeter_flow, const double compensation) { ExPolygons out; @@ -606,4 +612,13 @@ ExPolygons elephant_foot_compensation(const ExPolygons &input, const Flow &exter return out; } +ExPolygons elephant_foot_compensation(const ExPolygons &input, double min_contour_width, const double compensation) +{ + ExPolygons out; + out.reserve(input.size()); + for (const ExPolygon &expoly : input) + out.emplace_back(elephant_foot_compensation(expoly, min_contour_width, compensation)); + return out; +} + } // namespace Slic3r diff --git a/src/libslic3r/ElephantFootCompensation.hpp b/src/libslic3r/ElephantFootCompensation.hpp index 0119df1af5..beb17d10b8 100644 --- a/src/libslic3r/ElephantFootCompensation.hpp +++ b/src/libslic3r/ElephantFootCompensation.hpp @@ -8,6 +8,8 @@ namespace Slic3r { class Flow; +ExPolygon elephant_foot_compensation(const ExPolygon &input, double min_countour_width, const double compensation); +ExPolygons elephant_foot_compensation(const ExPolygons &input, double min_countour_width, const double compensation); ExPolygon elephant_foot_compensation(const ExPolygon &input, const Flow &external_perimeter_flow, const double compensation); ExPolygons elephant_foot_compensation(const ExPolygons &input, const Flow &external_perimeter_flow, const double compensation); diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 36d56c4c10..dfea714a80 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2442,6 +2442,16 @@ void PrintConfigDef::init_sla_params() "to the sign of the correction."); def->mode = comExpert; def->set_default_value(new ConfigOptionFloat(0.0)); + + def = this->add("elefant_foot_compensation", coFloat); + def->label = L("Elephant foot compensation"); + def->category = L("Advanced"); + def->tooltip = L("The first layer will be shrunk in the XY plane by the configured value " + "to compensate for the 1st layer squish aka an Elephant Foot effect."); + def->sidetext = L("mm"); + def->min = 0; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(0.2)); def = this->add("gamma_correction", coFloat); def->label = L("Printer gamma correction"); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index c854feafc8..f320b3da5d 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -1175,6 +1175,7 @@ public: ConfigOptionBool display_mirror_y; ConfigOptionFloats relative_correction; ConfigOptionFloat absolute_correction; + ConfigOptionFloat elefant_foot_compensation; ConfigOptionFloat gamma_correction; ConfigOptionFloat fast_tilt_time; ConfigOptionFloat slow_tilt_time; @@ -1198,6 +1199,7 @@ protected: OPT_PTR(display_orientation); OPT_PTR(relative_correction); OPT_PTR(absolute_correction); + OPT_PTR(elefant_foot_compensation); OPT_PTR(gamma_correction); OPT_PTR(fast_tilt_time); OPT_PTR(slow_tilt_time); diff --git a/src/libslic3r/SLAPrint.cpp b/src/libslic3r/SLAPrint.cpp index 06c4f687b9..4bfc77c80f 100644 --- a/src/libslic3r/SLAPrint.cpp +++ b/src/libslic3r/SLAPrint.cpp @@ -785,6 +785,7 @@ bool SLAPrint::invalidate_state_by_config_options(const std::vector #include +#include + #include // For geometry algorithms with native Clipper types (no copies and conversions) @@ -238,6 +240,13 @@ void SLAPrint::Steps::slice_model(SLAPrintObject &po) auto mit = slindex_it; double doffs = m_print->m_printer_config.absolute_correction.getFloat(); coord_t clpr_offs = scaled(doffs); + + if (!po.m_model_height_levels.empty() && po.m_model_height_levels[0] < ilh) { + auto &first_sl = po.m_model_slices[0]; + double compensation = m_print->m_printer_config.elefant_foot_compensation.getFloat(); + first_sl = elephant_foot_compensation(first_sl, 0., compensation); + } + for(size_t id = 0; id < po.m_model_slices.size() && mit != po.m_slice_index.end(); id++) @@ -449,6 +458,12 @@ void SLAPrint::Steps::slice_supports(SLAPrintObject &po) { sd->support_slices = sd->support_tree_ptr->slice( heights, float(po.config().slice_closing_radius.value)); + + if (!heights.empty() && heights[0] < ilh) { + auto &first_sl = sd->support_slices[0]; + double compensation = m_print->m_printer_config.elefant_foot_compensation.getFloat(); + first_sl = elephant_foot_compensation(first_sl, 0., compensation); + } } double doffs = m_print->m_printer_config.absolute_correction.getFloat(); diff --git a/src/slic3r/GUI/Preset.cpp b/src/slic3r/GUI/Preset.cpp index 6f379aa393..f9191b2e71 100644 --- a/src/slic3r/GUI/Preset.cpp +++ b/src/slic3r/GUI/Preset.cpp @@ -557,6 +557,7 @@ const std::vector& Preset::sla_printer_options() "fast_tilt_time", "slow_tilt_time", "area_fill", "relative_correction", "absolute_correction", + "elefant_foot_compensation", "gamma_correction", "min_exposure_time", "max_exposure_time", "min_initial_exposure_time", "max_initial_exposure_time", diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index c5c6dc4669..1b46ed7558 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2112,8 +2112,9 @@ void TabPrinter::build_sla() } optgroup->append_line(line); optgroup->append_single_option_line("absolute_correction"); + optgroup->append_single_option_line("elefant_foot_compensation"); optgroup->append_single_option_line("gamma_correction"); - + optgroup = page->new_optgroup(_(L("Exposure"))); optgroup->append_single_option_line("min_exposure_time"); optgroup->append_single_option_line("max_exposure_time"); From 41d77b492c26c76c9d34552a0fded919fc57e4bb Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Thu, 6 Feb 2020 16:28:02 +0100 Subject: [PATCH 02/91] Added new parameter elefant_foot_min_width --- src/libslic3r/PrintConfig.cpp | 9 +++++++++ src/libslic3r/PrintConfig.hpp | 2 ++ src/libslic3r/SLAPrint.cpp | 1 + src/libslic3r/SLAPrintSteps.cpp | 19 ++++++++++++++----- src/libslic3r/SLAPrintSteps.hpp | 2 ++ src/slic3r/GUI/Preset.cpp | 1 + src/slic3r/GUI/Tab.cpp | 1 + 7 files changed, 30 insertions(+), 5 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index dfea714a80..353a0ae834 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2452,6 +2452,15 @@ void PrintConfigDef::init_sla_params() def->min = 0; def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(0.2)); + + def = this->add("elefant_foot_min_width", coFloat); + def->label = L("Elefant foot minimum width"); + def->category = L("Advanced"); + def->tooltip = L("Minimum with of features to maintain when doing EFC"); + def->sidetext = L("mm"); + def->min = 0; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(0.2)); def = this->add("gamma_correction", coFloat); def->label = L("Printer gamma correction"); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index f320b3da5d..8c6710dad1 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -1176,6 +1176,7 @@ public: ConfigOptionFloats relative_correction; ConfigOptionFloat absolute_correction; ConfigOptionFloat elefant_foot_compensation; + ConfigOptionFloat elefant_foot_min_width; ConfigOptionFloat gamma_correction; ConfigOptionFloat fast_tilt_time; ConfigOptionFloat slow_tilt_time; @@ -1200,6 +1201,7 @@ protected: OPT_PTR(relative_correction); OPT_PTR(absolute_correction); OPT_PTR(elefant_foot_compensation); + OPT_PTR(elefant_foot_min_width); OPT_PTR(gamma_correction); OPT_PTR(fast_tilt_time); OPT_PTR(slow_tilt_time); diff --git a/src/libslic3r/SLAPrint.cpp b/src/libslic3r/SLAPrint.cpp index 4bfc77c80f..0b26af983f 100644 --- a/src/libslic3r/SLAPrint.cpp +++ b/src/libslic3r/SLAPrint.cpp @@ -786,6 +786,7 @@ bool SLAPrint::invalidate_state_by_config_options(const std::vectorm_printer_config.elefant_foot_compensation.getFloat(); + first_sl = elephant_foot_compensation(first_sl, 0., compensation); + } +} + void SLAPrint::Steps::hollow_model(SLAPrintObject &po) { po.m_hollowing_data.reset(); @@ -241,11 +254,7 @@ void SLAPrint::Steps::slice_model(SLAPrintObject &po) double doffs = m_print->m_printer_config.absolute_correction.getFloat(); coord_t clpr_offs = scaled(doffs); - if (!po.m_model_height_levels.empty() && po.m_model_height_levels[0] < ilh) { - auto &first_sl = po.m_model_slices[0]; - double compensation = m_print->m_printer_config.elefant_foot_compensation.getFloat(); - first_sl = elephant_foot_compensation(first_sl, 0., compensation); - } + for(size_t id = 0; id < po.m_model_slices.size() && mit != po.m_slice_index.end(); diff --git a/src/libslic3r/SLAPrintSteps.hpp b/src/libslic3r/SLAPrintSteps.hpp index 0418072cf8..b5cb8accc1 100644 --- a/src/libslic3r/SLAPrintSteps.hpp +++ b/src/libslic3r/SLAPrintSteps.hpp @@ -43,6 +43,8 @@ private: bool canceled() const { return m_print->canceled(); } void initialize_printer_input(); + void apply_elefant_foot_compensation(SLAPrintObject &po, SliceOrigin o); + public: Steps(SLAPrint *print); diff --git a/src/slic3r/GUI/Preset.cpp b/src/slic3r/GUI/Preset.cpp index f9191b2e71..cedf3d5f8b 100644 --- a/src/slic3r/GUI/Preset.cpp +++ b/src/slic3r/GUI/Preset.cpp @@ -558,6 +558,7 @@ const std::vector& Preset::sla_printer_options() "relative_correction", "absolute_correction", "elefant_foot_compensation", + "elefant_foot_min_width", "gamma_correction", "min_exposure_time", "max_exposure_time", "min_initial_exposure_time", "max_initial_exposure_time", diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 1b46ed7558..72ee827eba 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2113,6 +2113,7 @@ void TabPrinter::build_sla() optgroup->append_line(line); optgroup->append_single_option_line("absolute_correction"); optgroup->append_single_option_line("elefant_foot_compensation"); + optgroup->append_single_option_line("elefant_foot_min_width"); optgroup->append_single_option_line("gamma_correction"); optgroup = page->new_optgroup(_(L("Exposure"))); From 1399696b042358b70a5835ec4611de3bd0857149 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Thu, 13 Feb 2020 15:28:04 +0100 Subject: [PATCH 03/91] DoubleSlider: Suppressed manipulation for sequential print. + some code refactoring + experiment with alignment of several options inside the Line --- src/slic3r/GUI/DoubleSlider.cpp | 52 ++++++++++++++++++++++----------- src/slic3r/GUI/DoubleSlider.hpp | 13 +++++++-- src/slic3r/GUI/GUI_Preview.cpp | 8 +++-- src/slic3r/GUI/OptionsGroup.cpp | 12 +++++--- src/slic3r/GUI/OptionsGroup.hpp | 1 + src/slic3r/GUI/Tab.cpp | 1 - 6 files changed, 60 insertions(+), 27 deletions(-) diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index a462b88947..d29e87a931 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -332,6 +332,13 @@ void Control::SetTicksValues(const CustomGCode::Info& custom_gcode_per_print_z) Update(); } +void Control::SetDrawMode(bool is_sla_print, bool is_sequential_print) +{ + m_draw_mode = is_sla_print ? dmSlaPrint : + is_sequential_print ? dmSequentialFffPrint : + dmRegular; +} + void Control::SetModeAndOnlyExtruder(const bool is_one_extruder_printed_model, const int only_extruder) { m_mode = !is_one_extruder_printed_model ? t_mode::MultiExtruder : @@ -441,7 +448,7 @@ void Control::draw_info_line_with_icon(wxDC& dc, const wxPoint& pos, const Selec dc.DrawLine(pt_beg, pt_end); //draw action icon - if (m_is_enabled_tick_manipulation) + if (m_draw_mode == dmRegular) draw_action_icon(dc, pt_beg, pt_end); } } @@ -612,10 +619,10 @@ void Control::draw_thumbs(wxDC& dc, const wxCoord& lower_pos, const wxCoord& hig void Control::draw_ticks(wxDC& dc) { - if (!m_is_enabled_tick_manipulation) + if (m_draw_mode == dmSlaPrint) return; - dc.SetPen(m_is_enabled_tick_manipulation ? DARK_GREY_PEN : LIGHT_GREY_PEN ); + dc.SetPen(m_draw_mode == dmRegular ? DARK_GREY_PEN : LIGHT_GREY_PEN ); int height, width; get_size(&width, &height); const wxCoord mid = is_horizontal() ? 0.5*height : 0.5*width; @@ -633,7 +640,11 @@ void Control::draw_ticks(wxDC& dc) // get icon name if it is std::string icon_name; - if (tick.gcode == ColorChangeCode || tick.gcode == ToolChangeCode) { + + // if we have non-regular draw mode, all ticks should be marked with error icon + if (m_draw_mode != dmRegular) + icon_name = focused_tick ? "error_tick_f" : "error_tick"; + else if (tick.gcode == ColorChangeCode || tick.gcode == ToolChangeCode) { if (m_ticks.is_conflict_tick(tick, m_mode, m_only_extruder, m_values[tick.tick])) icon_name = focused_tick ? "error_tick_f" : "error_tick"; } @@ -705,7 +716,7 @@ wxRect Control::get_colored_band_rect() void Control::draw_colored_band(wxDC& dc) { - if (!m_is_enabled_tick_manipulation) + if (m_draw_mode != dmRegular) return; auto draw_band = [](wxDC& dc, const wxColour& clr, const wxRect& band_rc) @@ -771,7 +782,7 @@ void Control::draw_one_layer_icon(wxDC& dc) void Control::draw_revert_icon(wxDC& dc) { - if (m_ticks.empty() || !m_is_enabled_tick_manipulation) + if (m_ticks.empty() || m_draw_mode != dmRegular) return; int width, height; @@ -880,7 +891,7 @@ void Control::OnLeftDown(wxMouseEvent& event) m_mouse = maOneLayerIconClick; else if (is_point_in_rect(pos, m_rect_cog_icon)) m_mouse = maCogIconClick; - else if (m_is_enabled_tick_manipulation) + else if (m_draw_mode == dmRegular) { if (is_point_in_rect(pos, m_rect_tick_action)) { auto it = m_ticks.ticks.find(TickCode{ m_selection == ssLower ? m_lower_value : m_higher_value }); @@ -931,6 +942,8 @@ wxString Control::get_tooltip(int tick/*=-1*/) if (m_focus == fiColorBand) return m_mode != t_mode::SingleExtruder ? "" : _(L("Edit current color - Right click the colored slider segment")); + if (m_draw_mode == dmSlaPrint) + return ""; // no drawn ticks and no tooltips for them in SlaPrinting mode wxString tooltip; const auto tick_code_it = m_ticks.ticks.find(TickCode{tick}); @@ -953,9 +966,9 @@ wxString Control::get_tooltip(int tick/*=-1*/) // Show list of actions with new tick tooltip += ( m_mode == t_mode::MultiAsSingle ? _(L("Add extruder change - Left click")) : - m_mode == t_mode::SingleExtruder ? + m_mode == t_mode::SingleExtruder ? _(L("Add color change - Left click for predefined color or" - "Shift + Left click for custom color selection")) : + "Shift + Left click for custom color selection")) : _(L("Add color change - Left click")) ) + " " + _(L("or press \"+\" key")) + "\n" + ( is_osx ? @@ -965,17 +978,22 @@ wxString Control::get_tooltip(int tick/*=-1*/) if (tick_code_it != m_ticks.ticks.end()) // tick exists { + if (m_draw_mode == dmSequentialFffPrint) + return _(L("The sequential print is on.\n" + "It's impossible to apply any custom G-code for objects printing sequentually.\n" + "This code won't be processed during G-code generation.")); + // Show custom Gcode as a first string of tooltop tooltip = " "; - tooltip += tick_code_it->gcode == ColorChangeCode ? ( - m_mode == t_mode::SingleExtruder ? + tooltip += tick_code_it->gcode == ColorChangeCode ? ( m_mode == t_mode::SingleExtruder ? from_u8((boost::format(_utf8(L("Color change (\"%1%\")"))) % tick_code_it->gcode ).str()) : from_u8((boost::format(_utf8(L("Color change (\"%1%\") for Extruder %2%"))) % - tick_code_it->gcode % tick_code_it->extruder).str()) ) : + tick_code_it->gcode % tick_code_it->extruder).str()) ) : tick_code_it->gcode == PausePrintCode ? - from_u8((boost::format(_utf8(L("Pause print (\"%1%\")"))) % tick_code_it->gcode ).str()) : + from_u8((boost::format(_utf8(L("Pause print (\"%1%\")"))) % tick_code_it->gcode ).str()) : tick_code_it->gcode == ToolChangeCode ? - from_u8((boost::format(_utf8(L("Extruder (tool) is changed to Extruder \"%1%\""))) % tick_code_it->extruder ).str()) : + from_u8((boost::format(_utf8(L("Extruder (tool) is changed to Extruder \"%1%\""))) % + tick_code_it->extruder ).str()) : from_u8((boost::format(_utf8(L("\"%1%\""))) % tick_code_it->gcode ).str()) ; // If tick is marked as a conflict (exclamation icon), @@ -1169,7 +1187,7 @@ void Control::OnLeftUp(wxMouseEvent& event) add_current_tick(); break; case maCogIconClick : - if (m_mode == t_mode::MultiAsSingle) + if (m_mode == t_mode::MultiAsSingle && m_draw_mode == dmRegular) show_cog_icon_context_menu(); else jump_to_print_z(); @@ -1320,7 +1338,7 @@ void Control::OnRightDown(wxMouseEvent& event) const wxPoint pos = event.GetLogicalPosition(wxClientDC(this)); m_mouse = maNone; - if (m_is_enabled_tick_manipulation) { + if (m_draw_mode == dmRegular) { if (is_point_in_rect(pos, m_rect_tick_action)) { const int tick = m_selection == ssLower ? m_lower_value : m_higher_value; @@ -1766,7 +1784,7 @@ void Control::discard_all_thicks() void Control::move_current_thumb_to_pos(wxPoint pos) { const int tick_val = get_tick_near_point(pos); - const int mouse_val = tick_val >= 0 && m_is_enabled_tick_manipulation ? tick_val : + const int mouse_val = tick_val >= 0 && m_draw_mode == dmRegular ? tick_val : get_value_from_position(pos); if (mouse_val >= 0) { diff --git a/src/slic3r/GUI/DoubleSlider.hpp b/src/slic3r/GUI/DoubleSlider.hpp index c6c85fe0e1..e5c0b4e219 100644 --- a/src/slic3r/GUI/DoubleSlider.hpp +++ b/src/slic3r/GUI/DoubleSlider.hpp @@ -66,6 +66,13 @@ enum MouseAction maRevertIconClick, // LeftMouseClick on "revert" icon }; +enum DrawMode +{ + dmRegular, + dmSlaPrint, + dmSequentialFffPrint, +}; + using t_mode = CustomGCode::Mode; struct TickCode @@ -197,8 +204,7 @@ public: CustomGCode::Info GetTicksValues() const; void SetTicksValues(const Slic3r::CustomGCode::Info &custom_gcode_per_print_z); - void EnableTickManipulation(bool enable = true) { m_is_enabled_tick_manipulation = enable; } - void DisableTickManipulation() { EnableTickManipulation(false); } + void SetDrawMode(bool is_sla_print, bool is_sequential_print); void SetManipulationMode(t_mode mode) { m_mode = mode; } t_mode GetManipulationMode() const { return m_mode; } @@ -323,9 +329,10 @@ private: bool m_is_right_down = false; bool m_is_one_layer = false; bool m_is_focused = false; - bool m_is_enabled_tick_manipulation = true; bool m_force_mode_apply = true; + DrawMode m_draw_mode = dmRegular; + t_mode m_mode = t_mode::SingleExtruder; int m_only_extruder = -1; diff --git a/src/slic3r/GUI/GUI_Preview.cpp b/src/slic3r/GUI/GUI_Preview.cpp index 5afdb3bb43..732e7ce159 100644 --- a/src/slic3r/GUI/GUI_Preview.cpp +++ b/src/slic3r/GUI/GUI_Preview.cpp @@ -586,7 +586,9 @@ void Preview::update_view_type(bool slice_completed) void Preview::create_double_slider() { m_slider = new DoubleSlider::Control(this, wxID_ANY, 0, 0, 0, 100); - m_slider->EnableTickManipulation(wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() == ptFFF); + bool sla_print_technology = wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() == ptSLA; + bool sequential_print = wxGetApp().preset_bundle->prints.get_edited_preset().config.opt_bool("complete_objects"); + m_slider->SetDrawMode(sla_print_technology, sequential_print); m_double_slider_sizer->Add(m_slider, 0, wxEXPAND, 0); @@ -700,7 +702,9 @@ void Preview::update_double_slider(const std::vector& layers_z, bool kee m_slider->SetTicksValues(ticks_info_from_model); - m_slider->EnableTickManipulation(wxGetApp().plater()->printer_technology() == ptFFF); + bool sla_print_technology = wxGetApp().plater()->printer_technology() == ptSLA; + bool sequential_print = wxGetApp().preset_bundle->prints.get_edited_preset().config.opt_bool("complete_objects"); + m_slider->SetDrawMode(sla_print_technology, sequential_print); } void Preview::update_double_slider_mode() diff --git a/src/slic3r/GUI/OptionsGroup.cpp b/src/slic3r/GUI/OptionsGroup.cpp index 4e964ff74e..444f92bf71 100644 --- a/src/slic3r/GUI/OptionsGroup.cpp +++ b/src/slic3r/GUI/OptionsGroup.cpp @@ -129,8 +129,11 @@ void OptionsGroup::append_line(const Line& line, wxStaticText** full_Label/* = n m_options.emplace(opt.opt_id, opt); // Set sidetext width for a better alignment of options in line - if (option_set.size() > 1) + if (option_set.size() > 1) { sidetext_width = Field::def_width_thinner(); + if (m_show_modified_btns) // means that options groups are in tabs + sublabel_width = Field::def_width(); + } // add mode value for current line to m_options_mode if (!option_set.empty()) @@ -248,15 +251,16 @@ void OptionsGroup::append_line(const Line& line, wxStaticText** full_Label/* = n ConfigOptionDef option = opt.opt; wxSizer* sizer_tmp = sizer; // add label if any - if (option.label != "") { + if (!option.label.empty()) { //! To correct translation by context have to use wxGETTEXT_IN_CONTEXT macro from wxWidget 3.1.1 wxString str_label = (option.label == L_CONTEXT("Top", "Layers") || option.label == L_CONTEXT("Bottom", "Layers")) ? _CTX(option.label, "Layers") : _(option.label); - label = new wxStaticText(this->ctrl_parent(), wxID_ANY, str_label + ": ", wxDefaultPosition, wxDefaultSize); + label = new wxStaticText(this->ctrl_parent(), wxID_ANY, str_label + ": ", wxDefaultPosition, //wxDefaultSize); + wxSize(sublabel_width != -1 ? sublabel_width * wxGetApp().em_unit() : -1, -1), wxALIGN_RIGHT); label->SetBackgroundStyle(wxBG_STYLE_PAINT); label->SetFont(wxGetApp().normal_font()); - sizer_tmp->Add(label, 0, /*wxALIGN_RIGHT |*/ wxALIGN_CENTER_VERTICAL, 0); + sizer_tmp->Add(label, 0, wxALIGN_CENTER_VERTICAL, 0); } // add field diff --git a/src/slic3r/GUI/OptionsGroup.hpp b/src/slic3r/GUI/OptionsGroup.hpp index 6089e18f50..536eb72a53 100644 --- a/src/slic3r/GUI/OptionsGroup.hpp +++ b/src/slic3r/GUI/OptionsGroup.hpp @@ -97,6 +97,7 @@ public: wxFont sidetext_font {wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT) }; wxFont label_font {wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT) }; int sidetext_width{ -1 }; + int sublabel_width{ -1 }; /// Returns a copy of the pointer of the parent wxWindow. /// Accessor function is because users are not allowed to change the parent diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index c5c6dc4669..836402a948 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3505,7 +3505,6 @@ void TabSLAMaterial::build() optgroup->append_single_option_line("initial_exposure_time"); optgroup = page->new_optgroup(_(L("Corrections"))); - optgroup->label_width = 19;//190; std::vector corrections = {"material_correction"}; // std::vector axes{ "X", "Y", "Z" }; std::vector axes{ "XY", "Z" }; From 3ffc5657229e1f0f954f96aebf9268d7852a2035 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Fri, 14 Feb 2020 09:51:51 +0100 Subject: [PATCH 04/91] DoubleSlider:colored_band: Fixed get a correct color for extruder, when it's changed from Settings Tab --- src/slic3r/GUI/DoubleSlider.cpp | 19 +++++++++++-------- src/slic3r/GUI/DoubleSlider.hpp | 7 +++++++ src/slic3r/GUI/GUI_Preview.cpp | 2 ++ src/slic3r/GUI/OptionsGroup.cpp | 2 ++ 4 files changed, 22 insertions(+), 8 deletions(-) diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index d29e87a931..6eebea3905 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -77,6 +77,7 @@ Control::Control( wxWindow *parent, m_selection = ssUndef; m_ticks.set_pause_print_msg(_utf8(L("Place bearings in slots and resume printing"))); + m_ticks.set_extruder_colors(&m_extruder_colors); // slider events this->Bind(wxEVT_PAINT, &Control::OnPaint, this); @@ -351,6 +352,11 @@ void Control::SetModeAndOnlyExtruder(const bool is_one_extruder_printed_model, c UseDefaultColors(m_mode == t_mode::SingleExtruder); } +void Control::SetExtruderColors( const std::vector& extruder_colors) +{ + m_extruder_colors = extruder_colors; +} + void Control::get_lower_and_higher_position(int& lower_pos, int& higher_pos) { const double step = get_scroll_step(); @@ -677,7 +683,7 @@ std::string Control::get_color_for_tool_change_tick(std::set::const_it return it_n->color; } - return it->color; + return m_extruder_colors[current_extruder-1]; // return a color for a specific extruder from the colors list } std::string Control::get_color_for_color_change_tick(std::set::const_iterator it) const @@ -690,7 +696,7 @@ std::string Control::get_color_for_color_change_tick(std::set::const_i if (it_n->gcode == ToolChangeCode) { is_tool_change = true; if (it_n->extruder == it->extruder) - return it->color; + return m_extruder_colors[it->extruder-1]; // return a color for a specific extruder from the colors list break; } } @@ -736,7 +742,7 @@ void Control::draw_colored_band(wxDC& dc) } const int default_color_idx = m_mode==t_mode::MultiAsSingle ? std::max(m_only_extruder - 1, 0) : 0; - draw_band(dc, wxColour(GUI::wxGetApp().plater()->get_extruder_colors_from_plater_config()[default_color_idx]), main_band); + draw_band(dc, wxColour(m_extruder_colors[default_color_idx]), main_band); std::set::const_iterator tick_it = m_ticks.ticks.begin(); @@ -1819,15 +1825,13 @@ void Control::edit_extruder_sequence() int extruder = 0; const int extr_cnt = m_extruders_sequence.extruders.size(); - std::vector colors = GUI::wxGetApp().plater()->get_extruder_colors_from_plater_config(); - while (tick <= m_max_value) { const int cur_extruder = m_extruders_sequence.extruders[extruder]; bool meaningless_tick = tick == 0.0 && cur_extruder == extruder; if (!meaningless_tick) - m_ticks.ticks.emplace(TickCode{tick, ToolChangeCode, cur_extruder + 1, colors[cur_extruder]}); + m_ticks.ticks.emplace(TickCode{tick, ToolChangeCode, cur_extruder + 1, m_extruder_colors[cur_extruder]}); extruder++; if (extruder == extr_cnt) @@ -1942,8 +1946,7 @@ std::string TickCodeInfo::get_color_for_tick(TickCode tick, const std::string& c return colors[m_default_color_idx % colors.size()]; } - std::vector colors = GUI::wxGetApp().plater()->get_extruder_colors_from_plater_config(); - std::string color = colors[extruder - 1]; + std::string color = (*m_colors)[extruder - 1]; if (code == ColorChangeCode) { diff --git a/src/slic3r/GUI/DoubleSlider.hpp b/src/slic3r/GUI/DoubleSlider.hpp index e5c0b4e219..c3cf645b6c 100644 --- a/src/slic3r/GUI/DoubleSlider.hpp +++ b/src/slic3r/GUI/DoubleSlider.hpp @@ -95,6 +95,8 @@ class TickCodeInfo bool m_use_default_colors= false; int m_default_color_idx = 0; + std::vector* m_colors {nullptr}; + std::string get_color_for_tick(TickCode tick, const std::string& code, const int extruder); public: @@ -122,6 +124,8 @@ public: bool suppressed_plus () { return m_suppress_plus; } bool suppressed_minus() { return m_suppress_minus; } void set_default_colors(bool default_colors_on) { m_use_default_colors = default_colors_on; } + + void set_extruder_colors(std::vector* extruder_colors) { m_colors = extruder_colors; } }; @@ -209,6 +213,7 @@ public: void SetManipulationMode(t_mode mode) { m_mode = mode; } t_mode GetManipulationMode() const { return m_mode; } void SetModeAndOnlyExtruder(const bool is_one_extruder_printed_model, const int only_extruder); + void SetExtruderColors(const std::vector& extruder_colors); bool is_horizontal() const { return m_style == wxSL_HORIZONTAL; } bool is_one_layer() const { return m_is_one_layer; } @@ -357,6 +362,8 @@ private: std::vector m_values; TickCodeInfo m_ticks; + std::vector m_extruder_colors; + // control's view variables wxCoord SLIDER_MARGIN; // margin around slider diff --git a/src/slic3r/GUI/GUI_Preview.cpp b/src/slic3r/GUI/GUI_Preview.cpp index 732e7ce159..1ae73a192c 100644 --- a/src/slic3r/GUI/GUI_Preview.cpp +++ b/src/slic3r/GUI/GUI_Preview.cpp @@ -705,6 +705,8 @@ void Preview::update_double_slider(const std::vector& layers_z, bool kee bool sla_print_technology = wxGetApp().plater()->printer_technology() == ptSLA; bool sequential_print = wxGetApp().preset_bundle->prints.get_edited_preset().config.opt_bool("complete_objects"); m_slider->SetDrawMode(sla_print_technology, sequential_print); + + m_slider->SetExtruderColors(wxGetApp().plater()->get_extruder_colors_from_plater_config()); } void Preview::update_double_slider_mode() diff --git a/src/slic3r/GUI/OptionsGroup.cpp b/src/slic3r/GUI/OptionsGroup.cpp index 444f92bf71..f507f0e4a6 100644 --- a/src/slic3r/GUI/OptionsGroup.cpp +++ b/src/slic3r/GUI/OptionsGroup.cpp @@ -131,8 +131,10 @@ void OptionsGroup::append_line(const Line& line, wxStaticText** full_Label/* = n // Set sidetext width for a better alignment of options in line if (option_set.size() > 1) { sidetext_width = Field::def_width_thinner(); + /* Temporary commented till UI-review will be completed if (m_show_modified_btns) // means that options groups are in tabs sublabel_width = Field::def_width(); + */ } // add mode value for current line to m_options_mode From cd937d62b5bd49c636402dc6a698002931f30ef8 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 14 Feb 2020 12:50:26 +0100 Subject: [PATCH 05/91] Make sure that filament stats in gcode are on separate lines --- src/libslic3r/GCode.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 87b0c49086..0b7ef4ff7a 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -1077,11 +1077,11 @@ namespace DoExport { print_statistics.total_wipe_tower_cost += has_wipe_tower ? (extruded_volume - extruder.extruded_volume())* extruder.filament_density() * 0.001 * extruder.filament_cost() * 0.001 : 0.; } filament_stats_string_out += out_filament_used_mm.first; - filament_stats_string_out += out_filament_used_cm3.first; + filament_stats_string_out += "\n" + out_filament_used_cm3.first; if (out_filament_used_g.second) - filament_stats_string_out += out_filament_used_g.first; + filament_stats_string_out += "\n" + out_filament_used_g.first; if (out_filament_cost.second) - filament_stats_string_out += out_filament_cost.first; + filament_stats_string_out += "\n" + out_filament_cost.first; } return filament_stats_string_out; } @@ -1520,6 +1520,7 @@ void GCode::_do_export(Print& print, FILE* file) m_writer.extruders(), // Modifies print.m_print_statistics)); + _write(file, "\n"); _write_format(file, "; total filament used [g] = %.1lf\n", print.m_print_statistics.total_weight); _write_format(file, "; total filament cost = %.1lf\n", print.m_print_statistics.total_cost); if (print.m_print_statistics.total_toolchanges > 0) From 3f27802c0ac8e8e8bba6cae090db28244509fa55 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Fri, 14 Feb 2020 13:27:01 +0100 Subject: [PATCH 06/91] Fix of Crash when trying to select extruders for multiple parts (#3657) --- src/slic3r/GUI/GUI_ObjectList.cpp | 44 +++++++++++++++++++++---------- src/slic3r/GUI/GUI_ObjectList.hpp | 4 +-- src/slic3r/GUI/Plater.cpp | 2 +- 3 files changed, 33 insertions(+), 17 deletions(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index 11eebb0de3..92c436924a 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -1541,7 +1541,8 @@ wxMenuItem* ObjectList::append_menu_item_settings(wxMenu* menu_) // If there are selected more then one instance but not all of them // don't add settings menu items const Selection& selection = scene_selection(); - if (selection.is_multiple_full_instance() && !selection.is_single_full_object()) + if (selection.is_multiple_full_instance() && !selection.is_single_full_object() || + selection.is_multiple_volume() || selection.is_mixed() ) // more than one volume(part) is selected on the scene return nullptr; const auto sel_vol = get_selected_model_volume(); @@ -1560,6 +1561,8 @@ wxMenuItem* ObjectList::append_menu_item_settings(wxMenu* menu_) // Add frequently settings const ItemType item_type = m_objects_model->GetItemType(GetSelection()); + if (item_type == itUndef) + return nullptr; const bool is_object_settings = item_type & itObject || item_type & itInstance || selection.is_single_full_object(); create_freq_settings_popupmenu(menu, is_object_settings); @@ -1577,11 +1580,14 @@ wxMenuItem* ObjectList::append_menu_item_settings(wxMenu* menu_) return menu->Append(menu_item); } -wxMenuItem* ObjectList::append_menu_item_change_type(wxMenu* menu) +wxMenuItem* ObjectList::append_menu_item_change_type(wxMenu* menu, wxWindow* parent/* = nullptr*/) { return append_menu_item(menu, wxID_ANY, _(L("Change type")), "", - [this](wxCommandEvent&) { change_part_type(); }, "", menu); - + [this](wxCommandEvent&) { change_part_type(); }, "", menu, + [this]() { + wxDataViewItem item = GetSelection(); + return item.IsOk() || m_objects_model->GetItemType(item) == itVolume; + }, parent); } wxMenuItem* ObjectList::append_menu_item_instance_to_object(wxMenu* menu, wxWindow* parent) @@ -1656,19 +1662,27 @@ void ObjectList::append_menu_item_reload_from_disk(wxMenu* menu) const []() { return wxGetApp().plater()->can_reload_from_disk(); }, wxGetApp().plater()); } -void ObjectList::append_menu_item_change_extruder(wxMenu* menu) const +void ObjectList::append_menu_item_change_extruder(wxMenu* menu) { - const wxString name = _(L("Change extruder")); + const std::vector names = {_(L("Change extruder")), _(L("Set extruder for selected items")) }; // Delete old menu item - const int item_id = menu->FindItem(name); - if (item_id != wxNOT_FOUND) - menu->Destroy(item_id); + for (const wxString& name : names) { + const int item_id = menu->FindItem(name); + if (item_id != wxNOT_FOUND) + menu->Destroy(item_id); + } const int extruders_cnt = extruders_count(); - const wxDataViewItem item = GetSelection(); - if (item && extruders_cnt > 1) + if (extruders_cnt <= 1) + return; + + if (!GetSelection().IsOk()) + append_menu_item(menu, wxID_ANY, names[1], + _(L("Select extruder number for selected objects and/or parts")), + [this](wxCommandEvent&) { extruder_selection(); }, "", menu); + else { - DynamicPrintConfig& config = get_item_config(item); + DynamicPrintConfig& config = get_item_config(GetSelection()); const int initial_extruder = !config.has("extruder") ? 0 : config.option("extruder")->value; @@ -1683,7 +1697,7 @@ void ObjectList::append_menu_item_change_extruder(wxMenu* menu) const [this, i](wxCommandEvent&) { set_extruder_for_selected_items(i); }, menu)->Check(i == initial_extruder); } - menu->AppendSubMenu(extruder_selection_menu, name, _(L("Select new extruder for the object/part"))); + menu->AppendSubMenu(extruder_selection_menu, names[0], _(L("Select new extruder for the object/part"))); } } @@ -3159,7 +3173,9 @@ void ObjectList::update_selections() for (auto obj_ins : objects_content_list) { if (obj_ins.first == glv_obj_idx) { - if (obj_ins.second.find(glv_ins_idx) != obj_ins.second.end()) { + if (obj_ins.second.find(glv_ins_idx) != obj_ins.second.end() && + !selection.is_from_single_instance() ) // a case when volumes of different types are selected + { if (glv_ins_idx == 0 && (*m_objects)[glv_obj_idx]->instances.size() == 1) sels.Add(m_objects_model->GetItemById(glv_obj_idx)); else diff --git a/src/slic3r/GUI/GUI_ObjectList.hpp b/src/slic3r/GUI/GUI_ObjectList.hpp index 3b51c17613..edb7d800ed 100644 --- a/src/slic3r/GUI/GUI_ObjectList.hpp +++ b/src/slic3r/GUI/GUI_ObjectList.hpp @@ -241,14 +241,14 @@ public: wxMenuItem* append_menu_item_split(wxMenu* menu); wxMenuItem* append_menu_item_layers_editing(wxMenu* menu, wxWindow* parent); wxMenuItem* append_menu_item_settings(wxMenu* menu); - wxMenuItem* append_menu_item_change_type(wxMenu* menu); + wxMenuItem* append_menu_item_change_type(wxMenu* menu, wxWindow* parent = nullptr); wxMenuItem* append_menu_item_instance_to_object(wxMenu* menu, wxWindow* parent); wxMenuItem* append_menu_item_printable(wxMenu* menu, wxWindow* parent); void append_menu_items_osx(wxMenu* menu); wxMenuItem* append_menu_item_fix_through_netfabb(wxMenu* menu); void append_menu_item_export_stl(wxMenu* menu) const; void append_menu_item_reload_from_disk(wxMenu* menu) const; - void append_menu_item_change_extruder(wxMenu* menu) const; + void append_menu_item_change_extruder(wxMenu* menu); void append_menu_item_delete(wxMenu* menu); void append_menu_item_scale_selection_to_fit_print_volume(wxMenu* menu); void create_object_popupmenu(wxMenu *menu); diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 3171818875..034aecae09 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -4029,7 +4029,7 @@ bool Plater::priv::complit_init_part_menu() part_menu.AppendSeparator(); auto obj_list = sidebar->obj_list(); - obj_list->append_menu_item_change_type(&part_menu); + obj_list->append_menu_item_change_type(&part_menu, q); return true; } From 23732864ab06ccc5684d05558975c6a0937eb0ea Mon Sep 17 00:00:00 2001 From: YuSanka Date: Fri, 14 Feb 2020 14:44:17 +0100 Subject: [PATCH 07/91] Fixed bug related to possibility of load several files as a multi-part object Steps to repro: - set MMU printer - set SL1 printer - add two or more objects - select yes in "Multi-part object detected" dialog --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 034aecae09..5031c2ebe9 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -2238,7 +2238,7 @@ std::vector Plater::priv::load_files(const std::vector& input_ auto *nozzle_dmrs = config->opt("nozzle_diameter"); - bool one_by_one = input_files.size() == 1 || nozzle_dmrs->values.size() <= 1; + bool one_by_one = input_files.size() == 1 || printer_technology == ptSLA || nozzle_dmrs->values.size() <= 1; if (! one_by_one) { for (const auto &path : input_files) { if (std::regex_match(path.string(), pattern_bundle)) { From 860571d51d5aec9f06c6d3ef2221e2b0e971bc97 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Fri, 14 Feb 2020 16:44:49 +0100 Subject: [PATCH 08/91] DoubleSlider: Changed behavior of thumbs. New rule: Only active thumb is moving to the new place. --- src/slic3r/GUI/DoubleSlider.cpp | 35 +++++++++++++++++---------------- src/slic3r/GUI/DoubleSlider.hpp | 2 +- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index 6eebea3905..ed5f4893b9 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -821,7 +821,7 @@ void Control::draw_cog_icon(wxDC& dc) void Control::update_thumb_rect(const wxCoord& begin_x, const wxCoord& begin_y, const SelectedSlider& selection) { - const wxRect& rect = wxRect(begin_x, begin_y, m_thumb_size.x, int(m_thumb_size.y*0.5)); + const wxRect& rect = wxRect(begin_x, begin_y + (selection == ssLower ? int(m_thumb_size.y * 0.5) : 0), m_thumb_size.x, int(m_thumb_size.y*0.5)); if (selection == ssLower) m_rect_lower_thumb = rect; else @@ -839,10 +839,15 @@ int Control::get_value_from_position(const wxCoord x, const wxCoord y) return int(m_min_value + double(height - SLIDER_MARGIN - y) / step + 0.5); } -void Control::detect_selected_slider(const wxPoint& pt) +bool Control::detect_selected_slider(const wxPoint& pt) { - m_selection = is_point_in_rect(pt, m_rect_lower_thumb) ? ssLower : - is_point_in_rect(pt, m_rect_higher_thumb) ? ssHigher : ssUndef; + if (is_point_in_rect(pt, m_rect_lower_thumb)) + m_selection = ssLower; + else if(is_point_in_rect(pt, m_rect_higher_thumb)) + m_selection = ssHigher; + else + return false; // pt doesn't referenced to any thumb + return true; } bool Control::is_point_in_rect(const wxPoint& pt, const wxRect& rect) @@ -907,6 +912,9 @@ void Control::OnLeftDown(wxMouseEvent& event) m_mouse = maRevertIconClick; } + if (m_mouse == maNone) + detect_selected_slider(pos); + event.Skip(); } @@ -1055,11 +1063,7 @@ void Control::OnMotion(wxMouseEvent& event) const wxPoint pos = event.GetLogicalPosition(wxClientDC(this)); int tick = -1; - /* Note: Checking "!m_is_one_layer" is commented now because of - * it looks like unnecessary and cause a tooltip "One layer" showing when OneLayerLock is on - * #ysFIXME : Delete it after testing - * */ - if (!m_is_left_down/* && !m_is_one_layer*/) + if (!m_is_left_down && !m_is_right_down) { if (is_point_in_rect(pos, m_rect_one_layer_icon)) m_focus = fiOneLayerIcon; @@ -1351,16 +1355,12 @@ void Control::OnRightDown(wxMouseEvent& event) m_mouse = m_ticks.ticks.find(TickCode{ tick }) == m_ticks.ticks.end() ? maAddMenu : maEditMenu; } - else if (m_mode == t_mode::SingleExtruder && is_point_in_rect(pos, get_colored_band_rect())) + else if (m_mode == t_mode::SingleExtruder && !detect_selected_slider(pos) && is_point_in_rect(pos, get_colored_band_rect())) m_mouse = maForceColorEdit; else if (m_mode == t_mode::MultiAsSingle && is_point_in_rect(pos, m_rect_cog_icon)) m_mouse = maCogIconMenu; } - if (m_mouse != maNone) - return; - - detect_selected_slider(pos); - if (!m_selection) + if (m_mouse != maNone || !detect_selected_slider(pos)) return; if (m_selection == ssLower) @@ -1795,10 +1795,11 @@ void Control::move_current_thumb_to_pos(wxPoint pos) if (mouse_val >= 0) { // if (abs(mouse_val - m_lower_value) < abs(mouse_val - m_higher_value)) { - if (mouse_val <= m_lower_value) { + // if (mouse_val <= m_lower_value) { + if (m_selection == ssLower) { SetLowerValue(mouse_val); correct_lower_value(); - m_selection = ssLower; + // m_selection = ssLower; } else { SetHigherValue(mouse_val); diff --git a/src/slic3r/GUI/DoubleSlider.hpp b/src/slic3r/GUI/DoubleSlider.hpp index c3cf645b6c..bf8f54d6c9 100644 --- a/src/slic3r/GUI/DoubleSlider.hpp +++ b/src/slic3r/GUI/DoubleSlider.hpp @@ -272,7 +272,7 @@ protected: void draw_thumb_text(wxDC& dc, const wxPoint& pos, const SelectedSlider& selection) const; void update_thumb_rect(const wxCoord& begin_x, const wxCoord& begin_y, const SelectedSlider& selection); - void detect_selected_slider(const wxPoint& pt); + bool detect_selected_slider(const wxPoint& pt); void correct_lower_value(); void correct_higher_value(); void move_current_thumb(const bool condition); From 3631e938b25746dfb533681b9e7344a194fda523 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Mon, 17 Feb 2020 11:26:40 +0100 Subject: [PATCH 09/91] Extruder selection for multiple selected objects/parts. A Menu with colored icons is used now instead of wxGetSingleChoice. All menus for extruder selection use colored icon --- src/slic3r/GUI/DoubleSlider.cpp | 4 ++- src/slic3r/GUI/GUI_ObjectList.cpp | 52 +++++++++++++++++-------------- src/slic3r/GUI/wxExtensions.cpp | 2 +- 3 files changed, 33 insertions(+), 25 deletions(-) diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index ed5f4893b9..8c44e9b3fc 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -1122,6 +1122,8 @@ void Control::append_change_extruder_menu_item(wxMenu* menu, bool switch_current { std::array active_extruders = get_active_extruders_for_tick(m_selection == ssLower ? m_lower_value : m_higher_value); + std::vector icons = get_extruder_color_icons(true); + wxMenu* change_extruder_menu = new wxMenu(); for (int i = 1; i <= extruders_cnt; i++) @@ -1132,7 +1134,7 @@ void Control::append_change_extruder_menu_item(wxMenu* menu, bool switch_current if (m_mode == t_mode::MultiAsSingle) append_menu_item(change_extruder_menu, wxID_ANY, item_name, "", - [this, i](wxCommandEvent&) { add_code_as_tick(ToolChangeCode, i); }, "", menu, + [this, i](wxCommandEvent&) { add_code_as_tick(ToolChangeCode, i); }, *icons[i-1], menu, [is_active_extruder]() { return !is_active_extruder; }, GUI::wxGetApp().plater()); } diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index 92c436924a..63aca71409 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -1676,29 +1676,37 @@ void ObjectList::append_menu_item_change_extruder(wxMenu* menu) if (extruders_cnt <= 1) return; - if (!GetSelection().IsOk()) - append_menu_item(menu, wxID_ANY, names[1], - _(L("Select extruder number for selected objects and/or parts")), - [this](wxCommandEvent&) { extruder_selection(); }, "", menu); - else - { - DynamicPrintConfig& config = get_item_config(GetSelection()); + wxDataViewItemArray sels; + GetSelections(sels); + if (sels.IsEmpty()) + return; - const int initial_extruder = !config.has("extruder") ? 0 : - config.option("extruder")->value; + std::vector icons = get_extruder_color_icons(true); + wxMenu* extruder_selection_menu = new wxMenu(); + const wxString& name = sels.Count()==1 ? names[0] : names[1]; - wxMenu* extruder_selection_menu = new wxMenu(); - - for (int i = 0; i <= extruders_cnt; i++) - { - const wxString& item_name = i == 0 ? _(L("Default")) : wxString::Format("%d", i); - - append_menu_radio_item(extruder_selection_menu, wxID_ANY, item_name, "", - [this, i](wxCommandEvent&) { set_extruder_for_selected_items(i); }, menu)->Check(i == initial_extruder); - } - - menu->AppendSubMenu(extruder_selection_menu, names[0], _(L("Select new extruder for the object/part"))); + int initial_extruder = -1; // negative value for multiple object/part selection + if (sels.Count()==1) { + DynamicPrintConfig& config = get_item_config(sels[0]); + initial_extruder = !config.has("extruder") ? 0 : + config.option("extruder")->value; } + + for (int i = 0; i <= extruders_cnt; i++) + { + bool is_active_extruder = i == initial_extruder; + int icon_idx = i == 0 ? 0 : i - 1; + + const wxString& item_name = (i == 0 ? _(L("Default")) : wxString::Format(_(L("Extruder %d")), i)) + + (is_active_extruder ? " (" + _(L("active")) + ")" : ""); + + append_menu_item(extruder_selection_menu, wxID_ANY, item_name, "", + [this, i](wxCommandEvent&) { set_extruder_for_selected_items(i); }, *icons[icon_idx], menu, + [is_active_extruder]() { return !is_active_extruder; }, GUI::wxGetApp().plater()); + + } + + menu->AppendSubMenu(extruder_selection_menu, name); } void ObjectList::append_menu_item_delete(wxMenu* menu) @@ -3937,9 +3945,7 @@ void ObjectList::show_multi_selection_menu() wxMenu* menu = new wxMenu(); if (extruders_count() > 1) - append_menu_item(menu, wxID_ANY, _(L("Set extruder for selected items")), - _(L("Select extruder number for selected objects and/or parts")), - [this](wxCommandEvent&) { extruder_selection(); }, "", menu); + append_menu_item_change_extruder(menu); append_menu_item(menu, wxID_ANY, _(L("Reload from disk")), _(L("Reload the selected volumes from disk")), [this](wxCommandEvent&) { wxGetApp().plater()->reload_from_disk(); }, "", menu, []() { diff --git a/src/slic3r/GUI/wxExtensions.cpp b/src/slic3r/GUI/wxExtensions.cpp index 939c6d1dce..3f82c43e47 100644 --- a/src/slic3r/GUI/wxExtensions.cpp +++ b/src/slic3r/GUI/wxExtensions.cpp @@ -543,7 +543,7 @@ std::vector get_extruder_color_icons(bool thin_icon/* = false*/) * and scale them in respect to em_unit value */ const double em = Slic3r::GUI::wxGetApp().em_unit(); - const int icon_width = lround((thin_icon ? 1 : 3.2) * em); + const int icon_width = lround((thin_icon ? 1.6 : 3.2) * em); const int icon_height = lround(1.6 * em); for (const std::string& color : colors) From 1693a56ea3e15c89a9958c332066d54612bdcfc2 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Mon, 17 Feb 2020 11:51:22 +0100 Subject: [PATCH 10/91] Suppress print info about Weight and cost, if they are equal to zero --- src/slic3r/GUI/Plater.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 5031c2ebe9..0c6a5ed904 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1233,19 +1233,19 @@ void Sidebar::update_sliced_info_sizer() p->sliced_info->SetTextAndShow(siFilament_m, info_text, new_label); p->sliced_info->SetTextAndShow(siFilament_mm3, wxString::Format("%.2f", ps.total_extruded_volume)); - p->sliced_info->SetTextAndShow(siFilament_g, wxString::Format("%.2f", ps.total_weight)); - + p->sliced_info->SetTextAndShow(siFilament_g, ps.total_weight == 0.0 ? "N/A" : wxString::Format("%.2f", ps.total_weight)); new_label = _(L("Cost")); if (is_wipe_tower) new_label += wxString::Format(" :\n - %s\n - %s", _(L("objects")), _(L("wipe tower"))); - info_text = is_wipe_tower ? + info_text = ps.total_cost == 0.0 ? "N/A" : + is_wipe_tower ? wxString::Format("%.2f \n%.2f \n%.2f", ps.total_cost, (ps.total_cost - ps.total_wipe_tower_cost), ps.total_wipe_tower_cost) : wxString::Format("%.2f", ps.total_cost); - p->sliced_info->SetTextAndShow(siCost, info_text, new_label); + p->sliced_info->SetTextAndShow(siCost, info_text, new_label); if (ps.estimated_normal_print_time == "N/A" && ps.estimated_silent_print_time == "N/A") p->sliced_info->SetTextAndShow(siEstimatedTime, "N/A"); From 9b73ecdf029f156ba582f822e26f8479f1a7eecd Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 17 Feb 2020 12:13:59 +0100 Subject: [PATCH 11/91] Fixed printing order of skirt-brim intersecting extrusions (#3634) --- src/libslic3r/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index d5a1fa178d..9114b4c5fe 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -1931,7 +1931,7 @@ void Print::_make_brim() for (size_t i = 0; i < loops_trimmed_order.size();) { // Find all pieces that the initial loop was split into. size_t j = i + 1; - for (; j < loops_trimmed_order.size() && loops_trimmed_order[i].first == loops_trimmed_order[j].first; ++ j) ; + for (; j < loops_trimmed_order.size() && loops_trimmed_order[i].second == loops_trimmed_order[j].second; ++ j) ; const ClipperLib_Z::Path &first_path = *loops_trimmed_order[i].first; if (i + 1 == j && first_path.size() > 3 && first_path.front().X == first_path.back().X && first_path.front().Y == first_path.back().Y) { auto *loop = new ExtrusionLoop(); From e571181c547b29cc58e3293c6eb6d9fa4eff6f4e Mon Sep 17 00:00:00 2001 From: David Kocik Date: Mon, 17 Feb 2020 15:54:19 +0100 Subject: [PATCH 12/91] config wizard: enable finish button if only custom printer is selected --- src/slic3r/GUI/ConfigWizard.cpp | 30 +++++++++++++++---------- src/slic3r/GUI/ConfigWizard_private.hpp | 3 ++- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/src/slic3r/GUI/ConfigWizard.cpp b/src/slic3r/GUI/ConfigWizard.cpp index 99353fbd99..cc16bf1cee 100644 --- a/src/slic3r/GUI/ConfigWizard.cpp +++ b/src/slic3r/GUI/ConfigWizard.cpp @@ -748,7 +748,8 @@ PageCustom::PageCustom(ConfigWizard *parent) cb_custom->Bind(wxEVT_CHECKBOX, [this](wxCommandEvent &event) { tc_profile_name->Enable(custom_wanted()); - wizard_p()->on_custom_setup(); + wizard_p()->on_custom_setup(custom_wanted()); + }); append(cb_custom); @@ -1396,7 +1397,7 @@ void ConfigWizard::priv::load_pages() if (any_sla_selected) { index->add_page(page_sla_materials); } // there should to be selected at least one printer - btn_finish->Enable(any_fff_selected || any_sla_selected); + btn_finish->Enable(any_fff_selected || any_sla_selected || custom_printer_selected); index->add_page(page_update); index->add_page(page_reload_from_disk); @@ -1599,8 +1600,9 @@ void ConfigWizard::priv::update_materials(Technology technology) } } -void ConfigWizard::priv::on_custom_setup() +void ConfigWizard::priv::on_custom_setup(const bool custom_wanted) { + custom_printer_selected = custom_wanted; load_pages(); } @@ -1723,6 +1725,8 @@ bool ConfigWizard::priv::on_bnt_finish() if (any_sla_selected) page_sla_materials->reload_presets(); + // theres no need to check that filament is selected if we have only custom printer + if (custom_printer_selected && !any_fff_selected && !any_sla_selected) return true; // check, that there is selected at least one filament/material return check_materials_in_config(T_ANY); } @@ -1751,13 +1755,13 @@ bool ConfigWizard::priv::check_materials_in_config(Technology technology, bool s if (any_fff_selected && technology & T_FFF && !exist_preset(AppConfig::SECTION_FILAMENTS, filaments)) { - if (show_info_msg) - { - wxString message = _(L("You have to select at least one filament for selected printers")) + "\n\n\t" + - _(L("Do you want to automatic select default filaments?")); - ask_and_selected_default_materials(message, T_FFF); - } - return false; + if (show_info_msg) + { + wxString message = _(L("You have to select at least one filament for selected printers")) + "\n\n\t" + + _(L("Do you want to automatic select default filaments?")); + ask_and_selected_default_materials(message, T_FFF); + } + return false; } if (any_sla_selected && technology & T_SLA && !exist_preset(AppConfig::SECTION_MATERIALS, sla_materials)) @@ -1875,6 +1879,7 @@ void ConfigWizard::priv::apply_config(AppConfig *app_config, PresetBundle *prese if (bundle.second.is_prusa_bundle) { continue; } const auto config = enabled_vendors.find(bundle.first); + if (config == enabled_vendors.end()) { continue; } for (const auto &model : bundle.second.vendor_profile->models) { const auto model_it = config->second.find(model.id); if (model_it != config->second.end() && model_it->second.size() > 0) { @@ -1925,7 +1930,6 @@ bool ConfigWizard::priv::check_fff_selected() for (const auto& printer: pages_3rdparty) if (printer.second.first) // FFF page ret |= printer.second.first->any_selected(); - return ret; } @@ -1997,6 +2001,8 @@ ConfigWizard::ConfigWizard(wxWindow *parent) // Pages for 3rd party vendors p->create_3rdparty_pages(); // Needs to be done _before_ creating PageVendors p->add_page(p->page_vendors = new PageVendors(this)); + p->add_page(p->page_custom = new PageCustom(this)); + p->custom_printer_selected = p->page_custom->custom_wanted(); p->any_sla_selected = p->check_sla_selected(); p->any_fff_selected = p->check_fff_selected(); @@ -2008,7 +2014,7 @@ ConfigWizard::ConfigWizard(wxWindow *parent) p->add_page(p->page_sla_materials = new PageMaterials(this, &p->sla_materials, _(L("SLA Material Profiles Selection")) + " ", _(L("SLA Materials")), _(L("Layer height:")) )); - p->add_page(p->page_custom = new PageCustom(this)); + p->add_page(p->page_update = new PageUpdate(this)); p->add_page(p->page_reload_from_disk = new PageReloadFromDisk(this)); p->add_page(p->page_mode = new PageMode(this)); diff --git a/src/slic3r/GUI/ConfigWizard_private.hpp b/src/slic3r/GUI/ConfigWizard_private.hpp index e056b0b9e4..1d4b642212 100644 --- a/src/slic3r/GUI/ConfigWizard_private.hpp +++ b/src/slic3r/GUI/ConfigWizard_private.hpp @@ -447,6 +447,7 @@ struct ConfigWizard::priv std::unique_ptr custom_config; // Backing for custom printer definition bool any_fff_selected; // Used to decide whether to display Filaments page bool any_sla_selected; // Used to decide whether to display SLA Materials page + bool custom_printer_selected; wxScrolledWindow *hscroll = nullptr; wxBoxSizer *hscroll_sizer = nullptr; @@ -497,7 +498,7 @@ struct ConfigWizard::priv void set_run_reason(RunReason run_reason); void update_materials(Technology technology); - void on_custom_setup(); + void on_custom_setup(const bool custom_wanted); void on_printer_pick(PagePrinters *page, const PrinterPickerEvent &evt); void select_default_materials_for_printer_model(const std::vector &models, Technology technology, From b1145df566cfbd3b981fe5e9eea83b909928e29d Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 17 Feb 2020 15:41:35 +0100 Subject: [PATCH 13/91] Fixed incorrect filtering of extrusions during gcode generation The behaviour resulted in duplicate extrusions in some cases Fix of #3665 --- src/libslic3r/ExtrusionEntityCollection.cpp | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/libslic3r/ExtrusionEntityCollection.cpp b/src/libslic3r/ExtrusionEntityCollection.cpp index 147a60d95a..391ac2d587 100644 --- a/src/libslic3r/ExtrusionEntityCollection.cpp +++ b/src/libslic3r/ExtrusionEntityCollection.cpp @@ -11,18 +11,10 @@ void filter_by_extrusion_role_in_place(ExtrusionEntitiesPtr &extrusion_entities, if (role != erMixed) { auto first = extrusion_entities.begin(); auto last = extrusion_entities.end(); - auto result = first; - while (first != last) { - // The caller wants only paths with a specific extrusion role. - auto role2 = (*first)->role(); - if (role != role2) { - // This extrusion entity does not match the role asked. - assert(role2 != erMixed); - *result = *first; - ++ result; - } - ++ first; - } + extrusion_entities.erase( + std::remove_if(first, last, [&role](const ExtrusionEntity* ee) { + return ee->role() != role; }), + last); } } From 18506854318227c7c410bd6bf1bd0486bc8e3c91 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 18 Feb 2020 10:15:34 +0100 Subject: [PATCH 14/91] One more fix for Make compile and works for FreeBSD (#3556) --- src/slic3r/GUI/GUI_Utils.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/slic3r/GUI/GUI_Utils.cpp b/src/slic3r/GUI/GUI_Utils.cpp index 5090382cef..1e452b220e 100644 --- a/src/slic3r/GUI/GUI_Utils.cpp +++ b/src/slic3r/GUI/GUI_Utils.cpp @@ -112,6 +112,9 @@ int get_dpi_for_window(wxWindow *window) #elif defined __APPLE__ // TODO return DPI_DEFAULT; +#else // freebsd and others + // TODO + return DPI_DEFAULT; #endif } From d1e343595680a40e4811914bdcef367b836c7f0e Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 18 Feb 2020 11:09:28 +0100 Subject: [PATCH 15/91] Fixed non-correct TextCtrl's update on wxEVT_KILL_FOCUS (partially related to #3482), when for Parameter validation dialog "Selecting NO caused no change". OSX:TextCtrl:wxEVT_KILL_FOCUS: Second call is suppressed + Under OSX set a little bit more wider width for Fields --- src/slic3r/GUI/Field.cpp | 32 +++++++++++++++++++++++++------- src/slic3r/GUI/Field.hpp | 13 +++++++++---- 2 files changed, 34 insertions(+), 11 deletions(-) diff --git a/src/slic3r/GUI/Field.cpp b/src/slic3r/GUI/Field.cpp index 2fd76e8ba6..33a61a69af 100644 --- a/src/slic3r/GUI/Field.cpp +++ b/src/slic3r/GUI/Field.cpp @@ -79,6 +79,11 @@ void Field::PostInitialize() BUILD(); } +// Values of width to alignments of fields +int Field::def_width() { return wxOSX ? 8 : 7; } +int Field::def_width_wider() { return 14; } +int Field::def_width_thinner() { return 4; } + void Field::on_kill_focus() { // call the registered function if it is available @@ -240,6 +245,8 @@ void Field::get_value_by_opt_type(wxString& str, const bool check_value/* = true set_value(wxString::Format("%s%%", stVal), false/*true*/); str += "%%"; } + else + set_value(stVal, false); // it's no needed but can be helpful, when inputted value contained "," instead of "." } } @@ -367,14 +374,23 @@ void TextCtrl::BUILD() { temp->Bind(wxEVT_KILL_FOCUS, ([this, temp](wxEvent& e) { e.Skip(); +#ifdef __WXOSX__ + // OSX issue: For some unknown reason wxEVT_KILL_FOCUS is emitted twice in a row + // Thus, suppress its second call + if (bKilledFocus) { + bKilledFocus = false; + return; + } + bKilledFocus = true; +#endif // __WXOSX__ + #if !defined(__WXGTK__) temp->GetToolTip()->Enable(true); #endif // __WXGTK__ - if (bEnterPressed) { + if (bEnterPressed) bEnterPressed = false; - return; - } - propagate_value(); + else + propagate_value(); }), temp->GetId()); // select all text using Ctrl+A @@ -423,10 +439,12 @@ bool TextCtrl::value_was_changed() void TextCtrl::propagate_value() { - if (is_defined_input_value(window, m_opt.type) && value_was_changed()) - on_change_field(); - else + if (!is_defined_input_value(window, m_opt.type) ) + // on_kill_focus() cause a call of OptionsGroup::reload_config(), + // Thus, do it only when it's really needed (when undefined value was input) on_kill_focus(); + else if (value_was_changed()) + on_change_field(); } void TextCtrl::set_value(const boost::any& value, bool change_event/* = false*/) { diff --git a/src/slic3r/GUI/Field.hpp b/src/slic3r/GUI/Field.hpp index bd325005e2..ca0c77d5c5 100644 --- a/src/slic3r/GUI/Field.hpp +++ b/src/slic3r/GUI/Field.hpp @@ -225,10 +225,10 @@ public: bool get_enter_pressed() const { return bEnterPressed; } void set_enter_pressed(bool pressed) { bEnterPressed = pressed; } - // Values of width to "systematic" alignments of fields - static int def_width() { return 7; } - static int def_width_wider() { return 14; } - static int def_width_thinner() { return 4; } + // Values of width to alignments of fields + static int def_width() ; + static int def_width_wider() ; + static int def_width_thinner() ; protected: RevertButton* m_Undo_btn = nullptr; @@ -274,6 +274,11 @@ class TextCtrl : public Field { bool bChangedValueEvent = true; void change_field_value(wxEvent& event); #endif //__WXGTK__ + +#ifdef __WXOSX__ + bool bKilledFocus = false; +#endif // __WXOSX__ + public: TextCtrl(const ConfigOptionDef& opt, const t_config_option_key& id) : Field(opt, id) {} TextCtrl(wxWindow* parent, const ConfigOptionDef& opt, const t_config_option_key& id) : Field(parent, opt, id) {} From 43f2171446a3de8b88b8ad20c1df71a96b7c4341 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 18 Feb 2020 12:26:48 +0100 Subject: [PATCH 16/91] Partial fix of v2.2.0 alpha2 Unhandled exception - extrusion width #3482 Exceptions thrown by Flow calculation were made explicit classes derived from std::invalid_argument. The PresetHints::recommended_thin_wall_thickness() newly catches these exceptions and it shows the reason of why the hint is invalid. --- src/libslic3r/Flow.cpp | 14 ++++++++++---- src/libslic3r/Flow.hpp | 25 +++++++++++++++++++++++++ src/slic3r/GUI/PresetHints.cpp | 16 ++++++++++------ 3 files changed, 45 insertions(+), 10 deletions(-) diff --git a/src/libslic3r/Flow.cpp b/src/libslic3r/Flow.cpp index b367be0226..1678be999c 100644 --- a/src/libslic3r/Flow.cpp +++ b/src/libslic3r/Flow.cpp @@ -11,6 +11,12 @@ namespace Slic3r { +FlowErrorNegativeSpacing::FlowErrorNegativeSpacing() : + FlowError("Flow::spacing() produced negative spacing. Did you set some extrusion width too small?") {} + +FlowErrorNegativeFlow::FlowErrorNegativeFlow() : + FlowError("Flow::mm3_per_mm() produced negative flow. Did you set some extrusion width too small?") {} + // This static method returns a sane extrusion width default. float Flow::auto_extrusion_width(FlowRole role, float nozzle_diameter) { @@ -52,7 +58,7 @@ static inline FlowRole opt_key_to_flow_role(const std::string &opt_key) static inline void throw_on_missing_variable(const std::string &opt_key, const char *dependent_opt_key) { - throw std::runtime_error((boost::format(L("Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible.")) % opt_key % dependent_opt_key).str()); + throw FlowErrorMissingVariable((boost::format(L("Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible.")) % opt_key % dependent_opt_key).str()); } // Used to provide hints to the user on default extrusion width values, and to provide reasonable values to the PlaceholderParser. @@ -174,7 +180,7 @@ float Flow::spacing() const #endif // assert(res > 0.f); if (res <= 0.f) - throw std::runtime_error("Flow::spacing() produced negative spacing. Did you set some extrusion width too small?"); + throw FlowErrorNegativeSpacing(); return res; } @@ -190,7 +196,7 @@ float Flow::spacing(const Flow &other) const 0.5 * this->spacing() + 0.5 * other.spacing()); // assert(res > 0.f); if (res <= 0.f) - throw std::runtime_error("Flow::spacing() produced negative spacing. Did you set some extrusion width too small?"); + throw FlowErrorNegativeSpacing(); return res; } @@ -204,7 +210,7 @@ double Flow::mm3_per_mm() const float(this->height * (this->width - this->height * (1. - 0.25 * PI))); //assert(res > 0.); if (res <= 0.) - throw std::runtime_error("Flow::mm3_per_mm() produced negative flow. Did you set some extrusion width too small?"); + throw FlowErrorNegativeFlow(); return res; } diff --git a/src/libslic3r/Flow.hpp b/src/libslic3r/Flow.hpp index aad189775f..7d6e35873d 100644 --- a/src/libslic3r/Flow.hpp +++ b/src/libslic3r/Flow.hpp @@ -27,6 +27,31 @@ enum FlowRole { frSupportMaterialInterface, }; +class FlowError : public std::invalid_argument +{ +public: + FlowError(const std::string& what_arg) : invalid_argument(what_arg) {} + FlowError(const char* what_arg) : invalid_argument(what_arg) {} +}; + +class FlowErrorNegativeSpacing : public FlowError +{ +public: + FlowErrorNegativeSpacing(); +}; + +class FlowErrorNegativeFlow : public FlowError +{ +public: + FlowErrorNegativeFlow(); +}; + +class FlowErrorMissingVariable : public FlowError +{ +public: + FlowErrorMissingVariable(const std::string& what_arg) : FlowError(what_arg) {} +}; + class Flow { public: diff --git a/src/slic3r/GUI/PresetHints.cpp b/src/slic3r/GUI/PresetHints.cpp index cd3554bc40..22fa09f6cc 100644 --- a/src/slic3r/GUI/PresetHints.cpp +++ b/src/slic3r/GUI/PresetHints.cpp @@ -262,12 +262,16 @@ std::string PresetHints::recommended_thin_wall_thickness(const PresetBundle &pre int num_lines = std::min(num_perimeters * 2, 10); out += (boost::format(_utf8(L("Recommended object thin wall thickness for layer height %.2f and"))) % layer_height).str() + " "; // Start with the width of two closely spaced - double width = external_perimeter_flow.width + external_perimeter_flow.spacing(); - for (int i = 2; i <= num_lines; thin_walls ? ++ i : i += 2) { - if (i > 2) - out += ", "; - out += (boost::format(_utf8(L("%d lines: %.2f mm"))) % i % width).str() + " "; - width += perimeter_flow.spacing() * (thin_walls ? 1.f : 2.f); + try { + double width = external_perimeter_flow.width + external_perimeter_flow.spacing(); + for (int i = 2; i <= num_lines; thin_walls ? ++ i : i += 2) { + if (i > 2) + out += ", "; + out += (boost::format(_utf8(L("%d lines: %.2f mm"))) % i % width).str() + " "; + width += perimeter_flow.spacing() * (thin_walls ? 1.f : 2.f); + } + } catch (const FlowErrorNegativeSpacing &) { + out = _utf8(L("Recommended object thin wall thickness: Not available due to excessively small extrusion width.")); } } return out; From 441f045a52c5a6aa334a8c7001283e8866ea13b5 Mon Sep 17 00:00:00 2001 From: David Kocik Date: Tue, 18 Feb 2020 13:15:58 +0100 Subject: [PATCH 17/91] text change - forced update dialog --- src/slic3r/GUI/UpdateDialogs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/UpdateDialogs.cpp b/src/slic3r/GUI/UpdateDialogs.cpp index 3581a55b12..5e4712ac60 100644 --- a/src/slic3r/GUI/UpdateDialogs.cpp +++ b/src/slic3r/GUI/UpdateDialogs.cpp @@ -145,7 +145,7 @@ MsgUpdateConfig::~MsgUpdateConfig() {} //MsgUpdateForced MsgUpdateForced::MsgUpdateForced(const std::vector& updates) : - MsgDialog(nullptr, wxString::Format(_(L("%s incompatibility")), SLIC3R_APP_NAME), _(L("Configuration update is necessary to install")), wxID_NONE) + MsgDialog(nullptr, wxString::Format(_(L("%s incompatibility")), SLIC3R_APP_NAME), _(L("Is necessary to install a configuration update. ")), wxID_NONE) { auto* text = new wxStaticText(this, wxID_ANY, wxString::Format(_(L( "%s will now start updates. Otherwise it won't be able to start.\n\n" From b5e61982a65064062c7e6ed97cfb715d825611bd Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 18 Feb 2020 13:46:12 +0100 Subject: [PATCH 18/91] Localization: changed some phrases. Updated POT --- resources/localization/PrusaSlicer.pot | 2073 ++++++++++++------------ src/slic3r/GUI/DoubleSlider.cpp | 6 +- 2 files changed, 1079 insertions(+), 1000 deletions(-) diff --git a/resources/localization/PrusaSlicer.pot b/resources/localization/PrusaSlicer.pot index 6236ed8a5b..5876938bed 100644 --- a/resources/localization/PrusaSlicer.pot +++ b/resources/localization/PrusaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-12 14:01+0100\n" +"POT-Creation-Date: 2020-02-18 13:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,7 +64,7 @@ msgid "" "numerous others." msgstr "" -#: src/slic3r/GUI/AppConfig.cpp:118 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -111,7 +111,7 @@ msgstr "" msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2055 msgid "Shape" msgstr "" @@ -120,8 +120,8 @@ msgid "Rectangular" msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:77 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 -#: src/slic3r/GUI/Tab.cpp:2320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "" @@ -144,7 +144,7 @@ msgid "Circular" msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 @@ -178,7 +178,7 @@ msgstr "" #: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 #: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 #: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2909 src/libslic3r/PrintConfig.cpp:2933 msgid "mm" msgstr "" @@ -192,7 +192,7 @@ msgid "" "center." msgstr "" -#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "" @@ -214,7 +214,7 @@ msgid "Load..." msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/Tab.cpp:3112 msgid "Remove" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "Choose an STL file to import bed model from:" msgstr "" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "" @@ -398,7 +398,7 @@ msgstr "" #: src/slic3r/GUI/ConfigManipulation.cpp:211 #: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:522 #: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 #: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 @@ -520,12 +520,12 @@ msgid "Standard" msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3158 +#: src/slic3r/GUI/Tab.cpp:3162 msgid "All" msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:494 src/slic3r/GUI/Plater.cpp:634 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "" @@ -590,19 +590,19 @@ msgstr "" msgid "Custom profile name:" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:772 +#: src/slic3r/GUI/ConfigWizard.cpp:773 #, possible-c-format msgid "" "If enabled, %s checks for new application versions online. When a new " @@ -611,11 +611,11 @@ msgid "" "notification mechanisms, no automatic installation is done." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:782 +#: src/slic3r/GUI/ConfigWizard.cpp:783 #, possible-c-format msgid "" "If enabled, %s downloads updates of built-in system presets in the " @@ -624,21 +624,21 @@ msgid "" "startup." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "" "Updates are never applied without user's consent and never overwrite user's " "customized settings." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:790 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "" "Additionally a backup snapshot of the whole configuration is created before " "an update is applied." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 -#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1660 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3950 src/slic3r/GUI/Plater.cpp:3203 +#: src/slic3r/GUI/Plater.cpp:3912 src/slic3r/GUI/Plater.cpp:3941 msgid "Reload from disk" msgstr "" @@ -655,11 +655,11 @@ msgid "" "using an open file dialog." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:814 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:816 +#: src/slic3r/GUI/ConfigWizard.cpp:815 msgid "" "PrusaSlicer's user interfaces comes in three variants:\n" "Simple, Advanced, and Expert.\n" @@ -668,135 +668,135 @@ msgid "" "fine-tuning, they are suitable for advanced and expert users, respectively." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:821 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:822 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:823 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:857 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:861 +#: src/slic3r/GUI/ConfigWizard.cpp:860 #, possible-c-format msgid "Pick another vendor supported by %s" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:892 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1949 msgid "Firmware" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:896 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:933 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:967 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:970 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:980 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:981 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "" "Good precision is required, so use a caliper and do multiple measurements " "along the filament, then compute the average." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1034 +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1035 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1038 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1048 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "" "Enter the bed temperature needed for getting your filament to stick to your " "heated bed." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1049 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "" "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have " "no heated bed." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1052 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1528 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1533 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 -#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1903 +#: src/slic3r/GUI/DoubleSlider.cpp:1924 src/slic3r/GUI/GUI.cpp:240 msgid "Notice" msgstr "" @@ -816,64 +816,64 @@ msgstr "" msgid "Do you want to automatic select default materials?" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1979 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1982 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1983 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1984 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1998 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2001 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3549 msgid "Type:" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2112 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2113 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2115 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2116 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" msgstr "" @@ -881,262 +881,260 @@ msgstr "" msgid "Place bearings in slots and resume printing" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:923 +#: src/slic3r/GUI/DoubleSlider.cpp:948 msgid "One layer mode" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:925 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "Discard all custom changes" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:928 +#: src/slic3r/GUI/DoubleSlider.cpp:953 #, possible-c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 -#: src/slic3r/GUI/DoubleSlider.cpp:1623 +#: src/slic3r/GUI/DoubleSlider.cpp:955 src/slic3r/GUI/DoubleSlider.cpp:1527 +#: src/slic3r/GUI/DoubleSlider.cpp:1649 msgid "Jump to height" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:933 +#: src/slic3r/GUI/DoubleSlider.cpp:958 msgid "Edit current color - Right click the colored slider segment" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:941 +#: src/slic3r/GUI/DoubleSlider.cpp:968 msgid "Print mode" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:955 +#: src/slic3r/GUI/DoubleSlider.cpp:982 msgid "Add extruder change - Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:957 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "" "Add color change - Left click for predefined color orShift + Left click for " "custom color selection" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:959 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "Add color change - Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:960 +#: src/slic3r/GUI/DoubleSlider.cpp:987 msgid "or press \"+\" key" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:962 -msgid "To add another code use Ctrl + Left click" +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:963 -msgid "To add another code use Right click" +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:972 +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing " +"sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" + +#: src/slic3r/GUI/DoubleSlider.cpp:1003 msgid "Color change (\"%1%\")" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:973 +#: src/slic3r/GUI/DoubleSlider.cpp:1004 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:976 +#: src/slic3r/GUI/DoubleSlider.cpp:1007 msgid "Pause print (\"%1%\")" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:978 +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:979 -msgid "\"%1%\"" -msgstr "" - -#: src/slic3r/GUI/DoubleSlider.cpp:985 +#: src/slic3r/GUI/DoubleSlider.cpp:1017 msgid "Note" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:987 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "" "G-code associated to this tick mark is in a conflict with print mode.\n" "Editing it will cause changes of Slider data." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:1022 msgid "" "There is a color change for extruder that won't be used till the end of " "print job.\n" "This code won't be processed during G-code generation." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:993 +#: src/slic3r/GUI/DoubleSlider.cpp:1025 msgid "" "There is an extruder change set to the same extruder.\n" "This code won't be processed during G-code generation." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:996 +#: src/slic3r/GUI/DoubleSlider.cpp:1028 msgid "" "There is a color change for extruder that has not been used before.\n" "Check your settings to avoid redundant color changes." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1001 +#: src/slic3r/GUI/DoubleSlider.cpp:1033 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Edit tick mark - Ctrl + Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1036 msgid "Edit tick mark - Right click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 -#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 -#: src/libslic3r/GCode/PreviewData.cpp:445 +#: src/slic3r/GUI/DoubleSlider.cpp:1132 src/slic3r/GUI/DoubleSlider.cpp:1168 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1700 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 #, possible-c-format msgid "Extruder %d" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1103 +#: src/slic3r/GUI/DoubleSlider.cpp:1133 src/slic3r/GUI/GUI_ObjectList.cpp:1701 msgid "active" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 +#: src/slic3r/GUI/DoubleSlider.cpp:1142 msgid "Switch code to Change extruder" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 +#: src/slic3r/GUI/DoubleSlider.cpp:1142 src/slic3r/GUI/GUI_ObjectList.cpp:1667 msgid "Change extruder" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1113 +#: src/slic3r/GUI/DoubleSlider.cpp:1143 msgid "Change extruder (N/A)" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1115 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Use another extruder" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1139 +#: src/slic3r/GUI/DoubleSlider.cpp:1169 msgid "used" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1147 +#: src/slic3r/GUI/DoubleSlider.cpp:1177 msgid "Switch code to Color change (%1%) for:" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1148 +#: src/slic3r/GUI/DoubleSlider.cpp:1178 msgid "Add color change (%1%) for:" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1449 +#: src/slic3r/GUI/DoubleSlider.cpp:1475 msgid "Add color change" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1459 +#: src/slic3r/GUI/DoubleSlider.cpp:1485 msgid "Add pause print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1462 +#: src/slic3r/GUI/DoubleSlider.cpp:1488 msgid "Add custom G-code" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1480 +#: src/slic3r/GUI/DoubleSlider.cpp:1506 msgid "Edit color" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1481 +#: src/slic3r/GUI/DoubleSlider.cpp:1507 msgid "Edit pause print message" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1482 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit custom G-code" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1514 msgid "Delete color change" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1489 +#: src/slic3r/GUI/DoubleSlider.cpp:1515 msgid "Delete tool change" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1490 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete pause print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1491 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete custom G-code" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1504 +#: src/slic3r/GUI/DoubleSlider.cpp:1530 msgid "Set extruder sequence for the entire print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1590 +#: src/slic3r/GUI/DoubleSlider.cpp:1616 msgid "Enter custom G-code used on current layer" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1591 +#: src/slic3r/GUI/DoubleSlider.cpp:1617 msgid "Custom G-code on current layer (%1% mm)." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1606 +#: src/slic3r/GUI/DoubleSlider.cpp:1632 msgid "Enter short message shown on Printer display when a print is paused" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1607 +#: src/slic3r/GUI/DoubleSlider.cpp:1633 msgid "Message for pause print on current layer (%1% mm)." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1622 +#: src/slic3r/GUI/DoubleSlider.cpp:1648 msgid "Enter the height you want to jump to" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1872 -msgid "" -"The last color change data was saved for a single extruder printer profile." +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1873 -msgid "" -"The last color change data was saved for a multiple extruder printer profile." -msgstr "" - -#: src/slic3r/GUI/DoubleSlider.cpp:1875 -msgid "Your current changes will delete all saved color changes." -msgstr "" - -#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 -msgid "Are you sure you want to continue?" -msgstr "" - -#: src/slic3r/GUI/DoubleSlider.cpp:1889 +#: src/slic3r/GUI/DoubleSlider.cpp:1898 src/slic3r/GUI/DoubleSlider.cpp:1914 msgid "The last color change data was saved for a multi extruder printing." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1890 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 +msgid "Your current changes will delete all saved color changes." +msgstr "" + +#: src/slic3r/GUI/DoubleSlider.cpp:1901 src/slic3r/GUI/DoubleSlider.cpp:1922 +msgid "Are you sure you want to continue?" +msgstr "" + +#: src/slic3r/GUI/DoubleSlider.cpp:1915 msgid "" "Select YES if you want to delete all saved tool changes, \n" "\tNO if you want all tool changes switch to color changes, \n" "\tor CANCEL to leave it unchanged" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1893 +#: src/slic3r/GUI/DoubleSlider.cpp:1918 msgid "Do you want to delete all saved tool changes?" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1895 +#: src/slic3r/GUI/DoubleSlider.cpp:1920 msgid "" "The last color change data was saved for a multi extruder printing with tool " "changes for whole print." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1896 +#: src/slic3r/GUI/DoubleSlider.cpp:1921 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "" @@ -1168,33 +1166,33 @@ msgstr "" msgid "Add extruder to sequence" msgstr "" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "" -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "" -#: src/slic3r/GUI/Field.cpp:170 +#: src/slic3r/GUI/Field.cpp:175 #, possible-c-format msgid "%s doesn't support percentage" msgstr "" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "" -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "" -#: src/slic3r/GUI/Field.cpp:235 +#: src/slic3r/GUI/Field.cpp:240 #, possible-c-format msgid "" "Do you mean %s%% instead of %s %s?\n" @@ -1202,7 +1200,7 @@ msgid "" "or NO if you are sure that %s %s is a correct value." msgstr "" -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "" @@ -1279,7 +1277,7 @@ msgid "Firmware image:" msgstr "" #: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1719 +#: src/slic3r/GUI/Tab.cpp:1723 msgid "Browse" msgstr "" @@ -1312,7 +1310,7 @@ msgid "Advanced: Output log" msgstr "" #: src/slic3r/GUI/FirmwareDialog.cpp:852 -#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "" @@ -1331,262 +1329,265 @@ msgstr "" msgid "Cancelling..." msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4568 msgid "Variable layer height" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:242 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:245 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:248 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:251 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:254 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:257 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:260 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:263 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:266 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:269 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:272 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 +#: src/slic3r/GUI/GLCanvas3D.cpp:273 msgid "Quality / Speed" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:282 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 msgid "Higher print quality versus higher print speed." msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:293 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:309 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:318 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:604 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:690 +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:691 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:692 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:693 +#: src/slic3r/GUI/GLCanvas3D.cpp:688 msgid "Some objects are not visible" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "" "An object outside the print area was detected\n" "Resolve the current problem to continue slicing" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 -#: src/slic3r/GUI/GLCanvas3D.cpp:987 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:960 +#: src/slic3r/GUI/GLCanvas3D.cpp:955 #, possible-c-format msgid "up to %.2f mm" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:964 +#: src/slic3r/GUI/GLCanvas3D.cpp:959 #, possible-c-format msgid "above %.2f mm" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:968 +#: src/slic3r/GUI/GLCanvas3D.cpp:963 #, possible-c-format msgid "%.2f - %.2f mm" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:995 +#: src/slic3r/GUI/GLCanvas3D.cpp:990 #, possible-c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +#: src/slic3r/GUI/GLCanvas3D.cpp:1300 msgid "Seq." msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1705 +#: src/slic3r/GUI/GLCanvas3D.cpp:1696 msgid "Variable layer height - Reset" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1713 +#: src/slic3r/GUI/GLCanvas3D.cpp:1704 msgid "Variable layer height - Adaptive" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1721 +#: src/slic3r/GUI/GLCanvas3D.cpp:1712 msgid "Variable layer height - Smooth all" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:2075 +#: src/slic3r/GUI/GLCanvas3D.cpp:2048 msgid "Mirror Object" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:2945 +#: src/slic3r/GUI/GLCanvas3D.cpp:2916 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 msgid "Gizmo-Move" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:3025 +#: src/slic3r/GUI/GLCanvas3D.cpp:2996 #: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 msgid "Gizmo-Rotate" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:3538 +#: src/slic3r/GUI/GLCanvas3D.cpp:3500 msgid "Move Object" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4042 msgid "Undo History" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4042 msgid "Redo History" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#: src/slic3r/GUI/GLCanvas3D.cpp:4060 #, possible-c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#: src/slic3r/GUI/GLCanvas3D.cpp:4060 #, possible-c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4516 +#: src/slic3r/GUI/GLCanvas3D.cpp:4462 msgid "Add..." msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/GLCanvas3D.cpp:4470 src/slic3r/GUI/GUI_ObjectList.cpp:1714 +#: src/slic3r/GUI/Plater.cpp:3909 src/slic3r/GUI/Plater.cpp:3931 +#: src/slic3r/GUI/Tab.cpp:3112 msgid "Delete" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/GLCanvas3D.cpp:4479 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4647 msgid "Delete all" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/GLCanvas3D.cpp:4488 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2732 msgid "Arrange" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4488 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4554 +#: src/slic3r/GUI/GLCanvas3D.cpp:4500 msgid "Copy" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4563 +#: src/slic3r/GUI/GLCanvas3D.cpp:4509 msgid "Paste" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 -#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/GLCanvas3D.cpp:4521 src/slic3r/GUI/Plater.cpp:3766 +#: src/slic3r/GUI/Plater.cpp:3778 src/slic3r/GUI/Plater.cpp:3918 msgid "Add instance" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/GLCanvas3D.cpp:4532 src/slic3r/GUI/Plater.cpp:3920 msgid "Remove instance" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4599 +#: src/slic3r/GUI/GLCanvas3D.cpp:4545 msgid "Split to objects" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4555 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/GLCanvas3D.cpp:4619 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 +#: src/slic3r/GUI/GLCanvas3D.cpp:4619 src/slic3r/GUI/GLCanvas3D.cpp:4652 msgid "Click right mouse button to open History" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4690 +#: src/slic3r/GUI/GLCanvas3D.cpp:4636 msgid "Next Undo action: %1%" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 +#: src/slic3r/GUI/GLCanvas3D.cpp:4652 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4722 +#: src/slic3r/GUI/GLCanvas3D.cpp:4668 msgid "Next Redo action: %1%" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:6659 +#: src/slic3r/GUI/GLCanvas3D.cpp:6593 msgid "Selection-Add from rectangle" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:6678 +#: src/slic3r/GUI/GLCanvas3D.cpp:6612 msgid "Selection-Remove from rectangle" msgstr "" @@ -1612,7 +1613,7 @@ msgid "Unsupported OpenGL version" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3393 msgid "Cut" msgstr "" @@ -1653,6 +1654,7 @@ msgid "Quality" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Closing distance" msgstr "" @@ -1694,19 +1696,19 @@ msgstr "" msgid "Delete drainage hole" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:798 msgid "Hollowing parameter change" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:870 msgid "Change drainage hole diameter" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:953 -msgid "Hollowing and drilling" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1040 msgid "Move drainage hole" msgstr "" @@ -1718,7 +1720,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Rotate" msgstr "" @@ -1726,7 +1728,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3451 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Scale" msgstr "" @@ -1828,7 +1830,7 @@ msgid "Are you sure you want to do it?" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Tab.cpp:3072 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "" @@ -2012,7 +2014,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 #: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 #: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/Tab.cpp:1969 src/slic3r/GUI/Tab.cpp:3649 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 #: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 @@ -2082,7 +2084,7 @@ msgstr "" msgid "The presets on the following tabs were modified" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2934 msgid "Discard changes and continue anyway?" msgstr "" @@ -2090,7 +2092,7 @@ msgstr "" msgid "Unsaved Presets" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2946 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" @@ -2098,8 +2100,8 @@ msgstr "" msgid "Please check and fix your object list." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 -#: src/slic3r/GUI/Tab.cpp:2944 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2291 +#: src/slic3r/GUI/Tab.cpp:2948 msgid "Attention!" msgstr "" @@ -2136,7 +2138,7 @@ msgid "Layers and Perimeters" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:246 #: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 #: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 @@ -2179,7 +2181,7 @@ msgid "Add support blocker" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1147 #: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 @@ -2189,7 +2191,7 @@ msgid "Speed" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1840 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 @@ -2205,8 +2207,8 @@ msgid "Extrusion Width" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 -#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 +#: src/slic3r/GUI/Plater.cpp:490 src/slic3r/GUI/Tab.cpp:3592 +#: src/slic3r/GUI/Tab.cpp:3593 src/libslic3r/PrintConfig.cpp:2605 #: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 #: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 #: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 @@ -2219,8 +2221,8 @@ msgid "Supports" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 -#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 +#: src/slic3r/GUI/Plater.cpp:630 src/slic3r/GUI/Tab.cpp:3624 +#: src/slic3r/GUI/Tab.cpp:3625 src/libslic3r/PrintConfig.cpp:2772 #: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 #: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 #: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 @@ -2230,8 +2232,8 @@ msgstr "" msgid "Pad" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 -#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3642 +#: src/slic3r/GUI/Tab.cpp:3643 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 #: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 #: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 @@ -2303,9 +2305,9 @@ msgid "Click the icon to change the object printable property" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3961 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4006 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 @@ -2327,7 +2329,7 @@ msgid "Rename Sub-object" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Instances to Separated Objects" msgstr "" @@ -2342,7 +2344,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:1180 #: src/slic3r/GUI/GUI_ObjectList.cpp:1528 #: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1845 #, possible-c-format msgid "Quick Add Settings (%s)" msgstr "" @@ -2405,285 +2407,277 @@ msgstr "" msgid "Add settings" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 msgid "Change type" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1595 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1607 msgid "Set as a Separated Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1607 msgid "Set as a Separated Objects" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1617 msgid "Printable" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1632 msgid "Rename" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1643 msgid "Fix through the Netfabb" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1653 src/slic3r/GUI/Plater.cpp:3944 msgid "Export as STL" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1660 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3950 src/slic3r/GUI/Plater.cpp:3912 msgid "Reload the selected volumes from disk" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1667 +msgid "Set extruder for selected items" +msgstr "" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1700 src/libslic3r/PrintConfig.cpp:325 msgid "Default" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 -msgid "Select new extruder for the object/part" -msgstr "" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1720 msgid "Scale to print volume" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1720 msgid "Scale the selected object to fit the print volume" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1789 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2047 msgid "Add Shape" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1875 msgid "Load Part" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1914 msgid "Error!" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1989 msgid "Add Generic Subobject" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2018 msgid "Generic" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2136 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2238 msgid "Last instance of an object cannot be deleted." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2148 msgid "Delete Settings" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2172 msgid "Delete All Instances from Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2188 msgid "Delete Height Range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2219 msgid "From Object List You can't delete the last solid part from object." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "Delete Subobject" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Delete Instance" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2266 src/slic3r/GUI/Plater.cpp:2956 msgid "" "The selected object couldn't be split because it contains only one part." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 msgid "Split to Parts" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2324 msgid "Add Layers" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2450 msgid "Group manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2462 msgid "Object manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2475 msgid "Object Settings to modify" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Part Settings to modify" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2484 msgid "Layer range Settings to modify" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2490 msgid "Part manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2496 msgid "Instance manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2503 msgid "Height ranges" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2503 msgid "Settings for height range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2689 msgid "Delete Selected Item" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2826 msgid "Delete Selected" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2921 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2939 msgid "Add Height Range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2999 msgid "Edit Height Range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3287 msgid "Selection-Remove from list" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3295 msgid "Selection-Add from list" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3413 msgid "Object or Instance" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Part" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3414 msgid "Layer" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3416 msgid "Unsupported selection" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 #, possible-c-format msgid "You started your selection with %s Item." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 #, possible-c-format msgid "In this mode you can select only other %s Items%s" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 msgid "of a current Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3426 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3501 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3542 msgid "You can't change a type of the last solid part of the object." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Modifier" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Support Enforcer" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Support Blocker" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3549 msgid "Select type of part" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3554 msgid "Change Part Type" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3799 msgid "Enter new name" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3799 msgid "Renaming" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 -#: src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3815 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3922 src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/Tab.cpp:3448 msgid "The supplied name is not valid;" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3816 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3923 src/slic3r/GUI/Tab.cpp:3445 msgid "the following characters are not allowed:" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 -msgid "Set extruder for selected items" -msgstr "" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 -msgid "Select extruder number for selected objects and/or parts" -msgstr "" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3965 msgid "Select extruder number:" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3966 msgid "This extruder will be set for selected items" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3991 msgid "Change Extruders" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4088 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4088 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "" @@ -2712,8 +2706,8 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 #: src/slic3r/GUI/Mouse3DController.cpp:321 -#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "" @@ -2802,117 +2796,117 @@ msgstr "" msgid "Change Option %s" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:220 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 #: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:228 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 -#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 #: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:233 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 #: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 #: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 #: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1113 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 #: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1193 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:257 +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:258 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:259 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "" @@ -2920,267 +2914,355 @@ msgstr "" msgid "ERROR: not enough resources to execute a new job." msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 -#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 -msgid "Export G-code" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Save project (3MF)" -msgstr "" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" +msgid "New project, clear plater" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 -msgid "(Re)slice" +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:116 -msgid "Select Plater Tab" +msgid "(Re)slice" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 -msgid "Select Print Settings Tab" +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:119 -msgid "Select Filament Settings Tab" +msgid "Import Config from ini/amf/3mf/gcode" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:120 -msgid "Select Printer Settings Tab" +msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 -msgid "Switch to 3D" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:886 +#: src/slic3r/GUI/Plater.cpp:5501 src/libslic3r/PrintConfig.cpp:3344 +msgid "Export G-code" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -msgid "Switch to Preview" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 -msgid "Preferences" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5502 +msgid "Send G-code" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +msgid "Delete selected" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 +msgid "Copy to clipboard" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 +msgid "Paste from clipboard" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 +msgid "Select Plater Tab" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +msgid "Select Print Settings Tab" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 +msgid "Select Filament Settings Tab" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +msgid "Select Printer Settings Tab" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +msgid "Switch to 3D" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +msgid "Switch to Preview" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 -msgid "Add Instance of the selected object" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 -msgid "Remove Instance of the selected object" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 -msgid "Show keyboard shortcuts list" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 -msgid "Select All objects" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 -msgid "Delete selected" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 -msgid "Copy to clipboard" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 -msgid "Paste from clipboard" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 -msgid "Gizmo move" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 -msgid "Gizmo scale" -msgstr "" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:146 -msgid "Gizmo rotate" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo cut" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 -msgid "Gizmo Place face on bed" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 -msgid "Gizmo SLA support points" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "" -"Press to activate selection rectangle\n" -"or to snap by 5% in Gizmo scale\n" -"or to snap by 1mm in Gizmo move" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "" -"Press to scale selection to fit print volume\n" -"in Gizmo scale" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "" -"Press to activate deselection rectangle\n" -"or to scale or rotate selected objects\n" -"around their own center" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Press to activate one direction scaling in Gizmo scale" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 -msgid "Change camera type (perspective, orthographic)" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 -msgid "Zoom to Bed" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Zoom in" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 -msgid "Zoom out" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 msgid "Show/Hide object/instance labels" msgstr "" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 +msgid "Preferences" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +msgid "Show keyboard shortcuts list" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 +msgid "Add Instance of the selected object" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 +msgid "Remove Instance of the selected object" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "" +"Press to select multiple object\n" +"or move multiple object with mouse" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:163 -msgid "Show/Hide 3Dconnexion devices settings dialog" +msgid "Press to activate deselection rectangle" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:164 -msgid "Unselect gizmo / Clear selection" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 -msgid "Plater Shortcuts" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 -msgid "Upper Layer" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 -msgid "Lower Layer" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Show/Hide (L)egend" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 -msgid "Preview Shortcuts" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 -msgid "Move current slider thumb Up" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 -msgid "Move current slider thumb Down" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 -msgid "Set upper thumb to current slider thumb" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 -msgid "Set lower thumb to current slider thumb" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 +msgid "Gizmo move" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +msgid "Gizmo scale" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +msgid "Gizmo rotate" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 +msgid "Gizmo cut" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +msgid "Gizmo Place face on bed" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 +msgid "Gizmo SLA support points" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 +msgid "Change camera type (perspective, orthographic)" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 +msgid "Zoom to Bed" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +msgid "Zoom in" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +msgid "Zoom out" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Show/Hide 3Dconnexion devices settings dialog" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 +msgid "Plater" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "" +"Press to to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +msgid "Press to activate one direction scaling in Gizmo scale" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:201 -msgid "Add color change marker for current layer" -msgstr "" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 -msgid "Delete color change marker for current layer" +msgid "Gizmos" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:204 -msgid "Layers Slider Shortcuts" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 +msgid "Upper Layer" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 +msgid "Lower Layer" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Tab.cpp:2390 +msgid "Preview" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 +msgid "Move current slider thumb Up" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 +msgid "Move current slider thumb Down" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 +msgid "Set upper thumb to current slider thumb" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 +msgid "Set lower thumb to current slider thumb" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 +msgid "Add color change marker for current layer" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 +msgid "Delete color change marker for current layer" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" msgstr "" #: src/slic3r/GUI/MainFrame.cpp:66 @@ -3193,10 +3275,6 @@ msgstr "" msgid "based on Slic3r" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:204 -msgid "Plater" -msgstr "" - #: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "" @@ -3221,7 +3299,7 @@ msgstr "" msgid "The selected project is no more available" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "" @@ -3278,7 +3356,7 @@ msgstr "" msgid "&Import" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" msgstr "" @@ -3286,7 +3364,7 @@ msgstr "" msgid "Export current plate as G-code" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" msgstr "" @@ -3475,7 +3553,7 @@ msgstr "" msgid "Show the print settings" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "" @@ -3578,224 +3656,223 @@ msgstr "" msgid "Right View" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show &labels" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show object/instance labels in 3D scene" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:694 +#: src/slic3r/GUI/MainFrame.cpp:692 #, possible-c-format msgid "%s &Website" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:695 +#: src/slic3r/GUI/MainFrame.cpp:693 #, possible-c-format msgid "Open the %s website in your browser" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 #, possible-c-format msgid "Report an issue on %s" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 #, possible-c-format msgid "&About %s" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:723 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:724 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:775 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:793 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 #, possible-c-format msgid "Save %s file as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:840 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3647 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:5085 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3650 msgid "Slicing" msgstr "" #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:851 +#: src/slic3r/GUI/MainFrame.cpp:849 #, possible-c-format msgid "Processing %s" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:874 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:876 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:891 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:913 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3438 msgid "Repair" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:927 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:1029 +#: src/slic3r/GUI/MainFrame.cpp:1027 #, possible-c-format msgid "%d presets successfully imported." msgstr "" -#: src/slic3r/GUI/Mouse3DController.cpp:291 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "" -#: src/slic3r/GUI/Mouse3DController.cpp:306 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "" -#: src/slic3r/GUI/Mouse3DController.cpp:313 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "" +#: src/slic3r/GUI/Mouse3DController.cpp:300 #: src/slic3r/GUI/Mouse3DController.cpp:317 -#: src/slic3r/GUI/Mouse3DController.cpp:337 -#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "" -#: src/slic3r/GUI/Mouse3DController.cpp:326 -#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Zoom" msgstr "" -#: src/slic3r/GUI/Mouse3DController.cpp:332 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "" @@ -3819,8 +3896,8 @@ msgstr "" msgid "Instance %d" msgstr "" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 -#: src/slic3r/GUI/Tab.cpp:3585 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3500 +#: src/slic3r/GUI/Tab.cpp:3588 msgid "Layers" msgstr "" @@ -3828,624 +3905,616 @@ msgstr "" msgid "Range" msgstr "" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" msgstr "" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" msgstr "" -#: src/slic3r/GUI/Plater.cpp:163 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "" -#: src/slic3r/GUI/Plater.cpp:164 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "" -#: src/slic3r/GUI/Plater.cpp:165 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "" -#: src/slic3r/GUI/Plater.cpp:168 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "" -#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1224 msgid "Used Filament (m)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:238 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:239 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:240 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:241 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 -#: src/slic3r/GUI/Plater.cpp:1255 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1211 +#: src/slic3r/GUI/Plater.cpp:1253 msgid "Estimated printing time" msgstr "" -#: src/slic3r/GUI/Plater.cpp:243 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "" -#: src/slic3r/GUI/Plater.cpp:340 +#: src/slic3r/GUI/Plater.cpp:338 msgid "Click to edit preset" msgstr "" -#: src/slic3r/GUI/Plater.cpp:495 +#: src/slic3r/GUI/Plater.cpp:493 msgid "Select what kind of support do you need" msgstr "" -#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 +#: src/slic3r/GUI/Plater.cpp:495 src/libslic3r/PrintConfig.cpp:1901 #: src/libslic3r/PrintConfig.cpp:2665 msgid "Support on build plate only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:619 msgid "For support enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:499 +#: src/slic3r/GUI/Plater.cpp:497 msgid "Everywhere" msgstr "" -#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:529 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "" -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:531 msgid "" "This flag enables the brim that will be printed around each object on the " "first layer." msgstr "" -#: src/slic3r/GUI/Plater.cpp:541 +#: src/slic3r/GUI/Plater.cpp:539 msgid "Purging volumes" msgstr "" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:633 msgid "Select what kind of pad do you need" msgstr "" -#: src/slic3r/GUI/Plater.cpp:637 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Below object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:638 +#: src/slic3r/GUI/Plater.cpp:636 msgid "Around object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:810 msgid "Print settings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Plater.cpp:811 src/slic3r/GUI/Tab.cpp:1427 #: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:812 msgid "SLA print settings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Preset.cpp:1474 msgid "SLA material" msgstr "" -#: src/slic3r/GUI/Plater.cpp:816 +#: src/slic3r/GUI/Plater.cpp:814 msgid "Printer" msgstr "" -#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/Plater.cpp:873 src/slic3r/GUI/Plater.cpp:5502 msgid "Send to printer" msgstr "" -#: src/slic3r/GUI/Plater.cpp:876 +#: src/slic3r/GUI/Plater.cpp:874 msgid "Remove device" msgstr "" -#: src/slic3r/GUI/Plater.cpp:877 +#: src/slic3r/GUI/Plater.cpp:875 msgid "Export to SD card / Flash drive" msgstr "" -#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5140 +#: src/slic3r/GUI/Plater.cpp:887 src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:5088 msgid "Slice now" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1039 +#: src/slic3r/GUI/Plater.cpp:1037 msgid "Hold Shift to Slice & Export G-code" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1149 +#: src/slic3r/GUI/Plater.cpp:1147 #, possible-c-format msgid "%d (%d shells)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1154 +#: src/slic3r/GUI/Plater.cpp:1152 #, possible-c-format msgid "Auto-repaired (%d errors)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1157 +#: src/slic3r/GUI/Plater.cpp:1155 #, possible-c-format msgid "" "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d " "facets reversed, %d backwards edges" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1167 +#: src/slic3r/GUI/Plater.cpp:1165 msgid "Yes" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1188 +#: src/slic3r/GUI/Plater.cpp:1186 msgid "Used Material (ml)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1189 msgid "object(s)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1189 msgid "supports and pad" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1226 src/slic3r/GUI/Plater.cpp:1240 msgid "objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1226 src/slic3r/GUI/Plater.cpp:1240 msgid "wipe tower" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 +#: src/slic3r/GUI/Plater.cpp:1238 src/libslic3r/PrintConfig.cpp:760 #: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 msgid "Cost" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1258 +#: src/slic3r/GUI/Plater.cpp:1256 msgid "normal mode" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1260 src/slic3r/GUI/Plater.cpp:1269 #: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1267 +#: src/slic3r/GUI/Plater.cpp:1265 msgid "stealth mode" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1375 +#: src/slic3r/GUI/Plater.cpp:1373 msgid "Load File" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1379 +#: src/slic3r/GUI/Plater.cpp:1377 msgid "Load Files" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2135 +#: src/slic3r/GUI/Plater.cpp:2129 msgid "New Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2257 +#: src/slic3r/GUI/Plater.cpp:2251 msgid "Loading" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2267 +#: src/slic3r/GUI/Plater.cpp:2261 #, possible-c-format msgid "Processing input file %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2295 +#: src/slic3r/GUI/Plater.cpp:2289 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:2290 src/slic3r/GUI/Tab.cpp:2947 msgid "Please check your object list before preset changing." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2341 +#: src/slic3r/GUI/Plater.cpp:2335 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should I consider\n" "this file as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:2338 src/slic3r/GUI/Plater.cpp:2391 msgid "Multi-part object detected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2351 +#: src/slic3r/GUI/Plater.cpp:2345 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2352 +#: src/slic3r/GUI/Plater.cpp:2346 msgid "Detected advanced data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2374 +#: src/slic3r/GUI/Plater.cpp:2368 #, possible-c-format msgid "" "You can't to add the object(s) from %s because of one or some of them " "is(are) multi-part" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2394 +#: src/slic3r/GUI/Plater.cpp:2388 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" "these files to represent a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2410 +#: src/slic3r/GUI/Plater.cpp:2404 msgid "Loaded" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2512 +#: src/slic3r/GUI/Plater.cpp:2506 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2513 +#: src/slic3r/GUI/Plater.cpp:2507 msgid "Object too large?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2569 msgid "Export STL file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2576 msgid "Export AMF file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Save file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2594 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Export OBJ file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2696 +#: src/slic3r/GUI/Plater.cpp:2690 msgid "Delete Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2707 +#: src/slic3r/GUI/Plater.cpp:2701 msgid "Reset Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2744 +#: src/slic3r/GUI/Plater.cpp:2738 msgid "Hollow" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2751 +#: src/slic3r/GUI/Plater.cpp:2745 msgid "Optimize Rotation" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2791 msgid "Arranging" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2825 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Arranging canceled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2826 +#: src/slic3r/GUI/Plater.cpp:2820 msgid "Arranging done." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2842 +#: src/slic3r/GUI/Plater.cpp:2836 msgid "Searching for optimal orientation" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2875 +#: src/slic3r/GUI/Plater.cpp:2869 msgid "Orientation search canceled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2876 +#: src/slic3r/GUI/Plater.cpp:2870 msgid "Orientation found." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2900 msgid "Indexing hollowed object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2910 +#: src/slic3r/GUI/Plater.cpp:2904 msgid "Hollowing cancelled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2911 +#: src/slic3r/GUI/Plater.cpp:2905 msgid "Hollowing done." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2913 +#: src/slic3r/GUI/Plater.cpp:2907 msgid "Hollowing failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2954 +#: src/slic3r/GUI/Plater.cpp:2948 msgid "" "The selected object can't be split because it contains more than one volume/" "material." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2965 +#: src/slic3r/GUI/Plater.cpp:2959 msgid "Split to Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3090 +#: src/slic3r/GUI/Plater.cpp:3084 msgid "Invalid data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:3093 msgid "Ready to slice" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3131 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3154 +#: src/slic3r/GUI/Plater.cpp:3148 msgid "Another export job is currently running." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3272 +#: src/slic3r/GUI/Plater.cpp:3264 msgid "Please select the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3299 msgid "It is not allowed to change the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3299 msgid "Do you want to retry" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3328 +#: src/slic3r/GUI/Plater.cpp:3317 msgid "Reload from: " msgstr "" -#: src/slic3r/GUI/Plater.cpp:3436 +#: src/slic3r/GUI/Plater.cpp:3406 msgid "Unable to reload:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3441 +#: src/slic3r/GUI/Plater.cpp:3411 msgid "Error during reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3461 +#: src/slic3r/GUI/Plater.cpp:3430 msgid "Reload all from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3482 +#: src/slic3r/GUI/Plater.cpp:3451 msgid "Fix Throught NetFabb" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3673 +#: src/slic3r/GUI/Plater.cpp:3642 msgid "Export failed" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3647 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Plater.cpp:3909 src/slic3r/GUI/Plater.cpp:3931 msgid "Remove the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/Plater.cpp:3918 msgid "Add one more instance of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/Plater.cpp:3920 msgid "Remove one instance of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3922 msgid "Set number of instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3922 msgid "Change the number of instances of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/Plater.cpp:3941 msgid "Reload the selected object from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Export the selected object as STL file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3973 msgid "Along X axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3973 msgid "Mirror the selected object along the X axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Along Y axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Mirror the selected object along the Y axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3977 msgid "Along Z axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3977 msgid "Mirror the selected object along the Z axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:3980 msgid "Mirror" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:3980 msgid "Mirror the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4023 +#: src/slic3r/GUI/Plater.cpp:3992 msgid "To objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:3992 src/slic3r/GUI/Plater.cpp:4012 msgid "Split the selected object into individual objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4025 +#: src/slic3r/GUI/Plater.cpp:3994 msgid "To parts" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 +#: src/slic3r/GUI/Plater.cpp:3994 src/slic3r/GUI/Plater.cpp:4026 msgid "Split the selected object into individual sub-parts" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 -#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 +#: src/slic3r/GUI/Plater.cpp:3997 src/slic3r/GUI/Plater.cpp:4012 +#: src/slic3r/GUI/Plater.cpp:4026 src/libslic3r/PrintConfig.cpp:3462 msgid "Split" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4028 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Split the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4018 msgid "Optimize orientation" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4018 msgid "Optimize the rotation of the object for better print results." msgstr "" -#: src/slic3r/GUI/Plater.cpp:4108 +#: src/slic3r/GUI/Plater.cpp:4075 msgid "3D editor view" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 -msgid "Preview" -msgstr "" - -#: src/slic3r/GUI/Plater.cpp:4413 +#: src/slic3r/GUI/Plater.cpp:4378 msgid "" "%1% printer was active at the time the target Undo / Redo snapshot was " "taken. Switching to %1% printer requires reloading of %1% presets." msgstr "" -#: src/slic3r/GUI/Plater.cpp:4588 +#: src/slic3r/GUI/Plater.cpp:4553 msgid "Load Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4616 +#: src/slic3r/GUI/Plater.cpp:4581 msgid "Import Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4620 +#: src/slic3r/GUI/Plater.cpp:4585 msgid "Import Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/Plater.cpp:4647 msgid "All objects will be removed, continue?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4692 +#: src/slic3r/GUI/Plater.cpp:4655 msgid "Delete Selected Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4700 +#: src/slic3r/GUI/Plater.cpp:4663 msgid "Increase Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4735 +#: src/slic3r/GUI/Plater.cpp:4698 msgid "Decrease Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4771 +#: src/slic3r/GUI/Plater.cpp:4734 #, possible-c-format msgid "Set numbers of copies to %d" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4801 +#: src/slic3r/GUI/Plater.cpp:4764 msgid "Cut by Plane" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4817 msgid "Save G-code file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4817 msgid "Save SL1 file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5001 +#: src/slic3r/GUI/Plater.cpp:4963 #, possible-c-format msgid "STL file exported to %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5022 +#: src/slic3r/GUI/Plater.cpp:4980 #, possible-c-format msgid "AMF file exported to %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5025 +#: src/slic3r/GUI/Plater.cpp:4983 #, possible-c-format msgid "Error exporting AMF file %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5068 +#: src/slic3r/GUI/Plater.cpp:5016 #, possible-c-format msgid "3MF file exported to %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5073 +#: src/slic3r/GUI/Plater.cpp:5021 #, possible-c-format msgid "Error exporting 3MF file %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5555 +#: src/slic3r/GUI/Plater.cpp:5501 msgid "Export" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5556 -msgid "Send G-code" -msgstr "" - -#: src/slic3r/GUI/Plater.cpp:5640 +#: src/slic3r/GUI/Plater.cpp:5586 msgid "Paste From Clipboard" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 -#: src/slic3r/GUI/Tab.cpp:2038 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1798 +#: src/slic3r/GUI/Tab.cpp:2042 msgid "General" msgstr "" @@ -4487,17 +4556,17 @@ msgid "" "notification mechanisms, no automatic installation is done." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:73 +#: src/slic3r/GUI/Preferences.cpp:72 msgid "Export sources full pathnames to 3mf and amf" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:75 +#: src/slic3r/GUI/Preferences.cpp:74 msgid "" "If enabled, allows the Reload from disk command to automatically find and " "load the files when invoked." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "" "If enabled, Slic3r downloads updates of built-in system presets in the " "background. These updates are downloaded into a separate temporary location. " @@ -4505,79 +4574,79 @@ msgid "" "startup." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:89 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:91 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "" "Suppress \" - default - \" presets in the Print / Filament / Printer " "selections once there are any other valid presets available." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:97 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:99 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "" "When checked, the print and filament presets are shown in the preset editor " "even if they are marked as incompatible with the active printer" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:106 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:108 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " "experiencing 3D performance problems, disabling this option may help." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:115 +#: src/slic3r/GUI/Preferences.cpp:113 msgid "Camera" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:121 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "" "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:129 +#: src/slic3r/GUI/Preferences.cpp:126 msgid "Use free camera" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:131 +#: src/slic3r/GUI/Preferences.cpp:128 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:137 +#: src/slic3r/GUI/Preferences.cpp:133 msgid "GUI" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:147 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:149 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:176 +#: src/slic3r/GUI/Preferences.cpp:172 #, possible-c-format msgid "You need to restart %s to make the changes effective." msgstr "" -#: src/slic3r/GUI/Preferences.cpp:226 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:241 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "" @@ -4725,37 +4794,43 @@ msgstr "" msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:269 +#: src/slic3r/GUI/PresetHints.cpp:270 #, possible-c-format msgid "%d lines: %.2f mm" msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:300 +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "" +"Recommended object thin wall thickness: Not available due to excessively " +"small extrusion width." +msgstr "" + +#: src/slic3r/GUI/PresetHints.cpp:304 msgid "" "Top / bottom shell thickness hint: Not available due to invalid layer height." msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:313 +#: src/slic3r/GUI/PresetHints.cpp:317 msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:316 +#: src/slic3r/GUI/PresetHints.cpp:320 msgid "Minimum top shell thickness is %1% mm." msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:319 +#: src/slic3r/GUI/PresetHints.cpp:323 msgid "Top is open." msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:332 +#: src/slic3r/GUI/PresetHints.cpp:336 msgid "Bottom shell is %1% mm thick for layer height %2% mm." msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:335 +#: src/slic3r/GUI/PresetHints.cpp:339 msgid "Minimum bottom shell thickness is %1% mm." msgstr "" -#: src/slic3r/GUI/PresetHints.cpp:338 +#: src/slic3r/GUI/PresetHints.cpp:342 msgid "Bottom is open." msgstr "" @@ -5003,7 +5078,7 @@ msgstr "" msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3586 msgid "Layers and perimeters" msgstr "" @@ -5087,7 +5162,7 @@ msgstr "" msgid "Other" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3653 msgid "Output options" msgstr "" @@ -5099,7 +5174,7 @@ msgstr "" msgid "Extruder clearance (mm)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3654 msgid "Output file" msgstr "" @@ -5109,21 +5184,21 @@ msgstr "" #: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 #: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 -#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 -#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 +#: src/slic3r/GUI/Tab.cpp:2014 src/slic3r/GUI/Tab.cpp:2015 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3523 src/slic3r/GUI/Tab.cpp:3524 msgid "Notes" msgstr "" #: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:2021 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3531 src/slic3r/GUI/Tab.cpp:3659 msgid "Dependencies" msgstr "" #: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 -#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 +#: src/slic3r/GUI/Tab.cpp:2022 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3532 src/slic3r/GUI/Tab.cpp:3660 msgid "Profile dependencies" msgstr "" @@ -5132,7 +5207,7 @@ msgid "Filament Overrides" msgstr "" #: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2366 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "" @@ -5181,16 +5256,16 @@ msgstr "" msgid "Ramming settings" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1977 msgid "Custom G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1978 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1984 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "" @@ -5199,7 +5274,7 @@ msgstr "" msgid "Volumetric flow hints not available" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1917 msgid "Test" msgstr "" @@ -5207,25 +5282,25 @@ msgstr "" msgid "Could not get a valid Printer Host reference" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1930 msgid "Success!" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1713 +#: src/slic3r/GUI/Tab.cpp:1715 msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1726 +#: src/slic3r/GUI/Tab.cpp:1730 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1731 msgid "Open CA certificate file" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1755 +#: src/slic3r/GUI/Tab.cpp:1759 #, possible-c-format msgid "" "HTTPS CA File:\n" @@ -5235,24 +5310,24 @@ msgid "" "Store / Keychain." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 +#: src/slic3r/GUI/Tab.cpp:1799 src/slic3r/GUI/Tab.cpp:2043 msgid "Size and coordinates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 -#: src/slic3r/GUI/Tab.cpp:3160 +#: src/slic3r/GUI/Tab.cpp:1804 src/slic3r/GUI/Tab.cpp:2048 +#: src/slic3r/GUI/Tab.cpp:3164 msgid "Set" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1832 +#: src/slic3r/GUI/Tab.cpp:1836 msgid "Capabilities" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1841 msgid "Number of extruders of the printer." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1865 +#: src/slic3r/GUI/Tab.cpp:1869 msgid "" "Single Extruder Multi Material is selected, \n" "and all extruders must have the same diameter.\n" @@ -5260,72 +5335,72 @@ msgid "" "nozzle diameter value?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/slic3r/GUI/Tab.cpp:1872 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1902 msgid "USB/Serial connection" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1903 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1908 msgid "Rescan serial ports" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1930 msgid "Connection to printer works correctly." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1929 +#: src/slic3r/GUI/Tab.cpp:1933 msgid "Connection failed." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 +#: src/slic3r/GUI/Tab.cpp:1946 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1990 src/libslic3r/PrintConfig.cpp:143 msgid "Before layer change G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1996 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2002 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2004 +#: src/slic3r/GUI/Tab.cpp:2008 msgid "Between objects G-code (for sequential printing)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2076 +#: src/slic3r/GUI/Tab.cpp:2080 msgid "Display" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:2095 msgid "Tilt" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2092 +#: src/slic3r/GUI/Tab.cpp:2096 msgid "Tilt time" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:3507 msgid "Corrections" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3503 msgid "Exposure" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -5333,175 +5408,175 @@ msgstr "" msgid "Machine limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2198 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2199 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2213 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2218 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2225 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2230 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2303 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2334 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "" "This is a single extruder multimaterial printer, diameters of all extruders " "will be set to the new value. Do you want to proceed?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2358 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2363 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2382 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " "setups)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2571 +#: src/slic3r/GUI/Tab.cpp:2575 msgid "" "The Wipe option is not available when using the Firmware Retraction mode.\n" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2573 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2903 +#: src/slic3r/GUI/Tab.cpp:2907 #, possible-c-format msgid "Default preset (%s)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2904 +#: src/slic3r/GUI/Tab.cpp:2908 #, possible-c-format msgid "Preset (%s)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2921 +#: src/slic3r/GUI/Tab.cpp:2925 msgid "has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2924 +#: src/slic3r/GUI/Tab.cpp:2928 msgid "is not compatible with printer" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2929 msgid "is not compatible with print profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "and it has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2935 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3033 msgctxt "PresetName" msgid "%1% - Copy" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3052 +#: src/slic3r/GUI/Tab.cpp:3056 msgid "The supplied name is empty. It can't be saved." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3057 +#: src/slic3r/GUI/Tab.cpp:3061 msgid "Cannot overwrite a system profile." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3065 msgid "Cannot overwrite an external profile." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3066 +#: src/slic3r/GUI/Tab.cpp:3070 msgid "Preset with name \"%1%\" already exists." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3071 msgid "Replace?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3109 msgid "remove" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3109 msgid "delete" msgstr "" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3107 +#: src/slic3r/GUI/Tab.cpp:3111 msgid "Are you sure you want to %1% the selected preset?" msgstr "" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3110 +#: src/slic3r/GUI/Tab.cpp:3114 msgid "%1% Preset" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3240 msgid "LOCKED LOCK" msgstr "" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3242 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3244 msgid "UNLOCKED LOCK" msgstr "" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 +#: src/slic3r/GUI/Tab.cpp:3246 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -5509,23 +5584,23 @@ msgid "" "to the system (or default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3247 +#: src/slic3r/GUI/Tab.cpp:3251 msgid "WHITE BULLET" msgstr "" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3249 +#: src/slic3r/GUI/Tab.cpp:3253 msgid "" "for the left button: \tindicates a non-system (or non-default) preset,\n" "for the right button: \tindicates that the settings hasn't been modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "BACK ARROW" msgstr "" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3254 +#: src/slic3r/GUI/Tab.cpp:3258 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -5533,13 +5608,13 @@ msgid "" "to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3266 +#: src/slic3r/GUI/Tab.cpp:3270 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -5547,17 +5622,17 @@ msgid "" "default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3269 +#: src/slic3r/GUI/Tab.cpp:3273 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3276 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3274 +#: src/slic3r/GUI/Tab.cpp:3278 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -5565,26 +5640,26 @@ msgid "" "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3284 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3281 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" "Click to reset current value to the system (or default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3291 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3288 +#: src/slic3r/GUI/Tab.cpp:3292 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -5592,36 +5667,36 @@ msgid "" msgstr "" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3405 #, possible-c-format msgid "Save %s as:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:3449 msgid "the following suffix is not allowed:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3453 msgid "The supplied name is not available." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 +#: src/slic3r/GUI/Tab.cpp:3466 src/slic3r/GUI/Tab.cpp:3468 msgid "Material" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3593 +#: src/slic3r/GUI/Tab.cpp:3596 msgid "Support head" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3601 msgid "Support pillar" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3612 +#: src/slic3r/GUI/Tab.cpp:3615 msgid "Connection of the support sticks and junctions" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3620 msgid "Automatic generation" msgstr "" @@ -5707,7 +5782,7 @@ msgid "%s incompatibility" msgstr "" #: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Configuration update is necessary to install" +msgid "Is necessary to install a configuration update. " msgstr "" #: src/slic3r/GUI/UpdateDialogs.cpp:151 @@ -5946,7 +6021,7 @@ msgid "Mesh repair failed." msgstr "" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:378 msgid "Loading repaired model" msgstr "" @@ -5964,49 +6039,48 @@ msgstr "" msgid "Exporting model..." msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:369 -#: src/slic3r/Utils/FixModelByWin10.cpp:374 +#: src/slic3r/Utils/FixModelByWin10.cpp:368 msgid "Export of a temporary 3mf file failed" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:390 +#: src/slic3r/Utils/FixModelByWin10.cpp:383 msgid "Import of the repaired 3mf file failed" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:392 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Repaired 3MF file does not contain any object" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:394 +#: src/slic3r/Utils/FixModelByWin10.cpp:387 msgid "Repaired 3MF file contains more than one object" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:396 +#: src/slic3r/Utils/FixModelByWin10.cpp:389 msgid "Repaired 3MF file does not contain any volume" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:398 +#: src/slic3r/Utils/FixModelByWin10.cpp:391 msgid "Repaired 3MF file contains more than one volume" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:407 +#: src/slic3r/Utils/FixModelByWin10.cpp:400 msgid "Model repair finished" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:413 +#: src/slic3r/Utils/FixModelByWin10.cpp:406 msgid "Model repair canceled" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 msgid "Model repaired successfully" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model Repair by the Netfabb service" msgstr "" -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model repair failed:" msgstr "" @@ -6213,7 +6287,7 @@ msgstr "" msgid "Mixed" msgstr "" -#: src/libslic3r/Flow.cpp:55 +#: src/libslic3r/Flow.cpp:61 msgid "" "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." msgstr "" @@ -9286,7 +9360,7 @@ msgid "Hollow out a model to have an empty interior" msgstr "" #: src/libslic3r/PrintConfig.cpp:2906 -msgid "Hollowing thickness" +msgid "Wall thickness" msgstr "" #: src/libslic3r/PrintConfig.cpp:2908 @@ -9294,7 +9368,7 @@ msgid "Minimum wall thickness of a hollowed model." msgstr "" #: src/libslic3r/PrintConfig.cpp:2916 -msgid "Hollowing accuracy" +msgid "Accuracy" msgstr "" #: src/libslic3r/PrintConfig.cpp:2918 @@ -9303,259 +9377,264 @@ msgid "" "artifacts." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2925 -msgid "Hollowing closing distance" +#: src/libslic3r/PrintConfig.cpp:2928 +msgid "" +"Hollowing is done in two steps: first, an imaginary interior is calculated " +"deeper (offset plus the closing distance) in the object and then it's " +"inflated back to the specified offset. A greater closing distance makes the " +"interior more rounded. At zero, the interior will resemble the exterior the " +"most." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3305 +#: src/libslic3r/PrintConfig.cpp:3311 msgid "Export OBJ" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3306 +#: src/libslic3r/PrintConfig.cpp:3312 msgid "Export the model(s) as OBJ." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3317 +#: src/libslic3r/PrintConfig.cpp:3323 msgid "Export SLA" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3318 +#: src/libslic3r/PrintConfig.cpp:3324 msgid "Slice the model and export SLA printing layers as PNG." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3329 msgid "Export 3MF" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3330 msgid "Export the model(s) as 3MF." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3328 +#: src/libslic3r/PrintConfig.cpp:3334 msgid "Export AMF" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3335 msgid "Export the model(s) as AMF." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3333 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export STL" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3340 msgid "Export the model(s) as STL." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3345 msgid "Slice the model and export toolpaths as G-code." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3344 +#: src/libslic3r/PrintConfig.cpp:3350 msgid "Slice" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3351 msgid "" "Slice the model as FFF or SLA based on the printer_technology configuration " "value." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3356 msgid "Help" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3357 msgid "Show this help." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3362 msgid "Help (FFF options)" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3363 msgid "Show the full list of print/G-code configuration options." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3367 msgid "Help (SLA options)" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3368 msgid "Show the full list of SLA print configuration options." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Output Model Info" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3373 msgid "Write information about the model to the console." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3371 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Save config file" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3378 msgid "Save configuration to the specified file." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3382 +#: src/libslic3r/PrintConfig.cpp:3388 msgid "Align XY" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3389 msgid "Align the model to the given point." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3394 msgid "Cut model at the given Z." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3409 +#: src/libslic3r/PrintConfig.cpp:3415 msgid "Center" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3410 +#: src/libslic3r/PrintConfig.cpp:3416 msgid "Center the print around the given center." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3414 +#: src/libslic3r/PrintConfig.cpp:3420 msgid "Don't arrange" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3421 msgid "" "Do not rearrange the given models before merging and keep their original XY " "coordinates." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3418 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Duplicate" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3419 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Multiply copies by this factor." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3423 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Duplicate by grid" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Multiply copies by creating a grid." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3427 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Merge" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3428 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "" "Arrange the supplied models in a plate and merge them in a single model in " "order to perform actions once." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "" "Try to repair any non-manifold meshes (this option is implicitly added " "whenever we need to slice the model to perform the requested action)." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3437 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Rotation angle around the Z axis in degrees." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3447 msgid "Rotate around X" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Rotation angle around the X axis in degrees." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3446 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotate around Y" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3453 msgid "Rotation angle around the Y axis in degrees." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3458 msgid "Scaling factor or percentage." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3463 msgid "" "Detect unconnected parts in the given model(s) and split them into separate " "objects." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3460 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale to Fit" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3461 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scale to fit the given volume." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3470 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Ignore non-existent config files" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3471 +#: src/libslic3r/PrintConfig.cpp:3477 msgid "Do not fail if a file supplied to --load does not exist." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3474 +#: src/libslic3r/PrintConfig.cpp:3480 msgid "Load config file" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3475 +#: src/libslic3r/PrintConfig.cpp:3481 msgid "" "Load configuration from the specified file. It can be used more than once to " "load options from multiple files." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3478 +#: src/libslic3r/PrintConfig.cpp:3484 msgid "Output File" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3479 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "" "The file where the output will be written (if not specified, it will be " "based on the input file)." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3489 +#: src/libslic3r/PrintConfig.cpp:3495 msgid "Data directory" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3490 +#: src/libslic3r/PrintConfig.cpp:3496 msgid "" "Load and store settings at the given directory. This is useful for " "maintaining different profiles or including configurations from a network " "storage." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3493 +#: src/libslic3r/PrintConfig.cpp:3499 msgid "Logging level" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3494 +#: src/libslic3r/PrintConfig.cpp:3500 msgid "" "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" "trace\n" "For example. loglevel=2 logs fatal, error and warning level messages." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/libslic3r/PrintConfig.cpp:3506 msgid "Render with a software renderer" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3501 +#: src/libslic3r/PrintConfig.cpp:3507 msgid "" "Render with a software renderer. The bundled MESA software renderer is " "loaded instead of the default OpenGL driver." diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index 8c44e9b3fc..907fae377d 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -1008,7 +1008,7 @@ wxString Control::get_tooltip(int tick/*=-1*/) tick_code_it->gcode == ToolChangeCode ? from_u8((boost::format(_utf8(L("Extruder (tool) is changed to Extruder \"%1%\""))) % tick_code_it->extruder ).str()) : - from_u8((boost::format(_utf8(L("\"%1%\""))) % tick_code_it->gcode ).str()) ; + tick_code_it->gcode; // If tick is marked as a conflict (exclamation icon), // we should to explain why @@ -1894,8 +1894,8 @@ bool Control::check_ticks_changed_event(const std::string& gcode) return true; wxString message = (m_ticks.mode == t_mode::SingleExtruder ? - _(L("The last color change data was saved for a single extruder printer profile.")) : - _(L("The last color change data was saved for a multiple extruder printer profile.")) + _(L("The last color change data was saved for a single extruder printing.")) : + _(L("The last color change data was saved for a multi extruder printing.")) ) + "\n" + _(L("Your current changes will delete all saved color changes.")) + "\n\n\t" + _(L("Are you sure you want to continue?")); From 25d6818fc7351ff008674adb8ff15e9522246764 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 18 Feb 2020 14:13:48 +0100 Subject: [PATCH 19/91] Fix of Opening saved project removes Print Host settings #3655 Octoprint Settings when Opening a .3MF file #3244 When loading a configuration file (from AMF, 3MF, .ini or .gcode), and if the host settings ("print_host", "printhost_apikey", "printhost_cafile") in the configuration file is empty, then the config is considered to be anonymized, and these anonymized keys are loaded from the referenced "derived from" profile, if it exists in user's PrusaSlicer configuration directory. We are aware that this is a patch work and a better long term solution is to separate physical printer settings from logical printer settings, but this is a good enough solution for PrusaSlicer 2.2.0 release. --- src/libslic3r/Config.hpp | 1 + src/slic3r/GUI/Preset.cpp | 64 +++++++++++++++++++++++++++++++++------ 2 files changed, 56 insertions(+), 9 deletions(-) diff --git a/src/libslic3r/Config.hpp b/src/libslic3r/Config.hpp index 1258cc3f13..44d081771e 100644 --- a/src/libslic3r/Config.hpp +++ b/src/libslic3r/Config.hpp @@ -686,6 +686,7 @@ public: ConfigOption* clone() const override { return new ConfigOptionString(*this); } ConfigOptionString& operator=(const ConfigOption *opt) { this->set(opt); return *this; } bool operator==(const ConfigOptionString &rhs) const { return this->value == rhs.value; } + bool empty() const { return this->value.empty(); } std::string serialize() const override { diff --git a/src/slic3r/GUI/Preset.cpp b/src/slic3r/GUI/Preset.cpp index 6f379aa393..b48d74aa19 100644 --- a/src/slic3r/GUI/Preset.cpp +++ b/src/slic3r/GUI/Preset.cpp @@ -683,19 +683,51 @@ Preset& PresetCollection::load_preset(const std::string &path, const std::string return this->load_preset(path, name, std::move(cfg), select); } -static bool profile_print_params_same(const DynamicPrintConfig &cfg1, const DynamicPrintConfig &cfg2) +enum class ProfileHostParams { - t_config_option_keys diff = cfg1.diff(cfg2); + Same, + Different, + Anonymized, +}; + +static ProfileHostParams profile_host_params_same_or_anonymized(const DynamicPrintConfig &cfg_old, const DynamicPrintConfig &cfg_new) +{ + auto opt_print_host_old = cfg_old.option("print_host"); + auto opt_printhost_apikey_old = cfg_old.option("printhost_apikey"); + auto opt_printhost_cafile_old = cfg_old.option("printhost_cafile"); + + auto opt_print_host_new = cfg_new.option("print_host"); + auto opt_printhost_apikey_new = cfg_new.option("printhost_apikey"); + auto opt_printhost_cafile_new = cfg_new.option("printhost_cafile"); + + // If the new print host data is undefined, use the old data. + bool new_print_host_undefined = (opt_print_host_new == nullptr || opt_print_host_new ->empty()) && + (opt_printhost_apikey_new == nullptr || opt_printhost_apikey_new ->empty()) && + (opt_printhost_cafile_new == nullptr || opt_printhost_cafile_new ->empty()); + if (new_print_host_undefined) + return ProfileHostParams::Anonymized; + + auto opt_same = [](const ConfigOptionString *l, const ConfigOptionString *r) { + return ((l == nullptr || l->empty()) && (r == nullptr || r->empty())) || + (l != nullptr && r != nullptr && l->value == r->value); + }; + return (opt_same(opt_print_host_old, opt_print_host_new) && opt_same(opt_printhost_apikey_old, opt_printhost_apikey_new) && + opt_same(opt_printhost_cafile_old, opt_printhost_cafile_new)) ? ProfileHostParams::Same : ProfileHostParams::Different; +} + +static bool profile_print_params_same(const DynamicPrintConfig &cfg_old, const DynamicPrintConfig &cfg_new) +{ + t_config_option_keys diff = cfg_old.diff(cfg_new); // Following keys are used by the UI, not by the slicing core, therefore they are not important // when comparing profiles for equality. Ignore them. for (const char *key : { "compatible_prints", "compatible_prints_condition", "compatible_printers", "compatible_printers_condition", "inherits", "print_settings_id", "filament_settings_id", "sla_print_settings_id", "sla_material_settings_id", "printer_settings_id", "printer_model", "printer_variant", "default_print_profile", "default_filament_profile", "default_sla_print_profile", "default_sla_material_profile", - "printhost_apikey", "printhost_cafile" }) + "print_host", "printhost_apikey", "printhost_cafile" }) diff.erase(std::remove(diff.begin(), diff.end(), key), diff.end()); // Preset with the same name as stored inside the config exists. - return diff.empty(); + return diff.empty() && profile_host_params_same_or_anonymized(cfg_old, cfg_new) != ProfileHostParams::Different; } // Load a preset from an already parsed config file, insert it into the sorted sequence of presets @@ -724,11 +756,25 @@ Preset& PresetCollection::load_external_preset( it = this->find_preset_renamed(original_name); found = it != m_presets.end(); } - if (found && profile_print_params_same(it->config, cfg)) { - // The preset exists and it matches the values stored inside config. - if (select) - this->select_preset(it - m_presets.begin()); - return *it; + if (found) { + if (profile_print_params_same(it->config, cfg)) { + // The preset exists and it matches the values stored inside config. + if (select) + this->select_preset(it - m_presets.begin()); + return *it; + } + if (profile_host_params_same_or_anonymized(it->config, cfg) == ProfileHostParams::Anonymized) { + // The project being loaded is anonymized. Replace the empty host keys of the loaded profile with the data from the original profile. + // See "Octoprint Settings when Opening a .3MF file" GH issue #3244 + auto opt_update = [it, &cfg](const std::string &opt_key) { + auto opt = it->config.option(opt_key); + if (opt != nullptr) + cfg.set_key_value(opt_key, opt->clone()); + }; + opt_update("print_host"); + opt_update("printhost_apikey"); + opt_update("printhost_cafile"); + } } // Update the "inherits" field. std::string &inherits = Preset::inherits(cfg); From 726f645f84c38ae7b83b77ea5adcb417be3c5428 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 18 Feb 2020 15:39:30 +0100 Subject: [PATCH 20/91] Fix default hard coded parameters for SLA fixes #3650 --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 36d56c4c10..f1daebf541 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2840,7 +2840,7 @@ void PrintConfigDef::init_sla_params() def->min = 45; def->max = 90; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(45.0)); + def->set_default_value(new ConfigOptionFloat(90.0)); def = this->add("pad_around_object", coBool); def->label = L("Pad around object"); From b47246f69bebdda3012f18ab3e0c526862f4661d Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 18 Feb 2020 15:44:01 +0100 Subject: [PATCH 21/91] Fixed a bug, where the top or bottom solid layers were created even if the number of top / bottom solid layers was set to zero while the top / bottom minimum shell thickess was set nonzero. With this commit, if the top / bottom solid layers is set to zero, there are no top / bottom solid layers generated independent from the minimum top / bottom shell thickness. --- src/libslic3r/PrintObject.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp index 4ddcaedc8b..ed1a51e5d0 100644 --- a/src/libslic3r/PrintObject.cpp +++ b/src/libslic3r/PrintObject.cpp @@ -1139,10 +1139,9 @@ void PrintObject::discover_vertical_shells() } #endif /* SLIC3R_DEBUG_SLICE_PROCESSING */ polygons_append(holes, cache_top_botom_regions[idx_layer].holes); - { + if (int n_top_layers = region_config.top_solid_layers.value; n_top_layers > 0) { // Gather top regions projected to this layer. - coordf_t print_z = layer->print_z; - int n_top_layers = region_config.top_solid_layers.value; + coordf_t print_z = layer->print_z; for (int i = int(idx_layer) + 1; i < int(cache_top_botom_regions.size()) && (i < int(idx_layer) + n_top_layers || @@ -1159,10 +1158,9 @@ void PrintObject::discover_vertical_shells() } } } - { + if (int n_bottom_layers = region_config.bottom_solid_layers.value; n_bottom_layers > 0) { // Gather bottom regions projected to this layer. - coordf_t bottom_z = layer->bottom_z(); - int n_bottom_layers = region_config.bottom_solid_layers.value; + coordf_t bottom_z = layer->bottom_z(); for (int i = int(idx_layer) - 1; i >= 0 && (i > int(idx_layer) - n_bottom_layers || @@ -2356,6 +2354,9 @@ void PrintObject::discover_horizontal_shells() for (size_t idx_surface_type = 0; idx_surface_type < 3; ++ idx_surface_type) { m_print->throw_if_canceled(); SurfaceType type = (idx_surface_type == 0) ? stTop : (idx_surface_type == 1) ? stBottom : stBottomBridge; + int num_solid_layers = (type == stTop) ? region_config.top_solid_layers.value : region_config.bottom_solid_layers.value; + if (num_solid_layers == 0) + continue; // Find slices of current type for current layer. // Use slices instead of fill_surfaces, because they also include the perimeter area, // which needs to be propagated in shells; we need to grow slices like we did for @@ -2384,9 +2385,9 @@ void PrintObject::discover_horizontal_shells() // Scatter top / bottom regions to other layers. Scattering process is inherently serial, it is difficult to parallelize without locking. for (int n = (type == stTop) ? int(i) - 1 : int(i) + 1; (type == stTop) ? - (n >= 0 && (int(i) - n < region_config.top_solid_layers.value || + (n >= 0 && (int(i) - n < num_solid_layers || print_z - m_layers[n]->print_z < region_config.top_solid_min_thickness.value - EPSILON)) : - (n < int(m_layers.size()) && (n - int(i) < region_config.bottom_solid_layers.value || + (n < int(m_layers.size()) && (n - int(i) < num_solid_layers || m_layers[n]->bottom_z() - bottom_z < region_config.bottom_solid_min_thickness.value - EPSILON)); (type == stTop) ? -- n : ++ n) { From 5c6987137dfb6a9b9dbed8950941dec9ca61b0fb Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 18 Feb 2020 15:44:23 +0100 Subject: [PATCH 22/91] Removed code which is redundant now, but causes an issue #3642 (G-Code Export button visible in "non-default" position) All Show/Hide() of active buttons are processed inside show_action_buttons() function --- src/slic3r/GUI/Plater.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 0c6a5ed904..d8cb77f332 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -5327,11 +5327,6 @@ void Plater::on_config_change(const DynamicPrintConfig &config) } } - { - const auto prin_host_opt = p->config->option("print_host"); - p->sidebar->show_send(prin_host_opt != nullptr && !prin_host_opt->value.empty()); - } - if (bed_shape_changed) p->set_bed_shape(p->config->option("bed_shape")->values, p->config->option("bed_custom_texture")->value, From bbdd25d0621bf1f7922b9e55e586da983a04ac07 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 18 Feb 2020 14:29:10 +0100 Subject: [PATCH 23/91] Fix perl tests when called via CTest --- xs/CMakeLists.txt | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/xs/CMakeLists.txt b/xs/CMakeLists.txt index aaf943970e..a59a199368 100644 --- a/xs/CMakeLists.txt +++ b/xs/CMakeLists.txt @@ -7,8 +7,12 @@ if (WIN32) else() set(ENV_PATH_SEPARATOR ":") endif() -set(ENV{PATH} "${PROJECT_SOURCE_DIR}/local-lib/bin${ENV_PATH_SEPARATOR}$ENV{PATH}") -set(PERL_INCLUDE "${PROJECT_SOURCE_DIR}/local-lib/lib/perl5${ENV_PATH_SEPARATOR}$ENV{PERL5LIB}") + +# Install the XS.pm and XS.{so,dll,bundle} into the local-lib directory. +set(PERL_LOCAL_LIB_DIR ${PROJECT_SOURCE_DIR}/../local-lib) + +set(ENV{PATH} "${PERL_LOCAL_LIB_DIR}/bin${ENV_PATH_SEPARATOR}$ENV{PATH}") +set(PERL_INCLUDE "${PERL_LOCAL_LIB_DIR}/lib/perl5${ENV_PATH_SEPARATOR}$ENV{PERL5LIB}") message("PATH: $ENV{PATH}") message("PERL_INCLUDE: ${PERL_INCLUDE}") find_package(Perl REQUIRED) @@ -154,22 +158,22 @@ if (WIN32) target_link_libraries(XS ${PERL_LIBRARY}) endif() -# Install the XS.pm and XS.{so,dll,bundle} into the local-lib directory. -set(PERL_LOCAL_LIB_DIR "../../local-lib/lib/perl5/${PerlEmbed_ARCHNAME}") + +set(PERL_LOCAL_LIB_ARCH_DIR "${PERL_LOCAL_LIB_DIR}/lib/perl5/${PerlEmbed_ARCHNAME}") add_custom_command( TARGET XS POST_BUILD - COMMAND ${CMAKE_COMMAND} -E make_directory "${PERL_LOCAL_LIB_DIR}/auto/Slic3r/XS/" - COMMAND ${CMAKE_COMMAND} -E copy "$" "${PERL_LOCAL_LIB_DIR}/auto/Slic3r/XS/" - COMMAND ${CMAKE_COMMAND} -E make_directory "${PERL_LOCAL_LIB_DIR}/Slic3r/" - COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/lib/Slic3r/XS.pm" "${PERL_LOCAL_LIB_DIR}/Slic3r/" + COMMAND ${CMAKE_COMMAND} -E make_directory "${PERL_LOCAL_LIB_ARCH_DIR}/auto/Slic3r/XS/" + COMMAND ${CMAKE_COMMAND} -E copy "$" "${PERL_LOCAL_LIB_ARCH_DIR}/auto/Slic3r/XS/" + COMMAND ${CMAKE_COMMAND} -E make_directory "${PERL_LOCAL_LIB_ARCH_DIR}/Slic3r/" + COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/lib/Slic3r/XS.pm" "${PERL_LOCAL_LIB_ARCH_DIR}/Slic3r/" COMMENT "Installing XS.pm and XS.{so,dll,bundle} into the local-lib directory ..." ) if(APPLE) add_custom_command( TARGET XS POST_BUILD - COMMAND ${CMAKE_COMMAND} -E rename "${PERL_LOCAL_LIB_DIR}/auto/Slic3r/XS/XS" "${PERL_LOCAL_LIB_DIR}/auto/Slic3r/XS/XS.bundle" + COMMAND ${CMAKE_COMMAND} -E rename "${PERL_LOCAL_LIB_ARCH_DIR}/auto/Slic3r/XS/XS" "${PERL_LOCAL_LIB_ARCH_DIR}/auto/Slic3r/XS/XS.bundle" ) endif() @@ -195,5 +199,5 @@ if (MSVC) else () set(PERL_PROVE "${PERL_BIN_PATH}/prove") endif () -add_test (NAME xs COMMAND "${PERL_EXECUTABLE}" ${PERL_PROVE} -I ${PROJECT_SOURCE_DIR}/../local-lib/lib/perl5 WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}) +add_test (NAME xs COMMAND "${PERL_EXECUTABLE}" ${PERL_PROVE} -I ${PERL_LOCAL_LIB_DIR}/lib/perl5 WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}) add_test (NAME integration COMMAND "${PERL_EXECUTABLE}" ${PERL_PROVE} WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/..) From 6deb6a776d38eacf22bd3da78c4546dd5e3a8ccb Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Fri, 14 Feb 2020 10:17:55 +0100 Subject: [PATCH 24/91] Do EFC for the first faded layers of SLA, interpolate efc parameters Compensated slices have negative orientation... Move efc to common params Fix elefant foot compensation reversed contours Remove redundant assertions and don't apply absolute correction if zero --- src/libslic3r/ElephantFootCompensation.cpp | 4 + src/libslic3r/PrintConfig.cpp | 30 +++----- src/libslic3r/SLAPrint.cpp | 3 +- src/libslic3r/SLAPrint.hpp | 4 + src/libslic3r/SLAPrintSteps.cpp | 73 ++++++++++--------- src/libslic3r/SLAPrintSteps.hpp | 2 +- .../test_elephant_foot_compensation.cpp | 33 ++++++--- 7 files changed, 80 insertions(+), 69 deletions(-) diff --git a/src/libslic3r/ElephantFootCompensation.cpp b/src/libslic3r/ElephantFootCompensation.cpp index a19aa26875..130f1b58f5 100644 --- a/src/libslic3r/ElephantFootCompensation.cpp +++ b/src/libslic3r/ElephantFootCompensation.cpp @@ -592,6 +592,10 @@ ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, double min_c assert(out_vec.size() == 1); } } + + // FIXME: orientations are messed up (Tamas) + out.contour.make_counter_clockwise(); + for (auto &h : out.holes) h.make_clockwise(); return out; } diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 353a0ae834..61875fc57a 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -113,6 +113,16 @@ void PrintConfigDef::init_common_params() "If left blank, the default OS CA certificate repository is used."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionString("")); + + def = this->add("elefant_foot_compensation", coFloat); + def->label = L("Elephant foot compensation"); + def->category = L("Advanced"); + def->tooltip = L("The first layer will be shrunk in the XY plane by the configured value " + "to compensate for the 1st layer squish aka an Elephant Foot effect."); + def->sidetext = L("mm"); + def->min = 0; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(0.2)); } void PrintConfigDef::init_fff_params() @@ -371,16 +381,6 @@ void PrintConfigDef::init_fff_params() def->min = 0; def->set_default_value(new ConfigOptionFloat(6)); - def = this->add("elefant_foot_compensation", coFloat); - def->label = L("Elephant foot compensation"); - def->category = L("Advanced"); - def->tooltip = L("The first layer will be shrunk in the XY plane by the configured value " - "to compensate for the 1st layer squish aka an Elephant Foot effect."); - def->sidetext = L("mm"); - def->min = 0; - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(0)); - def = this->add("end_gcode", coString); def->label = L("End G-code"); def->tooltip = L("This end procedure is inserted at the end of the output file. " @@ -2443,16 +2443,6 @@ void PrintConfigDef::init_sla_params() def->mode = comExpert; def->set_default_value(new ConfigOptionFloat(0.0)); - def = this->add("elefant_foot_compensation", coFloat); - def->label = L("Elephant foot compensation"); - def->category = L("Advanced"); - def->tooltip = L("The first layer will be shrunk in the XY plane by the configured value " - "to compensate for the 1st layer squish aka an Elephant Foot effect."); - def->sidetext = L("mm"); - def->min = 0; - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(0.2)); - def = this->add("elefant_foot_min_width", coFloat); def->label = L("Elefant foot minimum width"); def->category = L("Advanced"); diff --git a/src/libslic3r/SLAPrint.cpp b/src/libslic3r/SLAPrint.cpp index 0b26af983f..cca0abd5c1 100644 --- a/src/libslic3r/SLAPrint.cpp +++ b/src/libslic3r/SLAPrint.cpp @@ -1089,8 +1089,7 @@ const std::vector &SLAPrintObject::get_support_slices() const const ExPolygons &SliceRecord::get_slice(SliceOrigin o) const { - size_t idx = o == soModel ? m_model_slices_idx : - m_support_slices_idx; + size_t idx = o == soModel ? m_model_slices_idx : m_support_slices_idx; if(m_po == nullptr) return EMPTY_SLICE; diff --git a/src/libslic3r/SLAPrint.hpp b/src/libslic3r/SLAPrint.hpp index c9f5198db8..70f773f6b2 100644 --- a/src/libslic3r/SLAPrint.hpp +++ b/src/libslic3r/SLAPrint.hpp @@ -152,6 +152,10 @@ public: } const ExPolygons& get_slice(SliceOrigin o) const; + size_t get_slice_idx(SliceOrigin o) const + { + return o == soModel ? m_model_slices_idx : m_support_slices_idx; + } }; private: diff --git a/src/libslic3r/SLAPrintSteps.cpp b/src/libslic3r/SLAPrintSteps.cpp index 777b6abed8..01220a633e 100644 --- a/src/libslic3r/SLAPrintSteps.cpp +++ b/src/libslic3r/SLAPrintSteps.cpp @@ -80,16 +80,37 @@ SLAPrint::Steps::Steps(SLAPrint *print) , objectstep_scale{(max_objstatus - min_objstatus) / (objcount * 100.0)} {} - -void SLAPrint::Steps::apply_elefant_foot_compensation(SLAPrintObject &po, SliceOrigin o) +void SLAPrint::Steps::apply_printer_corrections(SLAPrintObject &po, SliceOrigin o) { + if (o == soSupport && !po.m_supportdata) return; + auto faded_lyrs = size_t(po.m_config.faded_layers.getInt()); + double min_w = m_print->m_printer_config.elefant_foot_min_width.getFloat() / 2.; + double start_efc = m_print->m_printer_config.elefant_foot_compensation.getFloat(); + + double doffs = m_print->m_printer_config.absolute_correction.getFloat(); + coord_t clpr_offs = scaled(doffs); + faded_lyrs = std::min(po.m_slice_index.size(), faded_lyrs); - if (!po.m_model_height_levels.empty() && po.m_model_height_levels[0] < ilh) { - auto &first_sl = po.m_model_slices[0]; - double compensation = m_print->m_printer_config.elefant_foot_compensation.getFloat(); - first_sl = elephant_foot_compensation(first_sl, 0., compensation); + auto efc = [start_efc, faded_lyrs](size_t pos) { + return (faded_lyrs - 1 - pos) * start_efc / (faded_lyrs - 1); + }; + + std::vector &slices = o == soModel ? + po.m_model_slices : + po.m_supportdata->support_slices; + + if (clpr_offs != 0) for (size_t i = 0; i < po.m_slice_index.size(); ++i) { + size_t idx = po.m_slice_index[i].get_slice_idx(o); + if (idx < slices.size()) + slices[idx] = offset_ex(slices[idx], float(clpr_offs)); + } + + if (start_efc > 0.) for (size_t i = 0; i < faded_lyrs; ++i) { + size_t idx = po.m_slice_index[i].get_slice_idx(o); + if (idx < slices.size()) + slices[idx] = elephant_foot_compensation(slices[idx], min_w, efc(i)); } } @@ -251,23 +272,15 @@ void SLAPrint::Steps::slice_model(SLAPrintObject &po) } auto mit = slindex_it; - double doffs = m_print->m_printer_config.absolute_correction.getFloat(); - coord_t clpr_offs = scaled(doffs); - - - - for(size_t id = 0; + for (size_t id = 0; id < po.m_model_slices.size() && mit != po.m_slice_index.end(); - id++) - { - // We apply the printer correction offset here. - if(clpr_offs != 0) - po.m_model_slices[id] = - offset_ex(po.m_model_slices[id], float(clpr_offs)); - + id++) { mit->set_model_slice_idx(po, id); ++mit; } + // We apply the printer correction offset here. + apply_printer_corrections(po, soModel); + if(po.m_config.supports_enable.getBool() || po.m_config.pad_enable.getBool()) { po.m_supportdata.reset(new SLAPrintObject::SupportData(mesh)); @@ -464,27 +477,15 @@ void SLAPrint::Steps::slice_supports(SLAPrintObject &po) { auto heights = reserve_vector(po.m_slice_index.size()); for(auto& rec : po.m_slice_index) heights.emplace_back(rec.slice_level()); - + sd->support_slices = sd->support_tree_ptr->slice( - heights, float(po.config().slice_closing_radius.value)); - - if (!heights.empty() && heights[0] < ilh) { - auto &first_sl = sd->support_slices[0]; - double compensation = m_print->m_printer_config.elefant_foot_compensation.getFloat(); - first_sl = elephant_foot_compensation(first_sl, 0., compensation); - } + heights, float(po.config().slice_closing_radius.value)); } - double doffs = m_print->m_printer_config.absolute_correction.getFloat(); - coord_t clpr_offs = scaled(doffs); - - for (size_t i = 0; i < sd->support_slices.size() && i < po.m_slice_index.size(); ++i) { - // We apply the printer correction offset here. - if (clpr_offs != 0) - sd->support_slices[i] = offset_ex(sd->support_slices[i], float(clpr_offs)); - + for (size_t i = 0; i < sd->support_slices.size() && i < po.m_slice_index.size(); ++i) po.m_slice_index[i].set_support_slice_idx(po, i); - } + + apply_printer_corrections(po, soSupport); // Using RELOAD_SLA_PREVIEW to tell the Plater to pass the update // status to the 3D preview to load the SLA slices. diff --git a/src/libslic3r/SLAPrintSteps.hpp b/src/libslic3r/SLAPrintSteps.hpp index b5cb8accc1..d3341bc146 100644 --- a/src/libslic3r/SLAPrintSteps.hpp +++ b/src/libslic3r/SLAPrintSteps.hpp @@ -43,7 +43,7 @@ private: bool canceled() const { return m_print->canceled(); } void initialize_printer_input(); - void apply_elefant_foot_compensation(SLAPrintObject &po, SliceOrigin o); + void apply_printer_corrections(SLAPrintObject &po, SliceOrigin o); public: Steps(SLAPrint *print); diff --git a/tests/libslic3r/test_elephant_foot_compensation.cpp b/tests/libslic3r/test_elephant_foot_compensation.cpp index 98ec5df528..616c0c6ade 100644 --- a/tests/libslic3r/test_elephant_foot_compensation.cpp +++ b/tests/libslic3r/test_elephant_foot_compensation.cpp @@ -413,6 +413,19 @@ static ExPolygon contour_with_hole() return out; } +static bool is_valid_orientation(const ExPolygon &p) +{ + bool ret = p.contour.is_counter_clockwise(); + for (auto &h : p.holes) ret = ret && h.is_clockwise(); + return ret; +} + +static bool is_efc_result_smaller(const ExPolygon &efc, const ExPolygon &orig) +{ + double efc_area = efc.area(); + return efc_area > 0. && efc_area < orig.area() && is_valid_orientation(efc); +} + SCENARIO("Elephant foot compensation", "[ElephantFoot]") { GIVEN("Contour with hole") { @@ -426,7 +439,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } } @@ -456,7 +469,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } } @@ -471,7 +484,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } } @@ -523,7 +536,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } WHEN("Fully compensated") { @@ -534,7 +547,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } } @@ -549,7 +562,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } } @@ -566,7 +579,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } WHEN("Fully compensated") { @@ -577,7 +590,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } WHEN("Brutally compensated") { @@ -588,7 +601,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } } @@ -603,7 +616,7 @@ SCENARIO("Elephant foot compensation", "[ElephantFoot]") { { { expoly_compensated }, { "gray", "black", "blue", coord_t(scale_(0.02)), 0.5f, "black", coord_t(scale_(0.05)) } } }); #endif /* TESTS_EXPORT_SVGS */ THEN("area of the compensated polygon is smaller") { - REQUIRE(expoly_compensated.area() < expoly.area()); + REQUIRE(is_efc_result_smaller(expoly_compensated, expoly)); } } } From ab72d5135b6e7eaf53a312d8ff08fdc611619b79 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 19 Feb 2020 10:56:05 +0100 Subject: [PATCH 25/91] Fix of Placeholders do not respect filament overrides. #3649 --- src/libslic3r/Print.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 9114b4c5fe..b4a2a1b3ea 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -613,8 +613,12 @@ Print::ApplyStatus Print::apply(const Model &model, DynamicPrintConfig new_full_ m_placeholder_parser.set("print_preset", new_full_config.option("print_settings_id")->clone()); m_placeholder_parser.set("filament_preset", new_full_config.option("filament_settings_id")->clone()); m_placeholder_parser.set("printer_preset", new_full_config.option("printer_settings_id")->clone()); + // We want the filament overrides to be applied over their respective extruder parameters by the PlaceholderParser. + // see "Placeholders do not respect filament overrides." GH issue #3649 + m_placeholder_parser.apply_config(filament_overrides); // It is also safe to change m_config now after this->invalidate_state_by_config_options() call. m_config.apply_only(new_full_config, print_diff, true); + //FIXME use move semantics once ConfigBase supports it. m_config.apply(filament_overrides); // Handle changes to object config defaults m_default_object_config.apply_only(new_full_config, object_diff, true); From ae197ddd94904f0807b0da00b1927075c80155d6 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 19 Feb 2020 10:23:52 +0100 Subject: [PATCH 26/91] Added a shortcut to the tooltip for a "Send to printer" button (related to #3667) + Localization: fixed some phrases --- src/slic3r/GUI/DoubleSlider.cpp | 4 ++-- src/slic3r/GUI/KBShortcutsDialog.cpp | 4 ++-- src/slic3r/GUI/Plater.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index 907fae377d..357c143c47 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -981,7 +981,7 @@ wxString Control::get_tooltip(int tick/*=-1*/) tooltip += ( m_mode == t_mode::MultiAsSingle ? _(L("Add extruder change - Left click")) : m_mode == t_mode::SingleExtruder ? - _(L("Add color change - Left click for predefined color or" + _(L("Add color change - Left click for predefined color or " "Shift + Left click for custom color selection")) : _(L("Add color change - Left click")) ) + " " + _(L("or press \"+\" key")) + "\n" + ( @@ -1645,7 +1645,7 @@ static std::string get_pause_print_msg(const std::string& msg_in, double height) static double get_print_z_to_jump(double active_print_z, double min_z, double max_z) { - wxString msg_text = _(L("Enter the height you want to jump to")) + " :"; + wxString msg_text = _(L("Enter the height you want to jump to")) + ":"; wxString msg_header = _(L("Jump to height")); wxString msg_in = GUI::double_to_string(active_print_z); diff --git a/src/slic3r/GUI/KBShortcutsDialog.cpp b/src/slic3r/GUI/KBShortcutsDialog.cpp index 7d4211b246..b6e55a7c9d 100644 --- a/src/slic3r/GUI/KBShortcutsDialog.cpp +++ b/src/slic3r/GUI/KBShortcutsDialog.cpp @@ -158,7 +158,7 @@ void KBShortcutsDialog::fill_shortcuts() { "Shift+A", L("Arrange selection") }, { "+", L("Add Instance of the selected object") }, { "-", L("Remove Instance of the selected object") }, - { ctrl, L("Press to select multiple object\nor move multiple object with mouse") }, + { ctrl, L("Press to select multiple objects\nor move multiple objects with mouse") }, { "Shift+", L("Press to activate selection rectangle") }, { alt, L("Press to activate deselection rectangle") }, { L("Arrow Up"), L("Move selection 10 mm in positive Y direction") }, @@ -192,7 +192,7 @@ void KBShortcutsDialog::fill_shortcuts() m_full_shortcuts.push_back(std::make_pair(_(L("Plater")), plater_shortcuts)); Shortcuts gizmos_shortcuts = { - { "Shift+", L("Press to to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move") }, + { "Shift+", L("Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move") }, { "F", L("Scale selection to fit print volume\nin Gizmo scale") }, { ctrl, L("Press to activate one direction scaling in Gizmo scale") }, { alt, L("Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center") }, diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index d8cb77f332..bc28b62e0f 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -870,7 +870,7 @@ Sidebar::Sidebar(Plater *parent) (*btn)->Hide(); }; - init_scalable_btn(&p->btn_send_gcode , "export_gcode", _(L("Send to printer"))); + init_scalable_btn(&p->btn_send_gcode , "export_gcode", _(L("Send to printer")) + "\tCtrl+Shift+G"); init_scalable_btn(&p->btn_remove_device, "cross" , _(L("Remove device"))); init_scalable_btn(&p->btn_export_gcode_removable, "export_to_sd", _(L("Export to SD card / Flash drive"))); From dfbae648bfff75ef7cb6e5d45ba576d52d74ffae Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 19 Feb 2020 12:57:54 +0100 Subject: [PATCH 27/91] Follow up on 6deb6a776d38eacf22bd3da78c4546dd5e3a8ccb: Fixed orientation of contours after Elephant Foot Compensation. --- src/libslic3r/ClipperUtils.cpp | 54 +++++++++++++++++++--- src/libslic3r/ElephantFootCompensation.cpp | 19 ++++++-- 2 files changed, 63 insertions(+), 10 deletions(-) diff --git a/src/libslic3r/ClipperUtils.cpp b/src/libslic3r/ClipperUtils.cpp index d4c2f05e1d..d40d79b3d8 100644 --- a/src/libslic3r/ClipperUtils.cpp +++ b/src/libslic3r/ClipperUtils.cpp @@ -855,7 +855,12 @@ Polygons top_level_islands(const Slic3r::Polygons &polygons) } // Outer offset shall not split the input contour into multiples. It is expected, that the solution will be non empty and it will contain just a single polygon. -ClipperLib::Paths fix_after_outer_offset(const ClipperLib::Path &input, ClipperLib::PolyFillType filltype, bool reverse_result) +ClipperLib::Paths fix_after_outer_offset( + const ClipperLib::Path &input, + // combination of default prameters to correspond to void ClipperOffset::Execute(Paths& solution, double delta) + // to produce a CCW output contour from CCW input contour for a positive offset. + ClipperLib::PolyFillType filltype, // = ClipperLib::pftPositive + bool reverse_result) // = false { ClipperLib::Paths solution; if (! input.empty()) { @@ -867,8 +872,13 @@ ClipperLib::Paths fix_after_outer_offset(const ClipperLib::Path &input, ClipperL return solution; } -// Inner offset may split the source contour into multiple contours, but one shall not be inside the other. -ClipperLib::Paths fix_after_inner_offset(const ClipperLib::Path &input, ClipperLib::PolyFillType filltype, bool reverse_result) +// Inner offset may split the source contour into multiple contours, but one resulting contour shall not lie inside the other. +ClipperLib::Paths fix_after_inner_offset( + const ClipperLib::Path &input, + // combination of default prameters to correspond to void ClipperOffset::Execute(Paths& solution, double delta) + // to produce a CCW output contour from CCW input contour for a negative offset. + ClipperLib::PolyFillType filltype, // = ClipperLib::pftNegative + bool reverse_result) // = true { ClipperLib::Paths solution; if (! input.empty()) { @@ -1041,12 +1051,20 @@ Polygons variable_offset_inner(const ExPolygon &expoly, const std::vector 0.); +#endif /* NDEBUG */ // 2) Offset the holes one by one, collect the results. ClipperLib::Paths holes; holes.reserve(expoly.holes.size()); for (const Polygon& hole : expoly.holes) - append(holes, fix_after_outer_offset(mittered_offset_path_scaled(hole, deltas[1 + &hole - expoly.holes.data()], miter_limit), ClipperLib::pftPositive, false)); + append(holes, fix_after_outer_offset(mittered_offset_path_scaled(hole, deltas[1 + &hole - expoly.holes.data()], miter_limit), ClipperLib::pftNegative, false)); +#ifndef NDEBUG + for (auto &c : holes) + assert(ClipperLib::Area(c) > 0.); +#endif /* NDEBUG */ // 3) Subtract holes from the contours. ClipperLib::Paths output; @@ -1077,12 +1095,20 @@ for (const std::vector& ds : deltas) // 1) Offset the outer contour. ClipperLib::Paths contours = fix_after_outer_offset(mittered_offset_path_scaled(expoly.contour.points, deltas.front(), miter_limit), ClipperLib::pftPositive, false); +#ifndef NDEBUG + for (auto &c : contours) + assert(ClipperLib::Area(c) > 0.); +#endif /* NDEBUG */ // 2) Offset the holes one by one, collect the results. ClipperLib::Paths holes; holes.reserve(expoly.holes.size()); for (const Polygon& hole : expoly.holes) append(holes, fix_after_inner_offset(mittered_offset_path_scaled(hole, deltas[1 + &hole - expoly.holes.data()], miter_limit), ClipperLib::pftPositive, true)); +#ifndef NDEBUG + for (auto &c : holes) + assert(ClipperLib::Area(c) > 0.); +#endif /* NDEBUG */ // 3) Subtract holes from the contours. ClipperLib::Paths output; @@ -1113,12 +1139,20 @@ for (const std::vector& ds : deltas) // 1) Offset the outer contour. ClipperLib::Paths contours = fix_after_outer_offset(mittered_offset_path_scaled(expoly.contour.points, deltas.front(), miter_limit), ClipperLib::pftPositive, false); +#ifndef NDEBUG + for (auto &c : contours) + assert(ClipperLib::Area(c) > 0.); +#endif /* NDEBUG */ // 2) Offset the holes one by one, collect the results. ClipperLib::Paths holes; holes.reserve(expoly.holes.size()); for (const Polygon& hole : expoly.holes) append(holes, fix_after_inner_offset(mittered_offset_path_scaled(hole, deltas[1 + &hole - expoly.holes.data()], miter_limit), ClipperLib::pftPositive, true)); +#ifndef NDEBUG + for (auto &c : holes) + assert(ClipperLib::Area(c) > 0.); +#endif /* NDEBUG */ // 3) Subtract holes from the contours. unscaleClipperPolygons(contours); @@ -1152,13 +1186,21 @@ ExPolygons variable_offset_inner_ex(const ExPolygon &expoly, const std::vector 0.); +#endif /* NDEBUG */ // 2) Offset the holes one by one, collect the results. ClipperLib::Paths holes; holes.reserve(expoly.holes.size()); for (const Polygon& hole : expoly.holes) - append(holes, fix_after_outer_offset(mittered_offset_path_scaled(hole, deltas[1 + &hole - expoly.holes.data()], miter_limit), ClipperLib::pftNegative, true)); + append(holes, fix_after_outer_offset(mittered_offset_path_scaled(hole, deltas[1 + &hole - expoly.holes.data()], miter_limit), ClipperLib::pftNegative, false)); +#ifndef NDEBUG + for (auto &c : holes) + assert(ClipperLib::Area(c) > 0.); +#endif /* NDEBUG */ // 3) Subtract holes from the contours. unscaleClipperPolygons(contours); diff --git a/src/libslic3r/ElephantFootCompensation.cpp b/src/libslic3r/ElephantFootCompensation.cpp index 130f1b58f5..c111576275 100644 --- a/src/libslic3r/ElephantFootCompensation.cpp +++ b/src/libslic3r/ElephantFootCompensation.cpp @@ -524,8 +524,20 @@ static inline void smooth_compensation_banded(const Points &contour, float band, } } +#ifndef NDEBUG +static bool validate_expoly_orientation(const ExPolygon &expoly) +{ + bool valid = expoly.contour.is_counter_clockwise(); + for (auto &h : expoly.holes) + valid &= h.is_clockwise(); + return valid; +} +#endif /* NDEBUG */ + ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, double min_contour_width, const double compensation) { + assert(validate_expoly_orientation(input_expoly)); + double scaled_compensation = scale_(compensation); min_contour_width = scale_(min_contour_width); double min_contour_width_compensated = min_contour_width + 2. * scaled_compensation; @@ -546,6 +558,7 @@ ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, double min_c { EdgeGrid::Grid grid; ExPolygon simplified = input_expoly.simplify(SCALED_EPSILON).front(); + assert(validate_expoly_orientation(simplified)); BoundingBox bbox = get_extents(simplified.contour); bbox.offset(SCALED_EPSILON); grid.set_bbox(bbox); @@ -558,6 +571,7 @@ ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, double min_c Polygon &poly = (idx_contour == 0) ? resampled.contour : resampled.holes[idx_contour - 1]; std::vector resampled_point_parameters; poly.points = resample_polygon(poly.points, resample_interval, resampled_point_parameters); + assert(poly.is_counter_clockwise() == (idx_contour == 0)); std::vector dists = contour_distance2(grid, idx_contour, poly.points, resampled_point_parameters, scaled_compensation, search_radius); for (float &d : dists) { // printf("Point %d, Distance: %lf\n", int(&d - dists.data()), unscale(d)); @@ -593,10 +607,7 @@ ExPolygon elephant_foot_compensation(const ExPolygon &input_expoly, double min_c } } - // FIXME: orientations are messed up (Tamas) - out.contour.make_counter_clockwise(); - for (auto &h : out.holes) h.make_clockwise(); - + assert(validate_expoly_orientation(out)); return out; } From 77daa54b0c4dc2b3c0154b6fc09b597f91e87b8c Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 19 Feb 2020 13:21:16 +0100 Subject: [PATCH 28/91] Localization: New POT --- resources/localization/PrusaSlicer.pot | 890 +++++++++++++------------ src/slic3r/GUI/GUI_App.cpp | 2 +- 2 files changed, 451 insertions(+), 441 deletions(-) diff --git a/resources/localization/PrusaSlicer.pot b/resources/localization/PrusaSlicer.pot index 5876938bed..6fd1ac31b2 100644 --- a/resources/localization/PrusaSlicer.pot +++ b/resources/localization/PrusaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-18 13:38+0100\n" +"POT-Creation-Date: 2020-02-19 13:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -121,7 +121,7 @@ msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:77 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 -#: src/slic3r/GUI/Tab.cpp:2324 +#: src/slic3r/GUI/Tab.cpp:2326 msgid "Size" msgstr "" @@ -151,9 +151,9 @@ msgstr "" #: src/slic3r/GUI/ObjectDataViewModel.cpp:94 #: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 #: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 -#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 -#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 -#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 #: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 #: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 #: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 @@ -168,17 +168,18 @@ msgstr "" #: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 #: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 #: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 -#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 #: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 -#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 -#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 -#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 -#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 -#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 -#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 -#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 src/libslic3r/PrintConfig.cpp:2933 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "" @@ -214,7 +215,7 @@ msgid "Load..." msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3112 +#: src/slic3r/GUI/Tab.cpp:3114 msgid "Remove" msgstr "" @@ -400,7 +401,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 #: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:522 #: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 -#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 #: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 @@ -454,7 +455,7 @@ msgstr "" msgid "PrusaSlicer version" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1519 msgid "print" msgstr "" @@ -462,7 +463,7 @@ msgstr "" msgid "filaments" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1523 msgid "printer" msgstr "" @@ -520,7 +521,7 @@ msgid "Standard" msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3162 +#: src/slic3r/GUI/Tab.cpp:3164 msgid "All" msgstr "" @@ -913,7 +914,7 @@ msgstr "" #: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "" -"Add color change - Left click for predefined color orShift + Left click for " +"Add color change - Left click for predefined color or Shift + Left click for " "custom color selection" msgstr "" @@ -1000,7 +1001,7 @@ msgstr "" #: src/slic3r/GUI/DoubleSlider.cpp:1132 src/slic3r/GUI/DoubleSlider.cpp:1168 #: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1700 -#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 +#: src/slic3r/GUI/Tab.cpp:2322 src/libslic3r/GCode/PreviewData.cpp:445 #, possible-c-format msgid "Extruder %d" msgstr "" @@ -1147,7 +1148,7 @@ msgid "Set extruder change for every" msgstr "" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 #: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 #: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 #: src/libslic3r/PrintConfig.cpp:1976 @@ -1518,7 +1519,7 @@ msgstr "" #: src/slic3r/GUI/GLCanvas3D.cpp:4470 src/slic3r/GUI/GUI_ObjectList.cpp:1714 #: src/slic3r/GUI/Plater.cpp:3909 src/slic3r/GUI/Plater.cpp:3931 -#: src/slic3r/GUI/Tab.cpp:3112 +#: src/slic3r/GUI/Tab.cpp:3114 msgid "Delete" msgstr "" @@ -1613,7 +1614,7 @@ msgid "Unsupported OpenGL version" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3393 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "" @@ -1654,7 +1655,7 @@ msgid "Quality" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 -#: src/libslic3r/PrintConfig.cpp:2925 +#: src/libslic3r/PrintConfig.cpp:2934 msgid "Closing distance" msgstr "" @@ -1720,7 +1721,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "" @@ -1728,7 +1729,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "" @@ -1764,7 +1765,7 @@ msgid "Minimal points distance" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "" @@ -1830,7 +1831,7 @@ msgid "Are you sure you want to do it?" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3072 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Tab.cpp:3074 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "" @@ -2014,10 +2015,11 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 #: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 #: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1969 src/slic3r/GUI/Tab.cpp:3649 +#: src/slic3r/GUI/Tab.cpp:1969 src/slic3r/GUI/Tab.cpp:3651 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "" @@ -2043,7 +2045,7 @@ msgid "%s View Mode" msgstr "" #: src/slic3r/GUI/GUI_App.cpp:822 -msgid "Change Application &Language" +msgid "&Language" msgstr "" #: src/slic3r/GUI/GUI_App.cpp:824 @@ -2084,7 +2086,7 @@ msgstr "" msgid "The presets on the following tabs were modified" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2934 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2936 msgid "Discard changes and continue anyway?" msgstr "" @@ -2092,7 +2094,7 @@ msgstr "" msgid "Unsaved Presets" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2946 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2948 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" @@ -2101,7 +2103,7 @@ msgid "Please check and fix your object list." msgstr "" #: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2291 -#: src/slic3r/GUI/Tab.cpp:2948 +#: src/slic3r/GUI/Tab.cpp:2950 msgid "Attention!" msgstr "" @@ -2127,7 +2129,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 #: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 #: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 @@ -2140,7 +2142,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 #: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:246 #: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 #: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 @@ -2182,7 +2184,7 @@ msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 #: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1147 -#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 #: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 @@ -2207,37 +2209,37 @@ msgid "Extrusion Width" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:490 src/slic3r/GUI/Tab.cpp:3592 -#: src/slic3r/GUI/Tab.cpp:3593 src/libslic3r/PrintConfig.cpp:2605 -#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 -#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 -#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 -#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 -#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 -#: src/libslic3r/PrintConfig.cpp:2764 +#: src/slic3r/GUI/Plater.cpp:490 src/slic3r/GUI/Tab.cpp:3594 +#: src/slic3r/GUI/Tab.cpp:3595 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:630 src/slic3r/GUI/Tab.cpp:3624 -#: src/slic3r/GUI/Tab.cpp:3625 src/libslic3r/PrintConfig.cpp:2772 -#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 -#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 -#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 -#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 -#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 -#: src/libslic3r/PrintConfig.cpp:2890 +#: src/slic3r/GUI/Plater.cpp:630 src/slic3r/GUI/Tab.cpp:3626 +#: src/slic3r/GUI/Tab.cpp:3627 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3642 -#: src/slic3r/GUI/Tab.cpp:3643 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3644 +#: src/slic3r/GUI/Tab.cpp:3645 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 -#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 -#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 -#: src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 msgid "Hollowing" msgstr "" @@ -2445,7 +2447,7 @@ msgstr "" msgid "Set extruder for selected items" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1700 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1700 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "" @@ -2651,13 +2653,13 @@ msgid "Renaming" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:3815 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3922 src/slic3r/GUI/Tab.cpp:3444 -#: src/slic3r/GUI/Tab.cpp:3448 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3922 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:3450 msgid "The supplied name is not valid;" msgstr "" #: src/slic3r/GUI/GUI_ObjectList.cpp:3816 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3923 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3923 src/slic3r/GUI/Tab.cpp:3447 msgid "the following characters are not allowed:" msgstr "" @@ -2951,11 +2953,11 @@ msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:886 -#: src/slic3r/GUI/Plater.cpp:5501 src/libslic3r/PrintConfig.cpp:3344 +#: src/slic3r/GUI/Plater.cpp:5496 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5502 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5497 msgid "Send G-code" msgstr "" @@ -3046,8 +3048,8 @@ msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 msgid "" -"Press to select multiple object\n" -"or move multiple object with mouse" +"Press to select multiple objects\n" +"or move multiple objects with mouse" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:162 @@ -3190,7 +3192,7 @@ msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format msgid "" -"Press to to snap by 5% in Gizmo scale\n" +"Press to snap by 5% in Gizmo scale\n" "or to snap by 1mm in Gizmo move" msgstr "" @@ -3229,7 +3231,7 @@ msgid "Show/Hide Legend" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4083 -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2392 msgid "Preview" msgstr "" @@ -3615,8 +3617,8 @@ msgstr "" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 -#: src/libslic3r/PrintConfig.cpp:173 +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "" @@ -3799,7 +3801,7 @@ msgstr "" #: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3099 #: src/slic3r/GUI/Plater.cpp:5085 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:3652 msgid "Slicing" msgstr "" @@ -3829,7 +3831,7 @@ msgstr "" msgid "Your file was repaired." msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3438 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "" @@ -3896,8 +3898,8 @@ msgstr "" msgid "Instance %d" msgstr "" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3500 -#: src/slic3r/GUI/Tab.cpp:3588 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3502 +#: src/slic3r/GUI/Tab.cpp:3590 msgid "Layers" msgstr "" @@ -3973,7 +3975,7 @@ msgid "Select what kind of support do you need" msgstr "" #: src/slic3r/GUI/Plater.cpp:495 src/libslic3r/PrintConfig.cpp:1901 -#: src/libslic3r/PrintConfig.cpp:2665 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "" @@ -4024,7 +4026,7 @@ msgstr "" msgid "SLA print settings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Preset.cpp:1522 msgid "SLA material" msgstr "" @@ -4032,7 +4034,7 @@ msgstr "" msgid "Printer" msgstr "" -#: src/slic3r/GUI/Plater.cpp:873 src/slic3r/GUI/Plater.cpp:5502 +#: src/slic3r/GUI/Plater.cpp:873 src/slic3r/GUI/Plater.cpp:5497 msgid "Send to printer" msgstr "" @@ -4095,7 +4097,7 @@ msgid "wipe tower" msgstr "" #: src/slic3r/GUI/Plater.cpp:1238 src/libslic3r/PrintConfig.cpp:760 -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "" @@ -4137,7 +4139,7 @@ msgstr "" msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2290 src/slic3r/GUI/Tab.cpp:2947 +#: src/slic3r/GUI/Plater.cpp:2290 src/slic3r/GUI/Tab.cpp:2949 msgid "Please check your object list before preset changing." msgstr "" @@ -4409,7 +4411,7 @@ msgid "Split the selected object into individual sub-parts" msgstr "" #: src/slic3r/GUI/Plater.cpp:3997 src/slic3r/GUI/Plater.cpp:4012 -#: src/slic3r/GUI/Plater.cpp:4026 src/libslic3r/PrintConfig.cpp:3462 +#: src/slic3r/GUI/Plater.cpp:4026 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "" @@ -4505,11 +4507,11 @@ msgstr "" msgid "Error exporting 3MF file %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5501 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Export" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5586 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Paste From Clipboard" msgstr "" @@ -4654,30 +4656,30 @@ msgstr "" msgid "modified" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 -#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 +#: src/slic3r/GUI/Preset.cpp:1107 src/slic3r/GUI/Preset.cpp:1162 +#: src/slic3r/GUI/Preset.cpp:1240 src/slic3r/GUI/Preset.cpp:1282 #: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 +#: src/slic3r/GUI/Preset.cpp:1166 src/slic3r/GUI/Preset.cpp:1286 #: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1151 +#: src/slic3r/GUI/Preset.cpp:1199 msgid "Add/Remove materials" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1153 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove printers" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1472 +#: src/slic3r/GUI/Preset.cpp:1520 msgid "filament" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1473 +#: src/slic3r/GUI/Preset.cpp:1521 msgid "SLA print" msgstr "" @@ -4910,10 +4912,10 @@ msgstr "" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 #: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 #: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 -#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 -#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 -#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 -#: src/libslic3r/PrintConfig.cpp:2557 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "" @@ -4978,7 +4980,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "" @@ -4986,7 +4988,7 @@ msgstr "" msgid "Select the printers this profile is compatible with." msgstr "" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "" @@ -5078,7 +5080,7 @@ msgstr "" msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3586 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3588 msgid "Layers and perimeters" msgstr "" @@ -5162,7 +5164,7 @@ msgstr "" msgid "Other" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3653 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3655 msgid "Output options" msgstr "" @@ -5174,7 +5176,7 @@ msgstr "" msgid "Extruder clearance (mm)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3656 msgid "Output file" msgstr "" @@ -5185,20 +5187,20 @@ msgstr "" #: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 #: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 #: src/slic3r/GUI/Tab.cpp:2014 src/slic3r/GUI/Tab.cpp:2015 -#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 -#: src/slic3r/GUI/Tab.cpp:3523 src/slic3r/GUI/Tab.cpp:3524 +#: src/slic3r/GUI/Tab.cpp:2130 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3525 src/slic3r/GUI/Tab.cpp:3526 msgid "Notes" msgstr "" #: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2021 src/slic3r/GUI/Tab.cpp:2135 -#: src/slic3r/GUI/Tab.cpp:3531 src/slic3r/GUI/Tab.cpp:3659 +#: src/slic3r/GUI/Tab.cpp:2021 src/slic3r/GUI/Tab.cpp:2137 +#: src/slic3r/GUI/Tab.cpp:3533 src/slic3r/GUI/Tab.cpp:3661 msgid "Dependencies" msgstr "" #: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2022 src/slic3r/GUI/Tab.cpp:2136 -#: src/slic3r/GUI/Tab.cpp:3532 src/slic3r/GUI/Tab.cpp:3660 +#: src/slic3r/GUI/Tab.cpp:2022 src/slic3r/GUI/Tab.cpp:2138 +#: src/slic3r/GUI/Tab.cpp:3534 src/slic3r/GUI/Tab.cpp:3662 msgid "Profile dependencies" msgstr "" @@ -5207,7 +5209,7 @@ msgid "Filament Overrides" msgstr "" #: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2370 +#: src/slic3r/GUI/Tab.cpp:2372 msgid "Retraction" msgstr "" @@ -5315,7 +5317,7 @@ msgid "Size and coordinates" msgstr "" #: src/slic3r/GUI/Tab.cpp:1804 src/slic3r/GUI/Tab.cpp:2048 -#: src/slic3r/GUI/Tab.cpp:3164 +#: src/slic3r/GUI/Tab.cpp:3166 msgid "Set" msgstr "" @@ -5335,7 +5337,7 @@ msgid "" "nozzle diameter value?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1872 src/slic3r/GUI/Tab.cpp:2340 +#: src/slic3r/GUI/Tab.cpp:1872 src/slic3r/GUI/Tab.cpp:2342 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "" @@ -5360,11 +5362,11 @@ msgstr "" msgid "Connection failed." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1946 src/slic3r/GUI/Tab.cpp:2123 +#: src/slic3r/GUI/Tab.cpp:1946 src/slic3r/GUI/Tab.cpp:2125 msgid "Print Host upload" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1990 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1990 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "" @@ -5392,15 +5394,15 @@ msgstr "" msgid "Tilt time" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:3507 +#: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:3509 msgid "Corrections" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2119 src/slic3r/GUI/Tab.cpp:3505 msgid "Exposure" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 +#: src/slic3r/GUI/Tab.cpp:2190 src/slic3r/GUI/Tab.cpp:2275 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -5408,175 +5410,175 @@ msgstr "" msgid "Machine limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2202 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Normal mode" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2203 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Normal" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2208 +#: src/slic3r/GUI/Tab.cpp:2210 msgid "Values in this column are for Stealth mode" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2209 +#: src/slic3r/GUI/Tab.cpp:2211 msgid "Stealth" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2217 +#: src/slic3r/GUI/Tab.cpp:2219 msgid "Maximum feedrates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2222 +#: src/slic3r/GUI/Tab.cpp:2224 msgid "Maximum accelerations" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2229 +#: src/slic3r/GUI/Tab.cpp:2231 msgid "Jerk limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2234 +#: src/slic3r/GUI/Tab.cpp:2236 msgid "Minimum feedrates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 +#: src/slic3r/GUI/Tab.cpp:2300 src/slic3r/GUI/Tab.cpp:2308 msgid "Single extruder MM setup" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2307 +#: src/slic3r/GUI/Tab.cpp:2309 msgid "Single extruder multimaterial parameters" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2338 +#: src/slic3r/GUI/Tab.cpp:2340 msgid "" "This is a single extruder multimaterial printer, diameters of all extruders " "will be set to the new value. Do you want to proceed?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2362 +#: src/slic3r/GUI/Tab.cpp:2364 msgid "Layer height limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2367 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Position (for multi-extruder printers)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2373 +#: src/slic3r/GUI/Tab.cpp:2375 msgid "Only lift Z" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2386 +#: src/slic3r/GUI/Tab.cpp:2388 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " "setups)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2394 +#: src/slic3r/GUI/Tab.cpp:2396 msgid "Reset to Filament Color" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2575 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "" "The Wipe option is not available when using the Firmware Retraction mode.\n" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2577 +#: src/slic3r/GUI/Tab.cpp:2579 msgid "Firmware Retraction" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2907 +#: src/slic3r/GUI/Tab.cpp:2909 #, possible-c-format msgid "Default preset (%s)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2908 +#: src/slic3r/GUI/Tab.cpp:2910 #, possible-c-format msgid "Preset (%s)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2928 +#: src/slic3r/GUI/Tab.cpp:2930 msgid "is not compatible with printer" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2929 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "is not compatible with print profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2933 msgid "and it has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3033 +#: src/slic3r/GUI/Tab.cpp:3035 msgctxt "PresetName" msgid "%1% - Copy" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3056 +#: src/slic3r/GUI/Tab.cpp:3058 msgid "The supplied name is empty. It can't be saved." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3063 msgid "Cannot overwrite a system profile." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Cannot overwrite an external profile." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3070 +#: src/slic3r/GUI/Tab.cpp:3072 msgid "Preset with name \"%1%\" already exists." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3071 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Replace?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3109 +#: src/slic3r/GUI/Tab.cpp:3111 msgid "remove" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3109 +#: src/slic3r/GUI/Tab.cpp:3111 msgid "delete" msgstr "" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3113 msgid "Are you sure you want to %1% the selected preset?" msgstr "" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3114 +#: src/slic3r/GUI/Tab.cpp:3116 msgid "%1% Preset" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3242 msgid "LOCKED LOCK" msgstr "" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 +#: src/slic3r/GUI/Tab.cpp:3244 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3244 +#: src/slic3r/GUI/Tab.cpp:3246 msgid "UNLOCKED LOCK" msgstr "" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3246 +#: src/slic3r/GUI/Tab.cpp:3248 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -5584,23 +5586,23 @@ msgid "" "to the system (or default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3251 +#: src/slic3r/GUI/Tab.cpp:3253 msgid "WHITE BULLET" msgstr "" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3253 +#: src/slic3r/GUI/Tab.cpp:3255 msgid "" "for the left button: \tindicates a non-system (or non-default) preset,\n" "for the right button: \tindicates that the settings hasn't been modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3256 +#: src/slic3r/GUI/Tab.cpp:3258 msgid "BACK ARROW" msgstr "" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3258 +#: src/slic3r/GUI/Tab.cpp:3260 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -5608,13 +5610,13 @@ msgid "" "to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3268 +#: src/slic3r/GUI/Tab.cpp:3270 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3270 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -5622,17 +5624,17 @@ msgid "" "default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3273 +#: src/slic3r/GUI/Tab.cpp:3275 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3276 +#: src/slic3r/GUI/Tab.cpp:3278 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3278 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -5640,26 +5642,26 @@ msgid "" "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3284 +#: src/slic3r/GUI/Tab.cpp:3286 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3285 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" "Click to reset current value to the system (or default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3291 +#: src/slic3r/GUI/Tab.cpp:3293 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3292 +#: src/slic3r/GUI/Tab.cpp:3294 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -5667,36 +5669,36 @@ msgid "" msgstr "" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3405 +#: src/slic3r/GUI/Tab.cpp:3407 #, possible-c-format msgid "Save %s as:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3451 msgid "the following suffix is not allowed:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3453 +#: src/slic3r/GUI/Tab.cpp:3455 msgid "The supplied name is not available." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3466 src/slic3r/GUI/Tab.cpp:3468 +#: src/slic3r/GUI/Tab.cpp:3468 src/slic3r/GUI/Tab.cpp:3470 msgid "Material" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3596 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support head" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3601 +#: src/slic3r/GUI/Tab.cpp:3603 msgid "Support pillar" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3615 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Connection of the support sticks and junctions" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3620 +#: src/slic3r/GUI/Tab.cpp:3622 msgid "Automatic generation" msgstr "" @@ -6304,110 +6306,110 @@ msgid "" "compatible." msgstr "" -#: src/libslic3r/Print.cpp:1215 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "" -#: src/libslic3r/Print.cpp:1218 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "" -#: src/libslic3r/Print.cpp:1222 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "" -#: src/libslic3r/Print.cpp:1224 +#: src/libslic3r/Print.cpp:1228 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" -#: src/libslic3r/Print.cpp:1233 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "" -#: src/libslic3r/Print.cpp:1240 +#: src/libslic3r/Print.cpp:1244 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "" -#: src/libslic3r/Print.cpp:1253 +#: src/libslic3r/Print.cpp:1257 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." msgstr "" -#: src/libslic3r/Print.cpp:1258 +#: src/libslic3r/Print.cpp:1262 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter " "and Repetier G-code flavors." msgstr "" -#: src/libslic3r/Print.cpp:1260 +#: src/libslic3r/Print.cpp:1264 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" -#: src/libslic3r/Print.cpp:1262 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" -#: src/libslic3r/Print.cpp:1264 +#: src/libslic3r/Print.cpp:1268 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" -#: src/libslic3r/Print.cpp:1266 +#: src/libslic3r/Print.cpp:1270 msgid "" "The Wipe Tower is currently not supported for multimaterial sequential " "prints." msgstr "" -#: src/libslic3r/Print.cpp:1287 +#: src/libslic3r/Print.cpp:1291 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" msgstr "" -#: src/libslic3r/Print.cpp:1289 +#: src/libslic3r/Print.cpp:1293 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" msgstr "" -#: src/libslic3r/Print.cpp:1291 +#: src/libslic3r/Print.cpp:1295 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" msgstr "" -#: src/libslic3r/Print.cpp:1293 +#: src/libslic3r/Print.cpp:1297 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." msgstr "" -#: src/libslic3r/Print.cpp:1335 +#: src/libslic3r/Print.cpp:1339 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" msgstr "" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1365 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" -#: src/libslic3r/Print.cpp:1370 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:1373 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "" -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1388 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -6415,13 +6417,13 @@ msgid "" "same diameter." msgstr "" -#: src/libslic3r/Print.cpp:1392 +#: src/libslic3r/Print.cpp:1396 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." msgstr "" -#: src/libslic3r/Print.cpp:1396 +#: src/libslic3r/Print.cpp:1400 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -6429,31 +6431,31 @@ msgid "" "set to 0)." msgstr "" -#: src/libslic3r/Print.cpp:1418 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "" -#: src/libslic3r/Print.cpp:1423 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "" -#: src/libslic3r/Print.cpp:1580 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "" -#: src/libslic3r/Print.cpp:1602 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "" -#: src/libslic3r/Print.cpp:1610 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "" -#: src/libslic3r/Print.cpp:1634 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "" -#: src/libslic3r/Print.cpp:1638 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "" @@ -6488,67 +6490,67 @@ msgstr "" msgid "Slicing done" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:41 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Hollowing model" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:42 +#: src/libslic3r/SLAPrintSteps.cpp:44 msgid "Drilling holes into model." msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:43 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:45 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:46 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:47 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:62 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:63 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:154 +#: src/libslic3r/SLAPrintSteps.cpp:190 msgid "Too much overlapping holes." msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:163 +#: src/libslic3r/SLAPrintSteps.cpp:199 msgid "" "Drilling holes into the mesh failed. This is usually caused by broken model. " "Try to fix it first." msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:209 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "" "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 -#: src/libslic3r/SLAPrintSteps.cpp:430 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "" -#: src/libslic3r/SLAPrintSteps.cpp:596 +#: src/libslic3r/SLAPrintSteps.cpp:621 msgid "" "There are unprintable objects. Try to adjust support settings to make the " "objects printable." @@ -6636,43 +6638,53 @@ msgid "" "is used." msgstr "" -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:118 +msgid "Elephant foot compensation" +msgstr "" + +#: src/libslic3r/PrintConfig.cpp:120 +msgid "" +"The first layer will be shrunk in the XY plane by the configured value to " +"compensate for the 1st layer squish aka an Elephant Foot effect." +msgstr "" + +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "" -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " "is mostly useful with Bowden extruders which suffer from oozing. This " "feature slows down both the print and the G-code generation." msgstr "" -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "" "Bed temperature for layers after the first one. Set this to zero to disable " "bed temperature control commands in the output." msgstr "" -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "" -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "" "This custom code is inserted at every layer change, right before the Z move. " "Note that you can use placeholder variables for all Slic3r settings as well " "as [layer_num] and [layer_z]." msgstr "" -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "" "This code is inserted between objects when using sequential printing. By " "default extruder and bed temperature are reset using non-wait command; " @@ -6682,80 +6694,80 @@ msgid "" "S[first_layer_temperature]\" command wherever you want." msgstr "" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "" -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "" -#: src/libslic3r/PrintConfig.cpp:175 +#: src/libslic3r/PrintConfig.cpp:185 msgid "" "The number of bottom solid layers is increased above bottom_solid_layers if " "necessary to satisfy minimum thickness of bottom shell." msgstr "" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:187 msgid "Minimum bottom shell thickness" msgstr "" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "" -#: src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:194 msgid "" "This is the acceleration your printer will use for bridges. Set zero to " "disable acceleration control for bridges." msgstr "" -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 #: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 #: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 #: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "" -#: src/libslic3r/PrintConfig.cpp:194 +#: src/libslic3r/PrintConfig.cpp:204 msgid "" "Bridging angle override. If left to zero, the bridging angle will be " "calculated automatically. Otherwise the provided angle will be used for all " "bridges. Use 180° for zero angle." msgstr "" -#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 #: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 #: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "" -#: src/libslic3r/PrintConfig.cpp:204 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "" -#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 #: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 #: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 -#: src/libslic3r/PrintConfig.cpp:2758 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "" -#: src/libslic3r/PrintConfig.cpp:212 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "" -#: src/libslic3r/PrintConfig.cpp:214 +#: src/libslic3r/PrintConfig.cpp:224 msgid "" "This factor affects the amount of plastic for bridging. You can decrease it " "slightly to pull the extrudates and prevent sagging, although default " @@ -6763,15 +6775,15 @@ msgid "" "before tweaking this." msgstr "" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "" -#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 #: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 #: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 #: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 @@ -6784,62 +6796,62 @@ msgstr "" msgid "mm/s" msgstr "" -#: src/libslic3r/PrintConfig.cpp:234 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:245 msgid "" "Horizontal width of the brim that will be printed around each object on the " "first layer." msgstr "" -#: src/libslic3r/PrintConfig.cpp:242 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "" -#: src/libslic3r/PrintConfig.cpp:243 +#: src/libslic3r/PrintConfig.cpp:253 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " "the overlapping object parts one by the other (2nd part will be clipped by " "the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "" -#: src/libslic3r/PrintConfig.cpp:261 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "" -#: src/libslic3r/PrintConfig.cpp:262 +#: src/libslic3r/PrintConfig.cpp:272 msgid "" "A boolean expression using the configuration values of an active printer " "profile. If this expression evaluates to true, this profile is considered " "compatible with the active printer profile." msgstr "" -#: src/libslic3r/PrintConfig.cpp:276 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:287 msgid "" "A boolean expression using the configuration values of an active print " "profile. If this expression evaluates to true, this profile is considered " "compatible with the active print profile." msgstr "" -#: src/libslic3r/PrintConfig.cpp:294 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "" -#: src/libslic3r/PrintConfig.cpp:295 +#: src/libslic3r/PrintConfig.cpp:305 msgid "" "When printing multiple objects or copies, this feature will complete each " "object before moving onto next one (and starting it from its bottom layer). " @@ -6847,100 +6859,90 @@ msgid "" "warn and prevent you from extruder collisions, but beware." msgstr "" -#: src/libslic3r/PrintConfig.cpp:303 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "" -#: src/libslic3r/PrintConfig.cpp:304 +#: src/libslic3r/PrintConfig.cpp:314 msgid "" "This flag enables the automatic cooling logic that adjusts print speed and " "fan speed according to layer printing time." msgstr "" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "" -#: src/libslic3r/PrintConfig.cpp:317 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "" -#: src/libslic3r/PrintConfig.cpp:318 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "" -#: src/libslic3r/PrintConfig.cpp:326 +#: src/libslic3r/PrintConfig.cpp:336 msgid "" "This is the acceleration your printer will be reset to after the role-" "specific acceleration values are used (perimeter/infill). Set zero to " "prevent resetting acceleration at all." msgstr "" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "" -#: src/libslic3r/PrintConfig.cpp:336 +#: src/libslic3r/PrintConfig.cpp:346 msgid "" "Default filament profile associated with the current printer profile. On " "selection of the current printer profile, this filament profile will be " "activated." msgstr "" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "" -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 -#: src/libslic3r/PrintConfig.cpp:2594 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "" "Default print profile associated with the current printer profile. On " "selection of the current printer profile, this print profile will be " "activated." msgstr "" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "" -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:360 msgid "" "You can set this to a positive value to disable fan at all during the first " "layers, so that it does not make adhesion worse." msgstr "" -#: src/libslic3r/PrintConfig.cpp:359 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "" -#: src/libslic3r/PrintConfig.cpp:361 +#: src/libslic3r/PrintConfig.cpp:371 msgid "" "Experimental option for preventing support material from being generated " "under bridged areas." msgstr "" -#: src/libslic3r/PrintConfig.cpp:367 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "" -#: src/libslic3r/PrintConfig.cpp:368 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "" -#: src/libslic3r/PrintConfig.cpp:375 -msgid "Elephant foot compensation" -msgstr "" - -#: src/libslic3r/PrintConfig.cpp:377 -msgid "" -"The first layer will be shrunk in the XY plane by the configured value to " -"compensate for the 1st layer squish aka an Elephant Foot effect." -msgstr "" - #: src/libslic3r/PrintConfig.cpp:386 msgid "" "This end procedure is inserted at the end of the output file. Note that you " @@ -7312,8 +7314,8 @@ msgid "" "average." msgstr "" -#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 -#: src/libslic3r/PrintConfig.cpp:2495 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "" @@ -7355,7 +7357,7 @@ msgstr "" msgid "money/kg" msgstr "" -#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "" @@ -8480,7 +8482,7 @@ msgid "" "plane." msgstr "" -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "" "Only create support if it lies on a build plate. Don't create support on a " "print." @@ -9000,268 +9002,276 @@ msgid "" "correction." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 -msgid "Printer gamma correction" +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elefant foot minimum width" msgstr "" #: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum with of features to maintain when doing EFC" +msgstr "" + +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 +msgid "Printer gamma correction" +msgstr "" + +#: src/libslic3r/PrintConfig.cpp:2458 msgid "" "This will apply a gamma correction to the rasterized 2D polygons. A gamma " "value of zero means thresholding with the threshold in the middle. This " "behaviour eliminates antialiasing without losing holes in polygons." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2482 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2496 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2508 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "" "Number of the layers needed for the exposure time fade from initial exposure " "time to the exposure time" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2604 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2611 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2613 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2620 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2622 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2629 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2631 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2639 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2641 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2650 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "" "Controls the bridge type between two neighboring pillars. Can be zig-zag, " "cross (double zig-zag) or dynamic which will automatically switch between " "the first two depending on the distance of the two pillars." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2658 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2659 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2674 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "" "Merging bridges or pillars into another pillars can increase the radius. " "Zero means no increase, one means full increase." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2683 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2685 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2693 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2695 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "" "The minimum distance of the pillar base from the model in mm. Makes sense in " "zero elevation mode where a gap according to this parameter is inserted " "between the model and the pad." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2715 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2717 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2736 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "" "The max distance of two pillars to get linked with each other. A zero value " "will prohibit pillar cascading." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2746 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "" "How much the supports should lift up the supported object. If \"Pad around " "object\" is enabled, this value is ignored." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2763 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2771 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2773 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2778 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2788 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2789 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "" "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful " "when enabling this feature, as some resins may produce an extreme suction " @@ -9269,115 +9279,115 @@ msgid "" "difficult." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2803 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2813 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "" "Some objects can get along with a few smaller pads instead of a single big " "one. This parameter defines how far the center of two smaller pads should " "be. If theyare closer, they will get merged into one pad." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2835 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " "straight walls." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2846 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2853 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2855 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2860 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2862 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "" "The gap between the object bottom and the generated pad in zero elevation " "mode." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2871 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "" "Distance between two connector sticks which connect the object and the " "generated pad." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2880 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2882 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "" "Width of the connector sticks which connect the object and the generated pad." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2889 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2899 +#: src/libslic3r/PrintConfig.cpp:2908 msgid "Enable hollowing" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2901 +#: src/libslic3r/PrintConfig.cpp:2910 msgid "Hollow out a model to have an empty interior" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2906 +#: src/libslic3r/PrintConfig.cpp:2915 msgid "Wall thickness" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2908 +#: src/libslic3r/PrintConfig.cpp:2917 msgid "Minimum wall thickness of a hollowed model." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2916 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Accuracy" msgstr "" -#: src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2927 msgid "" "Performance vs accuracy of calculation. Lower values may produce unwanted " "artifacts." msgstr "" -#: src/libslic3r/PrintConfig.cpp:2928 +#: src/libslic3r/PrintConfig.cpp:2937 msgid "" "Hollowing is done in two steps: first, an imaginary interior is calculated " "deeper (offset plus the closing distance) in the object and then it's " @@ -9386,255 +9396,255 @@ msgid "" "most." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3311 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3312 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3330 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3335 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3340 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "" "Slice the model as FFF or SLA based on the printer_technology configuration " "value." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3363 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3368 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3373 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3377 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3378 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3389 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3394 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3416 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3420 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3421 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "" "Do not rearrange the given models before merging and keep their original XY " "coordinates." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3425 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3429 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3430 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3434 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "" "Arrange the supplied models in a plate and merge them in a single model in " "order to perform actions once." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3439 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "" "Try to repair any non-manifold meshes (this option is implicitly added " "whenever we need to slice the model to perform the requested action)." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3443 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3448 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3453 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3458 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3463 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "" "Detect unconnected parts in the given model(s) and split them into separate " "objects." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3466 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3467 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3476 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3477 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3480 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3481 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "" "Load configuration from the specified file. It can be used more than once to " "load options from multiple files." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3484 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3485 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "" "The file where the output will be written (if not specified, it will be " "based on the input file)." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3495 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3496 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "" "Load and store settings at the given directory. This is useful for " "maintaining different profiles or including configurations from a network " "storage." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3499 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/libslic3r/PrintConfig.cpp:3509 msgid "" "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" "trace\n" "For example. loglevel=2 logs fatal, error and warning level messages." msgstr "" -#: src/libslic3r/PrintConfig.cpp:3506 +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "" -#: src/libslic3r/PrintConfig.cpp:3507 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "" "Render with a software renderer. The bundled MESA software renderer is " "loaded instead of the default OpenGL driver." diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 3a097d9abe..2e01e3552b 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -819,7 +819,7 @@ void GUI_App::add_config_menu(wxMenuBar *menu) local_menu->AppendSubMenu(mode_menu, _(L("Mode")), wxString::Format(_(L("%s View Mode")), SLIC3R_APP_NAME)); local_menu->AppendSeparator(); - local_menu->Append(config_id_base + ConfigMenuLanguage, _(L("Change Application &Language"))); + local_menu->Append(config_id_base + ConfigMenuLanguage, _(L("&Language"))); local_menu->AppendSeparator(); local_menu->Append(config_id_base + ConfigMenuFlashFirmware, _(L("Flash printer &firmware")), _(L("Upload a firmware image into an Arduino based printer"))); // TODO: for when we're able to flash dictionaries From bfd79fc48c5bee43ee4373988f0bdb005cdff193 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Wed, 19 Feb 2020 13:48:10 +0100 Subject: [PATCH 29/91] Fix English tooltip and label for elefant_foot_min_width --- src/libslic3r/PrintConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 40ea1772ed..2be1f8cf63 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2444,9 +2444,9 @@ void PrintConfigDef::init_sla_params() def->set_default_value(new ConfigOptionFloat(0.0)); def = this->add("elefant_foot_min_width", coFloat); - def->label = L("Elefant foot minimum width"); + def->label = L("Elephant foot minimum width"); def->category = L("Advanced"); - def->tooltip = L("Minimum with of features to maintain when doing EFC"); + def->tooltip = L("Minimum width of features to maintain when doing elephant foot compensation."); def->sidetext = L("mm"); def->min = 0; def->mode = comAdvanced; From c691a225c2954dd59a3537562d930f90d9c2f0c0 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 19 Feb 2020 13:54:56 +0100 Subject: [PATCH 30/91] Localization: small changes in POT --- resources/localization/PrusaSlicer.pot | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/localization/PrusaSlicer.pot b/resources/localization/PrusaSlicer.pot index 6fd1ac31b2..1f5bf3f925 100644 --- a/resources/localization/PrusaSlicer.pot +++ b/resources/localization/PrusaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 13:17+0100\n" +"POT-Creation-Date: 2020-02-19 13:53+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -9003,11 +9003,12 @@ msgid "" msgstr "" #: src/libslic3r/PrintConfig.cpp:2447 -msgid "Elefant foot minimum width" +msgid "Elephant foot minimum width" msgstr "" #: src/libslic3r/PrintConfig.cpp:2449 -msgid "Minimum with of features to maintain when doing EFC" +msgid "" +"Minimum width of features to maintain when doing elephant foot compensation." msgstr "" #: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 From 746a5c178856971378aa579d078cfb5dc4e43afb Mon Sep 17 00:00:00 2001 From: David Kocik Date: Wed, 19 Feb 2020 15:59:40 +0100 Subject: [PATCH 31/91] bug fix at check_copy() while exporting to sd/usb --- src/libslic3r/utils.cpp | 10 ++++++---- src/slic3r/GUI/BackgroundSlicingProcess.cpp | 10 ++++++++++ 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/utils.cpp b/src/libslic3r/utils.cpp index c451507779..104d0c5ffa 100644 --- a/src/libslic3r/utils.cpp +++ b/src/libslic3r/utils.cpp @@ -456,11 +456,13 @@ int copy_file(const std::string &from, const std::string &to, const bool with_ch int check_copy(const std::string &origin, const std::string ©) { - std::ifstream f1(origin, std::ifstream::in | std::ifstream::binary | std::ifstream::ate); - std::ifstream f2(copy, std::ifstream::in | std::ifstream::binary | std::ifstream::ate); + boost::nowide::ifstream f1(origin, std::ifstream::in | std::ifstream::binary | std::ifstream::ate); + boost::nowide::ifstream f2(copy, std::ifstream::in | std::ifstream::binary | std::ifstream::ate); - if (f1.fail() || f2.fail()) - return -2; + if (f1.fail()) + return -4; + if (f2.fail()) + return -5; std::streampos fsize = f1.tellg(); if (fsize != f2.tellg()) diff --git a/src/slic3r/GUI/BackgroundSlicingProcess.cpp b/src/slic3r/GUI/BackgroundSlicingProcess.cpp index 548a19f776..53c3ec5ea2 100644 --- a/src/slic3r/GUI/BackgroundSlicingProcess.cpp +++ b/src/slic3r/GUI/BackgroundSlicingProcess.cpp @@ -108,6 +108,16 @@ void BackgroundSlicingProcess::process_fff() std::string err_msg = "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at " + export_path + ".tmp."; throw std::runtime_error(_utf8(L(err_msg))); } + else if (with_check && copy_ret_val == -4) + { + std::string err_msg = "Copying of the temporary G-code has finnished but the original code at "+ m_temp_output_path +" couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; + throw std::runtime_error(_utf8(L(err_msg))); + } + else if (with_check && copy_ret_val == -5) + { + std::string err_msg = "Copying of the temporary G-code has finnished but the exported code couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; + throw std::runtime_error(_utf8(L(err_msg))); + } else if (copy_ret_val == -3) { std::string err_msg = "Renaming of the G-code after copying to the selected destination folder has failed. Current path is " + export_path + ".tmp. Please try exporting again."; From 5e4a0b96b791f4ed72ae84b5f672a11ac174b12e Mon Sep 17 00:00:00 2001 From: YuSanka Date: Thu, 20 Feb 2020 14:19:00 +0100 Subject: [PATCH 32/91] Linux issue: fixed Object's DnD with sub items --- src/slic3r/GUI/GUI_ObjectList.cpp | 6 ++++-- src/slic3r/GUI/ObjectDataViewModel.cpp | 28 ++++++++++++++++++++++++++ src/slic3r/GUI/ObjectDataViewModel.hpp | 5 +++-- 3 files changed, 35 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index 63aca71409..a5566de299 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -1561,9 +1561,11 @@ wxMenuItem* ObjectList::append_menu_item_settings(wxMenu* menu_) // Add frequently settings const ItemType item_type = m_objects_model->GetItemType(GetSelection()); - if (item_type == itUndef) + if (item_type == itUndef && !selection.is_single_full_object()) return nullptr; - const bool is_object_settings = item_type & itObject || item_type & itInstance || selection.is_single_full_object(); + const bool is_object_settings = item_type & itObject || item_type & itInstance || + // multi-selection in ObjectList, but full_object in Selection + (item_type == itUndef && selection.is_single_full_object()); create_freq_settings_popupmenu(menu, is_object_settings); if (mode == comAdvanced) diff --git a/src/slic3r/GUI/ObjectDataViewModel.cpp b/src/slic3r/GUI/ObjectDataViewModel.cpp index b49b27e332..649b3c32e4 100644 --- a/src/slic3r/GUI/ObjectDataViewModel.cpp +++ b/src/slic3r/GUI/ObjectDataViewModel.cpp @@ -1185,6 +1185,26 @@ void ObjectDataViewModel::SetExtruder(const wxString& extruder, wxDataViewItem i SetValue(value, item, colExtruder); } +void ObjectDataViewModel::AddAllChildren(const wxDataViewItem& parent) +{ + ObjectDataViewModelNode* node = (ObjectDataViewModelNode*)parent.GetID(); + if (!node || node->GetChildCount() == 0) + return; + + wxDataViewItemArray array; + const size_t count = node->GetChildCount(); + for (size_t pos = 0; pos < count; pos++) { + ObjectDataViewModelNode* child = node->GetChildren().Item(pos); + array.Add(wxDataViewItem((void*)child)); + ItemAdded(parent, wxDataViewItem((void*)child)); + } + + for (const auto item : array) + AddAllChildren(item); + + m_ctrl->Expand(parent); +}; + wxDataViewItem ObjectDataViewModel::ReorganizeChildren( const int current_volume_id, const int new_volume_id, const wxDataViewItem &parent) @@ -1205,6 +1225,10 @@ wxDataViewItem ObjectDataViewModel::ReorganizeChildren( const int current_volume node_parent->Insert(deleted_node, new_volume_id+shift); ItemAdded(parent, wxDataViewItem(deleted_node)); + // If some item has a children, just to add a deleted item is not enough on Linux + // We should to add all its children separately + AddAllChildren(wxDataViewItem(deleted_node)); + //update volume_id value for child-nodes auto children = node_parent->GetChildren(); int id_frst = current_volume_id < new_volume_id ? current_volume_id : new_volume_id; @@ -1227,6 +1251,10 @@ wxDataViewItem ObjectDataViewModel::ReorganizeObjects( const int current_id, co m_objects.emplace(m_objects.begin() + new_id, deleted_node); ItemAdded(wxDataViewItem(nullptr), wxDataViewItem(deleted_node)); + // If some item has a children, just to add a deleted item is not enough on Linux + // We should to add all its children separately + AddAllChildren(wxDataViewItem(deleted_node)); + return wxDataViewItem(deleted_node); } diff --git a/src/slic3r/GUI/ObjectDataViewModel.hpp b/src/slic3r/GUI/ObjectDataViewModel.hpp index 3d838cd435..c184842664 100644 --- a/src/slic3r/GUI/ObjectDataViewModel.hpp +++ b/src/slic3r/GUI/ObjectDataViewModel.hpp @@ -504,8 +504,9 @@ public: void UpdateExtruderBitmap(wxDataViewItem item); private: - wxDataViewItem AddRoot(const wxDataViewItem& parent_item, const ItemType root_type); - wxDataViewItem AddInstanceRoot(const wxDataViewItem& parent_item); + wxDataViewItem AddRoot(const wxDataViewItem& parent_item, const ItemType root_type); + wxDataViewItem AddInstanceRoot(const wxDataViewItem& parent_item); + void AddAllChildren(const wxDataViewItem& parent); }; From 90a8076d25626a05a94abdb8409ca09493079e54 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 20 Feb 2020 15:01:00 +0100 Subject: [PATCH 33/91] SLA support gizmo correctly hides drain holes if they are clipped by clipping plane --- src/slic3r/GUI/Gizmos/GLGizmoBase.hpp | 2 ++ src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 16 ++++++++-------- src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp | 2 -- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 3 +++ 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp index f3941b0a10..11185a83d0 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp @@ -198,6 +198,8 @@ public: bool recent_update = false; + static constexpr float HoleStickOutLength = 1.f; + ModelObject* m_model_object = nullptr; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 31dd919a71..408164aa81 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -242,7 +242,7 @@ void GLGizmoHollow::render_points(const Selection& selection, bool picking) cons const sla::DrainHole& drain_hole = m_c->m_model_object->sla_drain_holes[i]; const bool& point_selected = m_selected[i]; - if (is_mesh_point_clipped((drain_hole.pos+HoleStickOutLength*drain_hole.normal).cast())) + if (is_mesh_point_clipped((drain_hole.pos+m_c->HoleStickOutLength*drain_hole.normal).cast())) continue; // First decide about the color of the point. @@ -417,8 +417,8 @@ bool GLGizmoHollow::gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_pos pos_and_normal.second(1)/scaling(1), pos_and_normal.second(2)/scaling(2)); - m_c->m_model_object->sla_drain_holes.emplace_back(pos_and_normal.first + HoleStickOutLength * pos_and_normal.second/* normal_transformed.normalized()*/, - -pos_and_normal.second, m_new_hole_radius, m_new_hole_height+HoleStickOutLength); + m_c->m_model_object->sla_drain_holes.emplace_back(pos_and_normal.first + m_c->HoleStickOutLength * pos_and_normal.second/* normal_transformed.normalized()*/, + -pos_and_normal.second, m_new_hole_radius, m_new_hole_height+m_c->HoleStickOutLength); m_selected.push_back(false); assert(m_selected.size() == m_c->m_model_object->sla_drain_holes.size()); m_parent.set_as_dirty(); @@ -545,7 +545,7 @@ void GLGizmoHollow::on_update(const UpdateData& data) std::pair pos_and_normal; if (! unproject_on_mesh(data.mouse_pos.cast(), pos_and_normal)) return; - m_c->m_model_object->sla_drain_holes[m_hover_id].pos = pos_and_normal.first + HoleStickOutLength * pos_and_normal.second; + m_c->m_model_object->sla_drain_holes[m_hover_id].pos = pos_and_normal.first + m_c->HoleStickOutLength * pos_and_normal.second; m_c->m_model_object->sla_drain_holes[m_hover_id].normal = -pos_and_normal.second; } } @@ -831,9 +831,9 @@ RENDER_AGAIN: m_imgui->text(m_desc["hole_depth"]); ImGui::SameLine(diameter_slider_left); - m_new_hole_height -= HoleStickOutLength; + m_new_hole_height -= m_c->HoleStickOutLength; ImGui::SliderFloat(" ", &m_new_hole_height, 0.f, 10.f, "%.1f"); - m_new_hole_height += HoleStickOutLength; + m_new_hole_height += m_c->HoleStickOutLength; clicked |= ImGui::IsItemClicked(); edited |= ImGui::IsItemEdited(); @@ -1082,7 +1082,7 @@ void GLGizmoHollow::select_point(int i) if (i == AllPoints) { m_new_hole_radius = m_c->m_model_object->sla_drain_holes[0].radius; - m_new_hole_height = m_c->m_model_object->sla_drain_holes[0].height - HoleStickOutLength; + m_new_hole_height = m_c->m_model_object->sla_drain_holes[0].height - m_c->HoleStickOutLength; } } else { @@ -1091,7 +1091,7 @@ void GLGizmoHollow::select_point(int i) m_selected[i] = true; m_selection_empty = false; m_new_hole_radius = m_c->m_model_object->sla_drain_holes[i].radius; - m_new_hole_height = m_c->m_model_object->sla_drain_holes[i].height - HoleStickOutLength; + m_new_hole_height = m_c->m_model_object->sla_drain_holes[i].height - m_c->HoleStickOutLength; } } diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp index 2daf28b2af..f3650c94d0 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp @@ -24,8 +24,6 @@ private: mutable double m_z_shift = 0.; bool unproject_on_mesh(const Vec2d& mouse_pos, std::pair& pos_and_normal); - const float HoleStickOutLength = 1.f; - GLUquadricObj* m_quadric; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index 05f33ae52c..759cda35ce 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -342,6 +342,9 @@ void GLGizmoSlaSupports::render_points(const Selection& selection, bool picking) render_color[3] = 0.7f; glsafe(::glColor4fv(render_color)); for (const sla::DrainHole& drain_hole : m_c->m_model_object->sla_drain_holes) { + if (is_mesh_point_clipped((drain_hole.pos+m_c->HoleStickOutLength*drain_hole.normal).cast())) + continue; + // Inverse matrix of the instance scaling is applied so that the mark does not scale with the object. glsafe(::glPushMatrix()); glsafe(::glTranslatef(drain_hole.pos(0), drain_hole.pos(1), drain_hole.pos(2))); From 487ac0423e1dc254bd93ab34b133acf8d4036a88 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Thu, 20 Feb 2020 17:32:46 +0100 Subject: [PATCH 34/91] Implemented time estimation for PausePrint (#3544) DoubleSlider: fixed get_color_for_color_change_tick() --- src/libslic3r/CustomGCode.hpp | 6 ++ src/libslic3r/GCode.cpp | 6 +- src/libslic3r/GCodeTimeEstimator.cpp | 92 +++++++++++++++++++--------- src/libslic3r/GCodeTimeEstimator.hpp | 22 ++++--- src/libslic3r/Print.hpp | 8 +-- src/slic3r/GUI/DoubleSlider.cpp | 4 +- src/slic3r/GUI/GLCanvas3D.cpp | 7 ++- src/slic3r/GUI/Plater.cpp | 41 +++++++++---- 8 files changed, 127 insertions(+), 59 deletions(-) diff --git a/src/libslic3r/CustomGCode.hpp b/src/libslic3r/CustomGCode.hpp index e54599ca64..a5ef1cc2ea 100644 --- a/src/libslic3r/CustomGCode.hpp +++ b/src/libslic3r/CustomGCode.hpp @@ -13,6 +13,12 @@ static constexpr char ColorChangeCode[] = "M600"; static constexpr char PausePrintCode[] = "M601"; static constexpr char ToolChangeCode[] = "tool_change"; +enum CustomGcodeType +{ + cgtColorChange, + cgtPausePrint, +}; + namespace CustomGCode { struct Item diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 0b7ef4ff7a..b7a7c18c4d 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -1033,9 +1033,9 @@ namespace DoExport { print_statistics.clear(); print_statistics.estimated_normal_print_time = normal_time_estimator.get_time_dhm/*s*/(); print_statistics.estimated_silent_print_time = silent_time_estimator_enabled ? silent_time_estimator.get_time_dhm/*s*/() : "N/A"; - print_statistics.estimated_normal_color_print_times = normal_time_estimator.get_color_times_dhms(true); + print_statistics.estimated_normal_custom_gcode_print_times = normal_time_estimator.get_custom_gcode_times_dhm(true); if (silent_time_estimator_enabled) - print_statistics.estimated_silent_color_print_times = silent_time_estimator.get_color_times_dhms(true); + print_statistics.estimated_silent_custom_gcode_print_times = silent_time_estimator.get_custom_gcode_times_dhm(true); print_statistics.total_toolchanges = std::max(0, wipe_tower_data.number_of_toolchanges); if (! extruders.empty()) { std::pair out_filament_used_mm ("; filament used [mm] = ", 0); @@ -1823,7 +1823,7 @@ namespace ProcessLayer if (!pause_print_msg.empty()) gcode += "M117 " + pause_print_msg + "\n"; // add tag for time estimator - //gcode += "; " + GCodeTimeEstimator::Pause_Print_Tag + "\n"; + gcode += "; " + GCodeTimeEstimator::Pause_Print_Tag + "\n"; } else // custom Gcode { diff --git a/src/libslic3r/GCodeTimeEstimator.cpp b/src/libslic3r/GCodeTimeEstimator.cpp index 3ef325aef1..44b6a3d244 100644 --- a/src/libslic3r/GCodeTimeEstimator.cpp +++ b/src/libslic3r/GCodeTimeEstimator.cpp @@ -174,6 +174,7 @@ namespace Slic3r { const std::string GCodeTimeEstimator::Silent_Last_M73_Output_Placeholder_Tag = "; _TE_SILENT_LAST_M73_OUTPUT_PLACEHOLDER"; const std::string GCodeTimeEstimator::Color_Change_Tag = "PRINT_COLOR_CHANGE"; + const std::string GCodeTimeEstimator::Pause_Print_Tag = "PRINT_PAUSE"; GCodeTimeEstimator::GCodeTimeEstimator(EMode mode) : m_mode(mode) @@ -212,8 +213,8 @@ namespace Slic3r { } _calculate_time(); - if (m_needs_color_times && (m_color_time_cache != 0.0f)) - m_color_times.push_back(m_color_time_cache); + if (m_needs_custom_gcode_times && (m_custom_gcode_time_cache != 0.0f)) + m_custom_gcode_times.push_back({ cgtColorChange, m_custom_gcode_time_cache }); #if ENABLE_MOVE_STATS _log_moves_stats(); @@ -230,8 +231,8 @@ namespace Slic3r { _calculate_time(); - if (m_needs_color_times && (m_color_time_cache != 0.0f)) - m_color_times.push_back(m_color_time_cache); + if (m_needs_custom_gcode_times && (m_custom_gcode_time_cache != 0.0f)) + m_custom_gcode_times.push_back({ cgtColorChange, m_custom_gcode_time_cache }); #if ENABLE_MOVE_STATS _log_moves_stats(); @@ -245,8 +246,8 @@ namespace Slic3r { m_parser.parse_file(file, boost::bind(&GCodeTimeEstimator::_process_gcode_line, this, _1, _2)); _calculate_time(); - if (m_needs_color_times && (m_color_time_cache != 0.0f)) - m_color_times.push_back(m_color_time_cache); + if (m_needs_custom_gcode_times && (m_custom_gcode_time_cache != 0.0f)) + m_custom_gcode_times.push_back({ cgtColorChange, m_custom_gcode_time_cache }); #if ENABLE_MOVE_STATS _log_moves_stats(); @@ -263,8 +264,8 @@ namespace Slic3r { m_parser.parse_line(line, action); _calculate_time(); - if (m_needs_color_times && (m_color_time_cache != 0.0f)) - m_color_times.push_back(m_color_time_cache); + if (m_needs_custom_gcode_times && (m_custom_gcode_time_cache != 0.0f)) + m_custom_gcode_times.push_back({ cgtColorChange, m_custom_gcode_time_cache}); #if ENABLE_MOVE_STATS _log_moves_stats(); @@ -351,8 +352,8 @@ namespace Slic3r { } // check tags - // remove color change tag - if (gcode_line == "; " + Color_Change_Tag) + // remove Color_Change_Tag and Pause_Print_Tag + if (gcode_line == "; " + Color_Change_Tag || gcode_line == "; " + Pause_Print_Tag) continue; // replaces placeholders for initial line M73 with the real lines @@ -717,25 +718,26 @@ namespace Slic3r { return _get_time_minutes(get_time()); } - std::vector GCodeTimeEstimator::get_color_times() const + std::vector> GCodeTimeEstimator::get_custom_gcode_times() const { - return m_color_times; + return m_custom_gcode_times; } std::vector GCodeTimeEstimator::get_color_times_dhms(bool include_remaining) const { std::vector ret; float total_time = 0.0f; - for (float t : m_color_times) +// for (float t : m_color_times) + for (auto t : m_custom_gcode_times) { - std::string time = _get_time_dhms(t); + std::string time = _get_time_dhms(t.second); if (include_remaining) { time += " ("; time += _get_time_dhms(m_time - total_time); time += ")"; } - total_time += t; + total_time += t.second; ret.push_back(time); } return ret; @@ -745,20 +747,42 @@ namespace Slic3r { { std::vector ret; float total_time = 0.0f; - for (float t : m_color_times) +// for (float t : m_color_times) + for (auto t : m_custom_gcode_times) { - std::string time = _get_time_minutes(t); + std::string time = _get_time_minutes(t.second); if (include_remaining) { time += " ("; time += _get_time_minutes(m_time - total_time); time += ")"; } - total_time += t; + total_time += t.second; } return ret; } + std::vector> GCodeTimeEstimator::get_custom_gcode_times_dhm(bool include_remaining) const + { + std::vector> ret; + + float total_time = 0.0f; + for (auto t : m_custom_gcode_times) + { + std::string time = _get_time_dhm(t.second); + if (include_remaining) + { + time += " ("; + time += _get_time_dhm(m_time - total_time); + time += ")"; + } + total_time += t.second; + ret.push_back({t.first, time}); + } + + return ret; + } + // Return an estimate of the memory consumed by the time estimator. size_t GCodeTimeEstimator::memory_used() const { @@ -791,9 +815,9 @@ namespace Slic3r { m_last_st_synchronized_block_id = -1; - m_needs_color_times = false; - m_color_times.clear(); - m_color_time_cache = 0.0f; + m_needs_custom_gcode_times = false; + m_custom_gcode_times.clear(); + m_custom_gcode_time_cache = 0.0f; } void GCodeTimeEstimator::_reset_time() @@ -814,7 +838,7 @@ namespace Slic3r { _recalculate_trapezoids(); m_time += get_additional_time(); - m_color_time_cache += get_additional_time(); + m_custom_gcode_time_cache += get_additional_time(); for (int i = m_last_st_synchronized_block_id + 1; i < (int)m_blocks.size(); ++i) { @@ -835,7 +859,7 @@ namespace Slic3r { it->second.time += block_time; #endif // ENABLE_MOVE_STATS - m_color_time_cache += block_time; + m_custom_gcode_time_cache += block_time; } m_last_st_synchronized_block_id = (int)m_blocks.size() - 1; @@ -1466,26 +1490,34 @@ namespace Slic3r { { std::string comment = line.comment(); - // color change tag + // Color_Change_Tag size_t pos = comment.find(Color_Change_Tag); if (pos != comment.npos) { - _process_color_change_tag(); + _process_custom_gcode_tag(cgtColorChange); + return true; + } + + // Pause_Print_Tag + pos = comment.find(Pause_Print_Tag); + if (pos != comment.npos) + { + _process_custom_gcode_tag(cgtPausePrint); return true; } return false; } - void GCodeTimeEstimator::_process_color_change_tag() + void GCodeTimeEstimator::_process_custom_gcode_tag(CustomGcodeType code) { PROFILE_FUNC(); - m_needs_color_times = true; + m_needs_custom_gcode_times = true; _calculate_time(); - if (m_color_time_cache != 0.0f) + if (m_custom_gcode_time_cache != 0.0f) { - m_color_times.push_back(m_color_time_cache); - m_color_time_cache = 0.0f; + m_custom_gcode_times.push_back({code, m_custom_gcode_time_cache}); + m_custom_gcode_time_cache = 0.0f; } } diff --git a/src/libslic3r/GCodeTimeEstimator.hpp b/src/libslic3r/GCodeTimeEstimator.hpp index 496b992d8f..7c364d9eb6 100644 --- a/src/libslic3r/GCodeTimeEstimator.hpp +++ b/src/libslic3r/GCodeTimeEstimator.hpp @@ -4,6 +4,7 @@ #include "libslic3r.h" #include "PrintConfig.hpp" #include "GCodeReader.hpp" +#include "CustomGCode.hpp" #define ENABLE_MOVE_STATS 0 @@ -23,6 +24,7 @@ namespace Slic3r { static const std::string Silent_Last_M73_Output_Placeholder_Tag; static const std::string Color_Change_Tag; + static const std::string Pause_Print_Tag; enum EMode : unsigned char { @@ -240,10 +242,10 @@ namespace Slic3r { int m_last_st_synchronized_block_id; float m_time; // s - // data to calculate color print times - bool m_needs_color_times; - std::vector m_color_times; - float m_color_time_cache; + // data to calculate custom code times + bool m_needs_custom_gcode_times; + std::vector> m_custom_gcode_times; + float m_custom_gcode_time_cache; #if ENABLE_MOVE_STATS MovesStatsMap _moves_stats; @@ -369,8 +371,8 @@ namespace Slic3r { // Returns the estimated time, in minutes (integer) std::string get_time_minutes() const; - // Returns the estimated time, in seconds, for each color - std::vector get_color_times() const; + // Returns the estimated time, in seconds, for each custom gcode + std::vector> get_custom_gcode_times() const; // Returns the estimated time, in format DDd HHh MMm SSs, for each color // If include_remaining==true the strings will be formatted as: "time for color (remaining time at color start)" @@ -380,6 +382,10 @@ namespace Slic3r { // If include_remaining==true the strings will be formatted as: "time for color (remaining time at color start)" std::vector get_color_times_minutes(bool include_remaining) const; + // Returns the estimated time, in format DDd HHh MMm, for each custom_gcode + // If include_remaining==true the strings will be formatted as: "time for custom_gcode (remaining time at color start)" + std::vector> get_custom_gcode_times_dhm(bool include_remaining) const; + // Return an estimate of the memory consumed by the time estimator. size_t memory_used() const; @@ -460,8 +466,8 @@ namespace Slic3r { // Returns true if any tag has been processed bool _process_tags(const GCodeReader::GCodeLine& line); - // Processes color change tag - void _process_color_change_tag(); + // Processes ColorChangeTag and PausePrintTag + void _process_custom_gcode_tag(CustomGcodeType code); // Simulates firmware st_synchronize() call void _simulate_st_synchronize(); diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp index 7b326472e4..4f9f9ad1e8 100644 --- a/src/libslic3r/Print.hpp +++ b/src/libslic3r/Print.hpp @@ -302,8 +302,8 @@ struct PrintStatistics PrintStatistics() { clear(); } std::string estimated_normal_print_time; std::string estimated_silent_print_time; - std::vector estimated_normal_color_print_times; - std::vector estimated_silent_color_print_times; + std::vector> estimated_normal_custom_gcode_print_times; + std::vector> estimated_silent_custom_gcode_print_times; double total_used_filament; double total_extruded_volume; double total_cost; @@ -323,8 +323,8 @@ struct PrintStatistics void clear() { estimated_normal_print_time.clear(); estimated_silent_print_time.clear(); - estimated_normal_color_print_times.clear(); - estimated_silent_color_print_times.clear(); + estimated_normal_custom_gcode_print_times.clear(); + estimated_silent_custom_gcode_print_times.clear(); total_used_filament = 0.; total_extruded_volume = 0.; total_cost = 0.; diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index 357c143c47..9afbb73ed6 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -696,9 +696,11 @@ std::string Control::get_color_for_color_change_tick(std::set::const_i if (it_n->gcode == ToolChangeCode) { is_tool_change = true; if (it_n->extruder == it->extruder) - return m_extruder_colors[it->extruder-1]; // return a color for a specific extruder from the colors list + return it->color; break; } + if (it_n->gcode == ColorChangeCode && it_n->extruder == it->extruder) + return it->color; } if (!is_tool_change && it->extruder == def_extruder) return it->color; diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index b5319a2f18..496de1d544 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -982,12 +982,17 @@ void GLCanvas3D::LegendTexture::fill_color_print_legend_items( const GLCanvas3D cp_legend_items.emplace_back(I18N::translate_utf8(L("Pause print or custom G-code"))); int cnt = custom_gcode_per_print_z.size(); + int color_change_idx = color_cnt - extruders_cnt; for (int i = cnt-1; i >= 0; --i) if (custom_gcode_per_print_z[i].gcode == ColorChangeCode) { ::memcpy((void*)(colors.data() + color_pos), (const void*)(colors_in.data() + color_in_pos), 4 * sizeof(float)); color_pos += 4; color_in_pos -= 4; - cp_legend_items.emplace_back((boost::format(I18N::translate_utf8(L("Color change for Extruder %d at %.2f mm"))) % custom_gcode_per_print_z[i].extruder % custom_gcode_per_print_z[i].print_z).str()); + + // create label for color change item + std::string id_str = std::to_string(color_change_idx--) + ": "; + + cp_legend_items.emplace_back(id_str + (boost::format(I18N::translate_utf8(L("Color change for Extruder %d at %.2f mm"))) % custom_gcode_per_print_z[i].extruder % custom_gcode_per_print_z[i].print_z).str()); } } } diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index bc28b62e0f..8296e15d5a 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1252,23 +1252,40 @@ void Sidebar::update_sliced_info_sizer() else { new_label = _(L("Estimated printing time")) +" :"; info_text = ""; - if (ps.estimated_normal_print_time != "N/A") { - new_label += wxString::Format("\n - %s", _(L("normal mode"))); - info_text += wxString::Format("\n%s", ps.estimated_normal_print_time); - for (int i = (int)ps.estimated_normal_color_print_times.size() - 1; i >= 0; --i) + wxString str_color = _(L("Color")); + wxString str_pause = _(L("Pause")); + + auto fill_labels = [str_color, str_pause](const std::vector>& times, + wxString& new_label, wxString& info_text) + { + int color_change_count = 0; + for (auto time : times) + if (time.first == cgtColorChange) + color_change_count++; + + for (int i = (int)times.size() - 1; i >= 0; --i) { - new_label += wxString::Format("\n - %s%d", _(L("Color")) + " ", i + 1); - info_text += wxString::Format("\n%s", ps.estimated_normal_color_print_times[i]); + if (i == 0 || times[i - 1].first == cgtPausePrint) + new_label += wxString::Format("\n - %s%d", str_color + " ", color_change_count); + else if (times[i - 1].first == cgtColorChange) + new_label += wxString::Format("\n - %s%d", str_color + " ", color_change_count--); + + if (i != (int)times.size() - 1 && times[i].first == cgtPausePrint) + new_label += wxString::Format(" -> %s", str_pause); + + info_text += wxString::Format("\n%s", times[i].second); } + }; + + if (ps.estimated_normal_print_time != "N/A") { + new_label += wxString::Format("\n - %s", _(L("normal mode"))); + info_text += wxString::Format("\n%s", ps.estimated_normal_print_time); + fill_labels(ps.estimated_normal_custom_gcode_print_times, new_label, info_text); } if (ps.estimated_silent_print_time != "N/A") { - new_label += wxString::Format("\n - %s", _(L("stealth mode"))); + new_label += wxString::Format("\n - %s", _(L("stealth mode"))); info_text += wxString::Format("\n%s", ps.estimated_silent_print_time); - for (int i = (int)ps.estimated_silent_color_print_times.size() - 1; i >= 0; --i) - { - new_label += wxString::Format("\n - %s%d", _(L("Color")) + " ", i + 1); - info_text += wxString::Format("\n%s", ps.estimated_silent_color_print_times[i]); - } + fill_labels(ps.estimated_silent_custom_gcode_print_times, new_label, info_text); } p->sliced_info->SetTextAndShow(siEstimatedTime, info_text, new_label); } From 4df6a645f2c98ae90b187c3c47b468f98543cd14 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 20 Feb 2020 14:28:45 +0100 Subject: [PATCH 35/91] AABB trees for SLA gizmos are not calculated when the object is selected, but only after one of the gizmos is opened --- src/slic3r/GUI/Gizmos/GLGizmoBase.cpp | 23 ++++++++++++++------ src/slic3r/GUI/Gizmos/GLGizmoBase.hpp | 3 +++ src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 6 +++++ src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 11 ++++++++++ src/slic3r/GUI/Gizmos/GLGizmosManager.cpp | 15 ++----------- 5 files changed, 38 insertions(+), 20 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp index daf7e1fd1d..523d3eef6c 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp @@ -371,13 +371,7 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode m_model_object_id = m_model_object->id(); if (m_mesh != m_old_mesh) { - wxBusyCursor wait; - m_mesh_raycaster.reset(new MeshRaycaster(*m_mesh)); - m_object_clipper.reset(); - m_supports_clipper.reset(); - m_old_mesh = m_mesh; - m_clipping_plane_distance = 0.f; - m_clipping_plane_distance_stash = 0.f; + m_schedule_aabb_calculation = true; recent_update = true; return true; } @@ -388,6 +382,21 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode } +void CommonGizmosData::build_AABB_if_needed() +{ + if (! m_schedule_aabb_calculation) + return; + + wxBusyCursor wait; + m_mesh_raycaster.reset(new MeshRaycaster(*m_mesh)); + m_object_clipper.reset(); + m_supports_clipper.reset(); + m_old_mesh = m_mesh; + m_clipping_plane_distance = 0.f; + m_clipping_plane_distance_stash = 0.f; + m_schedule_aabb_calculation = false; +} + } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp index 11185a83d0..157100687f 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp @@ -231,11 +231,14 @@ public: bool has_drilled_mesh() const { return m_has_drilled_mesh; } + void build_AABB_if_needed(); + private: const TriangleMesh* m_old_mesh; TriangleMesh m_backend_mesh_transformed; float m_clipping_plane_distance_stash = 0.f; bool m_has_drilled_mesh = false; + bool m_schedule_aabb_calculation = false; }; } // namespace GUI diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 408164aa81..27e99e240d 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -57,6 +57,10 @@ bool GLGizmoHollow::on_init() void GLGizmoHollow::set_sla_support_data(ModelObject*, const Selection&) { if (m_c->recent_update) { + if (m_state == On) + m_c->build_AABB_if_needed(); + + update_clipping_plane(); if (m_c->m_model_object) { reload_cache(); @@ -983,6 +987,8 @@ void GLGizmoHollow::on_set_state() m_c->unstash_clipping_plane(); update_clipping_plane(m_c->m_clipping_plane_distance != 0.f); + m_c->build_AABB_if_needed(); + // we'll now reload support points: if (m_c->m_model_object) reload_cache(); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index 759cda35ce..d9898b3151 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -63,7 +63,16 @@ bool GLGizmoSlaSupports::on_init() void GLGizmoSlaSupports::set_sla_support_data(ModelObject* model_object, const Selection& selection) { + // Update common data for hollowing and sla support gizmos. + if (wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() == ptSLA) + m_c->update_from_backend(m_parent, model_object); + if (m_c->recent_update) { + if (m_state == On) + m_c->build_AABB_if_needed(); + + update_clipping_plane(); + if (m_state == On) { m_parent.toggle_model_objects_visibility(false); m_parent.toggle_model_objects_visibility(/*! m_c->m_cavity_mesh*/ true, m_c->m_model_object, m_c->m_active_instance); @@ -1004,6 +1013,8 @@ void GLGizmoSlaSupports::on_set_state() m_c->unstash_clipping_plane(); update_clipping_plane(m_c->m_clipping_plane_distance != 0.f); + m_c->build_AABB_if_needed(); + // we'll now reload support points: if (m_c->m_model_object) diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp index 7e334c29f2..7d747ceff1 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp @@ -351,19 +351,8 @@ void GLGizmosManager::set_sla_support_data(ModelObject* model_object) auto* gizmo_supports = dynamic_cast(m_gizmos[SlaSupports].get()); auto* gizmo_hollow = dynamic_cast(m_gizmos[Hollow].get()); - - // Update common data for hollowing and sla support gizmos. - if (wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() == ptSLA) { - if (m_common_gizmos_data->update_from_backend(m_parent, model_object)) { - // FIXME: this is a hack to make that the clipping plane is - // updated when the update set its position to zero. The clipping - // plane itself should be common, including the update_function. - // Then update_from_backend could do it itself. - gizmo_supports->update_clipping_plane(); - gizmo_hollow->update_clipping_plane(); - } - } - + // note: sla support gizmo takes care of updating the common data. + // following lines are thus dependent gizmo_supports->set_sla_support_data(model_object, m_parent.get_selection()); gizmo_hollow->set_sla_support_data(model_object, m_parent.get_selection()); } From 4c22023762d4231df4823c7e0c9f85ca89b0f05a Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 08:14:45 +0100 Subject: [PATCH 36/91] SLA gizmo clipping plane resetting Clipping plane direction is now initialized when the plane is first moved, not when the gizmo is opened. This is how previous versions worked. This is a minimal-effort solution before the clipping plane is refactored properly. --- src/slic3r/GUI/Gizmos/GLGizmoBase.cpp | 22 +++++++++++++++++--- src/slic3r/GUI/Gizmos/GLGizmoBase.hpp | 1 + src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 14 ++++++++----- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 18 +++++++++------- 4 files changed, 40 insertions(+), 15 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp index 523d3eef6c..52518878fa 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp @@ -310,6 +310,7 @@ unsigned char picking_checksum_alpha_channel(unsigned char red, unsigned char gr bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* model_object) { recent_update = false; + bool object_changed = false; if (m_model_object != model_object || (model_object && m_model_object_id != model_object->id())) { @@ -325,7 +326,7 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode m_active_instance = canvas.get_selection().get_instance_idx(); m_active_instance_bb_radius = m_model_object->instance_bounding_box(m_active_instance).radius(); } - + object_changed = true; recent_update = true; } @@ -347,6 +348,7 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode } } + bool mesh_exchanged = false; m_mesh = nullptr; // Load either the model_object mesh, or one provided by the backend // This mesh does not account for the possible Z up SLA offset. @@ -359,6 +361,7 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode m_backend_mesh_transformed.transform(canvas.sla_print()->sla_trafo(*m_model_object).inverse()); m_mesh = &m_backend_mesh_transformed; m_has_drilled_mesh = true; + mesh_exchanged = true; } } @@ -371,6 +374,21 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode m_model_object_id = m_model_object->id(); if (m_mesh != m_old_mesh) { + // Update clipping plane position. + float new_clp_pos = m_clipping_plane_distance; + if (object_changed) { + new_clp_pos = 0.f; + m_clipping_plane_was_moved = false; + } else { + // After we got a drilled mesh, move the cp to 25% (if not used already) + if (m_clipping_plane_distance == 0.f && mesh_exchanged && m_has_drilled_mesh) { + new_clp_pos = 0.25f; + m_clipping_plane_was_moved = false; // so it uses current camera direction + } + } + m_clipping_plane_distance = new_clp_pos; + m_clipping_plane_distance_stash = new_clp_pos; + m_schedule_aabb_calculation = true; recent_update = true; return true; @@ -392,8 +410,6 @@ void CommonGizmosData::build_AABB_if_needed() m_object_clipper.reset(); m_supports_clipper.reset(); m_old_mesh = m_mesh; - m_clipping_plane_distance = 0.f; - m_clipping_plane_distance_stash = 0.f; m_schedule_aabb_calculation = false; } diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp index 157100687f..695946e3d6 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp @@ -220,6 +220,7 @@ public: float m_clipping_plane_distance = 0.f; std::unique_ptr m_clipping_plane; + bool m_clipping_plane_was_moved = false; void stash_clipping_plane() { m_clipping_plane_distance_stash = m_clipping_plane_distance; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 27e99e240d..260bc813da 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -57,10 +57,11 @@ bool GLGizmoHollow::on_init() void GLGizmoHollow::set_sla_support_data(ModelObject*, const Selection&) { if (m_c->recent_update) { + if (m_state == On) m_c->build_AABB_if_needed(); - update_clipping_plane(); + update_clipping_plane(m_c->m_clipping_plane_was_moved); if (m_c->m_model_object) { reload_cache(); @@ -511,7 +512,8 @@ bool GLGizmoHollow::gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_pos if (action == SLAGizmoEventType::MouseWheelUp && control_down) { m_c->m_clipping_plane_distance = std::min(1.f, m_c->m_clipping_plane_distance + 0.01f); - update_clipping_plane(true); + update_clipping_plane(m_c->m_clipping_plane_was_moved); + m_c->m_clipping_plane_was_moved = true; return true; } @@ -901,8 +903,10 @@ RENDER_AGAIN: ImGui::SameLine(clipping_slider_left); ImGui::PushItemWidth(window_width - clipping_slider_left); - if (ImGui::SliderFloat(" ", &m_c->m_clipping_plane_distance, 0.f, 1.f, "%.2f")) - update_clipping_plane(true); + if (ImGui::SliderFloat(" ", &m_c->m_clipping_plane_distance, 0.f, 1.f, "%.2f")) { + update_clipping_plane(m_c->m_clipping_plane_was_moved); + m_c->m_clipping_plane_was_moved = true; + } // make sure supports are shown/hidden as appropriate if (m_imgui->checkbox(m_desc["show_supports"], m_show_supports)) { @@ -985,7 +989,7 @@ void GLGizmoHollow::on_set_state() //Plater::TakeSnapshot snapshot(wxGetApp().plater(), _(L("SLA gizmo turned on"))); //m_c->update_from_backend(m_parent, m_c->m_model_object); m_c->unstash_clipping_plane(); - update_clipping_plane(m_c->m_clipping_plane_distance != 0.f); + update_clipping_plane(m_c->m_clipping_plane_was_moved); m_c->build_AABB_if_needed(); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index d9898b3151..247e643eb1 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -71,7 +71,7 @@ void GLGizmoSlaSupports::set_sla_support_data(ModelObject* model_object, const S if (m_state == On) m_c->build_AABB_if_needed(); - update_clipping_plane(); + update_clipping_plane(m_c->m_clipping_plane_was_moved); if (m_state == On) { m_parent.toggle_model_objects_visibility(false); @@ -599,7 +599,8 @@ bool GLGizmoSlaSupports::gizmo_event(SLAGizmoEventType action, const Vec2d& mous if (action == SLAGizmoEventType::MouseWheelUp && control_down) { m_c->m_clipping_plane_distance = std::min(1.f, m_c->m_clipping_plane_distance + 0.01f); - update_clipping_plane(true); + update_clipping_plane(m_c->m_clipping_plane_was_moved); + m_c->m_clipping_plane_was_moved = true; return true; } @@ -925,8 +926,10 @@ RENDER_AGAIN: ImGui::SameLine(clipping_slider_left); ImGui::PushItemWidth(window_width - clipping_slider_left); - if (ImGui::SliderFloat(" ", &m_c->m_clipping_plane_distance, 0.f, 1.f, "%.2f")) - update_clipping_plane(true); + if (ImGui::SliderFloat(" ", &m_c->m_clipping_plane_distance, 0.f, 1.f, "%.2f")) { + update_clipping_plane(m_c->m_clipping_plane_was_moved); + m_c->m_clipping_plane_was_moved = true; + } if (m_imgui->button("?")) { @@ -1011,7 +1014,7 @@ void GLGizmoSlaSupports::on_set_state() Plater::TakeSnapshot snapshot(wxGetApp().plater(), _(L("SLA gizmo turned on"))); m_c->unstash_clipping_plane(); - update_clipping_plane(m_c->m_clipping_plane_distance != 0.f); + update_clipping_plane(m_c->m_clipping_plane_was_moved); m_c->build_AABB_if_needed(); @@ -1021,9 +1024,10 @@ void GLGizmoSlaSupports::on_set_state() reload_cache(); m_parent.toggle_model_objects_visibility(false); - if (m_c->m_model_object /*&& ! m_c->m_cavity_mesh*/) + if (m_c->m_model_object) { m_parent.toggle_model_objects_visibility(true, m_c->m_model_object, m_c->m_active_instance); - m_parent.toggle_sla_auxiliaries_visibility(! m_editing_mode, m_c->m_model_object, m_c->m_active_instance); + m_parent.toggle_sla_auxiliaries_visibility(! m_editing_mode, m_c->m_model_object, m_c->m_active_instance); + } // Set default head diameter from config. const DynamicPrintConfig& cfg = wxGetApp().preset_bundle->sla_prints.get_edited_preset().config; From 003a54600d1b09c06f0c2ec440fa3fad9749de3b Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 08:28:20 +0100 Subject: [PATCH 37/91] Make sure that objects are correctly shown/hidden when switched --- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 7 +++++-- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 260bc813da..a89d8f9e52 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -74,8 +74,11 @@ void GLGizmoHollow::set_sla_support_data(ModelObject*, const Selection&) m_parent.toggle_model_objects_visibility(true, m_c->m_model_object, m_c->m_active_instance); m_parent.toggle_sla_auxiliaries_visibility(m_show_supports, m_c->m_model_object, m_c->m_active_instance); } - else - m_parent.toggle_model_objects_visibility(true, nullptr, -1); + // following was removed so that it does not show the object when it should + // be hidden because the supports gizmo is active. on_set_state takes care + // of showing the object. + //else + // m_parent.toggle_model_objects_visibility(true, nullptr, -1); } } diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index 247e643eb1..aa9ce50144 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -78,8 +78,11 @@ void GLGizmoSlaSupports::set_sla_support_data(ModelObject* model_object, const S m_parent.toggle_model_objects_visibility(/*! m_c->m_cavity_mesh*/ true, m_c->m_model_object, m_c->m_active_instance); m_parent.toggle_sla_auxiliaries_visibility(! m_editing_mode, m_c->m_model_object, m_c->m_active_instance); } - else - m_parent.toggle_model_objects_visibility(true, nullptr, -1); + // following was removed so that it does not show the object when it should + // be hidden because the supports gizmo is active. on_set_state takes care + // of showing the object. + //else + // m_parent.toggle_model_objects_visibility(true, nullptr, -1); disable_editing_mode(); if (m_c->m_model_object) From 74799ade143e2f85e4a306ce6303e6e47fe5707a Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 10:02:41 +0100 Subject: [PATCH 38/91] Fixed two cases of crashes on application close Both related to ObjectList - it was attempting to call plater after it was destroyed Approved by @YuSanka --- src/slic3r/GUI/GUI_ObjectList.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index a5566de299..f5f5548309 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -77,7 +77,9 @@ static int extruders_count() static void take_snapshot(const wxString& snapshot_name) { - wxGetApp().plater()->take_snapshot(snapshot_name); + Plater* plater = wxGetApp().plater(); + if (plater) + plater->take_snapshot(snapshot_name); } ObjectList::ObjectList(wxWindow* parent) : @@ -3931,7 +3933,9 @@ void ObjectList::OnEditingDone(wxDataViewEvent &event) m_last_selected_column = -1; #endif //__WXMSW__ - wxGetApp().plater()->set_current_canvas_as_dirty(); + Plater* plater = wxGetApp().plater(); + if (plater) + plater->set_current_canvas_as_dirty(); } void ObjectList::show_multi_selection_menu() From 57c0a313a45ca6ec31aa2da605fdd83011e46981 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 10:05:03 +0100 Subject: [PATCH 39/91] Fixed typo in an error message --- src/slic3r/GUI/BackgroundSlicingProcess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/BackgroundSlicingProcess.cpp b/src/slic3r/GUI/BackgroundSlicingProcess.cpp index 53c3ec5ea2..363a7d8e10 100644 --- a/src/slic3r/GUI/BackgroundSlicingProcess.cpp +++ b/src/slic3r/GUI/BackgroundSlicingProcess.cpp @@ -110,12 +110,12 @@ void BackgroundSlicingProcess::process_fff() } else if (with_check && copy_ret_val == -4) { - std::string err_msg = "Copying of the temporary G-code has finnished but the original code at "+ m_temp_output_path +" couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; + std::string err_msg = "Copying of the temporary G-code has finished but the original code at "+ m_temp_output_path +" couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; throw std::runtime_error(_utf8(L(err_msg))); } else if (with_check && copy_ret_val == -5) { - std::string err_msg = "Copying of the temporary G-code has finnished but the exported code couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; + std::string err_msg = "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; throw std::runtime_error(_utf8(L(err_msg))); } else if (copy_ret_val == -3) From 8be3d074fd5bc0449c1c968f6e63c294008973bb Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 20 Feb 2020 13:23:25 +0100 Subject: [PATCH 40/91] Fix of wipe into object The bug was introduced in 15eedef. lower_bound_by_predicate implementation returns first item that does not satisfy the predicate, not last item that does. --- src/libslic3r/Print.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp index 4f9f9ad1e8..a239224262 100644 --- a/src/libslic3r/Print.hpp +++ b/src/libslic3r/Print.hpp @@ -150,15 +150,15 @@ public: Layer* get_layer(int idx) { return m_layers[idx]; } // Get a layer exactly at print_z. const Layer* get_layer_at_printz(coordf_t print_z) const { - auto it = Slic3r::lower_bound_by_predicate(m_layers.begin(), m_layers.end(), [print_z](const Layer *layer) { return layer->print_z < print_z; }); + auto it = Slic3r::lower_bound_by_predicate(m_layers.begin(), m_layers.end(), [print_z](const Layer *layer) { return layer->print_z < print_z; }); return (it == m_layers.end() || (*it)->print_z != print_z) ? nullptr : *it; } Layer* get_layer_at_printz(coordf_t print_z) { return const_cast(std::as_const(*this).get_layer_at_printz(print_z)); } // Get a layer approximately at print_z. const Layer* get_layer_at_printz(coordf_t print_z, coordf_t epsilon) const { - coordf_t limit = print_z + epsilon; - auto it = Slic3r::lower_bound_by_predicate(m_layers.begin(), m_layers.end(), [limit](const Layer *layer) { return layer->print_z < limit; }); - return (it == m_layers.end() || (*it)->print_z < print_z - epsilon) ? nullptr : *it; + coordf_t limit = print_z - epsilon; + auto it = Slic3r::lower_bound_by_predicate(m_layers.begin(), m_layers.end(), [limit](const Layer *layer) { return layer->print_z < limit; }); + return (it == m_layers.end() || (*it)->print_z > print_z + epsilon) ? nullptr : *it; } Layer* get_layer_at_printz(coordf_t print_z, coordf_t epsilon) { return const_cast(std::as_const(*this).get_layer_at_printz(print_z, epsilon)); } From 004b23e362e38154197401148224565f1ad5f305 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 21 Feb 2020 11:03:03 +0100 Subject: [PATCH 41/91] Fix of Bug: Changing print settings resets filament settings #3675 When switching a Print profile, the modifications of an active Filament profile were incorrecly dropped even if the active Filament profile was compatible with the newly selected Print profile. --- src/slic3r/GUI/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index e0cfe5be65..541be423d0 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2795,7 +2795,7 @@ void Tab::select_preset(std::string preset_name, bool delete_current) if (! canceled) { // The preset will be switched to a different, compatible preset, or the '-- default --'. m_dependent_tabs.emplace_back((printer_technology == ptFFF) ? Preset::Type::TYPE_FILAMENT : Preset::Type::TYPE_SLA_MATERIAL); - if (old_preset_dirty) + if (old_preset_dirty && ! new_preset_compatible) dependent.discard_current_changes(); } } else if (printer_tab) { From 427cf32849f13ec32162744193751262fcc8983d Mon Sep 17 00:00:00 2001 From: David Kocik Date: Fri, 21 Feb 2020 11:17:48 +0100 Subject: [PATCH 42/91] refactoring of errors at copying g-code to target destination --- src/slic3r/GUI/BackgroundSlicingProcess.cpp | 41 +++++++++------------ 1 file changed, 18 insertions(+), 23 deletions(-) diff --git a/src/slic3r/GUI/BackgroundSlicingProcess.cpp b/src/slic3r/GUI/BackgroundSlicingProcess.cpp index 363a7d8e10..27aa6eaa6d 100644 --- a/src/slic3r/GUI/BackgroundSlicingProcess.cpp +++ b/src/slic3r/GUI/BackgroundSlicingProcess.cpp @@ -103,30 +103,25 @@ void BackgroundSlicingProcess::process_fff() GUI::RemovableDriveManager::get_instance().update(); bool with_check = GUI::RemovableDriveManager::get_instance().is_path_on_removable_drive(export_path); int copy_ret_val = copy_file(m_temp_output_path, export_path, with_check); - if (with_check && copy_ret_val == -2) - { - std::string err_msg = "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at " + export_path + ".tmp."; - throw std::runtime_error(_utf8(L(err_msg))); - } - else if (with_check && copy_ret_val == -4) - { - std::string err_msg = "Copying of the temporary G-code has finished but the original code at "+ m_temp_output_path +" couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; - throw std::runtime_error(_utf8(L(err_msg))); - } - else if (with_check && copy_ret_val == -5) - { - std::string err_msg = "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; - throw std::runtime_error(_utf8(L(err_msg))); - } - else if (copy_ret_val == -3) - { - std::string err_msg = "Renaming of the G-code after copying to the selected destination folder has failed. Current path is " + export_path + ".tmp. Please try exporting again."; - throw std::runtime_error(_utf8(L(err_msg))); - } - else if ( copy_ret_val != 0) - { - throw std::runtime_error(_utf8(L("Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?"))); + switch (copy_ret_val){ + case 0: break; // no error + case -2: + throw std::runtime_error((boost::format(_utf8(L("Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp."))) % export_path).str()); + break; + case -3: + throw std::runtime_error((boost::format(_utf8(L("Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again."))) % export_path).str()); + break; + case -4: + throw std::runtime_error((boost::format(_utf8(L("Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp."))) % m_temp_output_path % export_path).str()); + break; + case -5: + throw std::runtime_error((boost::format(_utf8(L("Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp."))) % export_path).str()); + break; + default: + throw std::runtime_error(_utf8(L("Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?"))); + break; } + m_print->set_status(95, _utf8(L("Running post-processing scripts"))); run_post_process_scripts(export_path, m_fff_print->config()); m_print->set_status(100, (boost::format(_utf8(L("G-code file exported to %1%"))) % export_path).str()); From 377b9e4b45bb7157f580ea92093fc56e24b83203 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 21 Feb 2020 12:17:46 +0100 Subject: [PATCH 43/91] ImGUI input_double wrapper for wxString label. Possible fix of Fix encoding in Hollowing #3683 --- src/slic3r/GUI/ImGuiWrapper.cpp | 6 ++++++ src/slic3r/GUI/ImGuiWrapper.hpp | 1 + 2 files changed, 7 insertions(+) diff --git a/src/slic3r/GUI/ImGuiWrapper.cpp b/src/slic3r/GUI/ImGuiWrapper.cpp index 90ef017fcd..3efa800a92 100644 --- a/src/slic3r/GUI/ImGuiWrapper.cpp +++ b/src/slic3r/GUI/ImGuiWrapper.cpp @@ -286,6 +286,12 @@ bool ImGuiWrapper::input_double(const std::string &label, const double &value, c return ImGui::InputDouble(label.c_str(), const_cast(&value), 0.0f, 0.0f, format.c_str()); } +bool ImGuiWrapper::input_double(const wxString &label, const double &value, const std::string &format) +{ + auto label_utf8 = into_u8(label); + return input_double(label_utf8, value, format); +} + bool ImGuiWrapper::input_vec3(const std::string &label, const Vec3d &value, float width, const std::string &format) { bool value_changed = false; diff --git a/src/slic3r/GUI/ImGuiWrapper.hpp b/src/slic3r/GUI/ImGuiWrapper.hpp index 5118af036d..4175618811 100644 --- a/src/slic3r/GUI/ImGuiWrapper.hpp +++ b/src/slic3r/GUI/ImGuiWrapper.hpp @@ -63,6 +63,7 @@ public: bool button(const wxString &label); bool radio_button(const wxString &label, bool active); bool input_double(const std::string &label, const double &value, const std::string &format = "%.3f"); + bool input_double(const wxString &label, const double &value, const std::string &format = "%.3f"); bool input_vec3(const std::string &label, const Vec3d &value, float width, const std::string &format = "%.3f"); bool checkbox(const wxString &label, bool &value); void text(const char *label); From 598ec046391c13ff587611f9fe6746b73b457ef3 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 12:53:28 +0100 Subject: [PATCH 44/91] Hopefully a fix for #3683 (encoding in hollowing gizmo) --- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index a89d8f9e52..4a3df41815 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -706,9 +706,9 @@ void GLGizmoHollow::on_render_input_window(float x, float y, float bottom_limit) double closing_d_max = opts[2].second->max; ConfigOptionMode closing_d_mode = opts[2].second->mode; - m_desc["offset"] = _(opts[0].second->label).ToUTF8() + wxString(":"); - m_desc["quality"] = _(opts[1].second->label).ToUTF8() + wxString(":"); - m_desc["closing_distance"] = _(opts[2].second->label).ToUTF8() + wxString(":"); + m_desc["offset"] = _(opts[0].second->label) + ":"; + m_desc["quality"] = _(opts[1].second->label) + ":"; + m_desc["closing_distance"] = _(opts[2].second->label) + ":"; RENDER_AGAIN: From a877147afd5a400310b526d50f2ec867aa6579ee Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Mon, 6 Jan 2020 11:33:18 -0800 Subject: [PATCH 45/91] fix #3402 Amended by lukasmatena: changed mb_str() to ToUTF8() --- src/slic3r/GUI/GLCanvas3D.cpp | 2 +- src/slic3r/GUI/wxExtensions.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 496de1d544..4d98fe33b5 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -274,7 +274,7 @@ void GLCanvas3D::LayersEditing::render_overlay(const GLCanvas3D& canvas) const if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); - ImGui::TextUnformatted(_(L("Higher print quality versus higher print speed."))); + ImGui::TextUnformatted(_(L("Higher print quality versus higher print speed.")).ToUTF8()); ImGui::EndTooltip(); } diff --git a/src/slic3r/GUI/wxExtensions.cpp b/src/slic3r/GUI/wxExtensions.cpp index 3f82c43e47..d3d9e61a23 100644 --- a/src/slic3r/GUI/wxExtensions.cpp +++ b/src/slic3r/GUI/wxExtensions.cpp @@ -603,7 +603,7 @@ void apply_extruder_selector(wxBitmapComboBox** ctrl, ++i; } - (*ctrl)->Append(use_full_item_name ? wxString::Format("%s %d", str, i) : std::to_string(i), *bmp); + (*ctrl)->Append(use_full_item_name ? wxString::Format("%s %d", str, i) : wxString::Format("%d", i), *bmp); ++i; } (*ctrl)->SetSelection(0); From 91cabe5832467cf546c4f000ceda9cc2c287a89e Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 11:58:18 +0100 Subject: [PATCH 46/91] Fixed few more encoding issues All uncovered after disabling unsafe wxString conversions --- src/slic3r/GUI/BackgroundSlicingProcess.cpp | 2 +- src/slic3r/GUI/ConfigSnapshotDialog.cpp | 2 +- src/slic3r/GUI/Plater.cpp | 4 ++-- src/slic3r/GUI/Tab.cpp | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/slic3r/GUI/BackgroundSlicingProcess.cpp b/src/slic3r/GUI/BackgroundSlicingProcess.cpp index 27aa6eaa6d..c4e6272bad 100644 --- a/src/slic3r/GUI/BackgroundSlicingProcess.cpp +++ b/src/slic3r/GUI/BackgroundSlicingProcess.cpp @@ -219,7 +219,7 @@ void BackgroundSlicingProcess::thread_proc() wxString errmsg = wxString::Format(_(L("%s has encountered an error. It was likely caused by running out of memory. " "If you are sure you have enough RAM on your system, this may also be a bug and we would " "be glad if you reported it.")), SLIC3R_APP_NAME); - error = errmsg.ToStdString() + "\n\n" + std::string(ex.what()); + error = std::string(errmsg.ToUTF8()) + "\n\n" + std::string(ex.what()); } catch (std::exception &ex) { error = ex.what(); } catch (...) { diff --git a/src/slic3r/GUI/ConfigSnapshotDialog.cpp b/src/slic3r/GUI/ConfigSnapshotDialog.cpp index d48dfccc98..fbc1794ee5 100644 --- a/src/slic3r/GUI/ConfigSnapshotDialog.cpp +++ b/src/slic3r/GUI/ConfigSnapshotDialog.cpp @@ -162,7 +162,7 @@ void ConfigSnapshotDialog::on_dpi_changed(const wxRect &suggested_rect) void ConfigSnapshotDialog::onLinkClicked(wxHtmlLinkEvent &event) { - m_snapshot_to_activate = event.GetLinkInfo().GetHref(); + m_snapshot_to_activate = event.GetLinkInfo().GetHref().ToUTF8(); this->EndModal(wxID_CLOSE); } diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 8296e15d5a..9e003aac53 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -322,7 +322,7 @@ PresetBitmapComboBox(parent, wxSize(15 * wxGetApp().em_unit(), -1)), dialog.CenterOnParent(); if (dialog.ShowModal() == wxID_OK) { - colors->values[extruder_idx] = dialog.GetColourData().GetColour().GetAsString(wxC2S_HTML_SYNTAX); + colors->values[extruder_idx] = dialog.GetColourData().GetColour().GetAsString(wxC2S_HTML_SYNTAX).ToStdString(); DynamicPrintConfig cfg_new = *cfg; cfg_new.set_key_value("extruder_colour", colors); @@ -3077,7 +3077,7 @@ unsigned int Plater::priv::update_background_process(bool force_validation, bool GUI::show_error(this->q, _(err)); } else { // Show the error message once the main window gets activated. - this->delayed_error_message = _(err); + this->delayed_error_message = _(err).ToUTF8(); } return_state |= UPDATE_BACKGROUND_PROCESS_INVALID; } diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 541be423d0..ed3a93007f 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -49,14 +49,14 @@ Tab::Tab(wxNotebook* parent, const wxString& title, Preset::Type type) : m_compatible_printers.type = Preset::TYPE_PRINTER; m_compatible_printers.key_list = "compatible_printers"; m_compatible_printers.key_condition = "compatible_printers_condition"; - m_compatible_printers.dialog_title = _(L("Compatible printers")); - m_compatible_printers.dialog_label = _(L("Select the printers this profile is compatible with.")); + m_compatible_printers.dialog_title = _(L("Compatible printers")).ToUTF8(); + m_compatible_printers.dialog_label = _(L("Select the printers this profile is compatible with.")).ToUTF8(); m_compatible_prints.type = Preset::TYPE_PRINT; m_compatible_prints.key_list = "compatible_prints"; m_compatible_prints.key_condition = "compatible_prints_condition"; - m_compatible_prints.dialog_title = _(L("Compatible print profiles")); - m_compatible_prints.dialog_label = _(L("Select the print profiles this profile is compatible with.")); + m_compatible_prints.dialog_title = _(L("Compatible print profiles")).ToUTF8(); + m_compatible_prints.dialog_label = _(L("Select the print profiles this profile is compatible with.")).ToUTF8(); wxGetApp().tabs_list.push_back(this); @@ -3032,7 +3032,7 @@ void Tab::save_preset(std::string name /*= ""*/) const Preset &preset = m_presets->get_selected_preset(); auto default_name = preset.is_default ? "Untitled" : // preset.is_system ? (boost::format(_utf8(L("%1% - Copy"))) % preset.name).str() : - preset.is_system ? (boost::format(_CTX_utf8(L_CONTEXT("%1% - Copy", "PresetName"), "PresetName")) % preset.name).str() : + preset.is_system ? (boost::format(_CTX_utf8(L_CONTEXT("%1% - Copy", "PresetName"), "PresetName").ToUTF8()) % preset.name).str() : preset.name; bool have_extention = boost::iends_with(default_name, ".ini"); From f60c11776103ac7506174c4fafd23a89feba0f69 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 12:50:26 +0100 Subject: [PATCH 47/91] One more encoding problem Uncovered after rebasing onto current master --- src/slic3r/GUI/GLCanvas3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 4d98fe33b5..adc1e2e447 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -1302,7 +1302,7 @@ void GLCanvas3D::Labels::render(const std::vector& sorted_ return owner.model_instance_id == id; }); if (it != owners.end()) - it->print_order = _(L("Seq.")) + "#: " + std::to_string(i + 1); + it->print_order = std::string((_(L("Seq."))).ToUTF8()) + "#: " + std::to_string(i + 1); } } From a7ffd2a6fe5408a135c1b7c33da33613bc3b63a7 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 21 Feb 2020 13:38:06 +0100 Subject: [PATCH 48/91] GUI::show_error() is now generalized for std::string and const char* Fixed return type of std::string translate_utf8() with context (incorrectly returned wxString, should return std::string). Fixed double translation of BackgroundSlicingProcess::validate() in Plater. --- src/slic3r/GUI/GUI.cpp | 7 ++++++- src/slic3r/GUI/GUI.hpp | 2 ++ src/slic3r/GUI/GUI_App.cpp | 4 ++-- src/slic3r/GUI/I18N.hpp | 8 ++++---- src/slic3r/GUI/Plater.cpp | 4 ++-- src/slic3r/GUI/PrintHostDialogs.cpp | 2 +- src/slic3r/GUI/Tab.cpp | 2 +- src/slic3r/Utils/PresetUpdater.cpp | 2 +- 8 files changed, 19 insertions(+), 12 deletions(-) diff --git a/src/slic3r/GUI/GUI.cpp b/src/slic3r/GUI/GUI.cpp index c22fd6f792..45921b5304 100644 --- a/src/slic3r/GUI/GUI.cpp +++ b/src/slic3r/GUI/GUI.cpp @@ -229,10 +229,15 @@ void show_error(wxWindow* parent, const wxString& message) msg.ShowModal(); } +void show_error(wxWindow* parent, const char* message) +{ + show_error(parent, wxString::FromUTF8(message)); +} + void show_error_id(int id, const std::string& message) { auto *parent = id != 0 ? wxWindow::FindWindowById(id) : nullptr; - show_error(parent, from_u8(message)); + show_error(parent, message); } void show_info(wxWindow* parent, const wxString& message, const wxString& title) diff --git a/src/slic3r/GUI/GUI.hpp b/src/slic3r/GUI/GUI.hpp index 0b904bad86..b13e7c042e 100644 --- a/src/slic3r/GUI/GUI.hpp +++ b/src/slic3r/GUI/GUI.hpp @@ -39,6 +39,8 @@ extern void add_menus(wxMenuBar *menu, int event_preferences_changed, int event_ void change_opt_value(DynamicPrintConfig& config, const t_config_option_key& opt_key, const boost::any& value, int opt_index = 0); void show_error(wxWindow* parent, const wxString& message); +void show_error(wxWindow* parent, const char* message); +inline void show_error(wxWindow* parent, const std::string& message) { show_error(parent, message.c_str()); } void show_error_id(int id, const std::string& message); // For Perl void show_info(wxWindow* parent, const wxString& message, const wxString& title); void warning_catcher(wxWindow* parent, const wxString& message); diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 2e01e3552b..ad76dc37fb 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -244,7 +244,7 @@ bool GUI_App::on_init_inner() try { preset_bundle->load_presets(*app_config); } catch (const std::exception &ex) { - show_error(nullptr, from_u8(ex.what())); + show_error(nullptr, ex.what()); } register_dpi_event(); @@ -1241,7 +1241,7 @@ void GUI_App::check_updates(const bool verbose) } } catch (const std::exception & ex) { - show_error(nullptr, from_u8(ex.what())); + show_error(nullptr, ex.what()); } diff --git a/src/slic3r/GUI/I18N.hpp b/src/slic3r/GUI/I18N.hpp index bf3103f771..8cf226a730 100644 --- a/src/slic3r/GUI/I18N.hpp +++ b/src/slic3r/GUI/I18N.hpp @@ -67,10 +67,10 @@ namespace I18N { inline wxString translate(const std::string &s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s.c_str(), wxConvUTF8), ctx); } inline wxString translate(const std::wstring &s, const char* ctx) { return _wxGetTranslation_ctx(s.c_str(), ctx); } - inline wxString translate_utf8(const char *s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s, wxConvUTF8), ctx).ToUTF8().data(); } - inline wxString translate_utf8(const wchar_t *s, const char* ctx) { return _wxGetTranslation_ctx(s, ctx).ToUTF8().data(); } - inline wxString translate_utf8(const std::string &s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s.c_str(), wxConvUTF8), ctx).ToUTF8().data(); } - inline wxString translate_utf8(const std::wstring &s, const char* ctx) { return _wxGetTranslation_ctx(s.c_str(), ctx).ToUTF8().data(); } + inline std::string translate_utf8(const char *s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s, wxConvUTF8), ctx).ToUTF8().data(); } + inline std::string translate_utf8(const wchar_t *s, const char* ctx) { return _wxGetTranslation_ctx(s, ctx).ToUTF8().data(); } + inline std::string translate_utf8(const std::string &s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s.c_str(), wxConvUTF8), ctx).ToUTF8().data(); } + inline std::string translate_utf8(const std::wstring &s, const char* ctx) { return _wxGetTranslation_ctx(s.c_str(), ctx).ToUTF8().data(); } #undef _wxGetTranslation_ctx } // namespace I18N diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 9e003aac53..14f24a9993 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3074,10 +3074,10 @@ unsigned int Plater::priv::update_background_process(bool force_validation, bool auto *top_level_wnd = dynamic_cast(p); if (! postpone_error_messages && top_level_wnd && top_level_wnd->IsActive()) { // The error returned from the Print needs to be translated into the local language. - GUI::show_error(this->q, _(err)); + GUI::show_error(this->q, err); } else { // Show the error message once the main window gets activated. - this->delayed_error_message = _(err).ToUTF8(); + this->delayed_error_message = err; } return_state |= UPDATE_BACKGROUND_PROCESS_INVALID; } diff --git a/src/slic3r/GUI/PrintHostDialogs.cpp b/src/slic3r/GUI/PrintHostDialogs.cpp index d083895379..6707dc0ed0 100644 --- a/src/slic3r/GUI/PrintHostDialogs.cpp +++ b/src/slic3r/GUI/PrintHostDialogs.cpp @@ -275,7 +275,7 @@ void PrintHostQueueDialog::on_error(Event &evt) on_list_select(); - GUI::show_error(nullptr, std::move(errormsg)); + GUI::show_error(nullptr, errormsg); } void PrintHostQueueDialog::on_cancel(Event &evt) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index ed3a93007f..fefc8e1135 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3032,7 +3032,7 @@ void Tab::save_preset(std::string name /*= ""*/) const Preset &preset = m_presets->get_selected_preset(); auto default_name = preset.is_default ? "Untitled" : // preset.is_system ? (boost::format(_utf8(L("%1% - Copy"))) % preset.name).str() : - preset.is_system ? (boost::format(_CTX_utf8(L_CONTEXT("%1% - Copy", "PresetName"), "PresetName").ToUTF8()) % preset.name).str() : + preset.is_system ? (boost::format(_CTX_utf8(L_CONTEXT("%1% - Copy", "PresetName"), "PresetName")) % preset.name).str() : preset.name; bool have_extention = boost::iends_with(default_name, ".ini"); diff --git a/src/slic3r/Utils/PresetUpdater.cpp b/src/slic3r/Utils/PresetUpdater.cpp index 4e33e9d6bc..909595cc08 100644 --- a/src/slic3r/Utils/PresetUpdater.cpp +++ b/src/slic3r/Utils/PresetUpdater.cpp @@ -423,7 +423,7 @@ Updates PresetUpdater::priv::get_config_updates(const Semver &old_slic3r_version // Any published config shall be always found in the latest config index. auto message = (boost::format("Preset bundle `%1%` version not found in index: %2%") % idx.vendor() % vp.config_version.to_string()).str(); BOOST_LOG_TRIVIAL(error) << message; - GUI::show_error(nullptr, GUI::from_u8(message)); + GUI::show_error(nullptr, message); continue; } From 676448581d18c963bbd72cfa587376b1e3b39cea Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 14:23:50 +0100 Subject: [PATCH 49/91] Fixed a bug in hollowing gizmo - hole depth not matching slider value after selection --- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 4a3df41815..a6283f80e7 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -426,7 +426,7 @@ bool GLGizmoHollow::gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_pos pos_and_normal.second(2)/scaling(2)); m_c->m_model_object->sla_drain_holes.emplace_back(pos_and_normal.first + m_c->HoleStickOutLength * pos_and_normal.second/* normal_transformed.normalized()*/, - -pos_and_normal.second, m_new_hole_radius, m_new_hole_height+m_c->HoleStickOutLength); + -pos_and_normal.second, m_new_hole_radius, m_new_hole_height); m_selected.push_back(false); assert(m_selected.size() == m_c->m_model_object->sla_drain_holes.size()); m_parent.set_as_dirty(); @@ -1095,7 +1095,7 @@ void GLGizmoHollow::select_point(int i) if (i == AllPoints) { m_new_hole_radius = m_c->m_model_object->sla_drain_holes[0].radius; - m_new_hole_height = m_c->m_model_object->sla_drain_holes[0].height - m_c->HoleStickOutLength; + m_new_hole_height = m_c->m_model_object->sla_drain_holes[0].height; } } else { @@ -1104,7 +1104,7 @@ void GLGizmoHollow::select_point(int i) m_selected[i] = true; m_selection_empty = false; m_new_hole_radius = m_c->m_model_object->sla_drain_holes[i].radius; - m_new_hole_height = m_c->m_model_object->sla_drain_holes[i].height - m_c->HoleStickOutLength; + m_new_hole_height = m_c->m_model_object->sla_drain_holes[i].height; } } From 53f1a283f32dfcd65b6c501317845da883ce2de6 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 14:24:50 +0100 Subject: [PATCH 50/91] Hollowing gizmo sliders now contain a unit where appropriate --- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index a6283f80e7..827df2a81e 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -756,7 +756,7 @@ RENDER_AGAIN: m_imgui->text(m_desc.at("offset")); ImGui::SameLine(settings_sliders_left); ImGui::PushItemWidth(window_width - settings_sliders_left); - ImGui::SliderFloat(" ", &offset, offset_min, offset_max, "%.1f"); + ImGui::SliderFloat(" ", &offset, offset_min, offset_max, "%.1f mm"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::TextUnformatted(_(opts[0].second->tooltip).ToUTF8()); @@ -783,7 +783,7 @@ RENDER_AGAIN: if (current_mode >= closing_d_mode) { m_imgui->text(m_desc.at("closing_distance")); ImGui::SameLine(settings_sliders_left); - ImGui::SliderFloat(" ", &closing_d, closing_d_min, closing_d_max, "%.1f"); + ImGui::SliderFloat(" ", &closing_d, closing_d_min, closing_d_max, "%.1f mm"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::TextUnformatted(_(opts[2].second->tooltip).ToUTF8()); @@ -832,7 +832,7 @@ RENDER_AGAIN: ImGui::PushItemWidth(window_width - diameter_slider_left); float diam = 2.f * m_new_hole_radius; - ImGui::SliderFloat("", &diam, 1.f, diameter_upper_cap, "%.1f"); + ImGui::SliderFloat("", &diam, 1.f, diameter_upper_cap, "%.1f mm"); m_new_hole_radius = diam / 2.f; bool clicked = ImGui::IsItemClicked(); bool edited = ImGui::IsItemEdited(); @@ -841,7 +841,7 @@ RENDER_AGAIN: m_imgui->text(m_desc["hole_depth"]); ImGui::SameLine(diameter_slider_left); m_new_hole_height -= m_c->HoleStickOutLength; - ImGui::SliderFloat(" ", &m_new_hole_height, 0.f, 10.f, "%.1f"); + ImGui::SliderFloat(" ", &m_new_hole_height, 0.f, 10.f, "%.1f mm"); m_new_hole_height += m_c->HoleStickOutLength; clicked |= ImGui::IsItemClicked(); From 824b3713aee35f60523cf7c15ac5013b7aa19a78 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Fri, 21 Feb 2020 14:35:43 +0100 Subject: [PATCH 51/91] Localization: New dictionaries for CZ, DE, ES, FR, IT, NL and PL --- resources/localization/cs/PrusaSlicer.mo | Bin 227873 -> 249679 bytes resources/localization/cs/PrusaSlicer_cs.po | 5713 +++++++++++-------- resources/localization/de/PrusaSlicer.mo | Bin 235160 -> 257498 bytes resources/localization/de/PrusaSlicer_de.po | 5442 ++++++++++-------- resources/localization/es/PrusaSlicer.mo | Bin 234140 -> 256131 bytes resources/localization/es/PrusaSlicer_es.po | 5048 +++++++++------- resources/localization/fr/PrusaSlicer.mo | Bin 240576 -> 263899 bytes resources/localization/fr/PrusaSlicer_fr.po | 5672 +++++++++--------- resources/localization/it/PrusaSlicer.mo | Bin 230709 -> 252394 bytes resources/localization/it/PrusaSlicer_it.po | 5058 +++++++++------- resources/localization/nl/PrusaSlicer.mo | Bin 221701 -> 236510 bytes resources/localization/nl/PrusaSlicer_nl.po | 5632 ++++++++++-------- resources/localization/pl/PrusaSlicer.mo | Bin 229382 -> 250876 bytes resources/localization/pl/PrusaSlicer_pl.po | 5144 ++++++++++------- 14 files changed, 21624 insertions(+), 16085 deletions(-) diff --git a/resources/localization/cs/PrusaSlicer.mo b/resources/localization/cs/PrusaSlicer.mo index f006a9fd380432d6f222b8ba8d387592af10307c..34042f5ec91bc08e45fe04164ebbdf201341d0cc 100644 GIT binary patch delta 62337 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 delta 43970 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 && n<=4) ? 1 : 2;\n" -"X-Generator: PhraseApp (phraseapp.com)\n" +"X-Generator: Poedit 2.2.1\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" -#: src/slic3r/GUI/MainFrame.cpp:61 +#: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Nezapomeňte zkontrolovat aktualizace na http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:727 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid " was successfully sliced." msgstr " byl úspěšně slicován." -#: src/libslic3r/PrintConfig.cpp:179 src/libslic3r/PrintConfig.cpp:745 -#: src/libslic3r/PrintConfig.cpp:1154 src/libslic3r/PrintConfig.cpp:1217 -#: src/libslic3r/PrintConfig.cpp:1462 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2502 +#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 +#: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2758 msgid "%" msgstr "%" -#: src/libslic3r/GCode/PreviewData.cpp:504 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:968 +#, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:2958 +#: src/slic3r/GUI/Tab.cpp:3110 msgid "%1% Preset" msgstr "%1% Přednastavení" -#: src/slic3r/GUI/Plater.cpp:3831 +#: src/slic3r/GUI/Plater.cpp:4413 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "%1% tiskárna byla aktivní v době, kdy byly pořízeny kroky Zpět / Vpřed. Přepnutí na tiskárnu %1% vyžaduje opětovné načtení předvoleb %1%." -#: src/libslic3r/Print.cpp:1282 +#: src/libslic3r/Print.cpp:1370 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm je příliš nízké na to, aby bylo možné tisknout ve výšce vrstvy %3% mm" -#: src/slic3r/GUI/PresetHints.cpp:228 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:229 +#, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s při rychlosti filamentu %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:974 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1149 +#, c-format msgid "%d (%d shells)" msgstr "%d (%d obalů)" -#: src/slic3r/GUI/Plater.cpp:982 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d poškozených faset, %d okrajů opraveno, %d faset odstraněno, %d faset přidáno, %d faset navráceno, %d zadních okrajů" -#: src/slic3r/GUI/PresetHints.cpp:268 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:269 +#, c-format msgid "%d lines: %.2f mm" msgstr "%d perimetry: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:894 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:1029 +#, c-format msgid "%d presets successfully imported." msgstr "%d přednastavení úspěšně importováno." -#: src/slic3r/GUI/MainFrame.cpp:550 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:694 +#, c-format msgid "%s &Website" msgstr "%s &Webová stránka" -#: src/slic3r/GUI/UpdateDialogs.cpp:113 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:211 +#, c-format msgid "%s configuration is incompatible" msgstr "Konfigurace %s není kompatibilní" -#: src/slic3r/GUI/Field.cpp:136 -#, possible-c-format +#: src/slic3r/GUI/Field.cpp:170 +#, c-format msgid "%s doesn't support percentage" msgstr "%s nepodporuje procenta" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, possible-c-format +#, c-format msgid "%s error" msgstr "%s chyba" -#: src/slic3r/GUI/ConfigWizard.cpp:336 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:481 +#, c-format msgid "%s Family" msgstr "%s Rodina" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, possible-c-format +#, c-format msgid "%s has encountered an error" msgstr "Došlo k chybě v programu %s" -#: src/slic3r/GUI/GUI_App.cpp:132 -#, possible-c-format -msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." -msgstr "%s zaznamenal chybu. Bylo to pravděpodobně způsobeno nedostatkem paměti. Pokud jste si jisti, že máte v systému dostatek paměti RAM, může to být také chyba programu a v takovém případě bychom byli rádi, kdybyste nám to nahlásili.\n\nAplikace se nyní ukončí." +#: src/slic3r/GUI/GUI_App.cpp:138 +#, c-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" +"\n" +"The application will now terminate." +msgstr "" +"%s zaznamenal chybu. Bylo to pravděpodobně způsobeno nedostatkem paměti. Pokud jste si jisti, že máte v systému dostatek paměti RAM, může to být také chyba programu a v takovém případě bychom byli rádi, kdybyste nám to nahlásili.\n" +"\n" +"Aplikace se nyní ukončí." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:155 -#, possible-c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 +#, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s zaznamenal chybu. Bylo to pravděpodobně způsobeno nedostatkem paměti. Pokud jste si jisti, že máte v systému dostatek paměti RAM, může to být také chyba programu a v takovém případě bychom byli rádi, kdybyste nám to nahlásili." -#: src/slic3r/GUI/UpdateDialogs.cpp:112 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:308 +#, c-format +msgid "%s has no configuration updates aviable." +msgstr "%s nemá k dispozici žádné aktualizace konfigurace." + +#: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 +#, c-format msgid "%s incompatibility" msgstr "Není kompatibilní s %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:172 -#, possible-c-format -msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." -msgstr "%s nyní používá aktualizovanou konfigurační strukturu.\n\nByly uvedeny takzvaná \"Systémová přednastavení\", která obsahují výchozí nastavení pro rozličné tiskárny. Tato systémová přednastavení nemohou být upravena, místo toho si nyní uživatel může vytvořit svá vlastní přednastavení tím, že zdědí nastavení z jednoho ze systémových přednastavení.\nNově vytvořené přednastavení může buď zdědit určitou hodnotu od svého předchůdce nebo ji přepsat upravenou hodnotou.\n\nPři nastavování nových předvoleb postupujte podle pokynů v %s a vyberte, zda chcete povolit automatické přednastavené aktualizace." +#: src/slic3r/GUI/UpdateDialogs.cpp:270 +#, c-format +msgid "" +"%s now uses an updated configuration structure.\n" +"\n" +"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" +"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" +"\n" +"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +msgstr "" +"%s nyní používá aktualizovanou konfigurační strukturu.\n" +"\n" +"Byly uvedeny takzvaná \"Systémová přednastavení\", která obsahují výchozí nastavení pro rozličné tiskárny. Tato systémová přednastavení nemohou být upravena, místo toho si nyní uživatel může vytvořit svá vlastní přednastavení tím, že zdědí nastavení z jednoho ze systémových přednastavení.\n" +"Nově vytvořené přednastavení může buď zdědit určitou hodnotu od svého předchůdce nebo ji přepsat upravenou hodnotou.\n" +"\n" +"Při nastavování nových předvoleb postupujte podle pokynů v %s a vyberte, zda chcete povolit automatické přednastavené aktualizace." -#: src/slic3r/GUI/GUI_App.cpp:681 -#, possible-c-format +#: src/slic3r/GUI/GUI_App.cpp:820 +#, c-format msgid "%s View Mode" msgstr "%s Režim zobrazení" -#: src/slic3r/GUI/MainFrame.cpp:563 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%s nyní spustí aktualizaci. Jinak nebude moci být spuštěn.\n" +"\n" +"Nejprve bude vytvořen kompletní snímek konfigurace a v případě problému s novou verzí lze provést obnovu.\n" +"\n" +"Aktualizované balíčky konfigurace:" + +#: src/slic3r/GUI/MainFrame.cpp:707 +#, c-format msgid "&About %s" msgstr "O %s" -#: src/slic3r/GUI/GUI_App.cpp:769 +#: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" msgstr "&Konfigurace" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" -msgstr "Záloha konfigura&ce" +msgstr "Zálohy konfigura&ce" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" msgstr "Kopírovat" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" msgstr "&Smazat vybrané" -#: src/slic3r/GUI/MainFrame.cpp:575 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&Edit" msgstr "&Editovat" -#: src/slic3r/GUI/MainFrame.cpp:377 +#: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "&Exportovat" -#: src/slic3r/GUI/MainFrame.cpp:480 src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 msgid "&Filament Settings Tab" msgstr "Panel nastavení &filamentu" -#: src/slic3r/GUI/MainFrame.cpp:574 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&File" msgstr "&Soubor" -#: src/slic3r/GUI/ConfigWizard.cpp:1094 +#: src/slic3r/GUI/ConfigWizard.cpp:1984 msgid "&Finish" msgstr "&Dokončit" -#: src/slic3r/GUI/MainFrame.cpp:580 +#: src/slic3r/GUI/MainFrame.cpp:729 msgid "&Help" msgstr "&Pomoc" -#: src/slic3r/GUI/MainFrame.cpp:359 +#: src/slic3r/GUI/MainFrame.cpp:474 msgid "&Import" msgstr "&Importovat" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/GUI_App.cpp:822 +msgid "&Language" +msgstr "Jazyk (&L)" + +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "&Nový projekt" -#: src/slic3r/GUI/ConfigWizard.cpp:1093 +#: src/slic3r/GUI/ConfigWizard.cpp:1983 msgid "&Next >" msgstr "&Další>" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "&Otevřít projekt" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "Vložit" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" msgstr "&Panel Podložka" -#: src/slic3r/GUI/GUI_App.cpp:665 +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "Nastavení" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "&Ukončit" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "Vp&řed" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "Op&ravit soubor STL" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "Uložit projekt" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "Vybrat vše" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "&Zpět" -#: src/slic3r/GUI/MainFrame.cpp:577 +#: src/slic3r/GUI/MainFrame.cpp:726 msgid "&View" msgstr "&Zobrazení" -#: src/slic3r/GUI/MainFrame.cpp:576 +#: src/slic3r/GUI/MainFrame.cpp:725 msgid "&Window" msgstr "&Okno" -#: src/slic3r/GUI/ConfigWizard.cpp:574 src/slic3r/GUI/ConfigWizard.cpp:602 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(Všechny)" -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(minimálně)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "(Re)slice" msgstr "(Znovu)Slicovat" -#: src/slic3r/GUI/MainFrame.cpp:455 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(Znovu) S&licovat" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 msgid "(Unknown)" msgstr "(Neznámý)" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid ") not found." msgstr ") nebyl nalezen." -#: src/libslic3r/PrintConfig.cpp:1857 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (rozpustné)" -#: src/libslic3r/PrintConfig.cpp:1858 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0.2 (oddělitelné)" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:3074 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "3D editor view" msgstr "Zobrazení 3D editoru" -#: src/libslic3r/PrintConfig.cpp:804 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "3D Plástev" -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:291 msgid "3Dconnexion settings" msgstr "Nastavení 3DConnexion" -#: src/slic3r/GUI/Plater.cpp:3590 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5068 +#, c-format msgid "3MF file exported to %s" msgstr "Soubor 3MF byl exportován do %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1092 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 msgid "< &Back" msgstr "<&Zpět" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:277 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Logický výraz může používat konfigurační hodnoty aktivního profilu tiskárny. Pokud je tento logický výraz pravdivý, potom je tento profil považován za kompatibilní s aktivním profilem tiskárny." -#: src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:262 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Logický výraz může používat konfigurační hodnoty aktivního profilu tiskárny. Pokud je tento logický výraz pravdivý, potom je tento profil považován za kompatibilní s aktivním profilem tiskárny." -#: src/slic3r/GUI/ConfigWizard.cpp:609 +#: src/slic3r/GUI/ConfigWizard.cpp:1035 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." -msgstr "Obecným pravidlem je 160 až 230° pro PLA a 215 až 250° pro ABS." +msgstr "Obecným pravidlem je 160 až 230 °C pro PLA a 215 až 250 °C pro ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:623 +#: src/slic3r/GUI/ConfigWizard.cpp:1049 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." -msgstr "Obecným pravidlem je 160 až 230° pro PLA a 215 až 250° pro ABS. Zadejte nula, pokud nemáte vyhřívanou podložku." +msgstr "Obecným pravidlem je 60 °C pro PLA a 110 °C pro ABS. Zadejte nula, pokud nemáte vyhřívanou podložku." -#: src/slic3r/GUI/GLCanvas3D.cpp:721 +#: src/slic3r/GUI/GLCanvas3D.cpp:691 msgid "A toolpath outside the print area was detected" msgstr "Byla detekována dráha mimo tiskovou oblast" -#: src/slic3r/GUI/AboutDialog.cpp:35 -#, possible-c-format +#: src/slic3r/GUI/AboutDialog.cpp:199 +#, c-format msgid "About %s" msgstr "O %s" -#: src/libslic3r/GCode/PreviewData.cpp:499 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:964 +#, c-format msgid "above %.2f mm" msgstr "nad %.2f mm" -#: src/libslic3r/PrintConfig.cpp:1499 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Nad Z" -#: src/slic3r/GUI/Tab.cpp:1103 +#: src/slic3r/GUI/Tab.cpp:1166 msgid "Acceleration control (advanced)" msgstr "Kontrola akcelerací (pokročilé)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73 +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Accuracy" +msgstr "Přesnost" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 msgid "Activate" msgstr "Aktivovat" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43 msgid "Active" msgstr "Aktivní" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/DoubleSlider.cpp:1103 +msgid "active" +msgstr "aktivní" + +#: src/slic3r/GUI/GLCanvas3D.cpp:272 msgid "Adaptive" msgstr "Adaptivní" -#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237 +#: src/slic3r/GUI/Tab.cpp:243 msgid "Add a new printer" msgstr "Přidat novou tiskárnu" -#: src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Add a pad underneath the supported model" msgstr "Pod podepíraný model přidá podložku" -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Přidá pouzdro (jednu obvodovou čáru) kolem podpěr. Díky tomu je podpora spolehlivější, ale také obtížnější na odstranění." -#: src/slic3r/GUI/wxExtensions.cpp:3441 +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" +msgstr "Přidat další kód - Ctrl + Levé kliknutí" + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" +msgstr "Přidání jiného kódu - Pravé tlačítko" + +#: src/slic3r/GUI/DoubleSlider.cpp:1449 msgid "Add color change" msgstr "Přidat změnu barvy" -#: src/slic3r/GUI/wxExtensions.cpp:3435 +#: src/slic3r/GUI/DoubleSlider.cpp:1148 msgid "Add color change (%1%) for:" msgstr "Přidat změnu barvy (%1%) pro:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/DoubleSlider.cpp:959 +msgid "Add color change - Left click" +msgstr "Přidat změnu barvy - Levé tlačítko myši" + +#: src/slic3r/GUI/DoubleSlider.cpp:957 +msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" +msgstr "Přidat změnu barvy - Levé tlačítko myši pro předdefinovanou barvu, nebo Shift + Levé tlačítko myši pro výběr vlastní barvy" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Add color change marker for current layer" msgstr "Přidat značku změny barvy pro aktuální vrstvu" -#: src/slic3r/GUI/wxExtensions.cpp:3447 +#: src/slic3r/GUI/DoubleSlider.cpp:1462 msgid "Add custom G-code" msgstr "Přidat vlastní G-code" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:245 msgid "Add detail" msgstr "Přidat detail" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +msgid "Add drainage hole" +msgstr "Přidání odtokového otvoru" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 +msgid "Add extruder change - Left click" +msgstr "Přidat změnu extruderu - Levé tlačítko myši" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 msgid "Add extruder to sequence" msgstr "Přidat extruder do seznamu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1662 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 msgid "Add Generic Subobject" msgstr "Přidání obecného Dílčího objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2584 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2613 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2631 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 msgid "Add Height Range" msgstr "Přidání Rozsahu vrstev" -#: src/slic3r/GUI/GLCanvas3D.cpp:3463 +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 +#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 msgid "Add instance" msgstr "Přidat instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 msgid "Add Instance of the selected object" msgstr "Přidat instanci vybraného objektu" @@ -390,112 +470,113 @@ msgstr "Přidat instanci vybraného objektu" msgid "Add layer range" msgstr "Přidat rozsah vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1950 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 msgid "Add Layers" msgstr "Přidat Vrstvy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1067 +#: src/slic3r/GUI/GUI_ObjectList.cpp:52 msgid "Add modifier" msgstr "Přidat modifikátor" -#: src/libslic3r/PrintConfig.cpp:447 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Přidání více perimetrů, pokud je potřeba, pro vyvarování se tvorbě mezer v šikmých plochách. Slic3r pokračuje v přidávání perimetrů, dokud není podepřeno více než 70% perimetrů v následující vrstvě." -#: src/slic3r/GUI/Plater.cpp:3516 +#: src/slic3r/GUI/Plater.cpp:3949 msgid "Add one more instance of the selected object" msgstr "Přidejte jednu nebo více instancí vybraného objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1066 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1082 +#: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "Přidat díl" -#: src/slic3r/GUI/wxExtensions.cpp:3444 +#: src/slic3r/GUI/DoubleSlider.cpp:1459 msgid "Add pause print" msgstr "Přidat pozastavení tisku" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 msgid "Add point" msgstr "Přidat bod" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Add point to selection" msgstr "Přidat bod k výběru" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 msgid "Add settings" msgstr "Přidat nastavení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 msgid "Add Settings Bundle for Height range" msgstr "Přidání Skupiny nastavení pro Výškový rozsah" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1191 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Object" msgstr "Přidání skupiny nastavení pro Objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1190 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 msgid "Add Settings Bundle for Sub-object" msgstr "Přidání skupiny nastavení pro Dílčí objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 msgid "Add Settings for Layers" msgstr "Přidání nastavení pro Vrstvy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1128 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Object" msgstr "Přidání nastavení pro Objekty" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1127 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 msgid "Add Settings for Sub-object" msgstr "Přidání nastavení pro Dílčí objeky" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1676 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1922 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 msgid "Add Shape" msgstr "Přidat Tvar" -#: src/libslic3r/PrintConfig.cpp:382 +#: src/libslic3r/PrintConfig.cpp:409 msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)." msgstr "Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn (vrchních a spodních plných vrstev)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1069 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:54 msgid "Add support blocker" msgstr "Přidat blokátor podpěr" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:53 msgid "Add support enforcer" msgstr "Přidat vynucení podpěr" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:531 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 msgid "Add support point" msgstr "Přidání podpěrného bodu" -#: src/slic3r/GUI/GLCanvas3D.cpp:3392 +#: src/slic3r/GUI/GLCanvas3D.cpp:4516 msgid "Add..." msgstr "Přidat..." -#: src/slic3r/GUI/PresetBundle.cpp:1683 +#: src/slic3r/GUI/PresetBundle.cpp:1697 msgid "Add/Remove filaments" msgstr "Přidání / Odebrání filamentů" -#: src/slic3r/GUI/Preset.cpp:1102 +#: src/slic3r/GUI/Preset.cpp:1151 msgid "Add/Remove materials" msgstr "Přidání / Odebrání materiálů" -#: src/slic3r/GUI/Tab.cpp:920 +#: src/slic3r/GUI/Preset.cpp:1153 +msgid "Add/Remove printers" +msgstr "Přidat/Odebrat tiskárny" + +#: src/slic3r/GUI/Tab.cpp:972 msgid "Additional information:" msgstr "Doplňující informace:" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:59 msgid "Additional Settings" msgstr "Další nastavení" -#: src/slic3r/GUI/ConfigWizard.cpp:431 +#: src/slic3r/GUI/ConfigWizard.cpp:790 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Dále je před nainstalováním aktualizace vytvořena záloha veškerého nastavení." @@ -503,287 +584,318 @@ msgstr "Dále je před nainstalováním aktualizace vytvořena záloha veškeré msgid "Address" msgstr "Adresa" -#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76 -#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026 -#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139 -#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515 -#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435 -#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 +#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 +#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 +#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 +#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 msgid "Advanced" msgstr "Pokročilý" -#: src/slic3r/GUI/ConfigWizard.cpp:786 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Advanced mode" msgstr "Pokročilý režim" -#: src/slic3r/GUI/GUI_App.cpp:675 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "Pokročilý režim" -#: src/slic3r/GUI/FirmwareDialog.cpp:803 +#: src/slic3r/GUI/FirmwareDialog.cpp:841 msgid "Advanced: Output log" msgstr "Pokročilý:  Výstupní log" -#: src/libslic3r/PrintConfig.cpp:636 +#: src/libslic3r/PrintConfig.cpp:668 msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Po výměně nástroje nemusí být známa přesná poloha nově zavedeného filamentu uvnitř trysky a tlak filamentu pravděpodobně ještě není stabilní. Před vyčištěním tiskové hlavy do výplně nebo do objektu bude Slic3r toto množství materiálu vždy vytlačovat do čistící věže, aby se spolehlivě vytvořily následné výplně nebo objekty." -#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031 +#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-code po změně vrstvy" -#: src/libslic3r/PrintConfig.cpp:3009 +#: src/libslic3r/PrintConfig.cpp:3383 msgid "Align the model to the given point." msgstr "Zarovnejte model s daným bodem." -#: src/libslic3r/PrintConfig.cpp:3008 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Align XY" msgstr "Zarovnat XY" -#: src/libslic3r/PrintConfig.cpp:1561 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "Zarovnaný" -#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3158 msgid "All" msgstr "Všechny" -#: src/libslic3r/Print.cpp:1135 +#: src/libslic3r/Print.cpp:1215 msgid "All objects are outside of the print volume." msgstr "Všechny objekty jsou mimo tiskový prostor." #: src/slic3r/GUI/Plater.cpp:3298 msgid "All objects will be removed, continue ?" -msgstr "Všechny objekty budou obebrány, pokračovat?" +msgstr "Všechny objekty budou odebrány, pokračovat?" -#: src/slic3r/GUI/ConfigWizard.cpp:188 +#: src/slic3r/GUI/Plater.cpp:4684 +msgid "All objects will be removed, continue?" +msgstr "Všechny objekty budou odebrány, pokračovat?" + +#: src/slic3r/GUI/ConfigWizard.cpp:289 msgid "All standard" msgstr "Všechny běžné" -#: src/libslic3r/Zipper.cpp:65 +#: src/libslic3r/Zipper.cpp:62 msgid "allocation failed" msgstr "alokace selhala" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Along X axis" msgstr "Podél osy X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Along Y axis" msgstr "Podél osy Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Along Z axis" msgstr "Podél osy Z" -#: src/slic3r/GUI/ConfigWizard.cpp:122 +#: src/slic3r/GUI/ConfigWizard.cpp:222 msgid "Alternate nozzles:" msgstr "Alternativní trysky:" -#: src/slic3r/GUI/Plater.cpp:3561 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5022 +#, c-format msgid "AMF file exported to %s" msgstr "Soubor AMF byl exportován do %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:725 -msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" -msgstr "Byl detekován objekt mimo tiskovou oblast\nPro pokračování ve slicování vyřešte tento problém" +#: src/slic3r/GUI/GLCanvas3D.cpp:695 +msgid "" +"An object outside the print area was detected\n" +"Resolve the current problem to continue slicing" +msgstr "" +"Byl detekován objekt mimo tiskovou oblast\n" +"Pro pokračování ve slicování vyřešte tento problém" -#: src/slic3r/GUI/GLCanvas3D.cpp:720 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "An object outside the print area was detected" msgstr "Byl detekován objekt mimo tiskovou oblast" -#: src/slic3r/GUI/Tab.cpp:2781 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "and it has the following unsaved changes:" msgstr "a má neuložené následující změny:" -#: src/slic3r/GUI/Plater.cpp:2461 +#: src/slic3r/GUI/Plater.cpp:3154 msgid "Another export job is currently running." msgstr "V současné době běží jiná úloha exportu." -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "Šipky" + +#: src/slic3r/GUI/Tab.cpp:967 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Jakékoliv úpravy by měly být uloženy jako nové přednastavení zděděná z tohoto." -#: src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" msgstr "API klíč / Heslo" -#: src/slic3r/GUI/GUI_App.cpp:671 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Nastavení aplikace" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 msgid "Apply changes" msgstr "Aplikovat změny" -#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "vteřin přibližně" -#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "Archimedean Chords" -#: src/libslic3r/Zipper.cpp:91 +#: src/libslic3r/Zipper.cpp:88 msgid "archive is too large" msgstr "archiv je moc velký" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:2955 +#: src/slic3r/GUI/Tab.cpp:3107 msgid "Are you sure you want to %1% the selected preset?" msgstr "Opravdu chcete %1% vybrané přednastavení?" -#: src/slic3r/GUI/FirmwareDialog.cpp:862 -msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" -msgstr "Opravdu chcete ukončit nahrávání firmware?\nTiskárna může zůstat v nefunkčním stavu!" +#: src/slic3r/GUI/FirmwareDialog.cpp:902 +msgid "" +"Are you sure you want to cancel firmware flashing?\n" +"This could leave your printer in an unusable state!" +msgstr "" +"Opravdu chcete ukončit nahrávání firmware?\n" +"Tiskárna může zůstat v nefunkčním stavu!" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "Are you sure you want to continue?" +msgstr "Opravdu chcete pokračovat?" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 msgid "Are you sure you want to do it?" msgstr "Opravdu to chcete udělat?" -#: src/libslic3r/PrintConfig.cpp:2258 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "Zaplněná plocha" -#: src/slic3r/GUI/Plater.cpp:609 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Around object" msgstr "Okolo objektu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/Plater.cpp:2738 msgid "Arrange" msgstr "Uspořádat" -#: src/slic3r/GUI/GLCanvas3D.cpp:3486 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Arrange selection" msgstr "Uspořádat výběr" -#: src/libslic3r/PrintConfig.cpp:3054 +#: src/libslic3r/PrintConfig.cpp:3428 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Uspořádejte modely na tiskovou podložku a slučte je do jednoho modelu, abyste s nimi mohli provádět akce jednou." -#: src/slic3r/GUI/Plater.cpp:2106 +#: src/slic3r/GUI/Plater.cpp:2797 msgid "Arranging" msgstr "Uspořádávání" -#: src/slic3r/GUI/Plater.cpp:2718 +#: src/slic3r/GUI/Plater.cpp:2825 msgid "Arranging canceled." msgstr "Uspořádávání zrušeno." -#: src/slic3r/GUI/Plater.cpp:2144 +#: src/slic3r/GUI/Plater.cpp:2826 msgid "Arranging done." msgstr "Uspořádávání dokončeno." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Arrow Down" msgstr "Šipka dolů" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Arrow Left" msgstr "Šipka vlevo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Arrow Right" msgstr "Šipka vpravo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Arrow Up" msgstr "Šipka nahoru" -#: src/slic3r/GUI/GUI_App.cpp:303 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Řešením může být spuštění PrusaSliceru se softwarovým vykreslováním 3D grafiky a to spuštěním prusa-slicer.exe s parametrem --sw_renderer." -#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743 -#: src/slic3r/GUI/Tab.cpp:2798 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 +#: src/slic3r/GUI/Tab.cpp:2944 msgid "Attention!" msgstr "Pozor!" -#: src/libslic3r/PrintConfig.cpp:1785 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "Automaticky generované podpěry" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "Auto-centrování objektů" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 msgid "Auto-generate points" msgstr "Automatické generování bodů" -#: src/slic3r/GUI/Plater.cpp:979 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1154 +#, c-format msgid "Auto-repaired (%d errors)" msgstr "Automaticky opraveno (%d chyb)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:337 +#, c-format msgid "Auto-repaired (%d errors):" msgstr "Automaticky opraveno ( %d chyb):" -#: src/slic3r/GUI/FirmwareDialog.cpp:771 +#: src/slic3r/GUI/FirmwareDialog.cpp:809 msgid "Autodetected" msgstr "Automaticky detekováno" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1338 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 msgid "Autogenerate support points" msgstr "Automatické generování podpěrných bodů" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 msgid "Autogeneration will erase all manually edited points." msgstr "Automatické generování vymaže všechny ručně vytvořené body." -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Automatic generation" msgstr "Automatické generování" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Automatic updates" msgstr "Automatické aktualizace" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "Automaticky opravit STL soubor" -#: src/slic3r/GUI/Tab.cpp:1110 +#: src/slic3r/GUI/Tab.cpp:1173 msgid "Autospeed (advanced)" msgstr "Automatická rychlost (pokročilé)" -#: src/libslic3r/PrintConfig.cpp:111 +#: src/libslic3r/PrintConfig.cpp:126 msgid "Avoid crossing perimeters" msgstr "Vyhnout se přejíždění perimetrů" -#: src/slic3r/GUI/Tab.cpp:3081 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "BACK ARROW" msgstr "ŠIPKA ZPĚT" -#: src/slic3r/GUI/Tab.cpp:3113 -msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." -msgstr "Ikona ŠIPKY ZPĚT indikuje, že došlo ke změně nastavení, které není shodné s naposledy uloženým přednastavením pro aktuální skupinu nastavení.\nKlikněte pro reset všech nastavení pro aktuální skupinu nastavení na naposledy uložené přednastavení." +#: src/slic3r/GUI/Tab.cpp:3274 +msgid "" +"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click to reset all settings for the current option group to the last saved preset." +msgstr "" +"Ikona ŠIPKY ZPĚT indikuje, že došlo ke změně nastavení, které není shodné s naposledy uloženým přednastavením pro aktuální skupinu nastavení.\n" +"Klikněte pro reset všech nastavení pro aktuální skupinu nastavení na naposledy uložené přednastavení." -#: src/slic3r/GUI/Tab.cpp:3127 -msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." -msgstr "Ikona ŠIPKY ZPĚT indikuje, že se hodnota změnila a není shodná s naposledy uloženým přednastavením.\nKlikněte pro reset současné hodnoty na naposledy uložené přednastavení." +#: src/slic3r/GUI/Tab.cpp:3288 +msgid "" +"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" +"Click to reset current value to the last saved preset." +msgstr "" +"Ikona ŠIPKY ZPĚT indikuje, že se hodnota změnila a není shodná s naposledy uloženým přednastavením.\n" +"Klikněte pro reset současné hodnoty na naposledy uložené přednastavení." -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Zpracování na pozadí" -#: src/slic3r/GUI/GUI_ObjectList.cpp:242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "backwards edges" msgstr "zadní okraje" -#: src/slic3r/GUI/MainFrame.cpp:152 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "založený na Slic3r" -#: src/slic3r/GUI/Tab.cpp:1484 +#: src/slic3r/GUI/Tab.cpp:1441 msgid "Bed" msgstr "Tisková podložka" @@ -795,31 +907,31 @@ msgstr "Vlastní model podložky" msgid "Bed custom texture" msgstr "Vlastní textura podložky" -#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape" msgstr "Tvar tiskové podložky" -#: src/libslic3r/PrintConfig.cpp:50 +#: src/libslic3r/PrintConfig.cpp:51 msgid "Bed shape" msgstr "Tvar tiskové podložky" -#: src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape and Size" msgstr "Tvar a rozměr podložky" -#: src/libslic3r/PrintConfig.cpp:122 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Bed temperature" msgstr "Teplota tiskové podložky" -#: src/libslic3r/PrintConfig.cpp:120 +#: src/libslic3r/PrintConfig.cpp:135 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Teplota tiskové podložky pro další vrstvy po první vrstvě. Nastavením na hodnotu nula vypnete ovládací příkazy teploty tiskové podložky ve výstupu." -#: src/slic3r/GUI/ConfigWizard.cpp:626 +#: src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "Bed Temperature:" msgstr "Teplota tiskové podložky:" -#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128 +#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 msgid "Before layer change G-code" msgstr "G-code před změnou vrstvy" @@ -827,98 +939,110 @@ msgstr "G-code před změnou vrstvy" msgid "Before roll back" msgstr "Před vrácením zpět" -#: src/slic3r/GUI/Plater.cpp:608 +#: src/slic3r/GUI/Plater.cpp:637 msgid "Below object" msgstr "Pod objektem" -#: src/libslic3r/PrintConfig.cpp:1508 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "Pod Z" -#: src/libslic3r/PrintConfig.cpp:139 +#: src/libslic3r/PrintConfig.cpp:154 msgid "Between objects G-code" msgstr "G-code mezi objekty" -#: src/slic3r/GUI/Tab.cpp:1979 +#: src/slic3r/GUI/Tab.cpp:2004 msgid "Between objects G-code (for sequential printing)" msgstr "G-code mezi objekty (pro sekvenční tisk)" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 msgid "Bottle volume" msgstr "Objem láhve" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 msgid "Bottle weight" msgstr "Hmotnost láhve" #. TRN To be shown in the main menu View->Bottom -#: src/slic3r/GUI/MainFrame.cpp:524 +#. TRN To be shown in Print Settings "Bottom solid layers" +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 +#: src/libslic3r/PrintConfig.cpp:173 msgid "Bottom" msgstr "Zespod" -#: src/libslic3r/PrintConfig.cpp:409 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "Vzor spodní výplně" -#: src/libslic3r/PrintConfig.cpp:152 +#: src/slic3r/GUI/PresetHints.cpp:338 +msgid "Bottom is open." +msgstr "Spodní část je otevřená." + +#: src/slic3r/GUI/PresetHints.cpp:332 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "Tloušťka spodní skořepiny je %1% mm při výšce vrstvy %2% mm." + +#: src/libslic3r/PrintConfig.cpp:167 msgid "Bottom solid layers" msgstr "Plné spodní vrstvy" -#: src/slic3r/GUI/MainFrame.cpp:524 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" msgstr "Pohled zespod" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1087 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1090 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 msgid "Box" msgstr "Kostka" -#: src/libslic3r/PrintConfig.cpp:157 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bridge" msgstr "Most" -#: src/libslic3r/PrintConfig.cpp:186 +#: src/libslic3r/PrintConfig.cpp:212 msgid "Bridge flow ratio" msgstr "Poměr průtoku při vytváření mostů" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Výplň mostů" -#: src/libslic3r/PrintConfig.cpp:198 +#: src/libslic3r/PrintConfig.cpp:224 msgid "Bridges" msgstr "Mosty" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:203 msgid "Bridges fan speed" msgstr "Rychlost ventilátoru při vytváření mostů" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:192 msgid "Bridging angle" msgstr "Úhel vytváření mostů" -#: src/libslic3r/PrintConfig.cpp:168 +#: src/libslic3r/PrintConfig.cpp:194 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Přepsání úhlu vytváření mostů. Nastavením hodnoty na nulu se bude úhel vytváření mostů vypočítávat automaticky. Při zadání jiného úhlu, bude pro všechny mosty použitý zadaný úhel. Pro nulový úhel zadejte 180°." -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "Volumetrická hodnota mostů" -#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056 +#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "Límec" -#: src/libslic3r/PrintConfig.cpp:208 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Brim width" msgstr "Šířka límce" -#: src/slic3r/GUI/Tab.cpp:1681 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 +#: src/slic3r/GUI/Tab.cpp:1719 msgid "Browse" msgstr "Procházet" -#: src/libslic3r/Zipper.cpp:85 +#: src/libslic3r/Zipper.cpp:82 msgid "buffer too small" msgstr "buffer je příliš malý" @@ -926,461 +1050,518 @@ msgstr "buffer je příliš malý" msgid "Buttons And Text Colors Description" msgstr "Barvy pro textové popisky a tlačítka" -#: src/slic3r/GUI/PresetHints.cpp:220 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "maximem pro profil tisku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:115 +msgid "Camera" +msgstr "Kamera" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 msgid "Camera view" msgstr "Pohled kamery" -#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37 -#: src/slic3r/GUI/ProgressStatusBar.cpp:28 +#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Zrušit" -#: src/slic3r/GUI/PrintHostDialogs.cpp:156 +#: src/slic3r/GUI/PrintHostDialogs.cpp:157 msgid "Cancel selected" msgstr "Zrušit vybrané" -#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Zrušeno" -#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231 +#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Zrušení" -#: src/slic3r/GUI/FirmwareDialog.cpp:866 +#: src/slic3r/GUI/FirmwareDialog.cpp:906 msgid "Cancelling..." msgstr "Ukončování..." -#: src/slic3r/GUI/Tab.cpp:2905 +#: src/libslic3r/Flow.cpp:55 +msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "Nelze vypočítat šířku extrudování pro %1%: Proměnná \"%2%\" není dostupná." + +#: src/slic3r/GUI/Tab.cpp:3057 msgid "Cannot overwrite a system profile." msgstr "Nelze přepsat systémový profil." -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:3061 msgid "Cannot overwrite an external profile." msgstr "Nelze přepsat externí profil." -#: src/libslic3r/SLAPrint.cpp:612 +#: src/libslic3r/SLAPrint.cpp:613 msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Nelze pokračovat bez podpěrných bodů! Přidejte podpěrné body nebo zakažte generování podpěr." -#: src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/Tab.cpp:1832 msgid "Capabilities" msgstr "Možnosti" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "Vytvořit aktuální zálohu konfigurace" -#: src/libslic3r/PrintConfig.cpp:3035 +#: src/libslic3r/PrintConfig.cpp:3409 msgid "Center" msgstr "Střed" -#: src/libslic3r/PrintConfig.cpp:3036 +#: src/libslic3r/PrintConfig.cpp:3410 msgid "Center the print around the given center." msgstr "Vycentrujte tisk kolem daného středu." -#: src/slic3r/GUI/Tab.cpp:1744 +#: src/slic3r/GUI/Tab.cpp:1726 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Soubory s certifikátem (*.crt, *.pem)|*.crt;*.pem|Všechny soubory|*.*" -#: src/slic3r/GUI/GUI_App.cpp:683 -msgid "Change Application &Language" -msgstr "Jazyk" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:154 msgid "Change camera type (perspective, orthographic)" msgstr "Změna typu kamery (perspektivní, ortografická)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1226 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +msgid "Change drainage hole diameter" +msgstr "Změna poloměru odtokového otvoru" + +#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 msgid "Change extruder" msgstr "Změnit extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:534 msgid "Change Extruder" msgstr "Změnit Extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/DoubleSlider.cpp:1113 +msgid "Change extruder (N/A)" +msgstr "Změnit extruder (N/A)" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Change Extruders" msgstr "Změnit Extrudery" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:144 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#, c-format msgid "Change Option %s" msgstr "Změna parametru %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3134 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 msgid "Change Part Type" msgstr "Změna typu části" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:925 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 msgid "Change point head diameter" msgstr "Změna průměru hrotu" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Change the number of instances of the selected object" msgstr "Změní počet instancí vybraného objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1185 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 msgid "Change type" msgstr "Změnit typ" -#: src/slic3r/GUI/UpdateDialogs.cpp:56 +#: src/slic3r/GUI/UpdateDialogs.cpp:53 msgid "Changelog && Download" msgstr "Changelog && Stažení" -#: src/slic3r/GUI/GUI_App.cpp:378 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "Změnit jazyk aplikace" -#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61 +#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Zkontrolovat aktualizace aplikace" -#: src/slic3r/GUI/BedShapeDialog.cpp:509 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "Zkontrolujte aktualizace konfigurace" + +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "Zkontrolovat aktualizace" + +#: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Vyberte soubor, ze kterého chcete importovat texturu pro tiskovou podložku (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:621 +#: src/slic3r/GUI/MainFrame.cpp:775 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Zvolit soubor ke slicování (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/BedShapeDialog.cpp:532 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" msgstr "Vyberte STL soubor, ze kterého chcete importovat model tiskové podložky:" -#: src/slic3r/GUI/BedShapeDialog.cpp:464 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" msgstr "Vyberte STL soubor, ze kterého chcete importovat tvar tiskové podložky:" -#: src/slic3r/GUI/GUI_App.cpp:510 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "Vyberte jeden soubor (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:501 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Vyberte jeden nebo více souborů (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:490 +#: src/slic3r/GUI/ConfigWizard.cpp:896 msgid "Choose the type of firmware used by your printer." msgstr "Vyberte typ firmware používaný vaší tiskárnou." -#: src/slic3r/GUI/BedShapeDialog.cpp:84 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "Kruhový" -#: src/slic3r/GUI/GLCanvas3D.cpp:3701 src/slic3r/GUI/GLCanvas3D.cpp:3734 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 msgid "Click right mouse button to open History" msgstr "Stiskem pravého tlačítka myši se zobrazí Historie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:383 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Click the icon to change the object printable property" msgstr "Klepnutím na ikonu změníte příznak objektu, zda se bude tisknout či nikoliv" -#: src/slic3r/GUI/GUI_ObjectList.cpp:377 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Click the icon to change the object settings" msgstr "Pro změnu nastavení objektu klikněte na ikonu" -#: src/slic3r/GUI/Plater.cpp:292 +#: src/slic3r/GUI/Plater.cpp:340 msgid "Click to edit preset" msgstr "Klikněte pro editaci přednastavení" -#: src/libslic3r/PrintConfig.cpp:216 +#: src/libslic3r/PrintConfig.cpp:242 msgid "Clip multi-part objects" msgstr "Připnutí objektů z více částí k sobě" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 msgid "Clipping of view" msgstr "Řezová rovina" -#: src/slic3r/GUI/FirmwareDialog.cpp:814 -#: src/slic3r/GUI/PrintHostDialogs.cpp:160 +#: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Zavřít" -#: src/libslic3r/PrintConfig.cpp:550 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +msgid "Closing distance" +msgstr "Vzdálenost uzavření" + +#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 +#: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Barva" -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:972 +msgid "Color change (\"%1%\")" +msgstr "Změna barvy (\"%1%\")" + +#: src/slic3r/GUI/DoubleSlider.cpp:973 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "Změna barvy (\"%1%\") pro Extruder %2%" + +#: src/slic3r/GUI/GLCanvas3D.cpp:995 +#, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Změna barvy pro extruder %d ve výšce %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535 -#: src/libslic3r/GCode/PreviewData.cpp:406 +#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Barevný tisk" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:250 msgid "Colorprint height" msgstr "Výška barevného tisku" -#: src/libslic3r/PrintConfig.cpp:942 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "Kombinovat výplň každou" -#: src/libslic3r/PrintConfig.cpp:947 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "Kombinovat výplň každou n vrstvu" -#: src/slic3r/GUI/UpdateDialogs.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "Příkazy" + +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "Komentář:" -#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 msgid "Compatible print profiles" msgstr "Kompatibilní tiskové profily" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:276 msgid "Compatible print profiles condition" msgstr "Stav kompatibilních tiskových profilů" -#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 msgid "Compatible printers" msgstr "Kompatibilní tiskárny" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Compatible printers condition" msgstr "Stav kompatibilních tiskáren" -#: src/libslic3r/PrintConfig.cpp:268 +#: src/libslic3r/PrintConfig.cpp:294 msgid "Complete individual objects" msgstr "Dokončení individuálních objektů" -#: src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/PrintHostDialogs.cpp:234 msgid "Completed" msgstr "Dokončeno" -#: src/libslic3r/Zipper.cpp:57 +#: src/libslic3r/Zipper.cpp:54 msgid "compression failed" msgstr "komprese se nezdařila" -#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "Koncentrická" -#: src/slic3r/GUI/ConfigWizard.cpp:1185 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Assistant" msgstr "Průvodce n&astavením" -#: src/slic3r/GUI/ConfigWizard.cpp:1182 +#: src/slic3r/GUI/ConfigWizard.cpp:2116 msgid "Configuration &Wizard" msgstr "Průvodce nastavením" -#: src/slic3r/GUI/ConfigWizard.cpp:1184 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Assistant" msgstr "Průvodce nastavení tiskárny" -#: src/libslic3r/PrintConfig.cpp:1251 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "Konfigurační poznámky" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:104 msgid "Configuration Snapshots" msgstr "Zálohy konfigurace" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "Aktualizace nastavení" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 msgid "Configuration update is available" msgstr "Je k dispozici aktualizace nastavení" -#: src/slic3r/GUI/ConfigWizard.cpp:1181 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Configuration update is necessary to install" +msgstr "Je nutné nainstalovat aktualizaci konfigurace." + +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "Aktualizace konfigurace" + +#: src/slic3r/GUI/ConfigWizard.cpp:2115 msgid "Configuration Wizard" msgstr "Průvodce nastavením" -#: src/slic3r/GUI/FirmwareDialog.cpp:863 +#: src/slic3r/GUI/FirmwareDialog.cpp:903 msgid "Confirmation" msgstr "Potvrzení" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1929 msgid "Connection failed." msgstr "Připojení selhalo." -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/Tab.cpp:3612 msgid "Connection of the support sticks and junctions" msgstr "Spojení podpůrných tyčí a spojek" -#: src/slic3r/Utils/Duet.cpp:51 +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "Připojení k AstroBoxu funguje správně." + +#: src/slic3r/Utils/Duet.cpp:49 msgid "Connection to Duet works correctly." msgstr "Připojení k Duet funguje správně." -#: src/slic3r/Utils/FlashAir.cpp:70 +#: src/slic3r/Utils/FlashAir.cpp:68 msgid "Connection to FlashAir works correctly and upload is enabled." msgstr "Připojení k FlashAir funguje správně a nahrávání je povoleno." -#: src/slic3r/Utils/OctoPrint.cpp:84 +#: src/slic3r/Utils/OctoPrint.cpp:83 msgid "Connection to OctoPrint works correctly." msgstr "Připojení k OctoPrint pracuje správně." -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1926 msgid "Connection to printer works correctly." msgstr "Připojení k tiskárně pracuje správně." -#: src/slic3r/Utils/OctoPrint.cpp:195 +#: src/slic3r/Utils/OctoPrint.cpp:176 msgid "Connection to Prusa SL1 works correctly." msgstr "Připojení k tiskárně Prusa SL1 funguje správně." -#: src/libslic3r/PrintConfig.cpp:1823 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Mezera mezi podpěrami a objektem v ose Z" -#: src/slic3r/GUI/AboutDialog.cpp:96 +#: src/slic3r/GUI/AboutDialog.cpp:261 msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Příspěvky od Henrika Brixa Andersena, Nicolase Dandrimonta, Marka Hindessa, Petra Ledviny, Josefa Lenoxe, Y. Sapira, Mika Sheldrakeho, Vojtěcha Bubnika a mnoha dalších." -#: src/libslic3r/PrintConfig.cpp:2433 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Řídí typ mostu mezi dvěma sousedními sloupky. Může být zig-zag, cross (dvojitý zig-zag) nebo dynamic, který automaticky přepíná mezi prvními dvěma v závislosti na vzdálenosti dvou sloupků." -#: src/slic3r/GUI/Tab.cpp:1489 +#: src/slic3r/GUI/Tab.cpp:1446 msgid "Cooling" msgstr "Chlazení" -#: src/libslic3r/PrintConfig.cpp:629 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "Chladicí pohyby se postupně zrychlují a začínají touto rychlostí." -#: src/libslic3r/PrintConfig.cpp:648 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Chladící pohyby se postupně zrychlují až k této rychlosti." -#: src/slic3r/GUI/Tab.cpp:1510 +#: src/slic3r/GUI/Tab.cpp:1467 msgid "Cooling thresholds" msgstr "Podmínky chlazení" -#: src/libslic3r/PrintConfig.cpp:291 +#: src/libslic3r/PrintConfig.cpp:317 msgid "Cooling tube length" msgstr "Délka chladící trubičky" -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:309 msgid "Cooling tube position" msgstr "Pozice chladící trubičky" -#: src/slic3r/GUI/Tab.cpp:2878 +#: src/slic3r/GUI/GLCanvas3D.cpp:4554 msgid "Copy" msgstr "Kopírovat" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "Kopírovat výběr do schránky" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 msgid "Copy to clipboard" msgstr "Kopírovat do schránky" -#: src/slic3r/GUI/SysInfoDialog.cpp:120 +#: src/slic3r/GUI/SysInfoDialog.cpp:154 msgid "Copy to Clipboard" msgstr "Kopírovat do Schránky" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Kopírování dočasného G-codu do výstupního G-codu selhalo" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Kopírování dočasného G-codu do výstupního G-codu se nezdařilo. Není SD karta chráněná proti zápisu?" -#: src/slic3r/GUI/AboutDialog.cpp:92 +#: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Autorská práva" -#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325 +#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 msgid "Correction for expansion" msgstr "Korekce expanze" -#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310 +#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 msgid "Corrections" msgstr "Korekce" -#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056 -#: src/libslic3r/PrintConfig.cpp:717 +#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 msgid "Cost" msgstr "Náklady" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Cost (money)" msgstr "Cena (peníze)" -#: src/slic3r/GUI/Plater.cpp:2140 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Objekty nelze uspořádat! Některé geometrie mohou být neplatné." -#: src/slic3r/Utils/Duet.cpp:56 +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "Nelze se připojit k AstroBoxu" + +#: src/slic3r/Utils/Duet.cpp:54 msgid "Could not connect to Duet" msgstr "Nelze se připojit k Duet" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Could not connect to FlashAir" msgstr "Nelze se spojit s FlashAir" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Could not connect to OctoPrint" msgstr "Nelze se spojit s OctoPrintem" -#: src/slic3r/Utils/OctoPrint.cpp:200 +#: src/slic3r/Utils/OctoPrint.cpp:181 msgid "Could not connect to Prusa SLA" msgstr "Nelze se připojit k Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1689 msgid "Could not get a valid Printer Host reference" msgstr "Nelze získat platný odkaz na tiskový server" -#: src/slic3r/Utils/Duet.cpp:151 +#: src/slic3r/Utils/Duet.cpp:134 msgid "Could not get resources to create a new connection" msgstr "Nelze získat prostředky pro vytvoření nového spojení" -#: src/libslic3r/PrintConfig.cpp:1872 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "Zakrýt smyčkami horní kontaktní vrstvu podpěr. Ve výchozím nastavení zakázáno." -#: src/libslic3r/PrintConfig.cpp:73 +#: src/libslic3r/PrintConfig.cpp:89 msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." msgstr "Praskliny menší než 2x poloměr uzavření mezery se vyplní během slicování trojúhelníkových sítí. Operace uzavírání mezery může snížit konečné rozlišení tisku, proto je vhodné udržovat rozumně nízkou hodnotu." -#: src/libslic3r/Zipper.cpp:61 +#: src/libslic3r/Zipper.cpp:58 msgid "CRC-32 check failed" msgstr "CRC-32 kontrola selhala" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "Create pad around object and ignore the support elevation" msgstr "Vytvoří podložku kolem objektu a ignorujte nadzvednutí objektu podpěrami" -#: src/libslic3r/PrintConfig.cpp:2460 +#: src/libslic3r/PrintConfig.cpp:2715 msgid "Critical angle" msgstr "Kritický úhel" -#: src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Cross" msgstr "Cross" -#: src/libslic3r/PrintConfig.cpp:800 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "Kubická" -#: src/slic3r/GUI/wxExtensions.cpp:2413 -#, possible-c-format +#: src/slic3r/GUI/wxExtensions.cpp:704 +#, c-format msgid "Current mode is %s" msgstr "Aktuální režim je %s" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:959 msgid "Current preset is inherited from the default preset." msgstr "Aktuální nastavení je zděděno z výchozího nastavení." -#: src/slic3r/GUI/Tab.cpp:928 -#, possible-c-format -msgid "Current preset is inherited from:\n\t%s" -msgstr "Aktuální nastavení je zděděné od:\n%s" +#: src/slic3r/GUI/Tab.cpp:962 +#, c-format +msgid "" +"Current preset is inherited from:\n" +"\t%s" +msgstr "" +"Aktuální nastavení je zděděné od:\n" +"%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:45 +#: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Aktuální verze:" @@ -1388,180 +1569,193 @@ msgstr "Aktuální verze:" msgid "Cusp (mm)" msgstr "Rozhraní (mm)" -#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239 -#: src/libslic3r/GCode/PreviewData.cpp:175 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Vlastní" -#: src/libslic3r/PrintConfig.cpp:96 +#: src/libslic3r/PrintConfig.cpp:112 msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Pro HTTPS připojení OctoPrintu lze zadat vlastní CA certifikát ve formátu crt/pem. Pokud zůstane pole prázdné, použije se výchozí úložiště certifikátů OS CA." -#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 msgid "Custom G-code" msgstr "Vlastní G-code" +#: src/slic3r/GUI/DoubleSlider.cpp:1591 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "Vlastní G-code v současné vrstvě (%1% mm)." + #: src/slic3r/GUI/wxExtensions.cpp:3500 msgid "Custom Gcode on current layer (%1% mm)." msgstr "Vlastní G-code v současné vrstvě (%1% mm)." -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Vlastní tiskárna" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "Vlastní nastavení tiskárny" -#: src/slic3r/GUI/ConfigWizard.cpp:377 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "Vlastní název profilu:" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 msgid "Cut" msgstr "Řezat" -#: src/slic3r/GUI/Plater.cpp:4193 +#: src/slic3r/GUI/Plater.cpp:4801 msgid "Cut by Plane" msgstr "Řez Rovinou" -#: src/libslic3r/PrintConfig.cpp:3014 +#: src/libslic3r/PrintConfig.cpp:3388 msgid "Cut model at the given Z." msgstr "Rozříznout model v dané výšce Z." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Cylinder" msgstr "Válec" -#: src/slic3r/GUI/MainFrame.cpp:491 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "Odznačit vš&e" -#: src/libslic3r/PrintConfig.cpp:3115 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Data directory" msgstr "Složka Data" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:332 msgid "Deadzone:" msgstr "Mrtvá zóna:" -#: src/libslic3r/Zipper.cpp:55 +#: src/libslic3r/Zipper.cpp:52 msgid "decompression failed or archive is corrupted" msgstr "dekomprese selhala nebo je archiv poškozen" -#: src/slic3r/GUI/Plater.cpp:4127 +#: src/slic3r/GUI/Plater.cpp:4735 msgid "Decrease Instances" msgstr "Odebrání Instancí" -#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245 -#: src/libslic3r/PrintConfig.cpp:299 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 msgid "Default" msgstr "Výchozí" -#: xs/src/slic3r/GUI/Field.cpp:98 +#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 msgid "default" msgstr "výchozí" -#: src/libslic3r/PrintConfig.cpp:730 +#: src/libslic3r/PrintConfig.cpp:777 msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them." msgstr "Výchozí úhel pro orientaci výplně. Bude pro něj použito křížové šrafování. Mosty budou vyplněny nejlepším směrem, který Slic3r dokáže rozpoznat, takže toto nastavení je neovlivní." -#: src/libslic3r/PrintConfig.cpp:522 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "Výchozí šířka extruze" -#: src/slic3r/GUI/Tab.cpp:937 +#: src/slic3r/GUI/Tab.cpp:989 msgid "default filament profile" msgstr "výchozí profil filamentu" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:335 msgid "Default filament profile" msgstr "Výchozí profil filamentu" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:336 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Výchozí materiálový profil spojený se současným profilem tiskárny. Při výběru současného profilu tiskárny se aktivuje tento materiálový profil." -#: src/slic3r/GUI/Tab.cpp:2757 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2903 +#, c-format msgid "Default preset (%s)" msgstr "Výchozí přednastavení (%s)" -#: src/libslic3r/GCode/PreviewData.cpp:491 +#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 msgid "Default print color" msgstr "Výchozí barva tisku" -#: src/slic3r/GUI/Tab.cpp:934 +#: src/slic3r/GUI/Tab.cpp:986 msgid "default print profile" msgstr "výchozí tiskový profil" -#: src/libslic3r/PrintConfig.cpp:316 +#: src/libslic3r/PrintConfig.cpp:342 msgid "Default print profile" msgstr "Výchozí tiskový profil" -#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341 -#: src/libslic3r/PrintConfig.cpp:2352 +#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 +#: src/libslic3r/PrintConfig.cpp:2594 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Výchozí tiskový profil spojený se současným profilem tiskárny. Při výběru současného profilu tiskárny se aktivuje tento tiskový profil." -#: src/slic3r/GUI/Tab.cpp:951 +#: src/slic3r/GUI/Tab.cpp:1003 msgid "default SLA material profile" msgstr "výchozí profil pro SLA materiál" -#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351 +#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 msgid "Default SLA material profile" msgstr "Výchozí profil pro SLA materiál" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:1007 msgid "default SLA print profile" msgstr "výchozí SLA tiskový profil" -#: src/slic3r/GUI/Field.cpp:105 +#: src/slic3r/GUI/Field.cpp:131 msgid "default value" msgstr "výchozí hodnota" -#: src/slic3r/GUI/ConfigWizard.cpp:375 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "Vytvořit vlastní tiskový profil" -#: src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Definuje hloubku dutiny. Chcete-li dutinu vypnout, nastavte ji na nulu. Při povolování této funkce buďte opatrní, protože některé pryskyřice mohou způsobit extrémní sací efekt uvnitř dutiny, což ztěžuje odlupování tisku z fólie ve vaničce." -#: src/slic3r/GUI/GUI_ObjectList.cpp:237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:344 msgid "degenerate facets" msgstr "degenerace facetů" -#: src/libslic3r/PrintConfig.cpp:608 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "Zpoždění po vyjmutí" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "delete" msgstr "smazat" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891 -#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Delete" msgstr "Smazat" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "Sm&azat vše" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Delete All" msgstr "Smazat vše" -#: src/slic3r/GUI/Plater.cpp:3298 +#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 msgid "Delete all" msgstr "Smazat vše" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 msgid "Delete All Instances from Object" msgstr "Smazat všechny instance objektu" -#: src/slic3r/GUI/wxExtensions.cpp:3465 +#: src/slic3r/GUI/DoubleSlider.cpp:1488 msgid "Delete color change" msgstr "Smazat změnu barvy" @@ -1569,171 +1763,188 @@ msgstr "Smazat změnu barvy" msgid "Delete color change for Extruder %1%" msgstr "Smazat změnu barvy pro Extruder %1%" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 msgid "Delete color change marker for current layer" msgstr "Odebrat značku změny barvy pro aktuální vrstvu" -#: src/slic3r/GUI/wxExtensions.cpp:3467 +#: src/slic3r/GUI/DoubleSlider.cpp:1491 msgid "Delete custom G-code" msgstr "Smazat vlastní G-code" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +msgid "Delete drainage hole" +msgstr "Odstranění odtokového otvoru" + #: src/slic3r/GUI/wxExtensions.cpp:3095 msgid "Delete extruder change to \"%1%\"" msgstr "Smazat změnu extruderu na \"%1%\"" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1898 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 msgid "Delete Height Range" msgstr "Odstranění Rozsahu vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1876 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 msgid "Delete Instance" msgstr "Smazání Instance" -#: src/slic3r/GUI/Plater.cpp:2592 +#: src/slic3r/GUI/Plater.cpp:2696 msgid "Delete Object" msgstr "Smazat Objekt" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:100 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 +#, c-format msgid "Delete Option %s" msgstr "Odebrání parametru %s" -#: src/slic3r/GUI/wxExtensions.cpp:3466 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Delete pause print" msgstr "Odebrat pozastavení tisku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Delete selected" msgstr "Smazat vybrané" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 msgid "Delete Selected" msgstr "Smazání vybraných" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2303 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 msgid "Delete Selected Item" msgstr "Smazat vybrané položky" -#: src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Plater.cpp:4692 msgid "Delete Selected Objects" msgstr "Odstranit vybrané objekty" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1782 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 msgid "Delete Settings" msgstr "Smazat Nastavení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1857 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 msgid "Delete Subobject" msgstr "Smazání dílčího objektu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:720 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 msgid "Delete support point" msgstr "Odebrání podpěrného bodu" -#: src/slic3r/GUI/Tab.cpp:131 +#: src/slic3r/GUI/Tab.cpp:136 msgid "Delete this preset" msgstr "Smazat přednastavení" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/DoubleSlider.cpp:1001 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "Smazat značku - Levé tlačítko myši nebo klávesa \"-\"" + +#: src/slic3r/GUI/DoubleSlider.cpp:1489 +msgid "Delete tool change" +msgstr "Smazat změnu nástroje" + +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "Smazat všechny objekty" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "Smaže aktuální výběr" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 +#: src/libslic3r/PrintConfig.cpp:2495 msgid "Density" msgstr "Hustota" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Hustota vnitřní výplně, vyjádřená v rozmezí 0% až 100%." -#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584 -#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086 -#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 +#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 msgid "Dependencies" msgstr "Závislosti" -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "Rychlost deretrakce" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "Odznačit vše" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Deselect by rectangle" msgstr "Odznačit obdélníkovým výběrem myši" -#: src/slic3r/GUI/MainFrame.cpp:492 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "Odznačit všechny objekty" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "Detekovat perimetry přemostění" -#: src/libslic3r/PrintConfig.cpp:1988 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)." msgstr "Detekuje stěny o tloušťce jedné čáry (části, kam se dvě čáry nemohou vejít a je potřeba sloučit je do čáry jedné)." -#: src/libslic3r/PrintConfig.cpp:1986 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "Detekovat tenké zdi" -#: src/libslic3r/PrintConfig.cpp:3083 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Rozpoznat nepřipojené části daného modelu(ů) a rozdělit je do samostatných objektů." -#: src/slic3r/GUI/Plater.cpp:1713 +#: src/slic3r/GUI/Plater.cpp:2352 msgid "Detected advanced data" msgstr "Byla detekována data z pokročilého režimu" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:306 msgid "Device:" msgstr "Zařízení:" -#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "Průměr" -#: src/libslic3r/PrintConfig.cpp:2443 +#: src/libslic3r/PrintConfig.cpp:2685 msgid "Diameter in mm of the pillar base" msgstr "Průměr základny podpěr v mm" -#: src/libslic3r/PrintConfig.cpp:2399 +#: src/libslic3r/PrintConfig.cpp:2641 msgid "Diameter in mm of the support pillars" msgstr "Průměr podpěrných sloupů v mm" -#: src/libslic3r/PrintConfig.cpp:2371 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Diameter of the pointing side of the head" msgstr "Průměr konce podpůrného hrotu" -#: src/slic3r/GUI/BedShapeDialog.cpp:89 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." msgstr "Průměr tiskové podložky. Přepokládaný počátek (0,0) je umístěn uprostřed." -#: src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "Směr" -#: src/libslic3r/PrintConfig.cpp:323 +#: src/libslic3r/PrintConfig.cpp:349 msgid "Disable fan for the first" msgstr "Vypnutí chlazení pro prvních" -#: src/libslic3r/PrintConfig.cpp:1280 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Vypne retrakce, pokud dráha nepřekročí perimetr vrchní vrstvy (a proto bude pravděpodobně jakékoliv odkapávání neviditelné)." -#: src/slic3r/GUI/wxExtensions.cpp:3078 +#: src/slic3r/GUI/DoubleSlider.cpp:925 msgid "Discard all custom changes" msgstr "Odstranit všechny vámi provedené změny" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 msgid "Discard changes" msgstr "Zahodit změny" -#: src/slic3r/GUI/Tab.cpp:2784 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 msgid "Discard changes and continue anyway?" msgstr "Zahodit změny a pokračovat?" @@ -1741,96 +1952,118 @@ msgstr "Zahodit změny a pokračovat?" msgid "Displacement (mm)" msgstr "Posunutí (mm)" -#: src/slic3r/GUI/Tab.cpp:2041 +#: src/slic3r/GUI/Tab.cpp:2076 msgid "Display" msgstr "Displej" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "Výška displeje" -#: src/libslic3r/PrintConfig.cpp:2319 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "Horizontální zrcadlení displeje" -#: src/libslic3r/PrintConfig.cpp:2227 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "Orientace displeje" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "Zobrazit okno s frontou nahrávání do tiskového serveru" -#: src/libslic3r/PrintConfig.cpp:2326 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "Vertikální zrcadlení displeje" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "Šířka displeje" -#: src/libslic3r/PrintConfig.cpp:341 +#: src/libslic3r/PrintConfig.cpp:367 msgid "Distance between copies" msgstr "Vzdálenost mezi kopiemi" -#: src/libslic3r/PrintConfig.cpp:1610 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Vzdálenost mezi obrysem a objektem (objekty). Nastavte tuto hodnotu na nulu, pro sloučení obrysu s předmětem (předměty) a tvorbu límce pro dosažení lepší přilnavosti." -#: src/libslic3r/PrintConfig.cpp:2752 +#: src/libslic3r/PrintConfig.cpp:2873 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Rozteč mezi dvěmi spojkami, které spojují objekt s vygenerovanou podložkou." -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "Vzdálenost od objektu" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Vzdálenost souřadnice 0,0 G-code od předního levého rohu obdélníku." -#: src/libslic3r/PrintConfig.cpp:285 +#: src/libslic3r/PrintConfig.cpp:310 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Vzdálenost ze středu chladící trubičky ke špičce extruderu." -#: src/libslic3r/PrintConfig.cpp:1338 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Vzdálenost špičky extruderu od místa, kde je zaparkován filament při vytažení. Měla by se shodovat s hodnotou ve firmware tiskárny." -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:368 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Vzdálenost, použitá pro funkci automatického rozmístění po podložce." -#: src/libslic3r/PrintConfig.cpp:3097 +#: src/libslic3r/PrintConfig.cpp:3471 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Nepodaří se, pokud neexistuje soubor dodaný k přepínači --load." -#: src/libslic3r/PrintConfig.cpp:3041 +#: src/libslic3r/PrintConfig.cpp:3415 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Nepřeuspořádávejte modely před sloučením a tím ponecháním jejich původních souřadnic v XY." -#: src/slic3r/GUI/Field.cpp:206 -#, possible-c-format -msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." -msgstr "Myslíte %s%% namísto %s %s?\nVyberte ANO, pokud chcete změnit tuto hodnotu na %s%%,\nnebo NE, pokud jste si jisti, že %s %s je správná hodnota." +#: src/slic3r/GUI/Field.cpp:235 +#, c-format +msgid "" +"Do you mean %s%% instead of %s %s?\n" +"Select YES if you want to change this value to %s%%, \n" +"or NO if you are sure that %s %s is a correct value." +msgstr "" +"Myslíte %s%% namísto %s %s?\n" +"Vyberte ANO, pokud chcete změnit tuto hodnotu na %s%%,\n" +"nebo NE, pokud jste si jisti, že %s %s je správná hodnota." -#: src/slic3r/GUI/GUI_App.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "Chcete automaticky vybrat výchozí filamenty?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "Chcete automaticky vybrat výchozí materiály?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1893 +msgid "Do you want to delete all saved tool changes?" +msgstr "Opravdu chcete odstranit všechny uložené změny nástrojů?" + +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "Chcete pokračovat?" +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "Do you want to retry" +msgstr "Chcete to zkusit znovu" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 msgid "Do you want to save your manually edited support points?" msgstr "Chcete uložit ručně upravené podpěrné body?" -#: src/libslic3r/PrintConfig.cpp:3040 +#: src/libslic3r/PrintConfig.cpp:3414 msgid "Don't arrange" msgstr "Neuspořádávat" -#: src/slic3r/GUI/UpdateDialogs.cpp:55 +#: src/slic3r/GUI/UpdateDialogs.cpp:71 msgid "Don't notify about new releases any more" msgstr "Neupozorňovat na nové verze" -#: src/libslic3r/PrintConfig.cpp:333 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Don't support bridges" msgstr "Nevytvářet podpěry pod mosty" @@ -1838,141 +2071,169 @@ msgstr "Nevytvářet podpěry pod mosty" msgid "Downgrade" msgstr "Downgrade" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Drag" msgstr "Tažení" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:340 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:355 +#: src/libslic3r/SLAPrintSteps.cpp:42 +msgid "Drilling holes into model." +msgstr "Vrtání otvorů do modelu" + +#: src/libslic3r/SLAPrintSteps.cpp:163 +msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." +msgstr "Vrtání otvorů do meshe selhalo. Je to obvykle způsobené poškozeným modelem. Zkuste ho nejprve opravit." + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:337 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:349 msgid "Drop to bed" msgstr "Spadnout na podložku" -#: src/libslic3r/PrintConfig.cpp:3044 +#: src/libslic3r/PrintConfig.cpp:3418 msgid "Duplicate" msgstr "Duplikovat" -#: src/libslic3r/PrintConfig.cpp:3049 +#: src/libslic3r/PrintConfig.cpp:3423 msgid "Duplicate by grid" msgstr "Duplikovat mřížkou" -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "V průběhu ostatních vrstev, ventilátor" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2660 msgid "Dynamic" msgstr "Dynamic" -#: src/slic3r/GUI/MainFrame.cpp:708 +#: src/slic3r/GUI/MainFrame.cpp:751 msgid "E&xport" msgstr "E&xportovat" -#: src/slic3r/GUI/GUI_ObjectList.cpp:238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:345 msgid "edges fixed" msgstr "hrany opraveny" -#: src/slic3r/GUI/wxExtensions.cpp:3460 +#: src/slic3r/GUI/DoubleSlider.cpp:1480 msgid "Edit color" msgstr "Upravit barvu" -#: src/slic3r/GUI/wxExtensions.cpp:3462 +#: src/slic3r/GUI/DoubleSlider.cpp:933 +msgid "Edit current color - Right click the colored slider segment" +msgstr "Upravit aktuální barvu - Klik pravým tlačítkem na barevný segment posuvníku" + +#: src/slic3r/GUI/DoubleSlider.cpp:1482 msgid "Edit custom G-code" msgstr "Upravit vlastní G-code" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2690 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 msgid "Edit Height Range" msgstr "Úprava Rozsahu vrstev" -#: src/slic3r/GUI/wxExtensions.cpp:3461 +#: src/slic3r/GUI/DoubleSlider.cpp:1481 msgid "Edit pause print message" msgstr "Upravit zprávu při pozastavení tisku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:373 +#: src/slic3r/GUI/DoubleSlider.cpp:1003 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "Upravit značku - Ctrl + Levé tlačítko myši" + +#: src/slic3r/GUI/DoubleSlider.cpp:1004 +msgid "Edit tick mark - Right click" +msgstr "Upravit značku - Pravé tlačítko myši" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 msgid "Editing" msgstr "Editace" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:375 msgid "Elephant foot compensation" msgstr "Kompenzace rozplácnutí první vrstvy" -#: src/libslic3r/SLAPrint.cpp:678 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "Minimální šířka po kompenzaci rozplácnutí první vrstvy" + +#: src/libslic3r/SLAPrint.cpp:625 msgid "Elevation is too low for object. Use the \"Pad around object\" feature to print the object without elevation." msgstr "Nadzvednutí objektu je příliš malé. Pomocí funkce „Podložka okolo objektu“ můžete objekt vytisknout bez nadzvednutí nad podložku." -#: src/libslic3r/PrintConfig.cpp:1044 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode." msgstr "Vkládání M73 P[počet vytištěných procent] R[zbývající čas v minutách] v 1 minutových intervalech do G-codu, aby firmware ukázal přesný zbývající čas. M73 nyní rozpoznává pouze firmware tiskárny Prusa i3 MK3. Firmware i3 MK3 také podporuje M73 Qxx Sxx pro tichý režim." -#: src/libslic3r/GCode.cpp:628 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "Byly detekovány prázdné vrstvy, model by nebylo možné vytisknout." -#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286 -#: src/libslic3r/PrintConfig.cpp:2099 +#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Zapnout" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:303 msgid "Enable auto cooling" msgstr "Zapnutí automatického chlazení" -#: src/libslic3r/PrintConfig.cpp:539 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" msgstr "Zapnout ventilátor, pokud je doba tisku vrstvy kratší než" -#: src/libslic3r/PrintConfig.cpp:2321 +#: src/libslic3r/PrintConfig.cpp:2899 +msgid "Enable hollowing" +msgstr "Povolit tvorbu dutin" + +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "Zapne horizontální zrcadlení výstupních obrázků" -#: src/libslic3r/PrintConfig.cpp:1781 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "Zapne generování podpěr." -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:966 msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." msgstr "Zapněte tuto možnost, chcete-li do G-Code přidávat komentáře, které budou určovat, příslušnost tiskových pohybů k jednotlivým objektům. To je užitečné pro Octoprint plugin CancelObject. Nastavení NENÍ kompatibilní se Single Extruder Multi Material konfigurací a s čištěním trysky do objektu / výplně." -#: src/libslic3r/PrintConfig.cpp:881 +#: src/libslic3r/PrintConfig.cpp:929 msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." msgstr "Aktivací získáte komentovaný soubor G-code, přičemž každý řádek je doplněn popisným textem. Pokud tisknete z SD karty, dodatečné informace v souboru můžou zpomalit firmware." -#: src/libslic3r/PrintConfig.cpp:2085 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "Zapnout variabilní výšku vrstev" -#: src/libslic3r/PrintConfig.cpp:2328 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "Zapne vertikální zrcadlení výstupních obrázků" -#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955 -#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "Konec G-code" -#: src/libslic3r/PrintConfig.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "Zesílit podpěry pro prvních" -#: src/libslic3r/PrintConfig.cpp:1845 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" msgstr "Vynucení podpěr pro prvních n vrstev" -#: src/slic3r/GUI/PrintHostDialogs.cpp:197 -#: src/slic3r/GUI/PrintHostDialogs.cpp:228 +#: src/slic3r/GUI/PrintHostDialogs.cpp:198 +#: src/slic3r/GUI/PrintHostDialogs.cpp:229 msgid "Enqueued" msgstr "Zařazeno do fronty" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" msgstr "Zajistit tloušťku svislých stěn" -#: src/slic3r/GUI/wxExtensions.cpp:3499 +#: src/slic3r/GUI/DoubleSlider.cpp:1590 msgid "Enter custom G-code used on current layer" msgstr "Vložte vlastní G-code použitý v této vrstvě" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Enter new name" msgstr "Zadejte nový název" @@ -1980,262 +2241,292 @@ msgstr "Zadejte nový název" msgid "Enter short message shown on Printer display during pause print" msgstr "Zpráva, která se zobrazí displeji tiskárny při pozastavení tisku" -#: src/slic3r/GUI/ConfigWizard.cpp:622 +#: src/slic3r/GUI/DoubleSlider.cpp:1606 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "Zadejte krátkou zprávu, která se zobrazí na displeji tiskárny při pozastavení tisku" + +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Zadejte požadovanou teplotu filamentu, aby se spojil s vyhřívanou podložkou." -#: src/slic3r/GUI/ConfigWizard.cpp:570 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Enter the diameter of your filament." msgstr "Zadejte průměr vašeho filamentu." -#: src/slic3r/GUI/ConfigWizard.cpp:557 +#: src/slic3r/GUI/ConfigWizard.cpp:967 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Zadejte průměr trysky hotendu vaší tiskárny." -#: src/slic3r/GUI/ConfigWizard.cpp:608 +#: src/slic3r/GUI/DoubleSlider.cpp:1622 +msgid "Enter the height you want to jump to" +msgstr "Zadejte výšku, na kterou chcete přejít" + +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "Enter the temperature needed for extruding your filament." msgstr "Zadejte požadovanou teplotu pro extruzi vašeho filamentu." -#: src/libslic3r/PrintConfig.cpp:718 +#: src/libslic3r/PrintConfig.cpp:761 msgid "Enter your filament cost per kg here. This is only for statistical information." msgstr "Zde zadejte cenu filamentu za kg. Slouží pouze pro statistické informace." -#: src/libslic3r/PrintConfig.cpp:686 +#: src/libslic3r/PrintConfig.cpp:718 msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement." msgstr "Zde zadejte hustotu filamentu. Toto je pouze pro statistické informace. Přípustný způsob je zvážit známou délku filamentu a vypočítat poměr délky k objemu. Je lepší vypočítat objem přímo přes posun." -#: src/libslic3r/PrintConfig.cpp:678 +#: src/libslic3r/PrintConfig.cpp:710 msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Zde zadejte průměr filamentu. Je zapotřebí správné přesnosti, proto použijte šupleru a proveďte několik měření podél filamentu, poté vypočtete průměr." -#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Chyba" -#: src/slic3r/GUI/FirmwareDialog.cpp:608 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:645 +#, c-format msgid "Error accessing port at %s: %s" msgstr "Chyba při přístupu k portu na %s : %s" -#: src/slic3r/GUI/Plater.cpp:3593 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:3441 +msgid "Error during reload" +msgstr "Chyba při opětovném načtení souboru" + +#: src/slic3r/GUI/Plater.cpp:5073 +#, c-format msgid "Error exporting 3MF file %s" msgstr "Chyba při exportu souboru 3MF %s" -#: src/slic3r/GUI/Plater.cpp:3564 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5025 +#, c-format msgid "Error exporting AMF file %s" msgstr "Chyba při exportu souboru AMF %s" -#: src/slic3r/GUI/PrintHostDialogs.cpp:153 +#: src/slic3r/GUI/PrintHostDialogs.cpp:154 msgid "Error Message" msgstr "Chybová hláška" -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:118 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Chyba při načítání konfiguračního souboru PrusaSliceru. Soubor je pravděpodobně poškozen. Zkuste soubor ručně smazat . Vaše uživatelské profily nebudou ovlivněny." -#: src/slic3r/GUI/PrintHostDialogs.cpp:271 +#: src/slic3r/GUI/PrintHostDialogs.cpp:272 msgid "Error uploading to print host:" msgstr "Chyba při nahrávání do tiskového serveru:" -#: src/libslic3r/Zipper.cpp:105 +#: src/libslic3r/Zipper.cpp:102 msgid "Error with zip archive" msgstr "Chyba v zip archivu" -#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1443 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 msgid "Error!" msgstr "Chyba!" -#: src/slic3r/GUI/BedShapeDialog.cpp:482 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "Chyba! Neplatný model" -#: src/slic3r/GUI/FirmwareDialog.cpp:610 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:647 +#, c-format msgid "Error: %s" msgstr "Chyba: %s" -#: src/slic3r/GUI/Plater.cpp:1503 +#: src/slic3r/GUI/Job.hpp:123 msgid "ERROR: not enough resources to execute a new job." msgstr "CHYBA: nedostatek prostředků ke spuštění nové úlohy." -#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028 -#: src/slic3r/GUI/Plater.cpp:1070 +#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 +#: src/slic3r/GUI/Plater.cpp:1255 msgid "Estimated printing time" msgstr "Odhadovaný čas tisku" -#: src/slic3r/GUI/Plater.cpp:424 +#: src/slic3r/GUI/Plater.cpp:499 msgid "Everywhere" msgstr "Všude" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." msgstr "s výjimkou prvních %1% vrstev." -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "vyjma první vrstvy." -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1373 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Příliš velká hodnota proměnné %1% =%2% mm pro tisk s průměrem trysky %3% mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 +#, c-format msgid "Exit %s" msgstr "Ukončit %s" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:361 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Experimentální nastavení pro zabránění tvorbě podpěr v oblastech po mosty." -#: src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan." msgstr "Experimentální volba pro nastavení průtoku pro přesahy (použije se průtok jako u mostů), aplikuje se na ně rychlost mostu a spustí se ventilátor." -#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/ConfigWizard.cpp:787 +#: src/slic3r/GUI/ConfigWizard.cpp:823 msgid "Expert mode" msgstr "Expertní režim" -#: src/slic3r/GUI/GUI_App.cpp:676 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "Režim Expert" -#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821 +#: src/slic3r/GUI/Plater.cpp:5555 msgid "Export" msgstr "Exportovat" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "Exportovat Konfigura&ci" -#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 msgid "Export &G-code" msgstr "Exportovat &G-code" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Exportovat &trasy extruderu jako OBJ" -#: src/libslic3r/PrintConfig.cpp:2949 +#: src/libslic3r/PrintConfig.cpp:3323 msgid "Export 3MF" msgstr "Exportovat 3MF" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "Exportovat všechna přednastavení do souboru" -#: src/libslic3r/PrintConfig.cpp:2954 +#: src/libslic3r/PrintConfig.cpp:3328 msgid "Export AMF" msgstr "Exportovat AMF" -#: src/slic3r/GUI/Plater.cpp:1932 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Export AMF file:" msgstr "Exportovat AMF soubor:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 msgid "Export as STL" msgstr "Exportovat jako STL" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "Exportovat konfiguraci" + +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "Exportovat Konfigurační &Balík" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "Exportovat současnou konfiguraci do souboru" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "Exportovat stávající plochu jako AMF" -#: src/slic3r/GUI/MainFrame.cpp:362 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "Exportovat stávající plochu do G-code" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "Exportovat stávající plochu jako STL" -#: src/slic3r/GUI/MainFrame.cpp:368 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" msgstr "Exportovat stávající plochu včetně podpěr jako STL" -#: src/slic3r/GUI/Plater.cpp:2722 +#: src/slic3r/GUI/Plater.cpp:3673 msgid "Export failed" msgstr "Exportování selhalo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733 -#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964 +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "Exportovat úplné zdrojové cesty modelů a dílů do souborů 3mf a amf" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 +#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 msgid "Export G-code" msgstr "Exportovat G-code" -#: src/libslic3r/PrintConfig.cpp:2931 +#: src/libslic3r/PrintConfig.cpp:3305 msgid "Export OBJ" msgstr "Exportovat OBJ" -#: src/slic3r/GUI/Plater.cpp:2531 +#: src/slic3r/GUI/Plater.cpp:2594 msgid "Export OBJ file:" msgstr "Exportovat OBJ soubor:" -#: src/slic3r/Utils/FixModelByWin10.cpp:368 +#: src/slic3r/Utils/FixModelByWin10.cpp:369 +#: src/slic3r/Utils/FixModelByWin10.cpp:374 msgid "Export of a temporary 3mf file failed" msgstr "Export dočasného 3MF souboru selhalo" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" msgstr "Exportovat plochu jako &AMF" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" msgstr "Exportovat plochu jako &STL" -#: src/slic3r/GUI/MainFrame.cpp:481 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" msgstr "Exportovat t&iskovou plochu včetně podpěr jako STL" -#: src/libslic3r/PrintConfig.cpp:2943 +#: src/libslic3r/PrintConfig.cpp:3317 msgid "Export SLA" msgstr "Exportovat SLA" -#: src/libslic3r/PrintConfig.cpp:2959 +#: src/slic3r/GUI/Preferences.cpp:73 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "Exportovat absolutní cesty k 3mf a amf souborům" + +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Export STL" msgstr "Exportovat STL" -#: src/slic3r/GUI/Plater.cpp:1925 +#: src/slic3r/GUI/Plater.cpp:2575 msgid "Export STL file:" msgstr "Exportovat STL soubor:" -#: src/libslic3r/PrintConfig.cpp:2950 +#: src/libslic3r/PrintConfig.cpp:3324 msgid "Export the model(s) as 3MF." msgstr "Exportovat model(y) jako 3MF." -#: src/libslic3r/PrintConfig.cpp:2955 +#: src/libslic3r/PrintConfig.cpp:3329 msgid "Export the model(s) as AMF." msgstr "Exportovat model(y) jako AMF." -#: src/libslic3r/PrintConfig.cpp:2932 +#: src/libslic3r/PrintConfig.cpp:3306 msgid "Export the model(s) as OBJ." msgstr "Exportovat model(y) jako OBJ." -#: src/libslic3r/PrintConfig.cpp:2960 +#: src/libslic3r/PrintConfig.cpp:3334 msgid "Export the model(s) as STL." msgstr "Exportovat model(y) jako STL." -#: src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Export the selected object as STL file" msgstr "Exportovat vybrané objekty jako STL soubor" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/Plater.cpp:877 +msgid "Export to SD card / Flash drive" +msgstr "Export na SD kartu / Flash disk" + +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" msgstr "Exportovat trasy extruderu jako OBJ" -#: src/libslic3r/Print.cpp:1517 +#: src/libslic3r/Print.cpp:1634 msgid "Exporting G-code" msgstr "Exportování souboru G-code" @@ -2248,139 +2539,143 @@ msgstr "Exportování modelu..." msgid "Exporting source model" msgstr "Exportování zdrojového modelu" -#: src/libslic3r/SLAPrint.cpp:700 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "Doba osvitu je mimo rozsah profilu tiskárny." -#: src/slic3r/GUI/Tab.cpp:3306 +#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 msgid "Exposure" msgstr "Osvit" -#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311 +#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 msgid "Exposure time" msgstr "Doba osvitu" -#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Vnější perimetr" -#: src/slic3r/GUI/PresetHints.cpp:153 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" msgstr "vnější perimetry" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" msgstr "Vnější perimetry" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" msgstr "Nejprve tisknout vnější perimetry" -#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "Extra vzdálenost při návratu" -#: src/libslic3r/PrintConfig.cpp:1321 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "Extra délka při zavádění" -#: src/libslic3r/PrintConfig.cpp:445 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "Extra perimetry (pokud jsou potřeba)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479 -#: src/libslic3r/PrintConfig.cpp:455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extruder" -#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 +#: src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format msgid "Extruder %d" msgstr "Extruder %d" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/DoubleSlider.cpp:978 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "Extruder (nástroj) se změní na Extruder \"%1%\"" + +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Extruder and Bed Temperatures" msgstr "Teploty extruderu a podložky" -#: src/slic3r/GUI/WipeTowerDialog.cpp:226 +#: src/slic3r/GUI/WipeTowerDialog.cpp:255 msgid "Extruder changed to" msgstr "Extruder změněn na" -#: src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/Tab.cpp:1235 msgid "Extruder clearance (mm)" msgstr "Kolizní oblast extruderu (mm)" -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "Barva extruderu" -#: src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "Odsazení extruderu" -#: src/libslic3r/PrintConfig.cpp:863 +#: src/libslic3r/PrintConfig.cpp:911 msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file." msgstr "Teplota extruderu pro první vrstvu. Chcete-li během tisku ručně ovládat teplotu, nastavte tuto hodnotu na nulu, aby se ve výstupním souboru zakázaly příkazy pro řízení teploty." -#: src/libslic3r/PrintConfig.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Teplota extruderu pro následující vrstvy po vrstvě první. Nastavte tuto hodnotu na nulu, abyste zakázali příkazy pro řízení teploty na výstupu." -#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72 -#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119 -#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456 -#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340 -#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852 -#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151 -#: src/libslic3r/PrintConfig.cpp:2159 +#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "Extrudery" -#: src/libslic3r/PrintConfig.cpp:507 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "Osa extruderu" -#: src/libslic3r/PrintConfig.cpp:513 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "Násobič extruze" -#: src/slic3r/GUI/ConfigWizard.cpp:612 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 msgid "Extrusion Temperature:" msgstr "Teplota extruze:" -#: src/slic3r/GUI/Tab.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:1207 msgid "Extrusion width" msgstr "Šířka extruze" -#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514 -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523 -#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962 -#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "Šíře extruze" -#: src/slic3r/GUI/Plater.cpp:139 +#: src/slic3r/GUI/Plater.cpp:164 msgid "Facets" msgstr "Facety" -#: src/slic3r/GUI/GUI_ObjectList.cpp:240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "facets added" msgstr "facety přidány" -#: src/slic3r/GUI/GUI_ObjectList.cpp:239 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "facets removed" msgstr "facety odebrány" -#: src/slic3r/GUI/GUI_ObjectList.cpp:241 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets reversed" msgstr "facety otočeny" -#: src/libslic3r/PrintConfig.cpp:2302 +#: src/libslic3r/PrintConfig.cpp:2508 msgid "Faded layers" msgstr "Vrstvy počátečního osvitu" -#: src/libslic3r/Zipper.cpp:47 +#: src/libslic3r/Zipper.cpp:44 msgid "failed finding central directory" msgstr "selhalo nalezení kořenového adresáře" @@ -2388,181 +2683,181 @@ msgstr "selhalo nalezení kořenového adresáře" msgid "Failed loading the input model." msgstr "Načtení vstupního modelu se nezdařilo." -#: src/libslic3r/PrintBase.cpp:65 +#: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." msgstr "Zpracování šablony output_filename_format selhalo." -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "Ventilátor" -#: src/slic3r/GUI/Tab.cpp:1501 +#: src/slic3r/GUI/Tab.cpp:1458 msgid "Fan settings" msgstr "Nastavení ventilátoru" -#: src/slic3r/GUI/Tab.cpp:1502 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" msgstr "Rychlost ventilátoru" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" msgstr "Rychlost ventilátoru (%)" -#: src/libslic3r/PrintConfig.cpp:2240 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "Rychlý" -#: src/libslic3r/PrintConfig.cpp:2241 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "Rychlý náklon" -#: src/slic3r/GUI/GUI_App.cpp:135 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "Fatální chyba" -#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/libslic3r/GCode/PreviewData.cpp:394 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Typ" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 msgid "Feature types" msgstr "Typy extruzí" -#: src/slic3r/GUI/ConfigWizard.cpp:1488 +#: src/slic3r/GUI/ConfigWizard.cpp:1528 msgid "FFF Technology Printers" msgstr "Tiskárny technologie FFF" -#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470 -#: src/slic3r/GUI/Tab.cpp:1471 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1275 +#: src/slic3r/GUI/Preset.cpp:1472 msgid "filament" msgstr "filament" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Filament and Nozzle Diameters" msgstr "Průměr filamentu a trysky" -#: src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/ConfigWizard.cpp:984 msgid "Filament Diameter:" msgstr "Průměr filamentu:" -#: src/libslic3r/PrintConfig.cpp:620 +#: src/libslic3r/PrintConfig.cpp:651 msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." msgstr "Filament je chlazen pohyby tam a zpět v chladicí trubičce. Zadejte požadovaný počet těchto pohybů." -#: src/libslic3r/PrintConfig.cpp:654 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "Doba zavádění filamentu" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "Poznámky k filamentu" -#: src/slic3r/GUI/Tab.cpp:1502 src/slic3r/GUI/Tab.cpp:1557 +#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 msgid "Filament Overrides" msgstr "Přepsání globálních hodnot" -#: src/libslic3r/PrintConfig.cpp:1312 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "Parkovací pozice filamentu" -#: src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filament Profiles Selection" msgstr "Výběr Filamentových Profilů" -#: src/slic3r/GUI/Tab.cpp:1516 +#: src/slic3r/GUI/Tab.cpp:1473 msgid "Filament properties" msgstr "Vlastnosti filamentu" -#: src/slic3r/GUI/Tab.hpp:335 +#: src/slic3r/GUI/Tab.hpp:354 msgid "Filament Settings" msgstr "Nastavení filamentu" -#: src/libslic3r/PrintConfig.cpp:694 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "Typ filamentu" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "Doba vysouvání filamentu" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 msgid "filaments" msgstr "filamenty" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filaments" msgstr "Filamenty" -#: src/libslic3r/Zipper.cpp:75 +#: src/libslic3r/Zipper.cpp:72 msgid "file close failed" msgstr "zavření souboru selhalo" -#: src/libslic3r/Zipper.cpp:69 +#: src/libslic3r/Zipper.cpp:66 msgid "file create failed" msgstr "vytvoření souboru selhalo" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:793 msgid "File Not Found" msgstr "Soubor nenalezen" -#: src/libslic3r/Zipper.cpp:89 +#: src/libslic3r/Zipper.cpp:86 msgid "file not found" msgstr "soubor nenalezen" -#: src/libslic3r/Zipper.cpp:67 +#: src/libslic3r/Zipper.cpp:64 msgid "file open failed" msgstr "otevření souboru selhalo" -#: src/libslic3r/Zipper.cpp:73 +#: src/libslic3r/Zipper.cpp:70 msgid "file read failed" msgstr "čtení souboru se nezdařilo" -#: src/libslic3r/Zipper.cpp:77 +#: src/libslic3r/Zipper.cpp:74 msgid "file seek failed" msgstr "hledání souboru selhalo" -#: src/libslic3r/Zipper.cpp:79 +#: src/libslic3r/Zipper.cpp:76 msgid "file stat failed" msgstr "soubor stat selhal" -#: src/libslic3r/Zipper.cpp:39 +#: src/libslic3r/Zipper.cpp:36 msgid "file too large" msgstr "soubor je příliš velký" -#: src/libslic3r/Zipper.cpp:71 +#: src/libslic3r/Zipper.cpp:68 msgid "file write failed" msgstr "zápis souboru se nezdařil" -#: src/slic3r/GUI/PrintHostDialogs.cpp:152 +#: src/slic3r/GUI/PrintHostDialogs.cpp:153 msgid "Filename" msgstr "Název souboru" -#: src/libslic3r/PrintConfig.cpp:728 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "Úhel výplně" -#: src/libslic3r/PrintConfig.cpp:742 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "Hustota výplně" -#: src/libslic3r/PrintConfig.cpp:779 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "Vzor výplně" -#: src/libslic3r/PrintConfig.cpp:410 +#: src/libslic3r/PrintConfig.cpp:437 msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells." msgstr "Vzor výplně pro spodní vrstvy. Ovlivňuje pouze spodní vnější viditelné vrstvy. Neovlivňuje následné plné vrstvy." -#: src/libslic3r/PrintConfig.cpp:781 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "Vzor výplně pro obecnou výplň s nízkou hustotou." -#: src/libslic3r/PrintConfig.cpp:390 +#: src/libslic3r/PrintConfig.cpp:417 msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells." msgstr "Nastavte vzor pro horní výplň. Ovlivňuje pouze horní viditelnou vrstvu a ne její sousední plné vrstvy." @@ -2570,88 +2865,88 @@ msgstr "Nastavte vzor pro horní výplň. Ovlivňuje pouze horní viditelnou vrs msgid "Finished" msgstr "Dokončeno" -#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920 +#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:740 +#: src/slic3r/GUI/FirmwareDialog.cpp:777 msgid "Firmware flasher" msgstr "Aktualizace firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:765 +#: src/slic3r/GUI/FirmwareDialog.cpp:802 msgid "Firmware image:" msgstr "Soubor s firmware:" -#: src/slic3r/GUI/Tab.cpp:2431 +#: src/slic3r/GUI/Tab.cpp:2573 msgid "Firmware Retraction" msgstr "Firmware Retrakce" -#: src/slic3r/GUI/ConfigWizard.cpp:486 +#: src/slic3r/GUI/ConfigWizard.cpp:892 msgid "Firmware Type" msgstr "Typ firmware" -#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821 -#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "První vrstva" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "Výška první vrstvy" -#: src/libslic3r/Print.cpp:1328 +#: src/libslic3r/Print.cpp:1418 msgid "First layer height can't be greater than nozzle diameter" msgstr "Výška první vrstvy nesmí být větší než průměr trysky" -#: src/libslic3r/PrintConfig.cpp:852 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "Rychlost první vrstvy" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "Volumetrická hodnota první vrstvy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 msgid "Fix through the Netfabb" msgstr "Opravit pomocí služby Netfabb" -#: src/slic3r/GUI/Plater.cpp:3072 +#: src/slic3r/GUI/Plater.cpp:3482 msgid "Fix Throught NetFabb" msgstr "Opravit pomocí Netfabb" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" msgstr "Nahrát &firmware tiskárny" -#: src/slic3r/GUI/FirmwareDialog.cpp:146 +#: src/slic3r/GUI/FirmwareDialog.cpp:150 msgid "Flash!" msgstr "Nahrát!" -#: src/slic3r/GUI/FirmwareDialog.cpp:275 +#: src/slic3r/GUI/FirmwareDialog.cpp:284 msgid "Flashing cancelled." msgstr "Nahrávání zrušeno." -#: src/slic3r/GUI/FirmwareDialog.cpp:192 +#: src/slic3r/GUI/FirmwareDialog.cpp:199 msgid "Flashing failed" msgstr "Nahrávání selhalo" -#: src/slic3r/GUI/FirmwareDialog.cpp:274 +#: src/slic3r/GUI/FirmwareDialog.cpp:283 msgid "Flashing failed. Please see the avrdude log below." msgstr "Nahrání selhalo. Projděte si prosím avrdude log níže." -#: src/slic3r/GUI/FirmwareDialog.cpp:148 +#: src/slic3r/GUI/FirmwareDialog.cpp:152 msgid "Flashing in progress. Please do not disconnect the printer!" msgstr "Probíhá nahrávání firmware. Prosím neodpojujte tiskárnu!" -#: src/slic3r/GUI/FirmwareDialog.cpp:273 +#: src/slic3r/GUI/FirmwareDialog.cpp:282 msgid "Flashing succeeded!" msgstr "Nahrávání bylo úspěšné!" -#: src/slic3r/GUI/Tab.cpp:1156 +#: src/slic3r/GUI/Tab.cpp:1220 msgid "Flow" msgstr "Průtok" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" msgstr "průtok je maximalizován" @@ -2668,306 +2963,419 @@ msgid "For add color change use left mouse button click" msgstr "Pro přidání změny barvy stiskněte levé tlačítko myši" #: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" -msgstr "Pro Odstranění \"%1%\" kódu stiskněte levé tlačítko myši\nPro Editaci \"%1%\" kódu stiskněte pravé tlačítko myši" +msgid "" +"For Delete \"%1%\" code use left mouse button click\n" +"For Edit \"%1%\" code use right mouse button click" +msgstr "" +"Pro Odstranění \"%1%\" kódu stiskněte levé tlačítko myši\n" +"Pro Editaci \"%1%\" kódu stiskněte pravé tlačítko myši" #: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" -msgstr "Pro smazání změny barvy klikněte levým tlačítkem myši\nPro výběr barvy klikněte pravým tlačítkem myši" +msgid "" +"For Delete color change use left mouse button click\n" +"For Edit color use right mouse button click" +msgstr "" +"Pro smazání změny barvy klikněte levým tlačítkem myši\n" +"Pro výběr barvy klikněte pravým tlačítkem myši" -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Pro více informací prosím navštivte naší wiki stránku:" -#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528 +#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 msgid "For support enforcers only" msgstr "Pouze pro vynucené podpěry" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3345 -msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." -msgstr "na levé straně: indikuje nesystémové (jiné než výchozí) přednastavení,\nna pravé straně: indikuje, že nastavení nebylo změněno." +#: src/slic3r/GUI/Tab.cpp:3249 +msgid "" +"for the left button: \tindicates a non-system (or non-default) preset,\n" +"for the right button: \tindicates that the settings hasn't been modified." +msgstr "" +"na levé straně: indikuje nesystémové (jiné než výchozí) přednastavení,\n" +"na pravé straně: indikuje, že nastavení nebylo změněno." -#: src/slic3r/GUI/ConfigManipulation.cpp:128 -msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." -msgstr "U čistící věže pokud pracujte s rozpustnými materiály, je třeba\nsynchronizovat vrstvy podpěr s vrstvami objektů." +#: src/slic3r/GUI/ConfigManipulation.cpp:136 +msgid "" +"For the Wipe Tower to work with the soluble supports, the support layers\n" +"need to be synchronized with the object layers." +msgstr "" +"U čistící věže pokud pracujte s rozpustnými materiály, je třeba\n" +"synchronizovat vrstvy podpěr s vrstvami objektů." -#: src/libslic3r/Print.cpp:1302 +#: src/libslic3r/Print.cpp:1392 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." -msgstr "U čistící věže pokud pracujte s rozpustnými materiály, je třeba\nsynchronizovat vrstvy podpěr s vrstvami objektů." +msgstr "" +"U čistící věže pokud pracujte s rozpustnými materiály, je třeba\n" +"synchronizovat vrstvy podpěr s vrstvami objektů." -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Force pad around object everywhere" msgstr "Vynutit podložku všude okolo objektů" -#: src/libslic3r/PrintConfig.cpp:1660 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "Force solid infill for regions having a smaller area than the specified threshold." msgstr "Vynucení plné výplně pro oblasti, které mají menší plochu, než je stanovená prahová hodnota." -#: src/libslic3r/PrintConfig.cpp:1023 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." msgstr "Vynucení vytváření pevných skořepin mezi sousedními materiály/objemy. Užitečné pro tisk s více extrudery s průsvitnými materiály nebo ručně rozpustným podpůrným materiálem." -#: src/slic3r/GUI/WipeTowerDialog.cpp:262 +#: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "From" msgstr "Předchozí extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 msgid "From Object List You can't delete the last solid part from object." msgstr "Ze seznamu objektů nemůžete smazat poslední část objektu." -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "Zepředu" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "Pohled zepředu" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1015 msgid "full profile name" msgstr "celé jméno profilu" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87 +#: src/slic3r/GUI/DoubleSlider.cpp:987 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"G-code na této značce je v rozporu s tiskovým režimem.\n" +"Editace způsobí změny v posuvníku." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 msgid "G-code file exported to %1%" msgstr "G-code byl exportován do %1%" -#: src/libslic3r/PrintConfig.cpp:888 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "Druh G-code" -#: src/libslic3r/PrintConfig.cpp:689 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2496 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870 -#: src/libslic3r/GCode/PreviewData.cpp:170 +#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Výplň tenkých stěn" -#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812 -#: src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 +#: src/slic3r/GUI/Tab.cpp:2038 msgid "General" msgstr "Obecné" -#: src/libslic3r/PrintConfig.cpp:1242 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder." msgstr "Nevygenerovat méně, než počet obrysových smyček, potřebných ke spotřebování specifikovaného množství filamentu na spodní vrstvu. U strojů s více extrudery platí toto minimum pro každý extruder." -#: src/libslic3r/PrintConfig.cpp:1779 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "Generovat podpěry" -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Vygeneruje podpěry pro zadaný počet vrstev počítaných od spodního okraje, bez ohledu na to, zda jsou povoleny standartní podpěry nebo nikoliv a bez ohledu na jakýkoli prah úhlu. To je užitečné pro získání větší přilnavosti předmětů s velmi tenkou nebo špatnou stopou na tiskové podložce." -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2604 msgid "Generate supports" msgstr "Generovat podpěry" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2606 msgid "Generate supports for the models" msgstr "Generovat podpěry modelů" -#: src/libslic3r/Print.cpp:1492 +#: src/libslic3r/Print.cpp:1610 msgid "Generating brim" msgstr "Generování límce" -#: src/libslic3r/Print.cpp:1524 +#: src/libslic3r/Print.cpp:1638 msgid "Generating G-code" msgstr "Generování G-code" -#: src/libslic3r/SLAPrint.cpp:58 +#: src/libslic3r/SLAPrintSteps.cpp:46 msgid "Generating pad" msgstr "Generování podložky" -#: src/libslic3r/PrintObject.cpp:141 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" msgstr "Generování perimetrů" -#: src/libslic3r/Print.cpp:1484 +#: src/libslic3r/Print.cpp:1602 msgid "Generating skirt" msgstr "Generování obrysových smyček" -#: src/libslic3r/PrintObject.cpp:391 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "Generování podpěr" -#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809 +#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 msgid "Generating support points" msgstr "Generování podpěrných bodů" -#: src/libslic3r/SLAPrint.cpp:57 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Generating support tree" msgstr "Generování podpěr typu strom" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1551 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 msgid "Generic" msgstr "Obecný" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 msgid "Gizmo cut" msgstr "Gizmo řez" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Gizmo move" msgstr "Gizmo posuv" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 msgid "Gizmo Place face on bed" msgstr "Gizmo Umístit plochou na podložku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Gizmo rotate" msgstr "Gizmo rotace" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 msgid "Gizmo scale" msgstr "Gizmo měřítko" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA dutina" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo SLA support points" msgstr "Gizmo SLA podpěrné body" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:641 +#: src/slic3r/GUI/GLCanvas3D.cpp:2945 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 msgid "Gizmo-Move" msgstr "Gizmo-Posuv" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:569 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 msgid "Gizmo-Place on Face" msgstr "Gizmo-Umístit plochou na podložku" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:651 +#: src/slic3r/GUI/GLCanvas3D.cpp:3025 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 msgid "Gizmo-Rotate" msgstr "Gizmo-Otáčení" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:646 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 msgid "Gizmo-Scale" msgstr "Gizmo-Měřítko" -#: src/slic3r/GUI/AboutDialog.cpp:95 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "Gizma" + +#: src/slic3r/GUI/AboutDialog.cpp:259 msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, verze 3" -#: src/slic3r/GUI/ConfigWizard.cpp:571 +#: src/slic3r/GUI/ConfigWizard.cpp:981 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Je zapotřebí velká přesnost, proto použijte posuvné měřítko (šupleru) a proveďte několik měření po délce filamentu, poté vypočítejte průměr." -#: src/libslic3r/PrintConfig.cpp:797 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "Mřížka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1846 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 msgid "Group manipulation" msgstr "Manipulace se skupinou" -#: src/libslic3r/PrintConfig.cpp:805 +#: src/slic3r/GUI/Preferences.cpp:137 +msgid "GUI" +msgstr "GUI" + +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "Gyroid" -#: src/slic3r/GUI/Tab.cpp:2775 +#: src/slic3r/GUI/Tab.cpp:2921 msgid "has the following unsaved changes:" msgstr "má neuložené následující změny:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "Průměr hrotu" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "Průnik hrotu podpěry by neměl být větší než je tloušťka hrotu podpěry." -#: src/libslic3r/PrintConfig.cpp:822 +#: src/libslic3r/PrintConfig.cpp:869 msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Teplota vyhřívané tiskové podložky pro první vrstvu. Nastavením tuto hodnoty na nulu vypnete příkazy pro řízení teploty ve vrstvě ve výstupu." -#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Výška" -#: src/libslic3r/GCode/PreviewData.cpp:396 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "Výška (mm)" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts." msgstr "Výška obrysu vyjádřená ve vrstvách. Nastavte tuto hodnotu vysokou, pro použití obrysu jako stínění proti průvanu." -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "Výška displeje" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 msgid "Height range Modifier" msgstr "Modifikátor Výškového rozsahu" -#: src/slic3r/GUI/GLCanvas3D.cpp:3650 src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Height ranges" msgstr "Výškové rozsahy" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:251 msgid "Heights at which a filament change is to occur." msgstr "Výšky, při kterých má dojít ke změně filamentu." -#: src/slic3r/GUI/ConfigWizard.cpp:300 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:433 +#, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Zdravím, vítejte v %s! Tento %s vám pomůže se základní konfigurací; jen několik nastavení a budete připraveni k tisku." -#: src/libslic3r/PrintConfig.cpp:2976 +#: src/libslic3r/PrintConfig.cpp:3350 msgid "Help" msgstr "Nápověda" -#: src/libslic3r/PrintConfig.cpp:2982 +#: src/libslic3r/PrintConfig.cpp:3356 msgid "Help (FFF options)" msgstr "Nápověda (pro FFF)" -#: src/libslic3r/PrintConfig.cpp:2987 +#: src/libslic3r/PrintConfig.cpp:3361 msgid "Help (SLA options)" msgstr "Nápověda (pro SLA)" -#: src/slic3r/GUI/WipeTowerDialog.cpp:225 +#: src/slic3r/GUI/WipeTowerDialog.cpp:254 msgid "Here you can adjust required purging volume (mm³) for any given pair of tools." msgstr "Zde můžete upravit požadovaný objem čištění (mm³) pro kteroukoliv dvojici extruderů." -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "Zvýšený proud do extruderového motoru při výměně filamentu" -#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806 +#: src/slic3r/GUI/GLCanvas3D.cpp:282 +msgid "Higher print quality versus higher print speed." +msgstr "Vyšší kvalita tisku versus vyšší rychlost tisku." + +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "Hilbertova křivka" -#: src/slic3r/GUI/Plater.cpp:873 +#: src/slic3r/GUI/Plater.cpp:1039 msgid "Hold Shift to Slice & Export G-code" msgstr "Stiskni Shift pro Slicování & Export G-codu" -#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "Hloubka otvoru" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "Průměr otvoru" + +#: src/slic3r/GUI/Plater.cpp:2744 +msgid "Hollow" +msgstr "Vydutit" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" +msgstr "Vydutit a vyvrtat" + +#: src/libslic3r/PrintConfig.cpp:2901 +msgid "Hollow out a model to have an empty interior" +msgstr "Vyduťte model, abyste měli vnitřek prázdný" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "Vydutit tento objekt" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 +#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 +#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 +#: src/libslic3r/PrintConfig.cpp:2926 +msgid "Hollowing" +msgstr "Vytvoření dutiny" + +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Hollowing accuracy" +msgstr "Přesnost" + +#: src/slic3r/GUI/Plater.cpp:2910 +msgid "Hollowing cancelled." +msgstr "Vytváření dutiny bylo zrušeno." + +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Hollowing closing distance" +msgstr "Vzdálenost uzavření" + +#: src/slic3r/GUI/Plater.cpp:2911 +msgid "Hollowing done." +msgstr "Vydutění dokončeno." + +#: src/slic3r/GUI/Plater.cpp:2913 +msgid "Hollowing failed." +msgstr "Vydutění selhalo." + +#: src/libslic3r/PrintConfig.cpp:2928 +msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." +msgstr "Tvorba dutiny se provádí ve dvou krocích: nejprve se imaginární vnitřní stěna vypočítá hlouběji (offset plus vzdálenost uzavření) v objektu a poté se nafoukne zpět na zadaný offset. Díky větší vzdálenosti uzavření je vnitřek modelu zaoblenější. Při nulové hodnotě se vnitřek modelu nejvíce podobá vnějšku modelu." + +#: src/libslic3r/SLAPrintSteps.cpp:41 +msgid "Hollowing model" +msgstr "Vydutění modelu" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +msgid "Hollowing parameter change" +msgstr "Změna parametru dutiny" + +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Hollowing thickness" +msgstr "Tloušťka stěny" + +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Plástev" -#: src/slic3r/GUI/Tab.cpp:1013 +#: src/slic3r/GUI/Tab.cpp:1066 msgid "Horizontal shells" msgstr "Vodorovné stěny" -#: src/libslic3r/PrintConfig.cpp:209 +#: src/libslic3r/PrintConfig.cpp:235 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Šírka límce který bude vytištěn v první vrstvě okolo každého objektu." -#: src/slic3r/GUI/PrintHostDialogs.cpp:151 +#: src/slic3r/GUI/PrintHostDialogs.cpp:152 msgid "Host" msgstr "Server" -#: src/libslic3r/PrintConfig.cpp:1267 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "Typ tiskového serveru" @@ -2975,749 +3383,829 @@ msgstr "Typ tiskového serveru" msgid "Hostname" msgstr "Název serveru" -#: src/libslic3r/PrintConfig.cpp:81 +#: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" msgstr "Název serveru, IP nebo URL" -#: src/slic3r/GUI/Tab.cpp:136 -msgid "Hover the cursor over buttons to find more information \nor click this button." -msgstr "Pro více informací přejeďte kurzorem nad tlačítky\nnebo na tlačítko klikněte." +#: src/slic3r/GUI/Tab.cpp:141 +msgid "" +"Hover the cursor over buttons to find more information \n" +"or click this button." +msgstr "" +"Pro více informací přejeďte kurzorem nad tlačítky\n" +"nebo na tlačítko klikněte." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2803 msgid "How far should the pad extend around the contained geometry" msgstr "Jak široká má být podložka kolem geometrie" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2892 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Jak hluboko mají spojky proniknou do modelu." -#: src/libslic3r/PrintConfig.cpp:2380 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "How much the pinhead has to penetrate the model surface" msgstr "Jak moc hrot podpěry pronikne do povrchu modelu" -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/libslic3r/PrintConfig.cpp:2746 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "O kolik mají podpěry nadzvednout podporovaný objekt. V případě zvolení možnosti \"Podložka okolo objektu\" bude tato hodnota ignorována." -#: src/libslic3r/PrintConfig.cpp:95 +#: src/libslic3r/PrintConfig.cpp:111 msgid "HTTPS CA File" msgstr "Soubor HTTPS CA" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "Soubor HTTPS CA je volitelný. Je nutný pouze pokud použijte HTTPS certifikát s vlastním podpisem." -#: src/slic3r/GUI/Tab.cpp:1773 -#, possible-c-format -msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "Soubor HTTPS CA:\nV tomto systému používá %s certifikáty HTTPS ze systému Certificate Store nebo Keychain. Chcete-li použít vlastní soubor CA, importujte soubor CA do Certificate Store / Keychain." +#: src/slic3r/GUI/Tab.cpp:1755 +#, c-format +msgid "" +"HTTPS CA File:\n" +" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" +" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "" +"Soubor HTTPS CA:\n" +"V tomto systému používá %s certifikáty HTTPS ze systému Certificate Store nebo Keychain. Chcete-li použít vlastní soubor CA, importujte soubor CA do Certificate Store / Keychain." -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:226 msgid "Icon size in a respect to the default size" msgstr "Velikost ikon vůči výchozí velikosti" -#: src/slic3r/GUI/PrintHostDialogs.cpp:148 +#: src/slic3r/GUI/PrintHostDialogs.cpp:149 msgid "ID" msgstr "ID" -#: src/libslic3r/PrintConfig.cpp:1787 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Pokud je zaškrtnuto, budou podpěry generovány automaticky na základě prahové hodnoty převisu. Pokud není zaškrtnuto, bude podpěra generována pouze v místech, kde je umístěn objekt pro \"Vynucení podpěr\"." -#: src/slic3r/GUI/ConfigWizard.cpp:413 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:772 +#, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Pokud je povoleno, kontroluje %s nově dostupné verze. V případě, že je nová verze k dispozici, zobrazí se notifikace při dalším startu programu (nikdy během užívání aplikace). Tento systém slouží pouze pro upozornění uživatele, nedochází k automatické instalaci." -#: src/slic3r/GUI/ConfigWizard.cpp:423 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:782 +#, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Pokud je povoleno, stáhne %s na pozadí aktualizace vestavěných systémových přednastavení. Tyto aktualizace jsou staženy do dočasného umístění. Pokud je k dispozici nové přednastavení, zobrazí se upozornění při startu programu." -#: src/libslic3r/PrintConfig.cpp:1774 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." msgstr "Pokud je tato možnost povolena, všechny tiskové extrudery na začátku tisku vytlačí na předním okraji podložky malé množství materiálu." -#: src/slic3r/GUI/Preferences.cpp:63 +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "" +"Pokud je povoleno, v případě vyžádání, umožňuje funkci „Znovu načíst z disku“ automaticky vyhledat a načíst soubory.\n" +"Pokud není povoleno, funkce „Znovu načíst z disku“ požádá o zadání cest ke každému souboru pomocí dialogového okna." + +#: src/slic3r/GUI/Preferences.cpp:75 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." +msgstr "Pokud je povoleno, v případě vyžádání, umožňuje funkci „Znovu načíst z disku“ automaticky vyhledat a načíst soubory." + +#: src/slic3r/GUI/Preferences.cpp:66 msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Pokud je povoleno, PrusaSlicer kontroluje nově dostupné verze programu. V případě, že je nová verze k dispozici, zobrazí se notifikace při dalším startu programu (nikdy během užívání aplikace). Tento systém slouží pouze pro upozornění uživatele, nedochází k automatické instalaci." -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:84 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Pokud je povoleno, stáhne Slic3r na pozadí aktualizace vestavěných systémových přednastavení. Tyto aktualizace jsou staženy do dočasného umístění. Pokud je k dispozici nové přednastavení, zobrazí se upozornění při startu programu." -#: src/slic3r/GUI/Preferences.cpp:105 +#: src/slic3r/GUI/Preferences.cpp:108 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Pokud je tato volba povolena, bude 3D scéna vykreslena v rozlišení Retina. Pokud dochází k potížím s výkonem, zkuste tuto volbu vypnout." -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Pokud je tato možnost povolena, nebude čistící věž vytištěna ve vrstvách bez změny barvy. U vrstev s výměnou sjede extruder směrem dolů a vytiskne vrstvu čistící věže. Uživatel je odpovědný za to, že nedojde ke kolizi tiskové hlavy s tiskem." -#: src/slic3r/GUI/Preferences.cpp:112 -msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." -msgstr "Pokud je zaškrtnuto, použijte perspektivní kameru. Pokud není, použijte ortografickou kameru." +#: src/slic3r/GUI/Preferences.cpp:131 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "Pokud je zaškrtnuto, použije „free kameru“. Pokud není, použije „constrained kameru“." -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:123 +msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." +msgstr "Pokud je zaškrtnuto, použije perspektivní kameru. Pokud není, použije ortografickou kameru." + +#: src/slic3r/GUI/Preferences.cpp:149 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Pokud je zaškrtnuto, můžete nastavit velikost ikon na panelu nástrojů." -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "If estimated layer time is below ~%1%s, fan will run at %2%%% and print speed will be reduced so that no less than %3%s are spent on that layer (however, speed will never be reduced below %4%mm/s)." msgstr "Pokud je odhadovaný čas vrstvy nižší než ~%1%s, bude ventilátor pracovat na %2%%% a rychlost tisku bude snížena tak, aby na tuto vrstvu nebylo použito méně než %3%s (rychlost však nikdy nebude snížena pod %4%mm/s)." -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "If estimated layer time is greater, but still below ~%1%s, fan will run at a proportionally decreasing speed between %2%%% and %3%%%." msgstr "Pokud je odhadovaný čas vrstvy delší, ale stále pod ~%1%s, bude ventilátor pracovat s plynule klesající rychlostí mezi %2%%% a %3%%%." -#: src/libslic3r/PrintConfig.cpp:853 +#: src/libslic3r/PrintConfig.cpp:901 msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds." msgstr "Pokud je vyjádřena jako absolutní hodnota v mm / s, bude tato rychlost použita pro všechny pohyby tisku první vrstvy bez ohledu na jejich typ. Pokud je hodnota vyjádřena procenty (například: 40%), změní v závislosti na výchozích rychlostech." -#: src/libslic3r/PrintConfig.cpp:540 +#: src/libslic3r/PrintConfig.cpp:573 msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds." msgstr "Pokud je doba tisku vrstvy odhadnuta jako kratší než tato nastavená hodnota ve vteřinách, ventilátor bude aktivován a jeho rychlost bude vypočtena interpolací minimální a maximální rychlosti." -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value." msgstr "Pokud je doba tisku vrstvy odhadnuta kratší než tento počet sekund, rychlost tisku se zpomalí, aby se prodloužila doba tisku této vrstvy." -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:567 msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS." msgstr "Pokud je tato funkce zapnutá, ventilátor nebude nikdy vypnut a bude udržován v chodu alespoň rychlostí která je nastavena jako minimální rychlost. Užitečné pro PLA, škodlivé pro ABS." -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "If this is enabled, Slic3r will auto-center objects around the print bed center." msgstr "Pokud je tato možnost povolena, Slic3r bude automaticky centrovat objekty kolem středu tiskové plochy." -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code." msgstr "Pokud je tato možnost povolena, Slic3r předprojektuje objekty, jakmile budou načteny, aby šetřil čas při exportu G-code." -#: src/slic3r/GUI/Preferences.cpp:38 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files." msgstr "Pokud je tato volba povolena, Slic3r vyvolá poslední výstupní adresář namísto toho, který obsahuje vstupní soubory." -#: src/libslic3r/PrintConfig.cpp:1492 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered." msgstr "Zadáním kladné hodnoty, se Z rychle přizvedne při každém vyvolání retrakce. Při použití více extruderů bude použito pouze nastavení pro první extruder." -#: src/libslic3r/PrintConfig.cpp:1501 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers." msgstr "Zadáním kladné hodnoty se zdvih Z uskuteční pouze nad zadanou absolutní hodnotou Z. Toto nastavení můžete zvolit pro přeskočení přizvednutí u prvních vrstev." -#: src/libslic3r/PrintConfig.cpp:1510 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers." msgstr "Zadáním kladné hodnoty se zdvih Z uskuteční pouze pod zadanou absolutní hodnotou Z. Toto nastavení můžete zvolit pro přeskočení přizvednutí u prvních vrstev." -#: src/libslic3r/PrintConfig.cpp:1384 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables." msgstr "Pokud chcete zpracovat výstupní G-code pomocí vlastních skriptů, stačí zde uvést jejich absolutní cesty. Oddělte více skriptů středníkem. Skripty předají absolutní cestu k souboru G-code jako první argument a mohou přistupovat k nastavení konfigurace Slic3ru čtením proměnných prostředí." -#: src/libslic3r/PrintConfig.cpp:498 +#: src/libslic3r/PrintConfig.cpp:530 msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)." msgstr "Pokud firmware nezpracovává umístění extruderu správně, potřebujete aby to vzal G-code v úvahu. Toto nastavení umožňuje určit odsazení každého extruderu vzhledem k prvnímu. Očekávají se pozitivní souřadnice (budou odečteny od souřadnice XY)." -#: src/libslic3r/PrintConfig.cpp:2068 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Pokud váš firmware vyžaduje relativní hodnoty E, zaškrtněte toto, jinak nechte nezaškrtnuté. Většina firmwarů používá absolutní hodnoty." -#: src/libslic3r/PrintConfig.cpp:3096 +#: src/libslic3r/PrintConfig.cpp:3470 msgid "Ignore non-existent config files" msgstr "Ignorovat neexistující konfigurační soubory" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "Importovat Konfigura&ci" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "Importovat Konfigurační &Balík" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "Načíst konfiguraci z &projektu" -#: src/slic3r/GUI/Plater.cpp:4016 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "Načíst konfiguraci ze souboru ini/amf/3mf/gcode" + +#: src/slic3r/GUI/Plater.cpp:4616 msgid "Import Object" msgstr "Importovat Objekt" -#: src/slic3r/GUI/Plater.cpp:4020 +#: src/slic3r/GUI/Plater.cpp:4620 msgid "Import Objects" msgstr "Importovat Objekty" -#: src/slic3r/Utils/FixModelByWin10.cpp:383 +#: src/slic3r/Utils/FixModelByWin10.cpp:390 msgid "Import of the repaired 3mf file failed" msgstr "Import opraveného 3MF souboru selhal" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importovat STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:106 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 msgid "Import STL/OBJ/AMF/3MF without config, keep bed" msgstr "Nahrát soubor STL/OBJ/AMF/3MF bez konfigurace (zachová stávající tiskovou plochu)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2416 -#, possible-c-format +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "Importovat STL/OBJ/AMF/3MF bez konfigurace, zachová stávající podložku" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 +#, c-format msgid "In this mode you can select only other %s Items%s" msgstr "V tomto režimu můžete vybrat pouze jinou/jiný %s %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:132 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "Nekompatibilní balíky:" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70 -#, possible-c-format +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +#, c-format msgid "Incompatible with this %s" msgstr "Nekompatibilní s tímto %s" -#: src/slic3r/GUI/Plater.cpp:4091 +#: src/slic3r/GUI/Plater.cpp:4700 msgid "Increase Instances" msgstr "Přidání Instancí" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:269 msgid "Increase/decrease edit area" msgstr "Zvětšit / zmenšit oblast úprav" +#: src/slic3r/GUI/Plater.cpp:2906 +msgid "Indexing hollowed object" +msgstr "Indexování dutého objektu" + #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3338 -msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "indikuje, že některá nastavení byla změněna a nejsou shodná se systémovými (výchozími) hodnotami pro danou skupinu nastavení.\nKlikněte na ikonu ODEMKNUTÉHO ZÁMKU pro reset všech nastavení aktuální skupiny nastavení na systémové (nebo výchozí) hodnoty." +#: src/slic3r/GUI/Tab.cpp:3242 +msgid "" +"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "" +"indikuje, že některá nastavení byla změněna a nejsou shodná se systémovými (výchozími) hodnotami pro danou skupinu nastavení.\n" +"Klikněte na ikonu ODEMKNUTÉHO ZÁMKU pro reset všech nastavení aktuální skupiny nastavení na systémové (nebo výchozí) hodnoty." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3334 +#: src/slic3r/GUI/Tab.cpp:3238 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indikuje, že nastavení jsou stejná jako systémové (výchozí) hodnoty pro aktuální skupinu nastavení" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3083 -msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +#: src/slic3r/GUI/Tab.cpp:3254 +msgid "" +"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "indikuje, že došlo ke změně nastavení, které není shodné s naposledy uloženým přednastavením pro aktuální skupinu nastavení. Klikněte na ikonu ŠIPKY ZPĚT pro reset všech nastavení pro aktuální skupinu nastavení na naposledy uložené přednastavení." -#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69 -#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439 -#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031 -#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167 -#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729 -#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780 -#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943 -#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659 -#: src/libslic3r/PrintConfig.cpp:1676 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 +#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "Výplň" -#: src/slic3r/GUI/PresetHints.cpp:171 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "výplň" -#: src/libslic3r/PrintConfig.cpp:972 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "Tisknout výplň před tiskem perimetrů" -#: src/libslic3r/PrintConfig.cpp:953 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "Extruder pro výplň" -#: src/libslic3r/PrintConfig.cpp:987 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "Přesah pro výplň/perimetry" -#: src/libslic3r/Print.cpp:1476 +#: src/libslic3r/Print.cpp:1580 msgid "Infilling layers" msgstr "Generování výplně vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2424 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 msgid "Info" msgstr "Info" -#: src/libslic3r/PrintConfig.cpp:1008 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "Zdědí profil" -#: src/libslic3r/SLAPrint.cpp:707 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "Doba počátečního osvitu je mimo rozsah profilu tiskárny." -#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318 +#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 msgid "Initial exposure time" msgstr "Doba počátečního osvitu" -#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296 +#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 msgid "Initial layer height" msgstr "Výška první vrstvy" -#: src/slic3r/GUI/Field.cpp:155 +#: src/slic3r/GUI/Field.cpp:199 msgid "Input value is out of range" msgstr "Zadaná hodnota je mimo rozsah" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "Zkontrolovat / aktivovat zálohy konfigurace" -#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474 -#, possible-c-format +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 +#, c-format msgid "Instance %d" msgstr "Instance %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1887 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 msgid "Instance manipulation" msgstr "Manipulace s instancí objektu" -#: src/slic3r/GUI/wxExtensions.cpp:358 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 msgid "Instances" msgstr "Instance" -#: src/slic3r/GUI/GUI_ObjectList.cpp:934 src/slic3r/GUI/GUI_ObjectList.cpp:3346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 msgid "Instances to Separated Objects" msgstr "Změna instance na samostatný objekt" -#: src/libslic3r/PrintConfig.cpp:1886 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "Kontaktní vrstvy" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" msgstr "Kontaktní smyčky" -#: src/libslic3r/PrintConfig.cpp:1895 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" msgstr "Rozteč kontaktních vrstev" -#: src/libslic3r/PrintConfig.cpp:1022 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "Mezilehlé stěny" -#: src/libslic3r/Zipper.cpp:87 +#: src/libslic3r/Zipper.cpp:84 msgid "internal error" msgstr "interní chyba" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Vnitřní výplň" -#: src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:3090 msgid "Invalid data" msgstr "Neplatná data" -#: src/slic3r/GUI/BedShapeDialog.cpp:471 src/slic3r/GUI/BedShapeDialog.cpp:520 -#: src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "Neplatný formát souboru." -#: src/libslic3r/Zipper.cpp:83 +#: src/libslic3r/Zipper.cpp:80 msgid "invalid filename" msgstr "neplatný název souboru" -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "Neplatný průnik podpěry do modelu" -#: src/libslic3r/Zipper.cpp:51 +#: src/libslic3r/Zipper.cpp:48 msgid "invalid header or archive is corrupted" msgstr "neplatná hlavička nebo je archiv poškozen" -#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173 +#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Neplatný číselný vstup." -#: src/libslic3r/Zipper.cpp:81 +#: src/libslic3r/Zipper.cpp:78 msgid "invalid parameter" msgstr "neplatný parametr" -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "Průměr hrotu podpěry je neplatný" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:94 +#: src/slic3r/GUI/AboutDialog.cpp:258 msgid "is licensed under the" msgstr "je licencován pod" -#: src/slic3r/GUI/Tab.cpp:2779 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Is necessary to install a configuration update. " +msgstr "Je nutné nainstalovat aktualizaci konfigurace." + +#: src/slic3r/GUI/Tab.cpp:2925 msgid "is not compatible with print profile" msgstr "není kompatibilní s tiskovým profilem" -#: src/slic3r/GUI/Tab.cpp:2778 +#: src/slic3r/GUI/Tab.cpp:2924 msgid "is not compatible with printer" msgstr "není kompatibilní s tiskárnou" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "Izometrické" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "Izometrické zobrazení" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:966 msgid "It can't be deleted or modified." msgstr "Nelze smazat nebo upravit." -#: src/libslic3r/PrintConfig.cpp:926 +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "It is not allowed to change the file to reload" +msgstr "Není možné změnit soubor, který má být znovu načten" + +#: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Může být užitečné zvýšit proud motoru extruderu během sekvence výměny filamentu, aby se umožnily vysoké rychlosti zavádění filamentu a aby se překonal odpor při zavádění filamentu s ošklivě tvarovanou špičkou." -#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "SLA technologií nelze tisknout vícedílné objekty." -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2225 msgid "Jerk limits" msgstr "Ryv limity" -#: src/libslic3r/PrintConfig.cpp:1579 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "Rozkmit (Jitter)" -#: src/libslic3r/PrintConfig.cpp:533 +#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 +#: src/slic3r/GUI/DoubleSlider.cpp:1623 +msgid "Jump to height" +msgstr "Přechod do výšky" + +#: src/slic3r/GUI/DoubleSlider.cpp:928 +#, c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "Přechod do výšky %s nebo Nastavení sekvence extruderů pro celý tisk" + +#: src/libslic3r/PrintConfig.cpp:566 msgid "Keep fan always on" msgstr "Ventilátor vždy zapnutý" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "Zachovat spodní část" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:309 msgid "Keep min" msgstr "Zachovat minima" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "Zachovat horní část" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 msgid "Keyboard Shortcuts" msgstr "Klávesové zkratky" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "Klávesové zkratky" + +#: src/libslic3r/PrintConfig.cpp:2489 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "Označování objektů" -#: src/libslic3r/PrintConfig.cpp:2234 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "Orientace na šířku" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "Jazyk" -#: src/slic3r/GUI/GUI_App.cpp:755 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "Výběr jazyka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1770 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 msgid "Last instance of an object cannot be deleted." msgstr "Poslední instanci objektu nelze odstranit." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2994 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 msgid "Layer" msgstr "Vrstva" -#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55 +#: src/slic3r/GUI/ConfigManipulation.cpp:49 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Výška vrstvy" -#: src/libslic3r/Print.cpp:1332 +#: src/libslic3r/Print.cpp:1423 msgid "Layer height can't be greater than nozzle diameter" msgstr "Výška vrstvy nemůže být větší než je průměr trysky" -#: src/slic3r/GUI/Tab.cpp:2260 +#: src/slic3r/GUI/Tab.cpp:2358 msgid "Layer height limits" msgstr "Výškové limity vrstvy" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "Layer height:" msgstr "Výška vrstvy:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2109 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 msgid "Layer range Settings to modify" msgstr "Nastavení pro vrstvy v rozsahu" -#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620 -#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844 -#: src/libslic3r/PrintConfig.cpp:1889 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "vrstva(y)" -#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 +#: src/slic3r/GUI/Tab.cpp:3585 msgid "Layers" msgstr "Vrstvy" -#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 msgid "Layers and perimeters" msgstr "Vrstvy a perimetry" -#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68 -#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56 -#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381 -#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446 -#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026 -#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371 -#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987 -#: src/libslic3r/PrintConfig.cpp:2044 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 +#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "Vrstvy a perimetry" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "Posuvníky" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 msgid "Layers Slider Shortcuts" msgstr "Posuvníky" -#. TRN To be shown in Print Settings "Bottom solid layers" -#: rc/libslic3r/PrintConfig.cpp:149 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Bottom" msgstr "Spodních" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/libslic3r/PrintConfig.cpp:2043 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Top" msgstr "Vrchních" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "Zleva" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Left click" msgstr "Levý klik" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:242 msgid "Left mouse button:" msgstr "Levé tlačítko myši:" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "Pohled zleva" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:259 msgid "Legend" msgstr "Legenda" -#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "Vzdálenost" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:318 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Délka kovové trubičky určené pro ochlazení a zformování filamentu po vytažení z extruderu." #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:124 +#: src/slic3r/GUI/AboutDialog.cpp:129 msgid "License agreements of all following programs (libraries) are part of application license agreement" msgstr "Licenční ujednání všech následujících programů (knihoven) je součástí licenční smlouvy" -#: src/libslic3r/PrintConfig.cpp:1491 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "Zvednout Z" -#: src/libslic3r/PrintConfig.cpp:801 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "Čára" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1050 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 msgid "Load" msgstr "Načíst" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "Načíst model" -#: src/libslic3r/PrintConfig.cpp:3116 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Načtěte a uložte nastavení z/do daného adresáře. To je užitečné pro udržování různých profilů nebo konfigurací ze síťového úložiště." -#: src/libslic3r/PrintConfig.cpp:3100 +#: src/libslic3r/PrintConfig.cpp:3474 msgid "Load config file" msgstr "Načíst konfigurační soubor" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 msgid "Load Config from .ini/amf/3mf/gcode" msgstr "Načíst konfiguraci z .ini/amf/3mf/gcode" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 msgid "Load Config from .ini/amf/3mf/gcode and merge" msgstr "Načíst konfiguraci z .ini/amf/3mf/gcode a sloučit" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Načíst konfiguraci zesouboru ini/amf/3mf/gcode a sloučit" + +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "Načíst konfiguraci z projektu" -#: src/libslic3r/PrintConfig.cpp:3101 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Načíst konfiguraci ze zadaného souboru. Může být použito vícekrát než jednou pro načtení z více souborů." -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "Načíst exportovaný konfigurační soubor" -#: src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1375 msgid "Load File" msgstr "Načtení souboru" -#: src/slic3r/GUI/Plater.cpp:1275 +#: src/slic3r/GUI/Plater.cpp:1379 msgid "Load Files" msgstr "Naštení souborů" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 msgid "Load Part" msgstr "Přidání části" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "Načíst přednastavení z balíku" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4588 msgid "Load Project" msgstr "Načíst Projekt" -#: src/slic3r/GUI/BedShapeDialog.cpp:97 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "Načíst tvar ze souboru STL…" -#: src/slic3r/GUI/BedShapeDialog.cpp:181 src/slic3r/GUI/BedShapeDialog.cpp:249 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "Načíst..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:235 +#: src/slic3r/GUI/WipeTowerDialog.cpp:264 msgid "loaded" msgstr "zaváděn" -#: src/slic3r/GUI/Plater.cpp:1782 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "Loaded" msgstr "Načteno" -#: src/slic3r/GUI/Plater.cpp:1590 +#: src/slic3r/GUI/Plater.cpp:2257 msgid "Loading" msgstr "Načítání" -#: src/slic3r/GUI/GUI_App.cpp:407 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "Načítání režimu zobrazení" -#: src/slic3r/GUI/GUI_App.cpp:399 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "Načítání aktuálních předvoleb" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:378 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Loading repaired model" msgstr "Načítaní opraveného modelu" -#: src/libslic3r/PrintConfig.cpp:575 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "Rychlost zavádění" -#: src/libslic3r/PrintConfig.cpp:583 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "Počáteční rychlost zavádění" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:63 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:106 msgid "Local coordinates" msgstr "Lokální souřadnice" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:49 msgid "Lock supports under new islands" msgstr "Ukotvi podpěry pod novými ostrůvky" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3236 msgid "LOCKED LOCK" msgstr "ZAMČENÝ ZÁMEK" -#: src/slic3r/GUI/Tab.cpp:3360 +#: src/slic3r/GUI/Tab.cpp:3264 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "Ikona ZAMKNUTÉHO ZÁMKU indikuje, že nastavení jsou stejná jako systémové (nebo výchozí) hodnoty pro aktuální skupinu nastavení" -#: src/slic3r/GUI/Tab.cpp:3376 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "Ikona ZAMKNUTÉHO ZÁMKU indikuje, že hodnota je shodná se systémovou (výchozí) hodnotou." -#: src/libslic3r/PrintConfig.cpp:3119 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Logging level" msgstr "Úroveň logování" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "Smyček (minimálně)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 msgid "Lower Layer" msgstr "Nižší vrstva" -#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209 -#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087 -#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110 -#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132 -#: src/libslic3r/PrintConfig.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "Limity stroje" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 msgid "Main Shortcuts" msgstr "Hlavní" -#: src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/Plater.cpp:168 msgid "Manifold" msgstr "Model OK" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:57 msgid "Manual editing" msgstr "Manuální úprava" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 msgid "Masked SLA file exported to %1%" msgstr "Soubor pro SLA byl exportován do %1%" -#: src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:754 msgid "Mate&rial Settings Tab" msgstr "Panel nastavení mate&riálu" -#: src/slic3r/GUI/Tab.cpp:3300 +#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 msgid "Material" msgstr "Materiál" -#: src/slic3r/GUI/Tab.hpp:391 +#: src/slic3r/GUI/Tab.hpp:415 msgid "Material Settings" msgstr "Nastavení materiálu" -#: src/slic3r/GUI/Plater.cpp:140 +#: src/slic3r/GUI/Plater.cpp:165 msgid "Materials" msgstr "Materiálů" -#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "Maximum" -#: src/libslic3r/PrintConfig.cpp:2470 +#: src/libslic3r/PrintConfig.cpp:2725 msgid "Max bridge length" msgstr "Maximální délka mostu" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2813 msgid "Max merge distance" msgstr "Maximální vzdálenost pro sloučení" -#: src/libslic3r/PrintConfig.cpp:2479 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max pillar linking distance" msgstr "Max. vzdálenost propojení podpěr" -#: src/libslic3r/PrintConfig.cpp:64 +#: src/libslic3r/PrintConfig.cpp:80 msgid "Max print height" msgstr "Maximální výška tisku" -#: src/libslic3r/PrintConfig.cpp:1172 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "Maximální rychlost tisku" @@ -3725,167 +4213,167 @@ msgstr "Maximální rychlost tisku" msgid "max PrusaSlicer version" msgstr "max PrusaSlicer verze" -#: src/libslic3r/PrintConfig.cpp:1203 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "Maximální negativní objemový sklon" -#: src/libslic3r/PrintConfig.cpp:1192 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "Maximální pozitivní objemový sklon" -#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "Maximální objemová rychlost" -#: src/libslic3r/PrintConfig.cpp:2167 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "Maximální vzdálenost přemostění" -#: src/libslic3r/PrintConfig.cpp:2193 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "Maximální vzdálenost mezi podpěrami u částí s řídkou výplní." -#: src/libslic3r/PrintConfig.cpp:1099 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "Maximální zrychlení E" -#: src/libslic3r/PrintConfig.cpp:1105 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "Maximální zrychlení osy E" -#: src/libslic3r/PrintConfig.cpp:1102 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "Maximální zrychlení osy X" -#: src/libslic3r/PrintConfig.cpp:1103 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "Maximální zrychlení osy Y" -#: src/libslic3r/PrintConfig.cpp:1104 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Maximální zrychlení osy Z" -#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" msgstr "Maximální zrychlení při extruzi" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" msgstr "Maximální zrychlení při extruzi (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "Maximální zrychlení při retrakci" -#: src/libslic3r/PrintConfig.cpp:1169 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "Maximální zrychlení při retrakci (M204 T)" -#: src/libslic3r/PrintConfig.cpp:1096 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "Maximální zrychlení X" -#: src/libslic3r/PrintConfig.cpp:1097 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Maximální zrychlení Y" -#: src/libslic3r/PrintConfig.cpp:1098 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Maximální zrychlení Z" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2218 msgid "Maximum accelerations" msgstr "Maximální zrychlení" -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 msgid "Maximum exposure time" msgstr "Maximální doba osvitu" -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" msgstr "Maximální rychlost posuvu E" -#: src/libslic3r/PrintConfig.cpp:1087 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" msgstr "Maximální rychlost posuvu osy E" -#: src/libslic3r/PrintConfig.cpp:1084 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" msgstr "Maximální rychlost posuvu osy X" -#: src/libslic3r/PrintConfig.cpp:1085 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" msgstr "Maximální rychlost posuvu osy Y" -#: src/libslic3r/PrintConfig.cpp:1086 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" msgstr "Maximální rychlost posuvu osy Z" -#: src/libslic3r/PrintConfig.cpp:1078 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" msgstr "Maximální rychlost posuvu X" -#: src/libslic3r/PrintConfig.cpp:1079 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" msgstr "Maximální rychlost posuvu Y" -#: src/libslic3r/PrintConfig.cpp:1080 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" msgstr "Maximální rychlost posuvu Z" -#: src/slic3r/GUI/Tab.cpp:2165 +#: src/slic3r/GUI/Tab.cpp:2213 msgid "Maximum feedrates" msgstr "Maximální rychlosti posuvu" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 msgid "Maximum initial exposure time" msgstr "Maximální doba počátečního osvitu" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Maximální ryv E" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "Maximální ryv (jerk) osy E" -#: src/libslic3r/PrintConfig.cpp:1120 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "Maximální ryv (jerk) osy X" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Maximální ryv (jerk) osy Y" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Maximální ryv (jerk) osy Z" -#: src/libslic3r/PrintConfig.cpp:1114 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Maximální ryv X" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Maximální ryv Y" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Maximální ryv Z" -#: src/libslic3r/PrintConfig.cpp:566 +#: src/libslic3r/PrintConfig.cpp:598 msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Maximální povolený objem průtoku pro tento filament. Omezuje maximální rychlost průtoku pro tisk až na minimální rychlost průtoku pro tisk a filament. Zadejte nulu pro nastavení bez omezení." -#: src/libslic3r/PrintConfig.cpp:3053 +#: src/libslic3r/PrintConfig.cpp:3427 msgid "Merge" msgstr "Sloučit" -#: src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Sloučení mostů nebo podpěr do jiných podpěr může zvýšit poloměr. Hodnota 0 znamená žádné zvýšení, hodnota 1 znamená maximální zvýšení." -#: src/libslic3r/SLAPrint.cpp:71 +#: src/libslic3r/SLAPrintSteps.cpp:62 msgid "Merging slices and calculating statistics" msgstr "Slučování tiskových vrstev a výpočet statistik" @@ -3893,7 +4381,7 @@ msgstr "Slučování tiskových vrstev a výpočet statistik" msgid "Mesh repair failed." msgstr "Oprava meshe selhala." -#: src/slic3r/GUI/wxExtensions.cpp:3514 +#: src/slic3r/GUI/DoubleSlider.cpp:1607 msgid "Message for pause print on current layer (%1% mm)." msgstr "Zpráva při pozastavení tisku na aktuální vrstvě ve výšce (%1% mm)." @@ -3901,11 +4389,11 @@ msgstr "Zpráva při pozastavení tisku na aktuální vrstvě ve výšce (%1% mm msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" msgstr "Zprávy se závažností nižší nebo rovnou úrovni logování budou vypsány. 0: trace, 1: debug, 2: info, 3: warning, 4: error, 5: fatal" -#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Minimum" -#: src/libslic3r/PrintConfig.cpp:1233 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "Minimální rychlost tisku" @@ -3913,195 +4401,239 @@ msgstr "Minimální rychlost tisku" msgid "min PrusaSlicer version" msgstr "min PrusaSlicer verze" -#: src/libslic3r/PrintConfig.cpp:2507 +#: src/libslic3r/PrintConfig.cpp:2763 msgid "Minimal distance of the support points" msgstr "Minimální vzdálenost podpěrných bodů" -#: src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "Minimální délka extruze filamentu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:54 msgid "Minimal points distance" msgstr "Minimální vzdálenost bodů" -#: src/libslic3r/PrintConfig.cpp:635 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "Minimální vytlačený objem na čistící věži" -#: src/libslic3r/PrintConfig.cpp:1442 +#: src/libslic3r/PrintConfig.cpp:177 +msgid "Minimum bottom shell thickness" +msgstr "Minimální tloušťka spodní skořepiny" + +#: src/slic3r/GUI/PresetHints.cpp:335 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "Minimální tloušťka spodní skořepiny je %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1512 msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Minimální rozlišení detailů, které se používají pro zjednodušení vstupního souboru pro urychlení slicovací úlohy a snížení využití paměti. Modely s vysokým rozlišením často obsahují více detailů než tiskárny dokážou vykreslit. Nastavte na nulu, chcete-li zakázat jakékoli zjednodušení a použít vstup v plném rozlišení." -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 msgid "Minimum exposure time" msgstr "Minimální doba osvitu" -#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" msgstr "Minimální rychlosti posuvu během extruze" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" msgstr "Minimální rychlosti posuvu během extruze (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2182 +#: src/slic3r/GUI/Tab.cpp:2230 msgid "Minimum feedrates" msgstr "Minimální rychlosti posuvu" -#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 +#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 msgid "Minimum initial exposure time" msgstr "Minimální doba počátečního osvitu" -#: src/libslic3r/PrintConfig.cpp:1452 +#: src/slic3r/GUI/Tab.cpp:1071 +msgid "Minimum shell thickness" +msgstr "Minimální tloušťka skořepiny" + +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "Minimální tloušťka vrchní / spodní skořepiny" + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "Minimální tloušťka vrchní skořepiny" + +#: src/slic3r/GUI/PresetHints.cpp:316 +msgid "Minimum top shell thickness is %1% mm." +msgstr "Minimální tloušťka vrchní skořepiny je %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "Minimální dráha extruderu po retrakci" -#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" msgstr "Minimální rychlost při přesunu" -#: src/libslic3r/PrintConfig.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" msgstr "Minimální rychlost při přesunu (M205 T)" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Minimum wall thickness of a hollowed model." +msgstr "Minimální tloušťka stěny dutého modelu" + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum width of features to maintain when doing elephant foot compensation." +msgstr "Minimální šířka prvků, které je třeba zachovat při provádění kompenzace rozplácnutí první vrstvy." + +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror" msgstr "Zrcadlit" -#: src/libslic3r/PrintConfig.cpp:2320 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "Zrcadlit horizontálně" -#: src/slic3r/GUI/GLCanvas3D.cpp:1711 +#: src/slic3r/GUI/GLCanvas3D.cpp:2075 msgid "Mirror Object" msgstr "Zrcadlit Objekt" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror the selected object" msgstr "Zrcadlit vybraný objekt" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Mirror the selected object along the X axis" msgstr "Zrcadlit rozměr vybraného objektu podél osy X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Mirror the selected object along the Y axis" msgstr "Zrcadlit rozměr vybraného objektu podél osy Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Mirror the selected object along the Z axis" msgstr "Zrcadlit rozměr vybraného objektu podél osy Z" -#: src/libslic3r/PrintConfig.cpp:2327 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "Zrcadlit vertikálně" -#: src/slic3r/Utils/OctoPrint.cpp:69 -#, possible-c-format +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 +#, c-format msgid "Mismatched type of print host: %s" msgstr "Nesprávný typ tiskového serveru: % s" -#: src/libslic3r/GCode/PreviewData.cpp:176 +#: src/libslic3r/ExtrusionEntity.cpp:323 msgid "Mixed" msgstr "Smíšený" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2482 msgid "ml" msgstr "ml" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118 -#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84 -#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210 -#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293 -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353 -#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484 -#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680 -#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227 -#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263 -#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454 -#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503 -#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521 -#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612 -#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898 -#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125 -#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179 -#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297 -#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381 -#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454 -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483 -#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510 -#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539 -#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 +#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 +#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 +#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 +#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 +#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 +#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 +#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 +#: src/libslic3r/PrintConfig.cpp:2909 msgid "mm" msgstr "mm" -#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" msgstr "mm (nula pro vypnutí)" -#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992 -#: src/libslic3r/PrintConfig.cpp:1797 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mm nebo %" -#: src/libslic3r/PrintConfig.cpp:201 src/libslic3r/PrintConfig.cpp:577 -#: src/libslic3r/PrintConfig.cpp:585 src/libslic3r/PrintConfig.cpp:594 -#: src/libslic3r/PrintConfig.cpp:602 src/libslic3r/PrintConfig.cpp:629 -#: src/libslic3r/PrintConfig.cpp:648 src/libslic3r/PrintConfig.cpp:874 -#: src/libslic3r/PrintConfig.cpp:1001 src/libslic3r/PrintConfig.cpp:1079 -#: src/libslic3r/PrintConfig.cpp:1099 src/libslic3r/PrintConfig.cpp:1112 -#: src/libslic3r/PrintConfig.cpp:1123 src/libslic3r/PrintConfig.cpp:1176 -#: src/libslic3r/PrintConfig.cpp:1235 src/libslic3r/PrintConfig.cpp:1363 -#: src/libslic3r/PrintConfig.cpp:1537 src/libslic3r/PrintConfig.cpp:1546 -#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:2053 +#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 +#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 +#: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 +#: src/libslic3r/PrintConfig.cpp:1050 src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1181 +#: src/libslic3r/PrintConfig.cpp:1191 src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1300 src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/PrintConfig.cpp:2154 msgid "mm/s" msgstr "mm/s" -#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856 -#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702 -#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s nebo %" -#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303 -#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936 -#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134 -#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334 +#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:1661 +#: src/libslic3r/PrintConfig.cpp:1730 msgid "mm²" msgstr "mm²" -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" -#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" msgstr "Režim" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" msgstr "model" -#: src/slic3r/GUI/BedShapeDialog.cpp:239 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "Model" @@ -4109,133 +4641,168 @@ msgstr "Model" msgid "Model fixing" msgstr "Opravování modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model Repair by the Netfabb service" msgstr "Oprava modelu službou Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:406 +#: src/slic3r/Utils/FixModelByWin10.cpp:413 msgid "Model repair canceled" msgstr "Oprava modelu byla zrušena" -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model repair failed:" msgstr "Oprava modelu selhala:" -#: src/slic3r/Utils/FixModelByWin10.cpp:400 +#: src/slic3r/Utils/FixModelByWin10.cpp:407 msgid "Model repair finished" msgstr "Oprava modelu byla dokončena" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 msgid "Model repaired successfully" msgstr "Model byl úspěšně opraven" -#: src/slic3r/GUI/Preset.cpp:207 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "upraveno" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Modifier" msgstr "Modifikátor" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1163 msgid "Modifiers" msgstr "Modifikátory" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2503 msgid "money/bottle" msgstr "cena/láhev" -#: src/libslic3r/PrintConfig.cpp:719 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "korun/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Mouse wheel" msgstr "Kolečko myši" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:266 msgid "Mouse wheel:" msgstr "Kolečko myši:" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" msgstr "Přesunout" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Move clipping plane" msgstr "Posunout řezovou rovinu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Move current slider thumb Down" msgstr "Posunout aktivní posuvník dolů" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Move current slider thumb Up" msgstr "Posunout aktivní posuvník nahoru" -#: src/slic3r/GUI/GLCanvas3D.cpp:2872 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +msgid "Move drainage hole" +msgstr "Posun odtokového otvoru" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3538 msgid "Move Object" msgstr "Posunutí Objektu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 msgid "Move point" msgstr "Posunout bod" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "Posun výběru o 10 mm v záporném směru osy X" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "Posun výběru o 10 mm v záporném směru osy Y" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "Posun výběru o 10 mm v kladném směru osy X" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "Posun výběru o 10 mm v kladném směru osy Y" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 msgid "Move support point" msgstr "Posun podpěrného bodu" -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "Posun výběru v ortogonálním prostoru kamery" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "Krok pro posun výběru o velikosti 1 mm" + +#: src/libslic3r/PrintConfig.cpp:2201 msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Multimateriálové tiskárny mohou potřebovat, aby při výměně nástrojů vyčistili extrudery. Vytlačí přebytečný materiál do čistící věže." -#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769 +#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 msgid "Multi-part object detected" msgstr "Detekován objekt obsahující více částí" -#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 +#, c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Bylo nalezeno více zařízení %s . Během flashování mějte připojené pouze jedno." -#: src/slic3r/GUI/Tab.cpp:1118 +#: src/slic3r/GUI/Tab.cpp:1181 msgid "Multiple Extruders" msgstr "Více Extruderů" -#: src/slic3r/GUI/Plater.cpp:2414 -msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" -msgstr "Bylo nahráno více objektů pro multi materiálovou tiskárnu.\nMají být vloženy jako jeden objekt obsahující více částí, \nnamísto vložení několika objektů?" +#: src/slic3r/GUI/Plater.cpp:2394 +msgid "" +"Multiple objects were loaded for a multi-material printer.\n" +"Instead of considering them as multiple objects, should I consider\n" +"these files to represent a single object having multiple parts?" +msgstr "" +"Bylo nahráno více objektů pro multi materiálovou tiskárnu.\n" +"Mají být vloženy jako jeden objekt obsahující více částí, \n" +"namísto vložení několika objektů?" -#: src/libslic3r/PrintConfig.cpp:3050 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Multiply copies by creating a grid." msgstr "Vynásobí kopie vytvořením mřížky." -#: src/libslic3r/PrintConfig.cpp:3045 +#: src/libslic3r/PrintConfig.cpp:3419 msgid "Multiply copies by this factor." msgstr "Vynásobí kopie tímto číslem." -#: src/slic3r/GUI/Field.cpp:139 +#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:176 +#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Název" -#: src/libslic3r/PrintConfig.cpp:1418 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter." msgstr "Název varianty tiskárny. Varianty tiskárny mohou být například rozlišeny podle průměru trysky." -#: src/libslic3r/PrintConfig.cpp:1412 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "Název prodejce tiskárny." -#: src/libslic3r/PrintConfig.cpp:1009 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "Název profilu, ze kterého tento profil zdědí." -#: src/libslic3r/PrintConfig.cpp:1560 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "Nejbližší" @@ -4243,36 +4810,40 @@ msgstr "Nejbližší" msgid "Network lookup" msgstr "Hledání v síti" -#: src/slic3r/GUI/Plater.cpp:2056 +#: src/slic3r/GUI/Plater.cpp:2135 msgid "New Project" msgstr "Nový Projekt" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 -#, possible-c-format +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 +msgid "New project, clear plater" +msgstr "Nový projekt, odstranit modely na podložce" + +#: src/slic3r/GUI/UpdateDialogs.cpp:38 +#, c-format msgid "New version of %s is available" msgstr "Je dostupná nová verze %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:47 +#: src/slic3r/GUI/UpdateDialogs.cpp:45 msgid "New version:" msgstr "Nová verze:" -#: src/slic3r/GUI/GLCanvas3D.cpp:3750 +#: src/slic3r/GUI/GLCanvas3D.cpp:4722 msgid "Next Redo action: %1%" msgstr "Akce vpřed: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:3718 +#: src/slic3r/GUI/GLCanvas3D.cpp:4690 msgid "Next Undo action: %1%" msgstr "Akce zpět: %1%" -#: src/libslic3r/PrintConfig.cpp:912 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "Žádná extruze" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:422 msgid "No pad can be generated for this model with the current configuration" msgstr "Pro aktuální model nelze vygenerovat žádnou podložku" -#: src/slic3r/GUI/MainFrame.cpp:635 +#: src/slic3r/GUI/MainFrame.cpp:786 msgid "No previously sliced file." msgstr "Žádné dříve slicované soubory." @@ -4280,160 +4851,175 @@ msgstr "Žádné dříve slicované soubory." msgid "NO RAMMING AT ALL" msgstr "ŽÁDNÁ RAPIDNÍ EXTRUZE" -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Bez řídkých vrstev (EXPERIMENTÁLNÍ)" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2765 msgid "No support points will be placed closer than this threshold." msgstr "Žádné podpůrné body nebudou umístěny blíže než je tento práh." -#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422 -#: src/libslic3r/GCode/PreviewData.cpp:162 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates aviable" +msgstr "Žádné aktualizace nejsou dostupné" + +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Žádné" -#: src/slic3r/GUI/Tab.cpp:2152 +#: src/slic3r/GUI/Tab.cpp:2199 msgid "Normal" msgstr "Normální" -#: src/slic3r/GUI/Plater.cpp:1073 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "normal mode" msgstr "normální režim" -#: src/libslic3r/Zipper.cpp:49 +#: src/libslic3r/Zipper.cpp:46 msgid "not a ZIP archive" msgstr "není ZIP archiv" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 msgid "Not found: " msgstr "Nenalezeno:" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/GUI/DoubleSlider.cpp:985 +msgid "Note" +msgstr "Poznámka" + +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "Poznámka: Je vyžadována verze AstroBoxu nejméně 1.1.0." + +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." msgstr "Poznámka: Vyžaduje se FlashAir s firmwarem 2.00.02 nebo novějším a aktivovanou funkcí nahrávání." -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Poznámka: Je vyžadován OctoPrint ve verzi alespoň 1.1.0." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Poznámka: některé zkratky nefungují v režimu editace." -#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194 -#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577 -#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986 -#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080 -#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329 +#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 +#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 +#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 +#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 +#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 msgid "Notes" msgstr "Poznámky" -#: src/slic3r/GUI/GUI.cpp:277 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 msgid "Notice" msgstr "Oznámení" -#: src/slic3r/GUI/ConfigWizard.cpp:118 +#: src/slic3r/GUI/ConfigWizard.cpp:218 msgid "nozzle" msgstr "tryska" -#: src/libslic3r/PrintConfig.cpp:1261 +#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Průměr trysky" -#: src/slic3r/GUI/ConfigWizard.cpp:560 +#: src/slic3r/GUI/ConfigWizard.cpp:970 msgid "Nozzle Diameter:" msgstr "Průměr trysky:" -#: src/libslic3r/PrintConfig.cpp:618 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "Počet chladících pohybů" -#: src/slic3r/GUI/Tab.cpp:1845 +#: src/slic3r/GUI/Tab.cpp:1837 msgid "Number of extruders of the printer." msgstr "Počet extrudérů tiskárny." -#: src/libslic3r/PrintConfig.cpp:1888 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "Number of interface layers to insert between the object(s) and support material." msgstr "Počet interface vrstev vložených mezi objekt (objekty) a podpěry." -#: src/libslic3r/PrintConfig.cpp:1627 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely." msgstr "Počet obrysových smyček. Je-li nastavena možnost Minimální délka extruze, počet obrysových smyček může být větší než počet zde nakonfigurovaných. Nastavte tuto hodnotu na nulu, pro úplné deaktivování." -#: src/libslic3r/PrintConfig.cpp:2214 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "Počet pixelů v ose" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Počet pixelů v ose X" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Počet pixelů v ose Y" -#: src/libslic3r/PrintConfig.cpp:151 +#: src/libslic3r/PrintConfig.cpp:166 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Počet plných vrstev." -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." msgstr "Počet plných vrstev generovaných na vrchních a spodních površích." -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." msgstr "Počet vrchních generovaných plných vrstev." -#: src/libslic3r/PrintConfig.cpp:2303 +#: src/libslic3r/PrintConfig.cpp:2509 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Počet vrstev potřebných pro přechod z počáteční doby osvitu na dobu osvitu" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:243 msgid "Number of tool changes" msgstr "Počet změn nástroje" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2744 msgid "Object elevation" msgstr "Nadzvednutí objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1858 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 msgid "Object manipulation" msgstr "Manipulace s objektem" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "Jméno objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 msgid "Object or Instance" msgstr "Objekt nebo Instanci" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Object reordered" msgstr "Zěna pořadí objektů" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1868 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 msgid "Object Settings to modify" msgstr "Změna nastavení objektu" -#: src/slic3r/GUI/Plater.cpp:1875 +#: src/slic3r/GUI/Plater.cpp:2513 msgid "Object too large?" msgstr "Objekt moc velký?" -#: src/libslic3r/PrintConfig.cpp:2161 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "Objekty budou použity k vyčištění barvy filamentu v trysce po změně extruderu, aby se ušetřil materiál, který by jinak skončil v čistící věži. Výsledkem budou objekty s náhodně mixovanými barvami." -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "object(s)" msgstr "objekt(y)" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "objects" msgstr "objekty" -#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "Octagram Spiral" @@ -4441,300 +5027,333 @@ msgstr "Octagram Spiral" msgid "OctoPrint version" msgstr "Verze OctoPrintu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2419 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 msgid "of a current Object" msgstr "současného Objektu" -#: src/slic3r/GUI/wxExtensions.cpp:2570 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "Odsazení" + +#: src/slic3r/GUI/DoubleSlider.cpp:923 msgid "One layer mode" msgstr "Zobrazení po jedné vrstvě" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1361 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Jeden nebo více objektů bylo přiřazeno extruderu, který tiskárna nemá." -#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Podpěry vytvářet pouze v případě, že leží na tiskové podložce. Nevytváří podpěry na výtisky." -#: src/libslic3r/PrintConfig.cpp:978 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "Výplň pouze kde je potřeba" -#: src/slic3r/GUI/Tab.cpp:2271 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Only lift Z" msgstr "Pouze zvednout Z" -#: src/libslic3r/PrintConfig.cpp:1500 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "Zvednout Z pouze nad" -#: src/libslic3r/PrintConfig.cpp:1509 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Zvednout Z pouze pod" -#: src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "Provést retrakci pouze při přejíždění perimetrů" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1189 msgid "Ooze prevention" msgstr "Prevence odkapávání" -#: src/libslic3r/Print.cpp:1193 +#: src/libslic3r/Print.cpp:1262 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "V současné době není funkce \"Prevence odkapávání\" filamentu podporována společně s povolenou čistící věží." -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "Otevřít soubor s projektem" -#: src/slic3r/GUI/Tab.cpp:1745 +#: src/slic3r/GUI/Tab.cpp:1727 msgid "Open CA certificate file" msgstr "Otevřít soubor s certifikátem CA" -#: src/slic3r/GUI/UpdateDialogs.cpp:63 src/slic3r/GUI/UpdateDialogs.cpp:126 +#: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "Otevře stránku s changelogem" -#: src/slic3r/GUI/UpdateDialogs.cpp:68 +#: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Otevře stránku pro stažení programu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:105 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "Otevřít projekt STL/OBJ/AMF/3MF s konfigurací, odstranit modely na podložce" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" msgstr "Otevřít soubor STL/OBJ/AMF/3MF s konfigurací (smaže tiskovou plochu)" -#: src/slic3r/GUI/MainFrame.cpp:551 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:695 +#, c-format msgid "Open the %s website in your browser" msgstr "Otevřít webovou stránku %s v prohlížeči" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Otevřít stránku pro stahování Prusa 3D ovladačů ve vašem prohlížeči" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Open the software releases page in your browser" msgstr "Otevřít stránku s verzemi tohoto softwaru ve vašem prohlížeči" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize orientation" msgstr "Optimalizovat orientaci" -#: src/slic3r/GUI/Plater.cpp:2643 +#: src/slic3r/GUI/Plater.cpp:2751 msgid "Optimize Rotation" msgstr "Optimalizovat Orientaci" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize the rotation of the object for better print results." msgstr "Optimalizujte rotaci objektu pro lepší výsledky tisku." -#: src/libslic3r/PrintConfig.cpp:112 +#: src/libslic3r/PrintConfig.cpp:127 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimalizovat rychloposuny do pořadí aby se minimalizovalo přejíždění perimetrů. Nejvíce užitečné u Bowdenových extruderů které trpí na vytékání filamentu. Toto nastavení zpomaluje tisk i generování G-code." -#: src/slic3r/GUI/Tab.cpp:1070 +#: src/slic3r/GUI/Tab.cpp:1133 msgid "Options for support material and raft" msgstr "Volby pro podpěry a raft" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/DoubleSlider.cpp:960 +msgid "or press \"+\" key" +msgstr "nebo stiskněte klávesu „+“" + +#: src/slic3r/GUI/Plater.cpp:2876 msgid "Orientation found." msgstr "Orientace nalezena." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2875 msgid "Orientation search canceled." msgstr "Hledání optimální orientace zrušeno." -#: src/slic3r/GUI/BedShapeDialog.cpp:79 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "Počátek" -#: src/slic3r/GUI/Tab.cpp:1165 +#: src/slic3r/GUI/Tab.cpp:1229 msgid "Other" msgstr "Ostatní" -#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977 +#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Ostatní vrstvy" -#: src/slic3r/GUI/ConfigWizard.cpp:438 +#: src/slic3r/GUI/ConfigWizard.cpp:857 msgid "Other Vendors" msgstr "Ostatní výrobci" -#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 msgid "Output file" msgstr "Výstupní soubor" -#: src/libslic3r/PrintConfig.cpp:3104 +#: src/libslic3r/PrintConfig.cpp:3478 msgid "Output File" msgstr "Výstupní soubor" -#: src/libslic3r/PrintConfig.cpp:1294 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "Formát názvu výstupního souboru" -#: src/libslic3r/PrintConfig.cpp:2992 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Output Model Info" msgstr "Info o výstupním modelu" -#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 msgid "Output options" msgstr "Možnosti výstupu" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Perimetr převisu" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "Mezní úhel převisu" -#: src/slic3r/GUI/Tab.cpp:1153 +#: src/slic3r/GUI/Tab.cpp:1217 msgid "Overlap" msgstr "Překrytí" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "Panel nastavení tisku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520 -#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426 -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523 -#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547 -#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569 +#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 +#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 +#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 +#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 +#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 +#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 +#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 +#: src/libslic3r/PrintConfig.cpp:2890 msgid "Pad" msgstr "Podložka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 +#: src/slic3r/GUI/GUI_ObjectList.cpp:45 msgid "Pad and Support" msgstr "Podložka a Podpěry" -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "Pad around object" msgstr "Podložka okolo objektu" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2853 msgid "Pad around object everywhere" msgstr "Podložka všude okolo objektu" -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2802 msgid "Pad brim size" msgstr "Velikost límce podložky" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "Velikost okraje podložky je pro aktuální konfiguraci příliš malá." -#: src/libslic3r/PrintConfig.cpp:2731 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector penetration" msgstr "Průnik spojky Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "Pad object connector stride" msgstr "Rozteč spojek Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector width" msgstr "Šířka spojky Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2700 +#: src/libslic3r/PrintConfig.cpp:2860 msgid "Pad object gap" msgstr "Mezera Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2532 +#: src/libslic3r/PrintConfig.cpp:2788 msgid "Pad wall height" msgstr "Výška bočnice podložky" -#: src/libslic3r/PrintConfig.cpp:2568 +#: src/libslic3r/PrintConfig.cpp:2835 msgid "Pad wall slope" msgstr "Sklon bočnice podložky" -#: src/libslic3r/PrintConfig.cpp:2522 +#: src/libslic3r/PrintConfig.cpp:2778 msgid "Pad wall thickness" msgstr "Tloušťka stěny podložky" -#: src/slic3r/GUI/Field.cpp:108 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "Page Down" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "Page Up" + +#: src/slic3r/GUI/Field.cpp:134 msgid "parameter name" msgstr "název parametru" -#: src/slic3r/GUI/Field.cpp:184 +#: src/slic3r/GUI/Field.cpp:238 msgid "Parameter validation" msgstr "Validace parametru" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Part" msgstr "Část" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1881 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 msgid "Part manipulation" msgstr "Manipulace s částmi" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 msgid "Part Settings to modify" msgstr "Změna nastavení části" -#: src/slic3r/GUI/GLCanvas3D.cpp:3449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4563 msgid "Paste" msgstr "Vložit" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "Vložit ze schránky" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 msgid "Paste from clipboard" msgstr "Vložit ze schránky" -#: src/slic3r/GUI/Plater.cpp:4772 +#: src/slic3r/GUI/Plater.cpp:5640 msgid "Paste From Clipboard" msgstr "Vložení ze schránky" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "Vzor" -#: src/libslic3r/PrintConfig.cpp:1805 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "Úhel vzoru" -#: src/libslic3r/PrintConfig.cpp:1929 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" msgstr "Rozteč podpěr" -#: src/libslic3r/PrintConfig.cpp:1917 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "Vzor použitý pro generování podpěr." -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/DoubleSlider.cpp:976 +msgid "Pause print (\"%1%\")" +msgstr "Pozastavení tisku (\"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 +#: src/slic3r/GUI/GLCanvas3D.cpp:987 msgid "Pause print or custom G-code" msgstr "Pozastavit tisk nebo vložit vlastní G-code" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "Provést řez" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163 +#: src/libslic3r/PrintConfig.cpp:2918 +msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." +msgstr "Rychlost vs. přesnost výpočtu. Nižší hodnoty mohou způsobit nežádoucí artefakty." + +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Perimetr" -#: src/libslic3r/PrintConfig.cpp:1339 +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "Extruder pro perimetry" -#: src/slic3r/GUI/PresetHints.cpp:162 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" msgstr "perimetry" -#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348 -#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "Perimetry" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:861 +#, c-format msgid "Pick another vendor supported by %s" msgstr "Vyberte si jiného výrobce, který je podporováný programem %s" @@ -4742,11 +5361,11 @@ msgstr "Vyberte si jiného výrobce, který je podporováný programem %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Velikosti obrázků, které mají být uloženy do souborů .gcode a .sl1" -#: src/libslic3r/PrintConfig.cpp:2430 +#: src/libslic3r/PrintConfig.cpp:2672 msgid "Pillar widening factor" msgstr "Koeficient rozšiřování podpěry" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Průměr hrotu podpěry by měl být menší než průměr podpěrných sloupů." @@ -4754,40 +5373,48 @@ msgstr "Průměr hrotu podpěry by měl být menší než průměr podpěrných msgid "Place bearings in slots and resume" msgstr "Vložte ložiska do otvorů a pokračujte" -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32 +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "Vložte ložiska do otvorů a pokračujte v tisku" + +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "Umístit plochou na podložku" -#: src/slic3r/GUI/MainFrame.cpp:161 +#: src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Podložka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 msgid "Plater Shortcuts" msgstr "Podložka" -#: src/slic3r/GUI/GUI.cpp:143 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Zkontrolujte a opravte seznam objektů." -#: src/slic3r/GUI/Tab.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 msgid "Please check your object list before preset changing." msgstr "Před změnou nastavení zkontrolujte prosím seznam objektů." -#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:286 +#: src/slic3r/GUI/Plater.cpp:3272 +msgid "Please select the file to reload" +msgstr "Vyberte soubor, který chcete znovu načíst" + +#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" msgstr "Autorská práva" -#: src/libslic3r/PrintConfig.cpp:2235 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "Orientace na výšku" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:215 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:457 msgid "Position" msgstr "Pozice" -#: src/slic3r/GUI/Tab.cpp:2265 +#: src/slic3r/GUI/Tab.cpp:2363 msgid "Position (for multi-extruder printers)" msgstr "Pozice (pro tiskárny s více extrudery)" @@ -4795,459 +5422,580 @@ msgstr "Pozice (pro tiskárny s více extrudery)" msgid "Position (mm)" msgstr "Pozice (mm)" -#: src/libslic3r/PrintConfig.cpp:1553 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Pozice začátku perimetrů." -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "Pozice X" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Pozice Y" -#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Postprodukční skripty" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "Náhled" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Nastavení" -#: src/libslic3r/PrintConfig.cpp:1571 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "Preferovaný směr švu" -#: src/libslic3r/PrintConfig.cpp:1582 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "Preferovaný směr švu - rozkmit" -#: src/libslic3r/PrintObject.cpp:251 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "Příprava výplně" -#: src/slic3r/GUI/Tab.cpp:2758 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2904 +#, c-format msgid "Preset (%s)" msgstr "Přednastavení (%s)" -#: src/slic3r/GUI/Tab.cpp:3031 -msgid "Preset with name \"%1%\" already exist." +#: src/slic3r/GUI/Tab.cpp:3066 +msgid "Preset with name \"%1%\" already exists." msgstr "Přednastavení s názvem \"%1%\" již existuje." -#: src/slic3r/GUI/Tab.cpp:2994 +#: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" msgstr "PresetName||%1% - Kopie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" -msgstr "Stiskem aktivujete obdélníkové odstranění \nvýběru nebo změnu velikosti nebo otočení \nvybraných objektů kolem vlastních středů" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "" +"Press to activate deselection rectangle\n" +"or to scale or rotate selected objects\n" +"around their own center" +msgstr "" +"Stiskem aktivujete obdélníkové odstranění \n" +"výběru nebo změnu velikosti nebo otočení \n" +"vybraných objektů kolem vlastních středů" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "Stiskem aktivujete obdélníkové odstranění výběru" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Stiskem aktivujete změnu velikosti pouze v jednom směru" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 #, no-c-format -msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Stiskem aktivujete obdélníkvý výběr\nnebo 5% krok při změně velikosti\nnebo 1mm krok při posunu" +msgid "" +"Press to activate selection rectangle\n" +"or to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Stiskem aktivujete obdélníkvý výběr\n" +"nebo 5% krok při změně velikosti\n" +"nebo 1mm krok při posunu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Press to scale selection to fit print volume\nin Gizmo scale" -msgstr "Stiskem v režimu Gizmo měřítko vyplní tiskovou\nplochu aktivním výběrem" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "Stiskem aktivujete obdélníkový výběr" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"Změna velikosti nebo rotace\n" +"vybraných objektů kolem vlastních středů" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +msgid "" +"Press to scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" +"Stiskem v režimu Gizmo měřítko vyplní tiskovou\n" +"plochu aktivním výběrem" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 msgid "Press to select multiple object or move multiple object with mouse" msgstr "Stisknutím vyberte více objektů nebo přesuňte více objektů pomocí myši" -#: src/slic3r/GUI/Tab.cpp:2288 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"Stisknutím vyberte více objektů\n" +"nebo přesuňte více objektů pomocí myši" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with a mouse" +msgstr "" +"Stisknutím vyberte více objektů\n" +"nebo přesuňte více objektů pomocí myši" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Stiskni pro 5% krok při změně velikosti,\n" +"nebo 1mm krok při posunu" + +#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 msgid "Preview" msgstr "Náhled" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "Náhled dutého modelu" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 msgid "Preview Shortcuts" msgstr "Náhled" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid "Previously sliced file (" msgstr "Dříve slicovaný soubor (" -#: src/libslic3r/PrintConfig.cpp:1773 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "Příprava všech tiskových extruderů" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 msgid "print" msgstr "tisk" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "Fronta na&hrávání do tiskového serveru" -#: src/libslic3r/PrintConfig.cpp:439 +#: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Tisk obrysových perimetrů od vnějších po vnitřní namísto opačného výchozího pořadí." -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Print Diameters" msgstr "Parametry extruderu" -#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074 +#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 msgid "Print Host upload" msgstr "Nahrání do tiskového serveru" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -#: src/slic3r/GUI/PrintHostDialogs.cpp:135 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Fronta nahrávaní do tiskového serveru" -#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405 +#: src/slic3r/GUI/DoubleSlider.cpp:941 +msgid "Print mode" +msgstr "Režim tisku" + +#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 msgid "Print Settings" msgstr "Nastavení tisku" -#: src/slic3r/GUI/Plater.cpp:681 +#: src/slic3r/GUI/Plater.cpp:812 msgid "Print settings" msgstr "Nastavení tisku" -#: src/slic3r/GUI/Tab.cpp:1520 +#: src/slic3r/GUI/Tab.cpp:1480 msgid "Print speed override" msgstr "Přepsání rychlosti tisku" -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Tisk ve výšce" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "Panel nastavení tiskárny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1438 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Printable" msgstr "Tisknout objekt" -#: src/slic3r/GUI/Plater.cpp:685 +#: src/slic3r/GUI/Plater.cpp:816 msgid "Printer" msgstr "Tiskárna" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 msgid "printer" msgstr "tiskárna" -#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "Absolutní korekce tiskárny" -#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283 +#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 msgid "Printer gamma correction" msgstr "Gamma korekce tiskárny" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/Tab.cpp:978 msgid "printer model" msgstr "model tiskárny" -#: src/libslic3r/PrintConfig.cpp:1402 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "Poznámky o tiskárně" -#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267 -#: src/libslic3r/PrintConfig.cpp:2268 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "Korekce měřítka tisku" -#: src/slic3r/GUI/Tab.hpp:368 +#: src/slic3r/GUI/Tab.hpp:390 msgid "Printer Settings" msgstr "Nastavení tiskárny" -#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43 +#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44 msgid "Printer technology" msgstr "Technologie tisku" -#: src/libslic3r/PrintConfig.cpp:1396 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "Typ tiskárny" -#: src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "Varianta tiskárny" -#: src/libslic3r/PrintConfig.cpp:1411 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "Prodejce tiskárny" -#: src/libslic3r/Print.cpp:1294 +#: src/libslic3r/Print.cpp:1384 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Tisk s více extrudery různých průměrů trysek. Má-li být podpěra tisknuta aktuálním extruderem (support_material_extruder == 0 nebo support_material_interface_extruder == 0), musí mít všechny trysky stejný průměr." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:715 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:851 +#, c-format msgid "Processing %s" msgstr "Zpracovávám %s" -#: src/slic3r/GUI/Plater.cpp:2287 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2267 +#, c-format msgid "Processing input file %s" msgstr "Zpracovávám vstupní soubor %s" -#: src/libslic3r/PrintObject.cpp:110 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "Zpracovávám tringulační sítě" -#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585 -#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087 -#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 +#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 +#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 msgid "Profile dependencies" msgstr "Profilové závislosti" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "Profil:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:149 +#: src/slic3r/GUI/PrintHostDialogs.cpp:150 msgid "Progress" msgstr "Průběh" -#: src/slic3r/GUI/FirmwareDialog.cpp:779 +#: src/slic3r/GUI/FirmwareDialog.cpp:817 msgid "Progress:" msgstr "Průběh:" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Prusa 3D &Drivers" msgstr "Prusa 3&D Ovladače" -#: src/slic3r/GUI/ConfigWizard.cpp:1109 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa FFF Technology Printers" msgstr "Prusa tiskárny technologie FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:1112 +#: src/slic3r/GUI/ConfigWizard.cpp:2001 msgid "Prusa MSLA Technology Printers" msgstr "Prusa tiskárny technologie MSLA" -#: src/slic3r/GUI/AboutDialog.cpp:255 +#: src/slic3r/GUI/AboutDialog.cpp:260 msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap community." msgstr "PrusaSlicer je založen na Slic3r od Alessandra Ranellucciho a RepRap komunity." -#: src/slic3r/GUI/GUI_App.cpp:297 -#, possible-c-format -msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 +#, c-format +msgid "" +"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" +"while OpenGL version %s, render %s, vendor %s was detected." msgstr "PrusaSlicer vyžaduje grafický ovladač s funkčním OpenGL 2.0. Zatímco byla detekována verze OpenGL %s, render %s, výrobce %s." #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "verze PrusaSliceru" -#: src/slic3r/GUI/ConfigWizard.cpp:771 -msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "Uživatelské rozhraní PrusaSlicer je k dispozici ve třech variantách:\nJednoduché, pokročilé a expertní.\nJednoduchý režim zobrazuje pouze nejčastěji používaná nastavení relevantní pro běžný 3D tisk. Další dva nabízejí detailnější doladění a proto jsou vhodné pro pokročilé a expertní uživatele." +#: src/slic3r/GUI/ConfigWizard.cpp:816 +msgid "" +"PrusaSlicer's user interfaces comes in three variants:\n" +"Simple, Advanced, and Expert.\n" +"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "" +"Uživatelské rozhraní PrusaSlicer je k dispozici ve třech variantách:\n" +"Jednoduché, pokročilé a expertní.\n" +"Jednoduchý režim zobrazuje pouze nejčastěji používaná nastavení relevantní pro běžný 3D tisk. Další dva nabízejí detailnější doladění a proto jsou vhodné pro pokročilé a expertní uživatele." -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Vyčištění trysky po výměně filamentu se provede uvnitř výplní tohoto objektu. Tím se snižuje množství odpadu, ale může to mít za následek delší dobu tisku v důsledku dodatečných pohybů." -#: src/slic3r/GUI/Plater.cpp:456 +#: src/slic3r/GUI/Plater.cpp:541 msgid "Purging volumes" msgstr "Objemy čištění" -#: src/libslic3r/PrintConfig.cpp:2106 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "Objemy čištění - zaváděné / vyjmuté objemy" -#: src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "Objemy čištění - matice" -#: src/slic3r/GUI/Tab.cpp:1019 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "Kvalita" + +#: src/slic3r/GUI/Tab.cpp:1082 msgid "Quality (slower slicing)" msgstr "Kvalita (pomalejší slicing)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1145 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1377 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:278 +msgid "Quality / Speed" +msgstr "Kvalita / Rychlost" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 +#, c-format msgid "Quick Add Settings (%s)" msgstr "Rychlé přidání nastavení (%s)" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "Rychlé Slicování" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "Rychlé Slicování a Uložit jako" -#: src/slic3r/GUI/MainFrame.cpp:409 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:540 +#, c-format msgid "Quit %s" msgstr "Ukončit %s" -#: src/libslic3r/PrintConfig.cpp:479 +#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Rádius" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1129 msgid "Raft" msgstr "Raft" -#: src/libslic3r/PrintConfig.cpp:1431 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" msgstr "Vrstev raftu" -#: src/slic3r/GUI/WipeTowerDialog.cpp:14 +#: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "Přizpůsobení rapidní extruze" -#: src/slic3r/GUI/WipeTowerDialog.cpp:40 -msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "Rapidní extruze označuje rychlé vytlačení filamentu těsně před jeho výměnou za jiný v multi material tiskárně s jedním extruderem. Účelem je správně vytvarovat konec vysouvaného filamentu tak, aby neblokoval zasunutí nového filamentu a také mohl být sám později opětovně zasunut. Tento proces je důležitý a rozdílné materiály mohou pro získání optimálního tvaru vyžadovat různé rychlosti extruze. Z tohoto důvodu jsou objemové průtoky při rapidní extruzi uživatelsky upravitelné.\n\nToto nastavení je určeno pro pokročilé uživatele, nesprávné nastavení velmi pravděpodobně povede k zaseknutí filamentu, vybroušení filamentu podávacím kolečkem, atd." +#: src/slic3r/GUI/WipeTowerDialog.cpp:41 +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "" +"Rapidní extruze označuje rychlé vytlačení filamentu těsně před jeho výměnou za jiný v multi material tiskárně s jedním extruderem. Účelem je správně vytvarovat konec vysouvaného filamentu tak, aby neblokoval zasunutí nového filamentu a také mohl být sám později opětovně zasunut. Tento proces je důležitý a rozdílné materiály mohou pro získání optimálního tvaru vyžadovat různé rychlosti extruze. Z tohoto důvodu jsou objemové průtoky při rapidní extruzi uživatelsky upravitelné.\n" +"\n" +"Toto nastavení je určeno pro pokročilé uživatele, nesprávné nastavení velmi pravděpodobně povede k zaseknutí filamentu, vybroušení filamentu podávacím kolečkem, atd." -#: src/slic3r/GUI/WipeTowerDialog.cpp:90 +#: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" msgstr "Rozestup linek při rapidní extruzi" -#: src/slic3r/GUI/WipeTowerDialog.cpp:88 +#: src/slic3r/GUI/WipeTowerDialog.cpp:89 msgid "Ramming line width" msgstr "Šířka linky při rapidní extruzi" -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "Parametry rapidní extruze" -#: src/slic3r/GUI/Tab.cpp:1545 +#: src/slic3r/GUI/Tab.cpp:1507 msgid "Ramming settings" msgstr "Nastavení rapidní extruze" -#: src/libslic3r/PrintConfig.cpp:1559 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "Náhodný" -#: src/slic3r/GUI/wxExtensions.cpp:486 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 msgid "Range" msgstr "Rozsah" -#: src/libslic3r/SLAPrint.cpp:72 +#: src/libslic3r/SLAPrintSteps.cpp:63 msgid "Rasterizing layers" msgstr "Rasterizace vrstev" -#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "Znovu načíst z disku (&l)" + +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "Přenastavit" -#: src/slic3r/GUI/FirmwareDialog.cpp:783 +#: src/slic3r/GUI/FirmwareDialog.cpp:821 msgid "Ready" msgstr "Připraveno" -#: src/slic3r/GUI/Plater.cpp:2406 +#: src/slic3r/GUI/Plater.cpp:3099 msgid "Ready to slice" msgstr "Připraven ke slicování" -#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "Zezadu" -#: src/slic3r/GUI/MainFrame.cpp:526 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "Pohled zezadu" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "Poslední projekty" -#: src/slic3r/GUI/PresetHints.cpp:262 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:263 +#, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Doporučená tloušťka stěny objektu pro výšku vrstvy %.2f a" +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." +msgstr "Doporučená tloušťka stěny objektu: Není k dispozici kvůli příliš malé šířce extruze." + #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." msgstr "Doporučená tloušťka stěny objektu: Není k dispozici kvůli neplatné výšce vrstvy." -#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "Obnovení" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "Obdélníkový" -#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796 -#: src/libslic3r/PrintConfig.cpp:1922 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "Přímočará" -#: src/libslic3r/PrintConfig.cpp:1923 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "Přímočará mřížka" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3639 -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Vpřed" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "%1$d Akce Vpřed" msgstr[1] "%1$d Akce Vpřed" msgstr[2] "%1$d Akcí Vpřed" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Redo History" msgstr "Historie operací Vpřed" -#: src/slic3r/GUI/Tab.cpp:1037 +#: src/slic3r/GUI/Tab.cpp:1100 msgid "Reducing printing time" msgstr "Zkracování tiskového času" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3461 +msgid "Reload all from disk" +msgstr "Vše znovu načíst z disku" + +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 +#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 msgid "Reload from disk" msgstr "Znovu načíst z disku" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3328 +msgid "Reload from: " +msgstr "Znovu načíst z:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "Znovu načíst podložku z disku" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "Znovu načíst podložku z disku" + +#: src/slic3r/GUI/Plater.cpp:3972 msgid "Reload the selected object from disk" msgstr "Znovu načíst vybraný objekt z disku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3715 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 msgid "Reload the selected volumes from disk" msgstr "Znovu načíst vybrané objekty z disku" -#: src/slic3r/GUI/Preferences.cpp:36 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "Pamatovat si výstupní složku" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "remove" msgstr "odebrat" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Remove" msgstr "Odebrat" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "Odebrat všechny otvory" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:51 msgid "Remove all points" msgstr "Odebrat všechny body" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:251 msgid "Remove detail" msgstr "Ubrat detail" +#: src/slic3r/GUI/Plater.cpp:876 +msgid "Remove device" +msgstr "Odebrat zařízení" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 msgid "Remove extruder from sequence" msgstr "Odebrat extruder ze seznamu" -#: src/slic3r/GUI/GLCanvas3D.cpp:3475 +#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 msgid "Remove instance" msgstr "Odebrat instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 msgid "Remove Instance of the selected object" msgstr "Odebrat instanci vybraného objektu" @@ -5255,76 +6003,80 @@ msgstr "Odebrat instanci vybraného objektu" msgid "Remove layer range" msgstr "Odstranit rozsah vrstev" -#: src/slic3r/GUI/Plater.cpp:3518 +#: src/slic3r/GUI/Plater.cpp:3951 msgid "Remove one instance of the selected object" msgstr "Odebere jednu instanci vybraného objektu" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "Odebrat parametr" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Remove point" msgstr "Odebrat bod" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Remove point from selection" msgstr "Odebrat bod z výběru" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "Smazat označené otvory" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 msgid "Remove selected points" msgstr "Odebrat označené body" -#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 msgid "Remove the selected object" msgstr "Odstranit vybraný objekt" -#: src/slic3r/GUI/ConfigWizard.cpp:305 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Odstranit uživatelské profily - čistá instalace (nejprve bude provedena záloha)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1200 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 msgid "Rename" msgstr "Přejmenovat" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Object" msgstr "Přejmenování objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Sub-object" msgstr "Přejmenování dílčího objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Renaming" msgstr "Přejmenování" -#: src/libslic3r/PrintConfig.cpp:3125 +#: src/libslic3r/PrintConfig.cpp:3500 msgid "Render with a software renderer" msgstr "Vykreslení pomocí softwaru" -#: src/libslic3r/PrintConfig.cpp:3126 +#: src/libslic3r/PrintConfig.cpp:3501 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Vykreslení pomocí softwaru. Namísto výchozího ovladače OpenGL je načten dodaný softwarový renderer MESA." -#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058 +#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 msgid "Repair" msgstr "Oprava" -#: src/slic3r/Utils/FixModelByWin10.cpp:387 +#: src/slic3r/Utils/FixModelByWin10.cpp:394 msgid "Repaired 3MF file contains more than one object" msgstr "Opravený soubor 3MF obsahuje více než jeden objekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:391 +#: src/slic3r/Utils/FixModelByWin10.cpp:398 msgid "Repaired 3MF file contains more than one volume" msgstr "Opravený soubor 3MF obsahuje více než jedno těleso" -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:392 msgid "Repaired 3MF file does not contain any object" msgstr "Opravený soubor 3MF neobsahuje žádný objekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:389 +#: src/slic3r/Utils/FixModelByWin10.cpp:396 msgid "Repaired 3MF file does not contain any volume" msgstr "Opravený soubor 3MF neobsahuje žádný objemové těleso" @@ -5332,176 +6084,189 @@ msgstr "Opravený soubor 3MF neobsahuje žádný objemové těleso" msgid "Repairing model by the Netfabb service" msgstr "Opravování modelu službou Netfabb" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "Opakovat poslední rychlé slicování" -#: src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "Opakovat poslední rychlé slicování" -#: src/slic3r/GUI/Tab.cpp:3032 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Replace?" msgstr "Nahradit?" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Report an I&ssue" msgstr "Nahlá&sit chybu" -#: src/slic3r/GUI/MainFrame.cpp:561 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:705 +#, c-format msgid "Report an issue on %s" msgstr "Nahlásit chybu v programu %s" -#: src/slic3r/Utils/PresetUpdater.cpp:590 -#, possible-c-format +#: src/slic3r/Utils/PresetUpdater.cpp:713 +#, c-format msgid "requires max. %s" msgstr "vyžaduje max. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:588 -#, possible-c-format +#: src/slic3r/Utils/PresetUpdater.cpp:710 +#, c-format msgid "requires min. %s" msgstr "vyžaduje min. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:583 -#, possible-c-format +#: src/slic3r/Utils/PresetUpdater.cpp:705 +#, c-format msgid "requires min. %s and max. %s" msgstr "vyžaduje min. %s a max. %s" -#: src/slic3r/GUI/FirmwareDialog.cpp:772 +#: src/slic3r/GUI/FirmwareDialog.cpp:810 msgid "Rescan" msgstr "Skenovat" -#: src/slic3r/GUI/Tab.cpp:1879 +#: src/slic3r/GUI/Tab.cpp:1904 msgid "Rescan serial ports" msgstr "Znovu prohledat sériové porty" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:318 msgid "Reset" msgstr "Výchozí" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 msgid "Reset clipping plane" msgstr "Obnovit řezovou rovinu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 msgid "Reset direction" msgstr "Resetovat směr" -#: src/slic3r/GUI/Plater.cpp:2603 +#: src/slic3r/GUI/Plater.cpp:2707 msgid "Reset Project" msgstr "Resetovat Projekt" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:303 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Výchozí natočení" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:328 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 msgid "Reset Rotation" msgstr "Výchozí Natočení" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:285 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:290 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:397 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:399 msgid "Reset scale" msgstr "Výchozí měřítko" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:257 msgid "Reset to base" msgstr "Obnovit na výchozí" -#: src/slic3r/GUI/Tab.cpp:2584 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Reset to Filament Color" msgstr "Obnovit barvu filamentu" -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "Rozlišení" -#: src/libslic3r/PrintConfig.cpp:1459 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "Délka retrakce před očištěním" -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" msgstr "Retrakce při změně vrstvy" -#: src/slic3r/GUI/Tab.cpp:2268 +#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 +#: src/slic3r/GUI/Tab.cpp:2366 msgid "Retraction" msgstr "Retrakce" -#: src/libslic3r/PrintConfig.cpp:1453 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "Retraction is not triggered when travel moves are shorter than this length." msgstr "Retrakce není spuštěna, pokud jsou rychloposuny pojezdu kratší než tato délka." -#: src/libslic3r/PrintConfig.cpp:1474 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "Vzdálenost retrakce" -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "Vzdálenost retrakce (při změně extruderu)" -#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "Rychlost retrakce" -#: src/slic3r/GUI/Tab.cpp:2284 +#: src/slic3r/GUI/Tab.cpp:2382 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retrakce pro neaktivní extruder (pokročilé nastavení pro tiskárny typu MultiMaterial)" -#: src/slic3r/GUI/GUI_Preview.cpp:244 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Retractions" msgstr "Retrakce" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "Zprava" -#: src/slic3r/GUI/GUI_ObjectList.cpp:381 +#: src/slic3r/GUI/GUI_ObjectList.cpp:400 msgid "Right button click the icon to change the object printable property" msgstr "Klepnutím pravým tlačítkem myši na ikonu změníte nastavení tisku pro objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Right button click the icon to change the object settings" msgstr "Klepnutím pravým tlačítkem myši na ikonu změníte nastavení objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:250 +#: src/slic3r/GUI/GUI_ObjectList.cpp:357 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Klepnutím pravým tlačítkem myši se spustí oprava STL souboru pomocí služby Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Right click" msgstr "Pravý klik" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Right mouse button:" msgstr "Pravé tlačítko myši:" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "Pohled zprava" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253 -#: src/libslic3r/PrintConfig.cpp:3062 +#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 +#: src/libslic3r/PrintConfig.cpp:3436 msgid "Rotate" msgstr "Otočit" -#: src/libslic3r/PrintConfig.cpp:3067 +#: src/libslic3r/PrintConfig.cpp:3441 msgid "Rotate around X" msgstr "Otočit okolo osy X" -#: src/libslic3r/PrintConfig.cpp:3072 +#: src/libslic3r/PrintConfig.cpp:3446 msgid "Rotate around Y" msgstr "Otočit okolo osy Y" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "Otočit spodní část řezem dolů" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "Otočení výběru o 45 ° proti směru hodinových ručiček" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "Otočení výběru o 45 ° po směru hodinových ručiček" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:321 +#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Otáčení" @@ -5509,118 +6274,124 @@ msgstr "Otáčení" msgid "Rotation (deg)" msgstr "Otáčení (stupně)" -#: src/libslic3r/PrintConfig.cpp:3068 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Rotation angle around the X axis in degrees." msgstr "Úhel otočení kolem osy X ve stupních." -#: src/libslic3r/PrintConfig.cpp:3073 +#: src/libslic3r/PrintConfig.cpp:3447 msgid "Rotation angle around the Y axis in degrees." msgstr "Úhel otočení kolem osy Y ve stupních." -#: src/libslic3r/PrintConfig.cpp:3063 +#: src/libslic3r/PrintConfig.cpp:3437 msgid "Rotation angle around the Z axis in degrees." msgstr "Úhel otočení kolem osy Z ve stupních." -#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658 -#, possible-c-format +#: src/slic3r/GUI/GUI_App.cpp:797 +#, c-format msgid "Run %s" msgstr "Spustit %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 msgid "Running post-processing scripts" msgstr "Vykonávají se postprodukční skripty" -#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81 -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612 -#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671 -#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252 -#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319 +#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 +#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 +#: src/libslic3r/PrintConfig.cpp:2557 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:466 src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end G-code" msgstr "Od&eslat G-code" -#: src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end to print" msgstr "Od&eslat do tiskárny" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3264 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:3401 +#, c-format msgid "Save %s as:" msgstr "Uložit %s jako:" -#: src/slic3r/GUI/MainFrame.cpp:686 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:828 +#, c-format msgid "Save %s file as:" msgstr "Uložit %s soubor jako:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 msgid "Save changes?" msgstr "Uložit změny?" -#: src/libslic3r/PrintConfig.cpp:2997 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Save config file" msgstr "Uložit konfigurační soubor" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:927 msgid "Save configuration as:" msgstr "Uložit konfiguraci jako:" -#: src/libslic3r/PrintConfig.cpp:2998 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Save configuration to the specified file." msgstr "Uložit konfiguraci do zadaného souboru." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:133 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:135 +#, c-format msgid "Save current %s" msgstr "Uložit stávající %s" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "Uložit stávající projekt" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "Uložit stávající projekt jako" -#: src/slic3r/GUI/Plater.cpp:1938 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Save file as:" msgstr "Uložit soubor jako:" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save G-code file as:" msgstr "Uložit G-code jako:" -#: src/slic3r/GUI/MainFrame.cpp:757 +#: src/slic3r/GUI/MainFrame.cpp:901 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Uložit soubor OBJ (méně náchylný na chyby souřadnic než STL) jako:" -#: src/slic3r/GUI/Tab.hpp:417 +#: src/slic3r/GUI/Tab.hpp:442 msgid "Save preset" msgstr "Uložit přednastavení" -#: src/slic3r/GUI/MainFrame.cpp:843 +#: src/slic3r/GUI/MainFrame.cpp:982 msgid "Save presets bundle as:" msgstr "Uložit balík přednastavení jako:" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "Uložit Projekt j&ako" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Save project (3MF)" -msgstr "Uložit projekt (3MF)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "Uložit projekt (3mf)" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "Uložit projekt jako (3mf)" + +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save SL1 file as:" msgstr "Uložit SL1 soubor jako:" -#: src/slic3r/GUI/MainFrame.cpp:692 +#: src/slic3r/GUI/MainFrame.cpp:840 msgid "Save zip file as:" msgstr "Uložit ZIP soubor jako:" @@ -5630,10 +6401,11 @@ msgstr "Uložit ZIP soubor jako:" msgid "Saving mesh into the 3MF container failed." msgstr "Ukládání meshe do 3MF kontejneru selhalo." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254 -#: src/libslic3r/PrintConfig.cpp:3077 +#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Scale" msgstr "Měřítko" @@ -5641,47 +6413,55 @@ msgstr "Měřítko" msgid "Scale (%)" msgstr "Měřítko (%)" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Měřítka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" +"Vyplnit tiskovou plochu aktivním výběrem\n" +"v Gizmo režimu měřítko" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale the selected object to fit the print volume" msgstr "Přizpůsobit měřítko vybraného objektu, aby se objekt vešel do tiksového objemu" -#: src/libslic3r/PrintConfig.cpp:3086 +#: src/libslic3r/PrintConfig.cpp:3460 msgid "Scale to Fit" msgstr "Vyplnit tiskový objem" -#: src/slic3r/GUI/Selection.cpp:947 +#: src/slic3r/GUI/Selection.cpp:939 msgid "Scale To Fit" msgstr "Vyplnit tiskový objem" -#: src/libslic3r/PrintConfig.cpp:3087 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Scale to fit the given volume." msgstr "Změnit velikost, aby se objekt vešel do zadaného tiskového prostoru." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale to print volume" msgstr "Změnit velikost podle tiskového objemu" -#: src/libslic3r/PrintConfig.cpp:3078 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Scaling factor or percentage." msgstr "Procentuální měřítko." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Plánování nahrávání do `%1%`. Viz Okno -> Fronta nahrávaní do tiskového serveru" -#: src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "Pozice švu" -#: src/libslic3r/PrintConfig.cpp:1572 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "Preferovaný směr švu" -#: src/libslic3r/PrintConfig.cpp:1581 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "Seam preferred direction jitter" @@ -5689,115 +6469,125 @@ msgstr "Seam preferred direction jitter" msgid "Searching for devices" msgstr "Hledám zařízení" -#: src/slic3r/GUI/Plater.cpp:2190 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Searching for optimal orientation" msgstr "Hledání optimální orientace" -#: src/slic3r/GUI/GUI_App.cpp:1100 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Vyberte soubor gcode:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 -msgid "Select All objects" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" msgstr "Vybrat všechny objekty" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 msgid "Select all points" msgstr "Vybrat všechny body" -#: src/slic3r/GUI/ConfigWizard.cpp:1089 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "Select all standard printers" msgstr "Vybrat všechny standardní tiskárny" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 msgid "Select by rectangle" msgstr "Označit obdélníkovým výběrem myši" -#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870 +#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 msgid "Select configuration to load:" msgstr "Zvolte konfiguraci k načtení:" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:82 msgid "Select coordinate space, in which the transformation will be performed." msgstr "Vyberte souřadnicový prostor, ve kterém bude provedena transformace." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2834 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 msgid "Select extruder number for selected objects and/or parts" msgstr "Vyberte číslo extruderu pro vybrané objekty a / nebo části" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2847 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 msgid "Select extruder number:" msgstr "Vyberte číslo extruderu:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 msgid "Select Filament Settings Tab" msgstr "Zobrazit panel Nastavení filamentu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1251 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 msgid "Select new extruder for the object/part" msgstr "Vyberte nový extruder pro objekt/část" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "Select Plater Tab" msgstr "Zobrazit panel Podložka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Select Print Settings Tab" msgstr "Zobrazit panel Nastavení tisku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Select Printer Settings Tab" msgstr "Zobrazit panel Nastavení tiskárny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:917 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 msgid "Select showing settings" msgstr "Zvolte nastavení zobrazení" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "Výběr jazyka" -#: src/slic3r/GUI/Tab.cpp:57 +#: src/slic3r/GUI/Tab.cpp:59 msgid "Select the print profiles this profile is compatible with." msgstr "Vyberte tiskové profily, s nimiž je tento profil kompatibilní." -#: src/slic3r/GUI/Tab.cpp:51 +#: src/slic3r/GUI/Tab.cpp:53 msgid "Select the printers this profile is compatible with." msgstr "Vyberte tiskárny, s nimiž je tento profil kompatibilní." -#: src/slic3r/GUI/MainFrame.cpp:744 +#: src/slic3r/GUI/MainFrame.cpp:891 msgid "Select the STL file to repair:" msgstr "Vyberte STL soubor k opravě:" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:241 msgid "Select toolbar icon size in respect to the default one." msgstr "Vyberte velikost ikon na panelu nástrojů vzhledem k výchozí velikosti." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2545 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Select type of part" msgstr "Vyberte typ součásti" -#: src/slic3r/GUI/Plater.cpp:606 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Select what kind of pad do you need" msgstr "Vyberte, jaký typ podložky potřebujete" -#: src/slic3r/GUI/Plater.cpp:421 +#: src/slic3r/GUI/Plater.cpp:495 msgid "Select what kind of support do you need" msgstr "Vyberte typ podpěr, které potřebujete" +#: src/slic3r/GUI/DoubleSlider.cpp:1890 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged" +msgstr "" +"Vyberte ANO, pokud chcete odstranit všechny uložené změny nástroje,\n" +"NE, pokud chcete, aby se všechny změny nástroje přepnout na změny barev,\n" +"nebo ZRUŠIT pro ponechání beze změny" + #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" msgstr "Výběř - Přidání" -#: src/slic3r/GUI/Selection.cpp:384 +#: src/slic3r/GUI/Selection.cpp:376 msgid "Selection-Add All" msgstr "Výběr - Označení všeho" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 msgid "Selection-Add from list" msgstr "Výběr - Přidání v seznamu" -#: src/slic3r/GUI/GLCanvas3D.cpp:5623 +#: src/slic3r/GUI/GLCanvas3D.cpp:6659 msgid "Selection-Add from rectangle" msgstr "Výběr - Přidání obdélníkovým výběrem" @@ -5813,15 +6603,15 @@ msgstr "Výběr - Přidání Objektu" msgid "Selection-Remove" msgstr "Výběr - Odebrání" -#: src/slic3r/GUI/Selection.cpp:410 +#: src/slic3r/GUI/Selection.cpp:402 msgid "Selection-Remove All" msgstr "Výběr - Zrušení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 msgid "Selection-Remove from list" msgstr "Výběr - Odebrání v seznamu" -#: src/slic3r/GUI/GLCanvas3D.cpp:5642 +#: src/slic3r/GUI/GLCanvas3D.cpp:6678 msgid "Selection-Remove from rectangle" msgstr "Výběr - Odebrání obdélníkovým výběrem" @@ -5833,11 +6623,11 @@ msgstr "Výběr - Odebrání Instance" msgid "Selection-Remove Object" msgstr "Výběr - Odebrání Objektu" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "Vybrat všechny objekty" -#: src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:5556 msgid "Send G-code" msgstr "Odeslat G-code" @@ -5845,27 +6635,31 @@ msgstr "Odeslat G-code" msgid "Send G-Code to printer host" msgstr "Odeslat G-Code do tiskového serveru" -#: src/slic3r/GUI/MainFrame.cpp:466 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "Odeslat k tisku stávající plochu jako G-code" -#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 msgid "Send to printer" msgstr "Odeslat do tiskárny" -#: src/slic3r/GUI/Tab.cpp:1169 +#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +msgid "Seq." +msgstr "Sekv." + +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Sequential printing" msgstr "Sekvenční tisk" -#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591 +#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Sériový port" -#: src/libslic3r/PrintConfig.cpp:1599 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "Rychlost sériového portu" -#: src/slic3r/GUI/FirmwareDialog.cpp:769 +#: src/slic3r/GUI/FirmwareDialog.cpp:807 msgid "Serial port:" msgstr "Sériový port:" @@ -5873,17 +6667,17 @@ msgstr "Sériový port:" msgid "Service name" msgstr "Název služby" -#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025 -#: src/slic3r/GUI/Tab.cpp:3008 +#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 +#: src/slic3r/GUI/Tab.cpp:3160 msgid "Set" msgstr "Nastavit" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1192 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Object" msgstr "Změnit na samostatný objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Objects" msgstr "Převést na oddělené objekty" @@ -5891,7 +6685,7 @@ msgstr "Převést na oddělené objekty" msgid "Set extruder change for every" msgstr "Nastavit změnu extruderu po každých" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2833 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 msgid "Set extruder for selected items" msgstr "Zvolte extruder pro vybrané položky" @@ -5899,6 +6693,10 @@ msgstr "Zvolte extruder pro vybrané položky" msgid "Set extruder sequence" msgstr "Nastavte pořadí extruderu" +#: src/slic3r/GUI/DoubleSlider.cpp:1504 +msgid "Set extruder sequence for the entire print" +msgstr "Nastavení sekvence extruderů pro celý tisk" + #: src/slic3r/GUI/wxExtensions.cpp:3080 msgid "Set extruder sequence for whole print" msgstr "Nastavte pořadí extruderů pro celý tisk" @@ -5907,667 +6705,705 @@ msgstr "Nastavte pořadí extruderů pro celý tisk" msgid "Set extruder(tool) sequence" msgstr "Nastavte pořadí extruderu(nástroje)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Set lower thumb to current slider thumb" msgstr "Aktivovat spodní ukazatel aktivního posuvníku" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:245 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:297 msgid "Set Mirror" msgstr "Zrcadlení" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Set number of instances" msgstr "Zadat počet instancí" -#: src/slic3r/GUI/Plater.cpp:4163 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4771 +#, c-format msgid "Set numbers of copies to %d" msgstr "Nastavení počtu kopií na %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:746 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" msgstr "Změna orientace" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:715 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:750 msgid "Set Position" msgstr "Nastavení pozice" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Zvolen příznak Tisknout objekt" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" msgstr "Zvolen příznak Tisknout Instanci" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:811 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:846 msgid "Set Scale" msgstr "Nastavení měřítka" -#: src/libslic3r/PrintConfig.cpp:2228 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Nastavte skutečnou orientaci LCD displeje uvnitř SLA tiskárny. Režim Orientace na výšku převrátí význam parametrů šířky a výšky a výstupní obrazy budou otočeny o 90 stupňů." -#: src/slic3r/GUI/ConfigWizard.cpp:527 +#: src/slic3r/GUI/ConfigWizard.cpp:933 msgid "Set the shape of your printer's bed." msgstr "Nastavte tvar a rozměry vaší tiskové podložky." -#: src/libslic3r/PrintConfig.cpp:524 +#: src/libslic3r/PrintConfig.cpp:556 msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height." msgstr "Nastavením kladné hodnoty povolíte manuální šířku extruze. Pokud je hodnota ponechána na nule, Slic3r odvozuje šířku extruze z průměru trysky (viz nápovědy pro šířku extruze perimetru, šířku extruze výplně apod.). Pokud je hodnota vyjádřena procenty (například: 230%), vypočítá se z výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:417 +#: src/libslic3r/PrintConfig.cpp:448 msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height." msgstr "Nastavením na kladnou hodnotu, definuje šířku manuální extruze pro vnější obvod. Pokud je ponechána nula, použije se výchozí šířka extruze, pokud je nastavena, jinak se použije průměr trysky 1,125 x. Pokud je hodnota vyjádřena jako procento (například 200%), vypočítá se podle výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:831 +#: src/libslic3r/PrintConfig.cpp:878 msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width." msgstr "Nastavením kladné hodnoty zvolíte manuální šířku vytlačování pro první vrstvu. Toto můžete použít k vytlačování tlustší extruze pro lepší přilnavost. Pokud je vyjádřeno jako procenty (například 120%), bude vypočteno z výšky první vrstvy. Pokud je nastavena na nulu, použije se výchozí šířka vytlačování." -#: src/libslic3r/PrintConfig.cpp:1689 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Zadejte kladnou hodnotu, chcete-li nastavit manuálně šířku extruze pro výplň plných povrchů. Pokud je ponechána nula, použije se standardní šířka extruze, pokud je nastavena, jinak se použije průměr trysky 1,125 x. Pokud je vyjádřena procenty (například 90%), bude vypočtena z výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:2019 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Zadejte kladnou hodnotu, chcete-li nastavit manuálně šířku extruze pro výplň vrchních ploch. Možná budete chtít použít tenčí extruzi, abyste vyplnili všechny úzké oblasti a získali hladší povrch. Pokud je ponechána nula, použije se výchozí šířka extruze, pokud je nastavena, jinak se použije průměr trysky. Pokud je vyjádřena procenty (například 90%), bude vypočtena z výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Nastavením kladné hodnoty upravíte manuálně šířku extruze pro výplň. Pokud je ponechána nula, použije se standardní šířka extruze, pokud je nastavena, jinak se použije průměr trysky 1,125 x. Je možné, že budete chtít použít tlustší extruze, pro zrychlení výplně a zpevnění vašich výtisků. Pokud je vyjádřeno jako procenty (například 90%), bude vypočteno z výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:1350 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height." msgstr "Nastavením na kladnou hodnotu nastavíte manuálně šířku vytlačování perimetrů. Chcete-li získat přesnější povrchy, můžete použít tenčí extruze. Pokud je ponechána nula, použije se standardní šířka extruze, pokud je nastavena, jinak se použije průměr trysky 1,125 x. Pokud je vyjádřeno procenty (například 200%), vypočte se z výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Zadejte kladnou hodnotu, chcete-li nastavit manuálně šířku extruze pro podpěry. Pokud je ponechána nula, použije se výchozí šířka extruze, pokud je nastavena, jinak se použije průměr trysky. Pokud je vyjádřena procenty (například 90%), bude vypočtena z výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:480 +#: src/libslic3r/PrintConfig.cpp:512 msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater." msgstr "Zadejte horizontální rádius kolizního prostoru okolo extruderu. Pokud tryska není v centru tohoto rádiusu, zvolte nejdelší vzdálenost. Toto nastavení slouží ke kontrole kolizí a zobrazení grafického náhledu na podložce." -#: src/libslic3r/PrintConfig.cpp:65 +#: src/libslic3r/PrintConfig.cpp:81 msgid "Set this to the maximum height that can be reached by your extruder while printing." msgstr "Nastavte tuto hodnotu na maximální výšku, která může být dosažena extruderem během tisku." -#: src/libslic3r/PrintConfig.cpp:469 +#: src/libslic3r/PrintConfig.cpp:501 msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Zadejte vertikální vzdálenost mezi tryskou a (obvykle) tyčemi osy X. Jinými slovy, je to výška kolizního prostoru okolo extruderu a představuje maximální hloubku, které může extruder dosáhnout před kolizí s jinými, již vytištěnými, objekty." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Odebrán příznak Tisknout objekt" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" msgstr "Odebrán příznak Tisknout Instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Set upper thumb to current slider thumb" msgstr "Aktivovat horní ukazatel aktivního posuvníku" -#: src/slic3r/GUI/BedShapeDialog.cpp:143 +#: src/libslic3r/PrintConfig.cpp:3494 +msgid "" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." +msgstr "" +"Zvolte úroveň logování: 0:fatalní chyby, 1:chyby, 2:varování, 3:info, 4:ladění, 5:trasování\n" +"Například. loglevel=2 zaznamenává fatální chyby, chyby a varovné zprávy." + +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Nastavení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Settings for height range" msgstr "Nastavení pro výškový rozsah" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "Mám upravit tato nastavení pro podpěry?" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "Mám tato nastavení upravit tak, aby bylo možné povolit režim Váza?" -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "Mám tato nastavení upravit tak, aby bylo možné povolit Čistící Věž?" -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "Mám přepnout na přímočarý vzor výplně?" -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Mám synchronizovat vrstvy podpěr, aby bylo možné zapnout Čistící Věž?" -#: src/slic3r/GUI/BedShapeDialog.cpp:60 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 msgid "Shape" msgstr "Tvar" -#: src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/GUI_Preview.cpp:258 msgid "Shells" -msgstr "Skořápky" +msgstr "Skořepiny" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:254 msgid "Shift + Left mouse button:" msgstr "Shift + Levé tlačítko myši:" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:260 msgid "Shift + Right mouse button:" msgstr "Shift + Pravé tlačítko myši:" -#: src/slic3r/GUI/GUI_Preview.cpp:221 +#: src/slic3r/GUI/GUI_Preview.cpp:233 msgid "Show" msgstr "Zobrazit" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show &Configuration Folder" msgstr "Otevřít adresář nastavení" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show &labels" +msgstr "Zobrazit popisky (&l)" + +#: src/slic3r/GUI/MainFrame.cpp:707 msgid "Show about dialog" msgstr "Zobrazit okno o Slic3ru" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show advanced settings" msgstr "Zobrazit rozšířená nastavení" -#: src/slic3r/GUI/PrintHostDialogs.cpp:158 +#: src/slic3r/GUI/PrintHostDialogs.cpp:159 msgid "Show error message" msgstr "Zobrazit chybovou hlášku" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "Show incompatible print and filament presets" msgstr "Zobrazit nekompatibilní přednastavení tisku a filamentu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Show keyboard shortcuts list" msgstr "Zobrazit přehled klávesových zkratek" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show object/instance labels in 3D scene" +msgstr "Zobrazit popisky objektů / instancí ve 3D scéně" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show simplified settings" msgstr "Zobrazit jednoduché nastavení" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "Zobrazit podpěry" + +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show system information" msgstr "Zobrazit systémové informace" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "Zobrazit 3D editaci" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "Zobrazit 3D náhled vrstev" -#: src/slic3r/GUI/MainFrame.cpp:480 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "Zobrazit nastavení filamentu" -#: src/libslic3r/PrintConfig.cpp:2983 +#: src/libslic3r/PrintConfig.cpp:3357 msgid "Show the full list of print/G-code configuration options." msgstr "Zobrazit kompletní seznam možností konfigurace tisku / G-codu." -#: src/libslic3r/PrintConfig.cpp:2988 +#: src/libslic3r/PrintConfig.cpp:3362 msgid "Show the full list of SLA print configuration options." msgstr "Zobrazit kompletní seznam možností konfigurace SLA tisku." -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:710 msgid "Show the list of the keyboard shortcuts" msgstr "Zobrazit seznam klávesových zkratek" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" msgstr "Zobrazit podložku" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "Zobrazit nastavení tisku" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "Zobrazit nastavení tiskárny" -#: src/libslic3r/PrintConfig.cpp:2977 +#: src/libslic3r/PrintConfig.cpp:3351 msgid "Show this help." msgstr "Zobrazí tuto nápovědu." -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show user configuration folder (datadir)" msgstr "Zobrazit uživatelský adresář konfigurace (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 msgid "Show/Hide (L)egend" msgstr "Zobrazit/Skrýt (L)egendu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Zobrazit / skrýt dialogové okno nastavení zařízení 3Dconnexion" -#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "Zobrazit/Skrýt Legendu" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Show/Hide object/instance labels" +msgstr "Zobrazit/skrýt popisky objektů/instancí" + +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "Jednoduchý" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Simple mode" msgstr "Jednoduchý režim" -#: src/slic3r/GUI/GUI_App.cpp:674 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "Jednoduchý režim" -#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239 +#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 msgid "Single extruder MM setup" msgstr "Nastavení jednoho extruderu MM" -#: src/libslic3r/PrintConfig.cpp:1767 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" msgstr "MultiMaterial tisk s jedním extrudérem" -#: src/slic3r/GUI/Tab.cpp:2023 -msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" -msgstr "Je zvolená Multi Materiálová tiskárna s jedním extruderem,\na proto všechny extrudery musí mít stejný průměr.\nChcete nastavit průměry všech extruderových trysek podle průměru prvního extruderu?" +#: src/slic3r/GUI/Tab.cpp:1865 +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" +msgstr "" +"Je zvolená Multi Materiálová tiskárna s jedním extruderem,\n" +"a proto všechny extrudery musí mít stejný průměr.\n" +"Chcete nastavit průměry všech extruderových trysek podle průměru prvního extruderu?" -#: src/slic3r/GUI/Tab.cpp:2240 +#: src/slic3r/GUI/Tab.cpp:2303 msgid "Single extruder multimaterial parameters" msgstr "Parametry jednoho multi materiálového extruderu" -#: src/slic3r/GUI/BedShapeDialog.cpp:72 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137 -#: src/slic3r/GUI/Tab.cpp:2257 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 +#: src/slic3r/GUI/Tab.cpp:2320 msgid "Size" msgstr "Rozměr" -#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014 +#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 msgid "Size and coordinates" msgstr "Rozměry a počátek" -#: src/slic3r/GUI/BedShapeDialog.cpp:73 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." msgstr "Rozměr obdélníkové tiskové podložky v ose X a Y." -#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050 -#: src/libslic3r/GCode/PreviewData.cpp:171 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Obrys" -#: src/slic3r/GUI/Tab.cpp:1049 +#: src/slic3r/GUI/Tab.cpp:1112 msgid "Skirt and brim" msgstr "Obrys a límec" -#: src/libslic3r/PrintConfig.cpp:1617 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "Výška obrysu" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "Počet obrysových smyček" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 msgid "SLA gizmo keyboard shortcuts" msgstr "Klávesové zkratky pro SLA gizma" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1150 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 msgid "SLA gizmo turned off" msgstr "Ukončení režimu SLA gizmo" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1115 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 msgid "SLA gizmo turned on" msgstr "Vstup do režimu SLA gizmo" -#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277 +#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 msgid "SLA material" msgstr "SLA materiál" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Material Profiles Selection" msgstr "Výběr SLA materiálových profilů" -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 msgid "SLA material type" msgstr "Typ SLA materiálu" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Materials" msgstr "SLA Materiály" -#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276 +#: src/slic3r/GUI/Preset.cpp:1473 msgid "SLA print" msgstr "SLA tisk" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2569 msgid "SLA print material notes" msgstr "Poznámky pro SLA materiál" -#: src/slic3r/GUI/Plater.cpp:690 +#: src/slic3r/GUI/Plater.cpp:814 msgid "SLA print settings" msgstr "Nastavení SLA tisku" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 msgid "SLA Support Points" msgstr "SLA Podpěrné Body" -#: src/slic3r/GUI/GLCanvas3D.cpp:722 +#: src/slic3r/GUI/GLCanvas3D.cpp:692 msgid "SLA supports outside the print area were detected" msgstr "Byly zjištěny SLA podpěry mimo tiskovou oblast" -#: src/slic3r/GUI/ConfigWizard.cpp:1493 +#: src/slic3r/GUI/ConfigWizard.cpp:1533 msgid "SLA Technology Printers" msgstr "Tiskárny technologie SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Slab" msgstr "Deska" -#: src/libslic3r/PrintConfig.cpp:1268 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host." msgstr "Slic3r může nahrát soubory G-code do tiskového serveru. Toto pole musí obsahovat druh tiskového serveru." -#: src/libslic3r/PrintConfig.cpp:89 +#: src/libslic3r/PrintConfig.cpp:105 msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." msgstr "Slic3r může nahrát soubory do tiskového serveru. Toto pole by mělo obsahovat klíč API požadovaný pro ověření." -#: src/libslic3r/PrintConfig.cpp:82 +#: src/libslic3r/PrintConfig.cpp:98 msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance." msgstr "Slic3r může nahrát soubory G-code do tiskového serveru. Toto pole by mělo obsahovat název serveru (hostname), IP adresu nebo URL tiskového serveru." -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r nebude měnit rychlost pod tuto rychlost." -#: src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Slice" msgstr "Slicovat" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "Slicovat soubor do G-code" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "Slicovat soubor do G-code, uložit jako" -#: src/libslic3r/PrintConfig.cpp:71 +#: src/libslic3r/PrintConfig.cpp:87 msgid "Slice gap closing radius" msgstr "Poloměr uzavření mezery v tiskové vrstvě" -#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3618 +#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5140 msgid "Slice now" msgstr "Slicovat" -#: src/libslic3r/PrintConfig.cpp:2944 +#: src/libslic3r/PrintConfig.cpp:3318 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Naslicuje model a exportuje SLA tiskové vrstvy jako PNG soubory." -#: src/libslic3r/PrintConfig.cpp:2965 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Slice the model and export toolpaths as G-code." msgstr "Naslicujte model a exportujte trasy jako G-code." -#: src/libslic3r/PrintConfig.cpp:2971 +#: src/libslic3r/PrintConfig.cpp:3345 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Slicovat model jako FFF nebo SLA tisk na základě konfigurační hodnoty printer_technology." -#: src/slic3r/GUI/Plater.cpp:193 +#: src/slic3r/GUI/Plater.cpp:218 msgid "Sliced Info" msgstr "Informace o slicování" -#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159 -#: src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3647 msgid "Slicing" msgstr "Slicování" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 msgid "Slicing complete" msgstr "Slicování dokončeno" -#: src/libslic3r/SLAPrint.cpp:1459 +#: src/libslic3r/SLAPrint.cpp:760 msgid "Slicing done" msgstr "Slicování dokončeno" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:876 msgid "Slicing Done!" msgstr "Slicování dokončeno!" -#: src/libslic3r/SLAPrint.cpp:759 +#: src/libslic3r/SLAPrintSteps.cpp:209 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Slicování muselo být zastaveno kvůli vnitřní chybě: Nekonzistentní index řezů." -#: src/libslic3r/SLAPrint.cpp:55 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Slicing model" msgstr "Slicuji model" -#: src/libslic3r/SLAPrint.cpp:59 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing supports" msgstr "Slicování podpěr" -#: src/libslic3r/PrintConfig.cpp:2249 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "Pomalý" -#: src/libslic3r/PrintConfig.cpp:1635 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "Zpomalit tisk pokud je doba tisku kratší než" -#: src/libslic3r/PrintConfig.cpp:2250 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "Pomalý náklon" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" msgstr "Malé perimetry" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:293 msgid "Smooth" msgstr "Vyhladit" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:263 msgid "Smoothing" msgstr "Vyhlazení" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "Název zálohy" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Software &Releases" msgstr "Vydané ve&rze" -#: src/slic3r/GUI/PresetHints.cpp:181 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "plná výplň" -#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687 -#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Plná výplň" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "Plná výplň každou" -#: src/libslic3r/PrintConfig.cpp:1667 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "Extruder pro plnou výplň" -#: src/libslic3r/PrintConfig.cpp:1658 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" msgstr "Prahová hodnota plochy pro plnou výplň" -#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Plných vrstev" -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "Rozpustný materiál" -#: src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." msgstr "Rozpustný materiál je převážně používán pro tisk rozpustných podpěr." -#: src/libslic3r/PrintConfig.cpp:914 +#: src/libslic3r/PrintConfig.cpp:937 msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Některé příkazy G/M-code, včetně řízení teplot a další, nejsou univerzální. Vyberte typ firmware, který používá vaše tiskárna pro dosažení kompatibilního výstupu. Příkazy typu \"No extrusion\" zabraňují PrusaSliceru zcela exportovat jakoukoliv hodnotu extruze." +#: src/slic3r/GUI/GLCanvas3D.cpp:693 +msgid "Some objects are not visible" +msgstr "Některé objekty nejsou vidět" + #: src/slic3r/GUI/GLCanvas3D.cpp:721 msgid "Some objects are not visible when editing supports" msgstr "Některé objekty nejsou při úpravách podpěr viditelné" -#: src/libslic3r/Print.cpp:1162 +#: src/libslic3r/Print.cpp:1222 msgid "Some objects are too close; your extruder will collide with them." msgstr "Některé objekty jsou příliš blízko; Extruder do nich narazí." -#: src/libslic3r/Print.cpp:1177 +#: src/libslic3r/Print.cpp:1224 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Některé objekty jsou příliš vysoké a nelze je tisknout bez kolizí extruderu." -#: src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2815 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Některé objekty mohou být na několika menších podložkách namísto jedné velké. Tento parametr definuje, jak daleko může být střed dvou menších podložek. Pokud budou blíže, budou sloučeny do jedné podložky." -#: src/libslic3r/PrintConfig.cpp:2086 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default." msgstr "Některé tiskárny nebo nastavení tiskárny mohou mít potíže s tiskem s proměnnou výškou vrstvy. Ve výchozím nastavení je zapnuto." -#: src/libslic3r/PrintConfig.cpp:1897 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." msgstr "Rozteč linií kontaktních vrstev. Nastavte nulu pro získání plných kontaktních vrstev." -#: src/libslic3r/PrintConfig.cpp:1931 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." msgstr "Rozteč linií podpěr." -#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512 -#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084 -#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598 -#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698 -#: src/libslic3r/PrintConfig.cpp:2029 +#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 +#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "Rychlost" -#: src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "Rychlost (baud) USB/sériového portu pro připojení tiskárny." -#: src/libslic3r/GCode/PreviewData.cpp:400 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "Rychlost (mm/s)" -#: src/libslic3r/PrintConfig.cpp:872 +#: src/libslic3r/PrintConfig.cpp:920 msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Rychlost plnění malých mezer pomocí krátkých cikcak pohybů. Udržujte tuto hodnotu poměrně nízkou, aby nedošlo k přílišným otřesům a problémům s rezonancí. Nastavte nulu pro vypnutí vyplnění mezery." -#: src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Tab.cpp:1160 msgid "Speed for non-print moves" msgstr "Netiskové rychlosti" -#: src/libslic3r/PrintConfig.cpp:1362 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Rychlost pro perimetry (obrysy, neboli svislé stěny). Zadejte nulu pro automatické nastavení." -#: src/slic3r/GUI/Tab.cpp:1085 +#: src/slic3r/GUI/Tab.cpp:1148 msgid "Speed for print moves" msgstr "Rychlosti pohybů tiskárny" -#: src/libslic3r/PrintConfig.cpp:200 +#: src/libslic3r/PrintConfig.cpp:226 msgid "Speed for printing bridges." msgstr "Rychlost pro vytváření mostů." -#: src/libslic3r/PrintConfig.cpp:1699 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto." msgstr "Rychlost tisku plných oblastí (vrchní / spodní / vnitřní vodorovné stěny). Může být vyjádřeno procenty (například: 80%) oproti výchozí rychlosti vyplnění. Pro automatické nastavení zadejte nulu." -#: src/libslic3r/PrintConfig.cpp:1906 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed." msgstr "Rychlost tisku podpěrných interface vrstev. Pokud je vyjádřen procentní podíl (například 50%), vypočítá se podle rychlosti tisku podpěr." -#: src/libslic3r/PrintConfig.cpp:1940 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." msgstr "Rychlost tisku podpěr." -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." msgstr "Rychlost tisku vnitřní výplně. Pro automatické nastavení zadejte nulu." -#: src/libslic3r/PrintConfig.cpp:2030 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto." msgstr "Rychlost tisku vrchních plných vrstev (vztahuje se pouze na nejvyšší horní vrstvy a nikoli na jejich vnitřní plné vrstvy). Rychlost lze zpomalit, abyste získali hezčí povrchovou úpravu. Může být vyjádřena procenty (například: 80%) z rychlosti plné výplně materiálu výše. Pro automatické nastavení zadejte nulu." -#: src/libslic3r/PrintConfig.cpp:2052 +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "Rychlost posunů (přejezdy mezi body extruze)." -#: src/libslic3r/PrintConfig.cpp:627 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "Rychlost prvního pohybu chlazení" -#: src/libslic3r/PrintConfig.cpp:646 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "Rychlost posledního pohybu chlazení" -#: src/libslic3r/PrintConfig.cpp:585 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "Rychlost použitá na samém počátku zaváděcí fáze." -#: src/libslic3r/PrintConfig.cpp:577 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "Rychlost použitá pro zavádění filamentu na čistící věž." -#: src/libslic3r/PrintConfig.cpp:593 +#: src/libslic3r/PrintConfig.cpp:624 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Rychlost vysouvání filamentu při výměně na čistící věži (úvodní část vysunutí okamžitě po rapidní extruzi není ovlivněna)." -#: src/libslic3r/PrintConfig.cpp:602 +#: src/libslic3r/PrintConfig.cpp:633 msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Rychlost použitá při vysouvání špičky filamentu bezprostředně po rapidní extruzi." -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Speed:" msgstr "Rychlost:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Sphere" msgstr "Koule" -#: src/libslic3r/PrintConfig.cpp:1717 +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "Spirálová váza" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "Spirálová Váza" -#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988 -#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082 +#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 msgid "Split" msgstr "Rozdělit" -#: src/slic3r/GUI/Plater.cpp:2971 +#: src/slic3r/GUI/Plater.cpp:4028 msgid "Split the selected object" msgstr "Rozdělit vybraný objekt" -#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988 +#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 msgid "Split the selected object into individual objects" msgstr "Rozdělit vybraný objekt na jednotlivé objekty" -#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008 +#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 msgid "Split the selected object into individual sub-parts" msgstr "Rozdělit vybraný objekt na jednotlivé dílčí části" -#: src/slic3r/GUI/GLCanvas3D.cpp:3490 +#: src/slic3r/GUI/GLCanvas3D.cpp:4599 msgid "Split to objects" msgstr "Rozdělit na objekty" -#: src/slic3r/GUI/Plater.cpp:2796 +#: src/slic3r/GUI/Plater.cpp:2965 msgid "Split to Objects" msgstr "Rozdělit na Objekty" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1110 +#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "Rozdělit na části" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1904 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 msgid "Split to Parts" msgstr "Rozdělit na Části" @@ -6575,11 +7411,11 @@ msgstr "Rozdělit na Části" msgid "Standard" msgstr "Běžné" -#: src/libslic3r/PrintConfig.cpp:799 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "Hvězdy" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "Vytvořit nový projekt" @@ -6587,12 +7423,12 @@ msgstr "Vytvořit nový projekt" msgid "Start at height" msgstr "Začít ve výšce" -#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949 -#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Začátek G-code" -#: src/slic3r/GUI/MainFrame.cpp:403 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "Zahájit nový slicovací proces" @@ -6600,24 +7436,24 @@ msgstr "Zahájit nový slicovací proces" msgid "Start printing after upload" msgstr "Spustit tisk po nahrání" -#: src/slic3r/GUI/PrintHostDialogs.cpp:150 +#: src/slic3r/GUI/PrintHostDialogs.cpp:151 msgid "Status" msgstr "Stav" -#: src/slic3r/GUI/FirmwareDialog.cpp:782 +#: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Status:" msgstr "Stav:" -#: src/slic3r/GUI/Tab.cpp:2158 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Stealth" msgstr "Tichý" -#: src/slic3r/GUI/Plater.cpp:1084 +#: src/slic3r/GUI/Plater.cpp:1267 msgid "stealth mode" msgstr "tichý režim" -#: src/slic3r/GUI/Plater.cpp:3545 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5001 +#, c-format msgid "STL file exported to %s" msgstr "Soubor STL exportován do %s" @@ -6625,736 +7461,916 @@ msgstr "Soubor STL exportován do %s" msgid "Stop at height" msgstr "Skončit ve výšce" -#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 msgid "Success!" msgstr "Úspěch!" -#: src/slic3r/GUI/PresetHints.cpp:200 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "podpěry" -#: src/libslic3r/PrintConfig.cpp:2441 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Support base diameter" msgstr "Průměr podpěrné základny" -#: src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2693 msgid "Support base height" msgstr "Výška podpěrné základny" -#: src/libslic3r/PrintConfig.cpp:2566 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base safety distance" msgstr "Bezpečná vzdálenost podpěrné základny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Blocker" msgstr "Blokátor podpěr" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Enforcer" msgstr "Vynucení podpěr" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "Generátor Podpěr" -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3593 msgid "Support head" msgstr "Hrot podpěry" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2611 msgid "Support head front diameter" msgstr "Průměr hrotu podpěry" -#: src/libslic3r/PrintConfig.cpp:2378 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head penetration" msgstr "Průnik podpěry do modelu" -#: src/libslic3r/PrintConfig.cpp:2387 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head width" msgstr "Tloušťka hrotu podpěry" -#: src/slic3r/GUI/PresetHints.cpp:210 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "kontaktní vrstva podpěr" -#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70 -#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236 -#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060 -#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432 -#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786 -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806 -#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887 -#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905 -#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930 -#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939 -#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956 -#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" msgstr "Podpěry" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904 -#: src/libslic3r/GCode/PreviewData.cpp:173 +#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Kontaktní vrstvy podpěr" -#: src/libslic3r/PrintConfig.cpp:1957 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)." msgstr "Podpěry nebudou vytvořeny pro převisy, jejichž úhel sklonu (90° = vertikální) je nad danou prahovou hodnotou. Jinými slovy, tato hodnota představuje největší horizontální sklon (měřený od horizontální roviny), který můžete tisknout bez podpěrného materiálu. Nastavte na nulu pro automatickou detekci (doporučeno)." -#: src/libslic3r/PrintConfig.cpp:1877 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" msgstr "Extruder pro kontaktní podpěry/raft" -#: src/libslic3r/PrintConfig.cpp:1851 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" msgstr "Extruder pro podpěry/raft/obrys" -#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815 -#: src/libslic3r/PrintConfig.cpp:2423 +#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2665 msgid "Support on build plate only" msgstr "Pouze na tiskové podložce" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:991 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 msgid "Support parameter change" msgstr "Změna nastavení podpěr" -#: src/slic3r/GUI/Tab.cpp:3406 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support pillar" msgstr "Podpěrný pilíř" -#: src/libslic3r/PrintConfig.cpp:2407 +#: src/libslic3r/PrintConfig.cpp:2649 msgid "Support pillar connection mode" msgstr "Propojení podpěr" -#: src/libslic3r/PrintConfig.cpp:2397 +#: src/libslic3r/PrintConfig.cpp:2639 msgid "Support pillar diameter" msgstr "Tloušťka podpěry" -#: src/libslic3r/PrintConfig.cpp:2499 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "Support points density" msgstr "Hustota podpěrných bodů" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 msgid "Support points edit" msgstr "Úprava podpěrných bodů" -#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519 -#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397 -#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363 -#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379 -#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398 -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431 -#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490 -#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508 +#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 +#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 +#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 +#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 +#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 +#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 +#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 +#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 +#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 +#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Supports" msgstr "Podpěry" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "supports and pad" msgstr "podpěry a podložka" -#: src/libslic3r/PrintConfig.cpp:1043 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "Podpora zbývajících tiskových časů" -#: src/libslic3r/PrintConfig.cpp:1053 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "Podporuje tichý režim" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 -msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" -msgstr "Podpěry fungují lépe, pokud je povolena funkce:\n- Detekovat perimetry přemostění" +#: src/slic3r/GUI/ConfigManipulation.cpp:159 +msgid "" +"Supports work better, if the following feature is enabled:\n" +"- Detect bridging perimeters" +msgstr "" +"Podpěry fungují lépe, pokud je povolena funkce:\n" +"- Detekovat perimetry přemostění" -#: src/slic3r/GUI/Preferences.cpp:76 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets" msgstr "Potlačit “ - výchozí - “ přednastavení" -#: src/slic3r/GUI/Preferences.cpp:78 +#: src/slic3r/GUI/Preferences.cpp:91 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Potlačit “ - výchozí - “ přednastavení v nabídkách Tisk / Filament / Tiskárna, jakmile budou k dispozici další platné předvolby." -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/DoubleSlider.cpp:1112 +msgid "Switch code to Change extruder" +msgstr "Zaměnit za příkaz na Změnu extruderu" + +#: src/slic3r/GUI/DoubleSlider.cpp:1147 +msgid "Switch code to Color change (%1%) for:" +msgstr "Zaměnit za příkaz na Změnu barvy (%1%) pro:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 msgid "Switch to 3D" msgstr "Přepnout do 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 msgid "Switch to editing mode" msgstr "Přepnout do režimu editace" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 msgid "Switch to Preview" msgstr "Přepnout do náhledu" -#: src/slic3r/GUI/wxExtensions.cpp:2412 -#, possible-c-format +#: src/slic3r/GUI/wxExtensions.cpp:703 +#, c-format msgid "Switch to the %s mode" msgstr "Přepnout do režimu %s" -#: src/slic3r/GUI/GUI_App.cpp:752 -msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." -msgstr "Přepnutím jazyka se aplikace restartuje.\nZtratíte obsah scény." +#: src/slic3r/GUI/GUI_App.cpp:882 +msgid "" +"Switching the language will trigger application restart.\n" +"You will lose content of the plater." +msgstr "" +"Přepnutím jazyka se aplikace restartuje.\n" +"Ztratíte obsah scény." -#: src/slic3r/GUI/WipeTowerDialog.cpp:327 -msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" -msgstr "Přepnutím do jednoduchého nastavení ztratíte změny provedené v pokročilém režimu!\n\nOpravdu chcete pokračovat?" +#: src/slic3r/GUI/WipeTowerDialog.cpp:365 +msgid "" +"Switching to simple settings will discard changes done in the advanced mode!\n" +"\n" +"Do you want to proceed?" +msgstr "" +"Přepnutím do jednoduchého nastavení ztratíte změny provedené v pokročilém režimu!\n" +"\n" +"Opravdu chcete pokračovat?" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1016 msgid "symbolic profile name" msgstr "symbolické jméno profilu" -#: src/libslic3r/PrintConfig.cpp:1949 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive." msgstr "Synchronizování vrstev podpěr s vrstvami objektu. Toto je velmi užitečné u multi-materiálových tiskáren, kde je přepínání extruderů drahé." -#: src/libslic3r/PrintConfig.cpp:1947 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "Synchronizovat s vrstvami objektu" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "System &Info" msgstr "&Informace o systému" -#: src/slic3r/GUI/SysInfoDialog.cpp:44 +#: src/slic3r/GUI/SysInfoDialog.cpp:78 msgid "System Information" msgstr "Systémové informace" -#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970 -#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067 -#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553 +#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 +#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 +#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "Systémová přednastavení" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" -msgstr "Prové&st Zálohu Konfigurace" +msgstr "Prové&st Zálohu konfigurace" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Ukládání zálohy nastavení" -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Teplota" -#: src/libslic3r/PrintConfig.cpp:1727 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped." msgstr "Teplotní rozdíl, který se použije v případě, že extruder není aktivní. Umožňuje “obětní” obrysy v plné výšce objektu, na kterém jsou trysky periodicky očištěny." -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "Kolísání teploty" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Temperatures" msgstr "Teploty" -#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 msgid "Test" msgstr "Test" -#: src/slic3r/GUI/BedShapeDialog.cpp:171 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "Textura" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Vzor výplně %1% není určen pro 100 %% hustotu výplně." -#: src/slic3r/GUI/FirmwareDialog.cpp:530 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:548 +#, c-format msgid "The %s device could not have been found" msgstr "Zařízení %s nebylo nalezeno" -#: src/slic3r/GUI/FirmwareDialog.cpp:417 -#, possible-c-format -msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." +#: src/slic3r/GUI/FirmwareDialog.cpp:436 +#, c-format +msgid "" +"The %s device was not found.\n" +"If the device is connected, please press the Reset button next to the USB connector ..." msgstr "Zařízení %s nebylo nalezeno. Pokud je zařízení připojeno, stiskněte tlačítko Reset vedle USB konektoru ..." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640 -msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 +msgid "" +"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" +"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" +"once the rotation is embedded into the object coordinates." msgstr "Momentálně upravovaný objekt je pootočený (rotační úhly nejsou násobky 90°). Nejednotné škálování nakloněných objektů je ve světových koordinátech možné pouze tehdy, když je informace o rotacích zapsána do koordinátů daného objektu." -#: src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2717 msgid "The default angle for connecting support sticks and junctions." msgstr "Výchozí úhel pro připojení nosných tyčí a spojek." -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:631 msgid "The endings of the support pillars will be deployed on the gap between the object and the pad. 'Support base safety distance' has to be greater than the 'Pad object gap' parameter to avoid this." msgstr "Konce podpěrných sloupů budou rozmístěny mezi předmět a podložku. Proto musí být „Bezpečná vzdálenost podpěrné základny“ větší než parametr „Mezera Podložka-Objekt“." -#: src/libslic3r/PrintConfig.cpp:457 +#: src/libslic3r/PrintConfig.cpp:489 msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders." msgstr "Extruder, který chcete použít (pokud nejsou zvoleny specifičtější nastavení extruderu). Tato hodnota přepíše nastavení perimetrového a výplňového exrtuderu, ale ne nastavení extruderu pro podpěry." -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "Extruder který se použije pro tisk výplní." -#: src/libslic3r/PrintConfig.cpp:1341 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "Extruder, který se používá při tisku perimetrů a límce. První extruder je 1." -#: src/libslic3r/PrintConfig.cpp:1669 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." msgstr "Extruder který bude použit při tisku plných výplní." -#: src/libslic3r/PrintConfig.cpp:1879 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too." msgstr "Extruder, který se použije při tisku kontaktních vrstev podpěr (1+, 0 pro použití aktuálního extruderu, aby se minimalizovaly změny nástroje). To ovlivňuje i raft." -#: src/libslic3r/PrintConfig.cpp:1853 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)." msgstr "Extruder, který se používá při tisku podpěr, raftu a obrysu (1+, 0 pro použití aktuálního extruderu pro co nejméně změn nástroje)." -#: src/libslic3r/PrintConfig.cpp:695 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "Typ filamentu pro použití ve vlastních G-code." -#: src/libslic3r/PrintConfig.cpp:3105 +#: src/libslic3r/PrintConfig.cpp:3479 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Soubor, do kterého bude zapisován výstup (pokud není zadán, bude vycházet ze vstupního souboru)." -#: src/libslic3r/PrintConfig.cpp:1054 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "Firmware podporuje tichý režim" -#: src/libslic3r/PrintConfig.cpp:351 +#: src/libslic3r/PrintConfig.cpp:377 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "První vrstva bude v rovině XY zmenšena nakonfigurovanou hodnotou, která kompenzuje rozplácnutí první vrstvy." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2726 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 msgid "the following characters are not allowed:" msgstr "následující znaky nejsou povolené:" -#: src/slic3r/GUI/Tab.cpp:3311 +#: src/slic3r/GUI/Tab.cpp:3445 msgid "the following suffix is not allowed:" msgstr "následující přípona není povolená:" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Mezera mezi spodkem objektu a generovanou podložkou v režimu nulového nadzvednutí." -#: src/libslic3r/PrintConfig.cpp:2453 +#: src/libslic3r/PrintConfig.cpp:2695 msgid "The height of the pillar base cone" msgstr "Výška ukotvení podpěrného kužele" -#: src/libslic3r/PrintConfig.cpp:2481 +#: src/slic3r/GUI/DoubleSlider.cpp:1895 +msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." +msgstr "Poslední změny barev byly uloženy pro tisk s více extrudery se změnami nástrojů během celého tisku." + +#: src/slic3r/GUI/DoubleSlider.cpp:1889 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "Poslední změny barev byly uloženy pro tisk s více extrudery." + +#: src/slic3r/GUI/DoubleSlider.cpp:1873 +msgid "The last color change data was saved for a multiple extruder printer profile." +msgstr "Poslední změny barev byly uloženy pro tiskový profil s více extrudery." + +#: src/slic3r/GUI/DoubleSlider.cpp:1872 +msgid "The last color change data was saved for a single extruder printer profile." +msgstr "Poslední změny barev byly uloženy pro jedno extruderový profil tiskárny." + +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." +msgstr "Poslední změny barev byly uloženy pro tisk s jedním extruderem." + +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "Maximální vzdálenost dvou podpůrných pilířů pro vzájemné provázání. Nulová hodnota zakáže provazování." -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/libslic3r/PrintConfig.cpp:2727 msgid "The max length of a bridge" msgstr "Maximální délka přemostění" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2705 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Minimální vzdálenost základny podpěr od modelu v mm. Dává smysl v režimu nulového nadzvednutí nad podložku, kde je mezera podle tohoto parametru vložena mezi model a podložku." -#: src/libslic3r/PrintConfig.cpp:2176 +#: src/libslic3r/PrintConfig.cpp:175 +msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." +msgstr "Počet spodních plných vrstev je navýšen nad zadaný počet bottom_solid_layers, je-li to nutné k dosažení minimální tloušťky spodní skořepiny. " + +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." +msgstr "Počet vrchních plných vrstev je navýšen nad zadaný počet top_solid_layers, je-li to nutné k dosažení minimální tloušťky vrchní skořepiny. Zabrání se tak tzv. „pillowing“ efektu při tisku s proměnnou výškou vrstvy." + +#: src/libslic3r/PrintConfig.cpp:2277 msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes." msgstr "Objekt bude roztažen / smrštěn v rovině XY nastavenou hodnotou (negativní = směrem dovnitř, pozitivní = směrem ven). To může být užitečné pro jemné doladění otvorů." -#: src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "The object will be raised by this number of layers, and support material will be generated under it." msgstr "Objekt se zvýší tímto počtem vrstev a pod ním bude vytvořen podpůrný materiál." -#: src/libslic3r/PrintConfig.cpp:2259 -msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "Procentuálně vyjádřená zabraná tisková plocha.\nPokud tisk zabere více než je zadaná hodnota,\nbude použit pomalý náklon. V ostatních případech bude použit rychlý náklon" +#: src/libslic3r/PrintConfig.cpp:2424 +msgid "" +"The percentage of the bed area. \n" +"If the print area exceeds the specified value, \n" +"then a slow tilt will be used, otherwise - a fast tilt" +msgstr "" +"Procentuálně vyjádřená zabraná tisková plocha.\n" +"Pokud tisk zabere více než je zadaná hodnota,\n" +"bude použit pomalý náklon. V ostatních případech bude použit rychlý náklon" -#: src/slic3r/GUI/GUI_App.cpp:831 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "Byla upravena přednastavení na následujících kartách" -#: src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "Tiskárna přepíná několik filamentů v jednou hot endu." -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Format/3mf.cpp:1630 msgid "The selected 3mf file has been saved with a newer version of %1% and is not compatible." msgstr "Vybraný 3mf soubor byl uložen s novější verzí %1% a není kompatibilní." -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "The selected amf file has been saved with a newer version of %1% and is not compatible." msgstr "Vybraný amf soubor byl uložen s novější verzí %1% a není kompatibilní." -#: src/slic3r/GUI/BedShapeDialog.cpp:342 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "Vybraný soubor neobsahuje geometrii." -#: src/slic3r/GUI/BedShapeDialog.cpp:346 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Vybraný soubor obsahuje několik nespojených ploch. Tato možnost není podporována." -#: src/slic3r/GUI/Plater.cpp:2271 +#: src/slic3r/GUI/Plater.cpp:2954 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "Vybraný objekt nemůže být rozdělen, protože obsahuje více než jeden objem/materiál." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 msgid "The selected object couldn't be split because it contains only one part." msgstr "Vybraný objekt nemůže být rozdělen, protože obsahuje pouze jednu část." -#: src/slic3r/GUI/MainFrame.cpp:410 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "Vybraný projekt již není dostupný" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Sekvenční tisk je zapnutý.\n" +"Není možné použít jakýkoliv vlastní G-kód pro objekty tisknuté sekvenčně.\n" +"Během generování G-kódu nebude tento kód zpracován." + +#: src/libslic3r/PrintConfig.cpp:2837 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "Sklon bočnic vzhledem k podložce. 90 stupňů znamená kolmé stěny." -#: src/libslic3r/PrintConfig.cpp:1544 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used." msgstr "Rychlost vtlačení filamentu do extruderu po retrakci (vztahuje se pouze na motor extruderu). Pokud je ponecháno na nulu, použije se rychlost retrakce." -#: src/libslic3r/PrintConfig.cpp:1536 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "Rychlost retrakce (toto nastavení platí pouze pro motor extruderu)." +#: src/slic3r/GUI/ConfigManipulation.cpp:81 +#, no-c-format +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Režim Spiral Vase vyžaduje:\n" +"- jeden perimetr\n" +"- žádné horní plné vrstvy\n" +"- 0% hustota výplně\n" +"- bez podpěrného materiálu\n" +"- aktivní volbu „Zajistit tloušťku svislých stěn“\n" +"- neaktivní volbu „Detekce tenkých stěn“" + #: src/slic3r/GUI/ConfigManipulation.cpp:75 #, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "Režim Spiral Vase vyžaduje:\n- jeden perimetr\n- žádné horní plné vrstvy\n- 0% hustota výplně\n- bez podpěrného materiálu\n- neaktivní volbu Zajistit tloušťku svislých stěn" +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- inactive Ensure vertical shell thickness" +msgstr "" +"Režim Spiral Vase vyžaduje:\n" +"- jeden perimetr\n" +"- žádné horní plné vrstvy\n" +"- 0% hustota výplně\n" +"- bez podpěrného materiálu\n" +"- neaktivní volbu Zajistit tloušťku svislých stěn" -#: src/libslic3r/Print.cpp:1187 +#: src/libslic3r/Print.cpp:1233 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "Možnost \"Spirálová váza\" lze použít pouze při tisku jednoho objektu." -#: src/libslic3r/Print.cpp:1189 +#: src/libslic3r/Print.cpp:1240 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "Možnost \"Spirálová váza\" lze použít pouze při tisku jedním materiálem." -#: src/slic3r/GUI/Tab.cpp:2900 +#: src/slic3r/GUI/Tab.cpp:3052 msgid "The supplied name is empty. It can't be saved." msgstr "Název je prázdný. Nelze uložit." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3449 msgid "The supplied name is not available." msgstr "Zadaný název není dostupný." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2725 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278 -#: src/slic3r/GUI/Tab.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:3444 msgid "The supplied name is not valid;" msgstr "Zadaný název není platný;" -#: src/libslic3r/Print.cpp:1268 +#: src/libslic3r/Print.cpp:1218 msgid "The supplied settings will cause an empty print." msgstr "Zadané nastavení způsobí prázdný tisk." -#: src/libslic3r/PrintConfig.cpp:2524 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "The thickness of the pad and its optional cavity walls." msgstr "Tloušťka podložky a její volitelné duté stěny." -#: src/libslic3r/PrintConfig.cpp:1825 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Vertikální vzdálenost mezi objektem a podpěrami. Nastavením tohoto parametru na hodnotu 0 se také zabrání tomu, aby Slic3r použil parametry průtoku a rychlosti pro mosty při tisku první vrstvy objektu." -#: src/slic3r/GUI/Tab.cpp:2429 -msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" -msgstr "Možnost Očistit není k dispozici při použití režimu retrakcí z firmwaru.\n\nMám ji deaktivovat, aby bylo možné povolit retrakce z firmwaru?" +#: src/slic3r/GUI/Tab.cpp:2571 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"Možnost Očistit není k dispozici při použití režimu retrakcí z firmwaru.\n" +"\n" +"Mám ji deaktivovat, aby bylo možné povolit retrakce z firmwaru?" -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "Čistíví Věž v současné době nepodporuje volumetric E (use_volumetric_e = 0)." -#: src/slic3r/GUI/ConfigManipulation.cpp:107 -msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "Čistící věž v současné době podporuje pouze nerozpustné podpěry\npokud jsou vytištěny s aktuálním extrudérem bez spuštění výměny nástroje.\n(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpěr je třeba nastavit na 0)." +#: src/slic3r/GUI/ConfigManipulation.cpp:115 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool change.\n" +"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgstr "" +"Čistící věž v současné době podporuje pouze nerozpustné podpěry\n" +"pokud jsou vytištěny s aktuálním extrudérem bez spuštění výměny nástroje.\n" +"(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpěr je třeba nastavit na 0)." -#: src/libslic3r/Print.cpp:1306 +#: src/libslic3r/Print.cpp:1396 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "Čistící věž v současné době podporuje pouze nerozpustné podpěry\npokud jsou vytištěny s aktuálním extrudérem bez spuštění výměny nástroje.\n(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpěr je třeba nastavit na 0)." +msgstr "" +"Čistící věž v současné době podporuje pouze nerozpustné podpěry\n" +"pokud jsou vytištěny s aktuálním extrudérem bez spuštění výměny nástroje.\n" +"(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpěr je třeba nastavit na 0)." -#: src/libslic3r/Print.cpp:1200 +#: src/libslic3r/Print.cpp:1266 +msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." +msgstr "Čistící věž není momentálně podporována pro multimateriálové sekvenční tisky." + +#: src/libslic3r/Print.cpp:1258 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Čistící věž je v současné době možná pouze pro G-cody určené pro Marlin, RepRap/Sprinter a Repetier." -#: src/libslic3r/Print.cpp:1202 +#: src/libslic3r/Print.cpp:1260 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Čistící věž je v současné době možná pouze v případě relativního adresování exruderu (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1225 +#: src/libslic3r/Print.cpp:1289 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "Čistící věž pro více objektů je možná pouze v případě, že objekty mají stejný počet raft vrstev" -#: src/libslic3r/Print.cpp:1227 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "Čistící věž pro více objektů je možná pouze v případě, že objekty mají shodný parametr support_material_contact_distance" -#: src/libslic3r/Print.cpp:1229 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "Čistící věž je při více objektech možná pouze v případě, že objekty jsou slicovány stejně." -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1287 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "Čistící věž je při více objektech možná pouze v případě, že objekty mají všechny vrstvy stejné výšky" -#: src/libslic3r/Print.cpp:1155 +#: src/libslic3r/Print.cpp:1253 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "Čistící věž je podporována pouze v případě, že všechny extrudery mají stejné průměry trysek a používají filamenty stejných průměrů." -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1335 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "Čistící věž je podporována pouze v případě, že všechny objekty mají stejnou variabilní výšku vrstvy" -#: src/slic3r/GUI/UpdateDialogs.cpp:127 -#, possible-c-format +#: src/libslic3r/SLAPrintSteps.cpp:596 +msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." +msgstr "Nacházejí se zde netisknutelné objekty. Zkuste upravit nastavení podpěr tak, aby bylo možné objekty vytisknout." + +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"Dochází zde ke změně barvy u extruderu, který dosud nebyl použit.\n" +"Zkontrolujte nastavení, abyste se vyhnuli redundantním změnám barev." + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "" +"There is a color change for extruder that won't be used till the end of print job.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Dochází zde ke změně barvy u extruderu, který již do konce tisku nebude použit.\n" +"Tento kód nebude během generování G-kódu zpracován." + +#: src/slic3r/GUI/DoubleSlider.cpp:993 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Je zde změna extruderu na ten samý extruder.\n" +"Během generování G-codu nebude tento kód zpracován." + +#: src/slic3r/GUI/UpdateDialogs.cpp:225 +#, c-format msgid "This %s version: %s" msgstr "Tento %s verze: %s" -#: src/libslic3r/PrintConfig.cpp:140 +#: src/libslic3r/PrintConfig.cpp:155 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Tento kód je vložen mezi objekty, pokud je použit sekvenční tisk. Ve výchozím nastavení je resetován extruder a tisková podložka pomocí non-wait (nečekacím) příkazem; nicméně pokud jsou příkazy M104, M109, 140 nebo M190 detekovány v tomto vlastním kódu, Slic3r nebude přidávat teplotní příkazy. Můžete přidávat zástupné proměnné pro veškeré nastavení Slic3ru, takže můžete vložit příkaz “M109 S[first_layer_temperature]” kamkoliv chcete." -#: src/libslic3r/PrintConfig.cpp:1032 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Tento vlastní kód je vložen při každé změně vrstvy, hned po pohybu Z a předtím, než se extruder přesune na první bod vrstvy. Můžete přidávat zástupné proměnné pro veškeré nastavení Slic3ru, stejně tak jako [layer_num] a [layer_z]." -#: src/libslic3r/PrintConfig.cpp:129 +#: src/libslic3r/PrintConfig.cpp:144 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Tento vlastní kód je vložen pro každou změnu vrstvy, předtím než se pohne Z. Můžete přidávat zástupné proměnné pro veškeré nastavení Slic3ru stejně tak jako [layer_num] a [layer_z]." -#: src/libslic3r/PrintConfig.cpp:2057 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "This custom code is inserted before every toolchange. Placeholder variables for all PrusaSlicer settings as well as {previous_extruder} and {next_extruder} can be used. When a tool-changing command which changes to the correct extruder is included (such as T{next_extruder}), PrusaSlicer will emit no other such command. It is therefore possible to script custom behaviour both before and after the toolchange." msgstr "Tento vlastní kód je vložen při každé změně nástroje (extruderu). Lze používat zástupné proměnné pro všechna nastavení PrusaSliceru stejně jako {previous_extruder} a {next_extruder}. Když je použit příkaz pro výměnu extruderu, který mění na požadovaný extruder (jako je T {next_extruder}), PrusaSlicer nevytvoří žádný jiný takový příkaz. Je tedy možné skriptovat vlastní chování před i po výměně nástroje." -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:396 msgid "This end procedure is inserted at the end of the output file, before the printer end gcode (and before any toolchange from this filament in case of multimaterial printers). Note that you can use placeholder variables for all PrusaSlicer settings. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Tento kód je vložen na konec výstupního souboru před tím, než tiskárna dokončí gcode (a před všechny změny extruderu z tohoto filamentu v případě multimateriálových tiskáren). Můžete přidávat zástupné proměnné pro veškeré nastavení PrusaSliceru. Pokud máte tiskárnu s více extrudery, G-code je zpracováván v pořadí extruderů." -#: src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:386 msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all PrusaSlicer settings." msgstr "Tento kód je vložen na konec výstupního souboru. Můžete také přidávat zástupné proměnné pro veškeré nastavení PrusaSliceru." -#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds." msgstr "Toto experimentální nastavení se používá k omezení rychlosti změny objemového průtoku. Hodnota 1,8mm³/s² zajišťuje, že změna objemového průtoku z 1,8 mm³/s (šířka extruze 0,45 mm, výška extruze 0,2 mm, rychlost posuvu 20 mm/s) na 5,4 mm³/s (rychlost posuvu 60 mm/s) potrvá nejméně 2 sekundy." -#: src/libslic3r/PrintConfig.cpp:1183 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports." msgstr "Toto experimentální nastavení slouží k nastavení maximální objemové rychlosti, kterou váš extruder podporuje." -#: src/libslic3r/PrintConfig.cpp:2061 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." msgstr "Toto experimentální nastavení používá příkazy G10 a G11, aby si firmware poradil s retrakcí. Toto je podporováno pouze v posledních verzích firmwaru Marlin." -#: src/libslic3r/PrintConfig.cpp:2075 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Toto experimentální nastavení používá výstupní hodnoty E v kubických milimetrech místo lineárních milimetrů. Pokud firmware dosud nezná průměr (průměry) filamentu, můžete v počátečním G-code zadat příkazy jako “M200 D [filament_diameter_0] T0”, pro se zapnutí volumetrického režimu a použití průměru filamentu přidruženého k vybranému filamentu ve Slic3ru. Toto je podporováno pouze v posledních verzích firmwaru Marlin." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2848 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 msgid "This extruder will be set for selected items" msgstr "Tento extruder bude nastaven pro vybrané položky" -#: src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Tato hodnota určuje množství vytlačeného plastu při vytváření mostů. Mírným snížením této hodnoty můžete předejít pronášení i když, přednastavené hodnoty jsou většinou dobré a je lepší experimentovat s chlazením (využitím ventilátoru), než s touto hodnotou." -#: src/libslic3r/PrintConfig.cpp:514 +#: src/libslic3r/PrintConfig.cpp:546 msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Tento faktor mění poměrné množství průtoku. Možná bude třeba toto nastavení vyladit, pro dosažení hezkého povrchu a správné šířky jednotlivých stěn. Obvyklé hodnoty jsou mezi 0,9 a 1,1. Pokud si myslíte, že hodnotu potřebujete změnit více, zkontrolujte průměr filamentu a E kroky ve firmwaru." -#: src/libslic3r/PrintConfig.cpp:178 +#: src/libslic3r/PrintConfig.cpp:204 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Nastavená rychlost ventilátoru je využita vždy při vytváření mostů a přesahů." -#: src/libslic3r/PrintConfig.cpp:944 +#: src/libslic3r/PrintConfig.cpp:992 msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy." msgstr "Tato funkce umožňuje kombinovat výplň a urychlit tisk pomocí extruzí silnějších výplňových vrstev při zachování tenkých obvodů, a tím i přesnosti." -#: src/libslic3r/PrintConfig.cpp:1677 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height." msgstr "Tato funkce umožňuje vynucení plné vrstvy za každý daný počet vrstev. Pro vypnutí nastavte nulu. Můžete nastavit libovolnou hodnotu (například 9999); Slic3r automaticky zvolí maximální počet vrstev, které se budou kombinovat podle průměru trysky a výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:1718 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Tato funkce zvýší postupně Z při tisku jednovrstvého objektu, aby se odstranil jakýkoli viditelný šev. Tato volba vyžaduje jediný obvod, žádnou výplň, žádné vrchní plné vrstvy a žádný podpůrný materiál. Můžete stále nastavit libovolný počet spodních plných vrstev, stejně jako obrysové smyčky / límec. Při tisku více než jednoho objektu nebude toto nastavení fungovat." -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2351 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Tento soubor nelze načíst v jednoduchém režimu. Chcete přepnout do pokročilého režimu?" -#: src/slic3r/GUI/Plater.cpp:2361 -msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" -msgstr "Tento soubor obsahuje několik objektů umístěných v různých výškách. Mají být vloženy jako jeden objekt obsahující více částí,\nnamísto vložení několika objektů?" +#: src/slic3r/GUI/Plater.cpp:2341 +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should I consider\n" +"this file as a single object having multiple parts?" +msgstr "" +"Tento soubor obsahuje několik objektů umístěných v různých výškách. Mají být vloženy jako jeden objekt obsahující více částí,\n" +"namísto vložení několika objektů?" -#: src/slic3r/GUI/FirmwareDialog.cpp:313 -#, possible-c-format -msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." -msgstr "Tento hex soubor s firmware neodpovídá modelu tiskárny.\nSoubor hex je určen pro: %s\nTiskárna oznámila: %s\n\nChcete i přesto pokračovat a nahrát do tiskárny hex soubor?\nPokračujte prosím, pouze pokud jste si jisti, že je to správný soubor." +#: src/slic3r/GUI/FirmwareDialog.cpp:332 +#, c-format +msgid "" +"This firmware hex file does not match the printer model.\n" +"The hex file is intended for: %s\n" +"Printer reported: %s\n" +"\n" +"Do you want to continue and flash this hex file anyway?\n" +"Please only continue if you are sure this is the right thing to do." +msgstr "" +"Tento hex soubor s firmware neodpovídá modelu tiskárny.\n" +"Soubor hex je určen pro: %s\n" +"Tiskárna oznámila: %s\n" +"\n" +"Chcete i přesto pokračovat a nahrát do tiskárny hex soubor?\n" +"Pokračujte prosím, pouze pokud jste si jisti, že je to správný soubor." -#: src/libslic3r/PrintConfig.cpp:278 +#: src/libslic3r/PrintConfig.cpp:304 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Zapne výpočet automatického chlazení, který upravuje rychlost tisku a ventilátoru v závislosti na délce tisku jedné vrstvy." -#: src/slic3r/GUI/Plater.cpp:448 +#: src/slic3r/GUI/Plater.cpp:533 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Tato vlajka zapíná límec, který bude vytištěn kolem každého objektu při první vrstvě." -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "Tato možnost vyvolá retrakci, kdykoli je proveden pohyb Z." -#: src/libslic3r/PrintConfig.cpp:2093 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Toto nastavení přemístí trysku při retrakci, aby se minimalizovalo možné vytékání materiálu." -#: src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a default preset." msgstr "Toto je výchozí přednastavení." -#: src/libslic3r/PrintConfig.cpp:2501 +#: src/libslic3r/PrintConfig.cpp:2757 msgid "This is a relative measure of support points density." msgstr "Relativní míra hustoty podpěrných bodů." -#: src/slic3r/GUI/Tab.cpp:2528 +#: src/slic3r/GUI/Tab.cpp:2334 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Jedná se o multimateriálovou tiskárnu s jedním extruderem, průměry všech extruderů se nastaví na novou hodnotu. Chcete pokračovat?" -#: src/slic3r/GUI/Tab.cpp:923 +#: src/slic3r/GUI/Tab.cpp:957 msgid "This is a system preset." msgstr "Toto je systémové přednastavení." -#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." msgstr "Toto je v Slic3ru jako názorná pomoc." -#: src/libslic3r/PrintConfig.cpp:300 +#: src/libslic3r/PrintConfig.cpp:326 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Toto je hodnota akcelerace na kterou se tiskárna vrátí po specifických úpravách akcelerace například při tisku (perimetru/výplně). Nastavením na nulu zabráníte návratu rychlostí zcela." -#: src/libslic3r/PrintConfig.cpp:158 +#: src/libslic3r/PrintConfig.cpp:184 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "Nastavení akcelerace tiskárny při vytváření mostů. Nastavením na nulu vypnete ovládání akcelerace pro mosty." -#: src/libslic3r/PrintConfig.cpp:813 +#: src/libslic3r/PrintConfig.cpp:860 msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer." msgstr "Toto je zrychlení, které vaše tiskárna použije pro první vrstvu. Nastavte nulu pro vypnutí řízení zrychlení pro první vrstvu." -#: src/libslic3r/PrintConfig.cpp:934 +#: src/libslic3r/PrintConfig.cpp:982 msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill." msgstr "Toto je zrychlení, které vaše tiskárna použije pro výplň. Nastavte nulu, chcete-li vypnout řízení zrychlení pro výplň." -#: src/libslic3r/PrintConfig.cpp:1331 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters." msgstr "Jedná se o akceleraci, kterou vaše tiskárna použije pro perimetry. Vysoká hodnota, jako je 9000, obvykle dává dobré výsledky, pokud je váš hardware v pořádku. Nastavte nulu pro vypnutí řízení zrychlení pro perimetry." -#: src/libslic3r/PrintConfig.cpp:1262 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "Průměr trysky extruderu (například: 0.5, 0.35 atd.)" -#: src/libslic3r/PrintConfig.cpp:1162 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter." msgstr "Toto je největší možná výška vrstvy pro tento extruder, který se používá k zakrytí výšky proměnné vrstvy a výšky podpůrné vrstvy. Maximální doporučená výška vrstvy činí 75% šířky vytlačování, aby se dosáhlo přiměřené přilnavosti mezi vrstvami. Pokud je nastavena hodnota 0, je výška vrstvy omezena na 75% průměru trysky." -#: src/libslic3r/PrintConfig.cpp:1225 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm." msgstr "Nejmenší tisknutelná výška vrstvy pro tento extruder. Omezuje rozlišení pro výšku proměnné vrstvy. Typické hodnoty jsou mezi 0,05 mm a 0,1 mm." -#: src/libslic3r/GCode.cpp:630 +#: src/libslic3r/GCode.cpp:639 msgid "This is usually caused by negligibly small extrusions or by a faulty model. Try to repair the model or change its orientation on the bed." msgstr "To je obvykle způsobeno zanedbatelně malým množstvím extrudovaného materiálu nebo chybným modelem. Zkuste model opravit nebo změnit jeho orientaci na podložce." -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools." msgstr "Tato matice popisuje objemy (v kubických milimetrech) nutné k vyčištění nového filamentu na čistící věži pro danou dvojici nástrojů." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643 -msgid "This operation is irreversible.\nDo you want to proceed?" -msgstr "Tato operace je nevratná.\nChcete pokračovat?" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 +msgid "" +"This operation is irreversible.\n" +"Do you want to proceed?" +msgstr "" +"Tato operace je nevratná.\n" +"Chcete pokračovat?" -#: src/libslic3r/PrintConfig.cpp:1372 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." msgstr "Tato volba nastavuje počet perimetrů, které je třeba vygenerovat pro každou vrstvu. Slic3r může toto číslo automaticky zvýšit, pokud detekuje šikmé plochy, které se tisknou lépe s vyšším počtem obvodů, pokud je zapnuta možnost Extra perimetry." -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures." msgstr "Tato volba sníží teplotu neaktivních extruderů, aby u nich nedošlo k vytékání." -#: src/libslic3r/PrintConfig.cpp:980 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved." msgstr "Tato volba omezuje výplň na plochy skutečně potřebné pro podpěru stropů (bude se chovat jako vnitřní podpěrný materiál). Je-li tato volba zapnuta, zpomaluje generování G-code kvůli několikanásobným kontrolám." -#: src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "This option will switch the print order of perimeters and infill, making the latter first." msgstr "Tato volba obrátí pořadí tisku obvodů a výplní." -#: src/libslic3r/PrintConfig.cpp:427 +#: src/libslic3r/PrintConfig.cpp:459 msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Toto oddělené nastavení ovlivní rychlost tisku vnějších perimetrů (těch viditelných). Pokud je hodnota vyjádřena procenty (například: 80%), bude rychlost vypočítána z hodnoty rychlosti tisku perimetrů, nastavené výše. Nastavte nulu pro automatický výpočet." -#: src/libslic3r/PrintConfig.cpp:1648 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Toto oddělené nastavení ovlivní rychlost perimetrů o poloměru <= 6,5 mm (obvykle díry). Pokud je vyjádřeno jako procentní podíl (například: 80%), vypočte se z výše uvedeného nastavení rychlosti perimetrů. Pro automatické nastavení zadejte nulu." -#: src/libslic3r/PrintConfig.cpp:989 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width." msgstr "Toto nastavení uplatňuje dodatečné překrytí mezi výplní a obvodem pro lepší spojení. Teoreticky by to nemělo být potřeba, ale reakce by mohla způsobit mezery. Pokud je vyjádřeno procenty (například: 15%), vypočítá se z šířky extruze perimetrů." -#: src/libslic3r/PrintConfig.cpp:57 +#: src/libslic3r/PrintConfig.cpp:73 msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print." msgstr "Toto nastavení řídí výšku (a tedy výsledný počet) řezů/vrstev. Tenčí vrstva poskytuje lepší přesnost, ale tiskne se déle." -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "Toto nastavení vyjadřuje maximální rychlost ventilátoru." -#: src/libslic3r/PrintConfig.cpp:1216 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "Toto nastavení představuje minimální hodnotu PWM, kterou ventilátor potřebuje, aby pracoval." -#: src/libslic3r/PrintConfig.cpp:1801 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "This start procedure is inserted at the beginning, after any printer start gcode (and after any toolchange to this filament in case of multi-material printers). This is used to override settings for a specific filament. If PrusaSlicer detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Tento kód je vložen na začátek tisku. Jakmile tiskárna začne zpracovávat gcode (a po jakékoliv změně extruderu na tento filament v případě multimateriálového tisku). Slouží k přepsání nastavení pro konkrétní filament. Pokud PrusaSlicer detekuje příkazy M104, M109, M140 nebo M190 v uživatelsky definovaném kódu, tyto příkazy nebudou automaticky připojeny, takže si můžete přizpůsobit pořadí příkazů předehřevu a dalších vlastních akcí. Také můžete přidávat zástupné proměnné pro veškeré nastavení PrusaSliceru, takže můžete vložit příkaz “M109 S[first_layer_temperature]” kamkoliv chcete. Pokud máte tiskárnu s více extrudery, G-code je zpracováván v pořadí extruderů." -#: src/libslic3r/PrintConfig.cpp:1786 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If PrusaSlicer detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Tento kód je vložen na začátek tisku. Po okamžiku dosažení požadované teploty podložky a začátku nahřívání extruderu a před dokončení předehřevu trysky. Pokud PrusaSlicer detekuje příkazy M104, M190 v uživatelsky definovaném kódu, tyto příkazy nebudou automaticky připojeny, takže si můžete přizpůsobit pořadí příkazů předehřevu a dalších vlastních akcí. Také můžete přidávat zástupné proměnné pro veškeré nastavení PrusaSliceru, takže můžete vložit příkaz “M109 S[first_layer_temperature]” kamkoliv chcete." -#: src/libslic3r/PrintConfig.cpp:664 +#: src/libslic3r/PrintConfig.cpp:695 msgid "This string is edited by RammingDialog and contains ramming specific parameters." msgstr "This string is edited by RammingDialog and contains ramming specific parameters." -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." msgstr "Tato hodnota bude přidána (nebo odečtena) ze všech souřadnic Z ve výstupním G-code. Používá se ke kompenzování špatné pozice endstopu Z. Například pokud endstop 0 skutečně ponechá trysku 0,3 mm daleko od tiskové podložky, nastavte hodnotu -0,3 (nebo dolaďte svůj koncový doraz)." -#: src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." msgstr "Tento vektor ukládá potřebné objemy pro změnu z/na každý extruder používaný na čistící věži. Tyto hodnoty jsou použity pro zjednodušení vytvoření celkových objemů čištění níže." -#: src/slic3r/GUI/UpdateDialogs.cpp:155 -#, possible-c-format -msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "Tato verze %s není kompatibilní se současně nainstalovanými balíčky nastavení.\nTato situace nejspíše nastala spuštěním starší verze %s po používání novější verze.\n\nMůžete buď ukončit %s a zkusit to znovu s novou verzí, nebo můžete znovu spustit výchozí konfiguraci. Před instalací kompatibilního nastavení s touto verzí %s dojde k vytvoření zálohy současné konfigurace." +#: src/slic3r/GUI/UpdateDialogs.cpp:216 +#, c-format +msgid "" +"This version of %s is not compatible with currently installed configuration bundles.\n" +"This probably happened as a result of running an older %s after using a newer one.\n" +"\n" +"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "" +"Tato verze %s není kompatibilní se současně nainstalovanými balíčky nastavení.\n" +"Tato situace nejspíše nastala spuštěním starší verze %s po používání novější verze.\n" +"\n" +"Můžete buď ukončit %s a zkusit to znovu s novou verzí, nebo můžete znovu spustit výchozí konfiguraci. Před instalací kompatibilního nastavení s touto verzí %s dojde k vytvoření zálohy současné konfigurace." -#: src/libslic3r/PrintConfig.cpp:2284 +#: src/libslic3r/PrintConfig.cpp:2449 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Aplikuje gamma korekci na rastrové 2D polygony. Hodnota nula znamená nastavení prahové hodnoty doprostřed. Toto chování eliminuje antialiasing bez ztráty otvorů v polygonech." -#: src/libslic3r/PrintConfig.cpp:1994 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "Vlákna" -#: src/libslic3r/PrintConfig.cpp:1995 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Vlákna jsou používána pro paralelizaci časově náročnějších úloh. Optimální počet vláken je mírně nad počtem dostupných jader/procesorů." -#: src/slic3r/GUI/Tab.cpp:2052 +#: src/slic3r/GUI/Tab.cpp:2091 msgid "Tilt" msgstr "Náklon" -#: src/slic3r/GUI/Tab.cpp:2053 +#: src/slic3r/GUI/Tab.cpp:2092 msgid "Tilt time" msgstr "Doba náklonu" @@ -7362,158 +8378,190 @@ msgstr "Doba náklonu" msgid "Time" msgstr "Čas" -#: src/libslic3r/PrintConfig.cpp:655 +#: src/libslic3r/PrintConfig.cpp:687 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Doba, po kterou firmware tiskárny (nebo jednotka Multi Material 2.0) zavádí nový filament během jeho výměny (při provádění kódu T). Tento čas je přidán k celkové době tisku pomocí G-code odhadovače tiskového času." -#: src/libslic3r/PrintConfig.cpp:670 +#: src/libslic3r/PrintConfig.cpp:702 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Doba, po kterou firmware tiskárny (nebo jednotka Multi Material 2.0) vysouvá filament během jeho výměny (při provádění kódu T). Tento čas je přidán k celkové době tisku pomocí G-code odhadovače tiskového času." -#: src/libslic3r/PrintConfig.cpp:2242 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "Doba trvání rychlého náklonu" -#: src/libslic3r/PrintConfig.cpp:2251 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "Doba trvání pomalého náklonu" -#: src/libslic3r/PrintConfig.cpp:610 +#: src/libslic3r/PrintConfig.cpp:641 msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Doba čekání po vysunutí filamentu. Může pomoci ke spolehlivé změně extruderu s flexibilními materiály, které potřebují více času ke smrštění na původní rozměry." -#: src/slic3r/GUI/Tab.cpp:916 +#: src/slic3r/GUI/DoubleSlider.cpp:962 +msgid "To add another code use Ctrl + Left click" +msgstr "Chcete-li přidat další kód, použijte Ctrl + Levé kliknutí" + +#: src/slic3r/GUI/DoubleSlider.cpp:963 +msgid "To add another code use Right click" +msgstr "Pro přidání dalšího kódu klikněte pravým tlačítkem myši" + +#: src/slic3r/GUI/Tab.cpp:968 msgid "To do that please specify a new name for the preset." msgstr "Chcete-li akci provést, prosím nejdříve zadejte nový název přednastavení." #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" +msgid "" +"To except of redundant tool manipulation, \n" +"Color change(s) for unused extruder(s) was(were) deleted" msgstr "S výjimkou nadbytečné manipulace s nástrojem byly změny barvy nepoužitého extruderu odstraněny" -#: src/slic3r/GUI/Plater.cpp:2966 +#: src/slic3r/GUI/Plater.cpp:4023 msgid "To objects" -msgstr "Objektům" +msgstr "Na objekty" -#: src/slic3r/GUI/Plater.cpp:2968 +#: src/slic3r/GUI/Plater.cpp:4025 msgid "To parts" msgstr "Na části" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:212 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 +#, c-format msgid "Toggle %c axis mirroring" msgstr "Přepnout zrcadlení podle osy %c" -#: src/libslic3r/Zipper.cpp:37 +#: src/libslic3r/Zipper.cpp:34 msgid "too many files" msgstr "příliš mnoho souborů" -#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315 -#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404 +#: src/libslic3r/SLAPrintSteps.cpp:154 +msgid "Too much overlapping holes." +msgstr "Příliš mnoho překrývajících se otvorů." + +#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 +#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 +#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Nástroj" -#: src/slic3r/GUI/WipeTowerDialog.cpp:240 +#: src/slic3r/GUI/WipeTowerDialog.cpp:276 msgid "Tool #" msgstr "Nástroj #" -#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006 +#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code pro výměnu nástroje" -#: src/slic3r/GUI/Tab.cpp:1530 +#: src/slic3r/GUI/Tab.cpp:1493 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parametry při výměně (Multi Material s jedním extruderem)" #. TRN To be shown in the main menu View->Top -#: src/slic3r/GUI/MainFrame.cpp:522 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "Shora" -#: src/libslic3r/PrintConfig.cpp:388 +#: src/slic3r/GUI/PresetHints.cpp:300 +msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "Nápověda pro tloušťku vrchní / spodní skořepiny: Není k dipozici z důvodu neplatné výšky vrstvy." + +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "Vzor výplně horní vrstvy" -#: src/slic3r/GUI/PresetHints.cpp:189 +#: src/slic3r/GUI/PresetHints.cpp:319 +msgid "Top is open." +msgstr "Horní část je otevřená." + +#: src/slic3r/GUI/PresetHints.cpp:313 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "Tloušťka vrchní skořepiny je %1% mm při výšce vrstvy %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" msgstr "vrchní plná výplň" -#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017 -#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Vrchní plné výplně" -#: src/libslic3r/PrintConfig.cpp:2046 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" msgstr "Vrchních plných vrstev" -#: src/slic3r/GUI/MainFrame.cpp:522 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "Pohled svrchu" -#: src/slic3r/GUI/WipeTowerDialog.cpp:247 +#: src/slic3r/GUI/WipeTowerDialog.cpp:285 msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded." msgstr "Celkový objem čištění je spočítán jako součet dvou hodnot níže v závislosti na tom, které extrudery jsou zavedeny/vyjmuty." -#: src/slic3r/GUI/WipeTowerDialog.cpp:84 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 msgid "Total rammed volume" msgstr "Celkový objem rapidní extruze" -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 +#: src/slic3r/GUI/WipeTowerDialog.cpp:83 msgid "Total ramming time" msgstr "Celkový čas rapidní extruze" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:516 msgid "Translate" msgstr "Posunout" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Translace" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051 +#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Rychloposun" -#: src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "Trojúhelníky" -#: src/libslic3r/PrintConfig.cpp:3059 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Pokuste se opravit nemanifoldní meshe (tato možnost je implicitně přidána vždy, když potřebujeme řezat model)." -#: src/libslic3r/PrintConfig.cpp:1397 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "Typ tiskárny." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2549 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Type:" msgstr "Typ:" -#: src/libslic3r/Zipper.cpp:35 +#: src/slic3r/GUI/Plater.cpp:3436 +msgid "Unable to reload:" +msgstr "Nelze znovu načíst:" + +#: src/libslic3r/Zipper.cpp:32 msgid "undefined error" msgstr "nedefinovaná chyba" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3609 -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Zpět" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "%1$d Akce Zpět" msgstr[1] "%1$d Akce Zpět" msgstr[2] "%1$d Akcí Zpět" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Undo History" msgstr "Historie operací Zpět" -#: src/libslic3r/Zipper.cpp:59 +#: src/libslic3r/Zipper.cpp:56 msgid "unexpected decompressed size" msgstr "neočekávaná dekomprimovaná velikost" @@ -7521,96 +8569,108 @@ msgstr "neočekávaná dekomprimovaná velikost" msgid "Unknown" msgstr "Neznámý" -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 msgid "Unknown error occured" msgstr "Došlo k neznámé chybě" -#: src/slic3r/GUI/WipeTowerDialog.cpp:234 +#: src/slic3r/GUI/WipeTowerDialog.cpp:263 msgid "unloaded" msgstr "vyjmuto" -#: src/libslic3r/PrintConfig.cpp:591 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "Rychlost vysunutí" -#: src/libslic3r/PrintConfig.cpp:600 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "Počáteční rychlost vysouvání filamentu" -#: src/slic3r/GUI/Tab.cpp:3069 +#: src/slic3r/GUI/Tab.cpp:3240 msgid "UNLOCKED LOCK" msgstr "ODEMČENÝ ZÁMEK" -#: src/slic3r/GUI/Tab.cpp:3362 -msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." +#: src/slic3r/GUI/Tab.cpp:3266 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or default) values." msgstr "Ikona ODEMKNUTÉHO ZÁMKU indikuje, že některá nastavení byla změněna a nejsou shodná se systémovými (výchozími) hodnotami pro danou skupinu nastavení. Klikněte pro reset všech nastavení aktuální skupiny nastavení na systémové hodnoty." -#: src/slic3r/GUI/Tab.cpp:3377 -msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." -msgstr "Ikona ODEMKNUTÉHO ZÁMKU indikuje, že se hodnota změnila a není shodná se systémovou (nebo výchozí) hodnotou.\nKlikněte pro reset současné hodnoty na systémovou hodnotu." +#: src/slic3r/GUI/Tab.cpp:3281 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"Ikona ODEMKNUTÉHO ZÁMKU indikuje, že se hodnota změnila a není shodná se systémovou (nebo výchozí) hodnotou.\n" +"Klikněte pro reset současné hodnoty na systémovou hodnotu." -#: src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Unretractions" msgstr "Deretrakce" -#: src/slic3r/GUI/Tab.cpp:2785 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "Unsaved Changes" msgstr "Neuložené Změny" -#: src/slic3r/GUI/GUI_App.cpp:790 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "Neuložená přednastavení" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 msgid "Unselect gizmo / Clear selection" msgstr "Zrušit gizmo / Zrušit výběr" -#: src/libslic3r/Zipper.cpp:63 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "Zrušit gizmo nebo zrušit výběr" + +#: src/libslic3r/Zipper.cpp:60 msgid "unsupported central directory size" msgstr "nepodporovaná velikost centrálního adresáře" -#: src/libslic3r/Zipper.cpp:43 +#: src/libslic3r/Zipper.cpp:40 msgid "unsupported encryption" msgstr "nepodporované šifrování" -#: src/libslic3r/Zipper.cpp:45 +#: src/libslic3r/Zipper.cpp:42 msgid "unsupported feature" msgstr "nepodporovaná funkce" -#: src/libslic3r/Zipper.cpp:41 +#: src/libslic3r/Zipper.cpp:38 msgid "unsupported method" msgstr "nepodporovaná metoda" -#: src/libslic3r/Zipper.cpp:53 +#: src/libslic3r/Zipper.cpp:50 msgid "unsupported multidisk archive" msgstr "nepodporovaný multidisk archiv" -#: src/slic3r/GUI/GUI_App.cpp:305 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "Nepodporovaná verze OpenGL" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 msgid "Unsupported selection" msgstr "Nepodporovaný výběr" -#: src/libslic3r/GCode/PreviewData.cpp:495 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:960 +#, c-format msgid "up to %.2f mm" msgstr "do % .2f mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/UpdateDialogs.cpp:38 msgid "Update available" msgstr "Je dostupná aktualizace" -#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 msgid "Update built-in Presets automatically" msgstr "Aktualizovat vestavěné přednastavení automaticky" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Updates" msgstr "Aktualizace" -#: src/slic3r/GUI/ConfigWizard.cpp:426 +#: src/slic3r/GUI/ConfigWizard.cpp:785 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Aktualizace nejsou nikdy nainstalovány bez vědomí uživatele a nikdy nepřepíšou upravená uživatelská nastavení." @@ -7618,11 +8678,11 @@ msgstr "Aktualizace nejsou nikdy nainstalovány bez vědomí uživatele a nikdy msgid "Upgrade" msgstr "Aktualizovat" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" msgstr "Nahrát firmware do tiskárny s Arduinem" -#: src/slic3r/Utils/FlashAir.cpp:60 +#: src/slic3r/Utils/FlashAir.cpp:58 msgid "Upload not enabled on FlashAir card." msgstr "Na kartě FlashAir není nahrávání povoleno." @@ -7630,32 +8690,32 @@ msgstr "Na kartě FlashAir není nahrávání povoleno." msgid "Upload to Printer Host with the following filename:" msgstr "Nahrát soubor do tiskového serveru se jménem:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:229 +#: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "Nahrávání" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 msgid "Upper Layer" msgstr "Vyšší vrstva" -#: src/slic3r/GUI/Tab.cpp:1873 +#: src/slic3r/GUI/Tab.cpp:1898 msgid "USB/Serial connection" msgstr "USB/Sériové připojení" -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "USB/sériový port pro připojení tiskárny." -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 +#: src/slic3r/GUI/DoubleSlider.cpp:1115 msgid "Use another extruder" msgstr "Použít jiný extruder" -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:147 msgid "Use custom size for toolbar icons" msgstr "Použít vlastní velikost ikon na panelu nástrojů" -#: src/libslic3r/PrintConfig.cpp:2060 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "Použít retrakce z firmwaru" @@ -7663,51 +8723,59 @@ msgstr "Použít retrakce z firmwaru" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Pokud je to nutné, použijte pro oddělení složek lomítko ( / )." -#: src/libslic3r/PrintConfig.cpp:2515 +#: src/slic3r/GUI/Preferences.cpp:129 +msgid "Use free camera" +msgstr "Scéna v režimu „free camera“" + +#: src/libslic3r/PrintConfig.cpp:2771 msgid "Use pad" msgstr "Použít podložku" -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "Use perspective camera" -msgstr "Perspektivní zobrazení" +msgstr "Perspektivní zobrazení scény" -#: src/libslic3r/PrintConfig.cpp:2067 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "Použít relativní E vzdálenosti" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "Use Retina resolution for the 3D scene" msgstr "Pro 3D scénu použít rozlišení Retina" -#: src/libslic3r/PrintConfig.cpp:508 +#: src/libslic3r/PrintConfig.cpp:540 msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)." msgstr "Touto volbou nastavíte písmeno osy přidružené k extruderu tiskárny (obvykle E, ale některé tiskárny používají A)." -#: src/libslic3r/PrintConfig.cpp:1807 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "Use this setting to rotate the support material pattern on the horizontal plane." msgstr "Toto nastavení použijte pro horizontální otočení vzoru." -#: src/libslic3r/PrintConfig.cpp:2074 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "Použít volumetrickou hodnotu E" -#: src/slic3r/GUI/Plater.cpp:214 +#: src/slic3r/GUI/DoubleSlider.cpp:1139 +msgid "used" +msgstr "použitý" + +#: src/slic3r/GUI/Plater.cpp:239 msgid "Used Filament (g)" msgstr "Použito Filamentu (g)" -#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041 +#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 msgid "Used Filament (m)" msgstr "Použito Filamentu (m)" -#: src/slic3r/GUI/Plater.cpp:213 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Filament (mm³)" msgstr "Použito Filamentu (mm³)" -#: src/slic3r/GUI/Plater.cpp:1015 +#: src/slic3r/GUI/Plater.cpp:1188 msgid "Used Material (ml)" msgstr "Použitý materiál (ml)" -#: src/slic3r/GUI/Plater.cpp:215 +#: src/slic3r/GUI/Plater.cpp:240 msgid "Used Material (unit)" msgstr "Použito materiálu (jednotka)" @@ -7715,117 +8783,117 @@ msgstr "Použito materiálu (jednotka)" msgid "User" msgstr "Uživatel" -#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071 -#: src/slic3r/GUI/PresetBundle.cpp:1558 +#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 +#: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "Uživatelská přednastavení" -#: src/libslic3r/Zipper.cpp:93 +#: src/libslic3r/Zipper.cpp:90 msgid "validation failed" msgstr "validace selhala" -#: src/slic3r/GUI/ButtonsDescription.cpp:41 +#: src/slic3r/GUI/ButtonsDescription.cpp:36 msgid "Value is the same as the system value" msgstr "Hodnota je shodná se systémovou hodnotou" -#: src/slic3r/GUI/ButtonsDescription.cpp:58 +#: src/slic3r/GUI/ButtonsDescription.cpp:53 msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Hodnota byla změněna a není shodná se systémovou hodnotou nebo naposled uloženým přednastavením" -#: src/slic3r/GUI/Tab.cpp:2151 +#: src/slic3r/GUI/Tab.cpp:2198 msgid "Values in this column are for Normal mode" msgstr "Hodnoty v tomto sloupci jsou pro Normální režim" -#: src/slic3r/GUI/Tab.cpp:2157 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Stealth mode" msgstr "Hodnoty v tomto sloupci jsou pro Tichý režim" -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 msgid "Variable layer height" msgstr "Variabilní výška vrstvy" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1713 msgid "Variable layer height - Adaptive" msgstr "Variabilní výška vrstev - Adaptivní" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:604 msgid "Variable layer height - Manual edit" msgstr "Variabilní výška vrstev - Ruční editace" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1705 msgid "Variable layer height - Reset" msgstr "Variabilní výška vrstev - Reset" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1721 msgid "Variable layer height - Smooth all" msgstr "Variabilní výška vrstev - Vyhladit vše" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "variants" msgstr "varianty" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 msgid "vendor" msgstr "prodejce" -#: src/slic3r/GUI/ConfigWizard.cpp:536 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "Prodejce:" -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "Komentáře do G-code" -#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "Verze" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 msgid "version" msgstr "verze" -#: src/slic3r/GUI/Tab.cpp:1002 +#: src/slic3r/GUI/Tab.cpp:1055 msgid "Vertical shells" msgstr "Svislé stěny" -#: src/slic3r/GUI/GUI_Preview.cpp:209 +#: src/slic3r/GUI/GUI_Preview.cpp:220 msgid "View" msgstr "Zobrazení" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:814 msgid "View mode" msgstr "Režim zobrazení" -#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867 -#: src/libslic3r/SLAPrint.cpp:915 +#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 +#: src/libslic3r/SLAPrintSteps.cpp:430 msgid "Visualizing supports" msgstr "Vizualizace podpěr" -#: src/slic3r/GUI/Plater.cpp:138 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Volume" msgstr "Obsah" -#: src/slic3r/GUI/WipeTowerDialog.cpp:248 +#: src/slic3r/GUI/WipeTowerDialog.cpp:286 msgid "Volume to purge (mm³) when the filament is being" msgstr "Objem k vyčištění (mm³) pokud je filament" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Volumes in Object reordered" msgstr "Změna pořadí Těles v Objektu" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "Volumetrický" -#: src/slic3r/GUI/Tab.cpp:1800 +#: src/slic3r/GUI/Tab.cpp:1593 msgid "Volumetric flow hints not available" msgstr "Doporučení pro objemový průtok nejsou k dispozici" -#: src/slic3r/GUI/GUI_Preview.cpp:216 +#: src/slic3r/GUI/GUI_Preview.cpp:228 msgid "Volumetric flow rate" msgstr "Objemový průtok" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "Objemový průtok (mm³/s)" @@ -7833,340 +8901,389 @@ msgstr "Objemový průtok (mm³/s)" msgid "Volumetric speed" msgstr "Objemová rychlost" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283 -#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328 +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Wall thickness" +msgstr "Tloušťka stěny" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 +#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Varování" -#: src/slic3r/GUI/ConfigWizard.cpp:294 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "Vítejte" -#: src/slic3r/GUI/ConfigWizard.cpp:296 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:427 +#, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Vítejte v %s Konfiguračním Asistentu" -#: src/slic3r/GUI/ConfigWizard.cpp:298 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:429 +#, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Vítejte v %s Konfiguračním průvodci" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:99 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Pokud je zaškrtnuto, přednastavení tisku a filamentu se zobrazují v editoru přednastavení, i když jsou označeny jako nekompatibilní s aktivní tiskárnou" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "při tisku" -#: src/libslic3r/PrintConfig.cpp:217 +#: src/libslic3r/PrintConfig.cpp:243 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Připnutí překrývajících se objektů jeden k druhému při Multimateriálovém tisku. (Druhá část se připne k první, třetí část k první a druhé, atd)." -#: src/libslic3r/PrintConfig.cpp:269 +#: src/libslic3r/PrintConfig.cpp:295 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Při tisku více objektů nebo kopií tiskárna kompletně dokončí jeden objekt, předtím než začne tisknout druhý (začíná od spodní vrstvy). Tato vlastnost je výhodná z důvodů snížení rizika zničených výtisků. Slic3r by měl varovat při možné kolizi extruderu s objektem a zabránit mu, přesto doporučujeme obezřetnost." -#: src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:891 msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height." msgstr "Při tisku s velmi nízkými výškami vrstev můžete stále vytisknout tlustší spodní vrstvu pro zlepšení přilnavosti a toleranci pro nedokonale zkalibrovanou tiskovou podložku. Může být vyjádřeno jako absolutní hodnota nebo jako procento (například: 150%) z výchozí výšky vrstvy." -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Při výměně nástroje se spustí retrakce a filament se zatáhne zpět o zadané množství (délka se měří na surovém filamentu, než vstoupí do extruderu)." -#: src/libslic3r/PrintConfig.cpp:1475 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Při spuštění retrakce se filament zatáhne zpět o zadané množství (délka se měří na surovém filamentu, než vstoupí do extruderu)." -#: src/libslic3r/PrintConfig.cpp:1347 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." msgstr "Když je hodnota nastavena na nulu, vzdálenost o kterou se filament posune během zavádění, je stejná, jako zpětný posun během vysouvání filamentu. Je-li hodnota kladná, je filament posunut více,. Je-li hodnota záporná, posun při zavádění je kratší než při vysouvání." -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow." msgstr "Pokud jsou všechna ostatní nastavení rychlosti na hodnotě nula, Slic3r automaticky vypočítá optimální rychlost pro udržení konstantního tlaku v extruderu. Toto experimentální nastavení slouží k nastavení nejvyšší rychlosti tisku, kterou chcete povolit." -#: src/libslic3r/PrintConfig.cpp:1527 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Když je retrakce kompenzována po změně nástroje, extruder vytlačuje toto další množství filamentu." -#: src/libslic3r/PrintConfig.cpp:1519 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Když je retrakce kompenzována po rychloposunu, extruder vytlačuje toto další množství filamentu. Toto nastavení je zřídkakdy potřeba." -#: src/slic3r/GUI/Tab.cpp:3076 +#: src/slic3r/GUI/Tab.cpp:3247 msgid "WHITE BULLET" msgstr "BÍLÁ TEČKA" -#: src/slic3r/GUI/Tab.cpp:3365 +#: src/slic3r/GUI/Tab.cpp:3269 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "Ikona BÍLÉ TEČKY indikuje nesystémové (nebo jiné než výchozí) přednastavení." -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "Ikona BÍLÉ TEČKY indikuje, že nastavení jsou shodná s naposledy uloženým přednastavením pro danou skupinu nastavení." -#: src/slic3r/GUI/Tab.cpp:3126 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "Ikona BÍLÉ TEČKY indikuje, že je hodnota shodná s naposledy uloženým přednastavením." -#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Šířka" -#: src/libslic3r/GCode/PreviewData.cpp:398 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "Šířka (mm)" -#: src/libslic3r/PrintConfig.cpp:2389 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "Width from the back sphere center to the front sphere center" msgstr "Šířka od středu zadní koule ke středu přední koule" -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "Šířka čistící věže" -#: src/libslic3r/PrintConfig.cpp:2761 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Šířka spojek, které spojují objekt s vygenerovanou podložkou." -#: src/libslic3r/PrintConfig.cpp:2203 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "Šířka displeje" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "bude vždy běžet na %1%%%" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "bude vypnut." -#: src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction." msgstr "Vytvoří offset každé vrstvy v rovině XY. Kladná hodnota - offset směrem ven, plocha polygonu se zvětší. Záporná hodnota - offset směrem dovnitř, plocha polygonu se zmenší." -#: src/libslic3r/PrintConfig.cpp:2160 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "Vyčistit do tohoto objektu" -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "Vyčištění do výplně tohoto objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:564 src/libslic3r/PrintConfig.cpp:2202 -#: src/libslic3r/PrintConfig.cpp:2210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 +#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Možnosti čištění" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130 -#: src/libslic3r/GCode/PreviewData.cpp:174 +#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Čistící věž" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "wipe tower" msgstr "čistící věž" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "Čistící Věž" -#: src/slic3r/GUI/WipeTowerDialog.cpp:141 +#: src/slic3r/GUI/WipeTowerDialog.cpp:142 msgid "Wipe tower - Purging volume adjustment" msgstr "Čistící věž - Úprava objemu čištění" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1490 msgid "Wipe tower parameters" msgstr "Parametry čistící věže" -#: src/libslic3r/PrintConfig.cpp:2144 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "Úhel natočení čistící věže" -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "Úhel natočení čistící věže s ohledem na osu X." -#: src/libslic3r/PrintConfig.cpp:2092 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "Očistit při retrakci" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "s objemovou rychlostí" -#: src/libslic3r/PrintConfig.cpp:1460 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement." msgstr "U bowdenových extrudérů může být vhodné provést rychlé retrakce než se spustí očištění." -#: src/libslic3r/PrintConfig.cpp:1969 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" msgstr "Pouzdro okolo podpěr" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:62 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:105 msgid "World coordinates" msgstr "Světové souřadnice" -#: src/slic3r/GUI/UpdateDialogs.cpp:76 -msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "Přejete si spustit instalaci?\n\nNejprve bude provedena kompletní záloha nastavení. V případě problémů s novou verzí ji bude možné kdykoliv obnovit.\n\nAktualizované balíčky nastavení:" +#: src/slic3r/GUI/UpdateDialogs.cpp:92 +msgid "" +"Would you like to install it?\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"Přejete si spustit instalaci?\n" +"\n" +"Nejprve bude provedena kompletní záloha nastavení. V případě problémů s novou verzí ji bude možné kdykoliv obnovit.\n" +"\n" +"Aktualizované balíčky nastavení:" -#: src/libslic3r/Zipper.cpp:95 +#: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "zpětné volání se nezdařilo" -#: src/libslic3r/PrintConfig.cpp:2993 +#: src/libslic3r/PrintConfig.cpp:3367 msgid "Write information about the model to the console." msgstr "Vypsat informace o modelu do konsole." -#: src/slic3r/Utils/Duet.cpp:148 +#: src/slic3r/Utils/Duet.cpp:131 msgid "Wrong password" msgstr "Chybné heslo" -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "X souřadnice levého předního rohu čistící věže" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" msgstr "XY vzdálenost mezi objektem a podpěrami" -#: src/libslic3r/PrintConfig.cpp:1795 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." msgstr "XY vzdálenost mezi objektem a podpěrami. Pokud je vyjádřeno procenty (například 50%), bude vypočítána z šířky perimetru." -#: src/libslic3r/PrintConfig.cpp:2174 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" msgstr "Kompenzace XY rozměrů" -#: src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Y souřadnice levého předního rohu čistící věže" -#: src/slic3r/GUI/Plater.cpp:992 +#: src/slic3r/GUI/Plater.cpp:1167 msgid "Yes" msgstr "Ano" -#: src/libslic3r/PrintConfig.cpp:1252 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "You can put here your personal notes. This text will be added to the G-code header comments." msgstr "Zde můžete zadat své osobní poznámky. Tento text bude přidán do komentáře záhlaví G code." -#: src/libslic3r/PrintConfig.cpp:557 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "Zde můžete vložit poznámky týkající se filamentu." -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "Zde můžete uvést poznámky týkající se tiskárny." -#: src/libslic3r/PrintConfig.cpp:2332 +#: src/libslic3r/PrintConfig.cpp:2570 msgid "You can put your notes regarding the SLA print material here." msgstr "Zde můžete vkládat své poznámky týkající se tiskového materiálu SLA." -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:350 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Nastavením počtu prvních vrstev s vypnutým chlazením pro nezhoršování přilnavosti." -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "V této šabloně můžete použít všechny možnosti konfigurace jako proměnné. Můžete například použít: [layer_height], [fill_density] etc. Také můžete použít [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 msgid "You can't change a type of the last solid part of the object." msgstr "Nelze změnit typ poslední plné části objektu." -#: src/slic3r/GUI/Plater.cpp:2243 -msgid "You can't load SLA project if there is at least one multi-part object on the bed" -msgstr "Nemůžete načíst SLA projekt, pokud je na tiskové ploše vícedílný objekt" - -#: src/slic3r/GUI/Plater.cpp:1746 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2374 +#, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Nemůžete přidat objekt(y) z %s, protože jeden nebo některé z nich je(jsou) vícedílné" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:565 +#: src/slic3r/GUI/Plater.cpp:2295 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "Nelze načíst SLA projekt s objektem na podložce, který je složený z více částí. " + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" msgstr "Nemůžete použít nestejnoměrnou změnu měřítka pro více vybraných objektů/částí" -#: src/slic3r/GUI/ConfigWizard.cpp:1637 +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" msgstr "Pro vybrané tiskárny musíte vybrat alespoň jeden filament" -#: src/slic3r/GUI/ConfigWizard.cpp:1643 +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "Pro vybrané tiskárny musíte vybrat alespoň jeden materiál" -#: src/slic3r/GUI/GUI_App.cpp:300 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "Možná budete muset aktualizovat ovladač grafické karty." -#: src/slic3r/GUI/Preferences.cpp:130 -#, possible-c-format +#: src/slic3r/GUI/Preferences.cpp:176 +#, c-format msgid "You need to restart %s to make the changes effective." msgstr "Chcete-li provést změny, musíte restartovat aplikaci %s." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 +#, c-format msgid "You started your selection with %s Item." msgstr "Začali jste výběr s položkou %s." -#: src/slic3r/GUI/MainFrame.cpp:772 +#: src/slic3r/GUI/DoubleSlider.cpp:1875 +msgid "Your current changes will delete all saved color changes." +msgstr "Vaše aktuálně provedené změny odstraní všechny uložené změny barev." + +#: src/slic3r/GUI/DoubleSlider.cpp:1896 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "Vaše aktuálně provedené změny odstraní všechny uložené změny extruderu (nástroje)." + +#: src/slic3r/GUI/MainFrame.cpp:913 msgid "Your file was repaired." msgstr "Váš soubor byl opraven." -#: src/slic3r/GUI/Plater.cpp:1874 +#: src/slic3r/GUI/Plater.cpp:2512 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Váš objekt se zdá být příliš velký, takže byl automaticky zmenšen, aby se vešel na tiskovou podložku." -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" msgstr "Odsazení Z" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." -msgstr "Nulová výška první vrstvy není platná.\n\nVýška první vrstvy bude resetována na 0.01." +msgid "" +"Zero first layer height is not valid.\n" +"\n" +"The first layer height will be reset to 0.01." +msgstr "" +"Nulová výška první vrstvy není platná.\n" +"\n" +"Výška první vrstvy bude resetována na 0.01." #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." -msgstr "Nulová výška vrstvy není platná.\n\nVýška vrstvy bude resetována na 0.01." +msgid "" +"Zero layer height is not valid.\n" +"\n" +"The layer height will be reset to 0.01." +msgstr "" +"Nulová výška vrstvy není platná.\n" +"\n" +"Výška vrstvy bude resetována na 0.01." -#: src/libslic3r/PrintConfig.cpp:2416 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +#: src/slic3r/GUI/Mouse3DController.cpp:326 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +msgid "Zoom" +msgstr "Zoom" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Zoom in" msgstr "Přiblížit" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Zoom out" msgstr "Oddálit" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Zoom to all objects in scene, if none selected" msgstr "Pohled na všechny objekty ve scéně, pokud žádný není vybraný" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Zoom to Bed" msgstr "Pohled na tiskovou plochu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"Pohled na označený objekt, nebo na všechny objekty ve scéně,\n" +"pokud není vybraný žádný objekt" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 msgid "Zoom to selected object" msgstr "Pohled na vybraný objekt" -#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733 -#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580 -#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962 -#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463 +#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 +#: src/libslic3r/PrintConfig.cpp:2839 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627 +#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 msgid "°C" msgstr "°C" diff --git a/resources/localization/de/PrusaSlicer.mo b/resources/localization/de/PrusaSlicer.mo index 475772ca1a01d811dfbd7842f48e63f46db1d1d6..77d5f81b8f871e4de308fe88f40e6468d3841eb9 100644 GIT binary patch delta 65824 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 F{|^szF_8cO delta 46974 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" msgstr "&Weiter >" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "Pr&ojekt öffnen" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "Einfügen (&P)" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" msgstr "Druck&platte" -#: src/slic3r/GUI/GUI_App.cpp:665 +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "Einstellungen (&P)" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "&Beenden" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "&Redo" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "STL-Datei &reparieren" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "Projekt &sichern" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "Alle&s auswählen" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "&Undo" -#: src/slic3r/GUI/MainFrame.cpp:577 +#: src/slic3r/GUI/MainFrame.cpp:726 msgid "&View" msgstr "&Anzeige" -#: src/slic3r/GUI/MainFrame.cpp:576 +#: src/slic3r/GUI/MainFrame.cpp:725 msgid "&Window" msgstr "&Fenster" -#: src/slic3r/GUI/ConfigWizard.cpp:574 src/slic3r/GUI/ConfigWizard.cpp:602 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(Alles)" -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(Minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "(Re)slice" msgstr "(Re)Slice" -#: src/slic3r/GUI/MainFrame.cpp:455 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(Re)Slice jetzt (&w)" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 msgid "(Unknown)" msgstr "(Unbekannt)" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid ") not found." msgstr ") nicht gefunden." -#: src/libslic3r/PrintConfig.cpp:1857 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (löslich)" -#: src/libslic3r/PrintConfig.cpp:1858 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0,2 (lösbar)" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:3074 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "3D editor view" msgstr "3D Editiermodus" -#: src/libslic3r/PrintConfig.cpp:804 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "3D Bienenwabe" -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:291 msgid "3Dconnexion settings" msgstr "3Dconnexion Einstellungen" -#: src/slic3r/GUI/Plater.cpp:3590 +#: src/slic3r/GUI/Plater.cpp:5068 #, possible-c-format msgid "3MF file exported to %s" msgstr "3MF Datei exportiert nach %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1092 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 msgid "< &Back" msgstr "< &Zurück" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:277 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Ein boolescher Ausdruck, der die Konfigurationswerte eines aktiven Druckprofils verwendet. Wenn dieser Ausdruck als wahr bewertet wird, wird dieses Profil als kompatibel mit dem aktiven Druckprofil angesehen." -#: src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:262 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Ein boolescher Ausdruck, der die Konfigurationswerte eines aktiven Druckerprofils verwendet. Wenn dieser Ausdruck als wahr bewertet wird, wird dieses Profil als kompatibel mit dem aktiven Druckerprofil angesehen." -#: src/slic3r/GUI/ConfigWizard.cpp:609 +#: src/slic3r/GUI/ConfigWizard.cpp:1035 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Ein Daumenwert ist 160 bis 230 °C für PLA, und 215 bis 250 °C für ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:623 +#: src/slic3r/GUI/ConfigWizard.cpp:1049 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." -msgstr "Ein Daumenwert ist 60 °C für PLA und 110 °C für ABS. Auf 0 setzen, falls kein beheiztes Bett vorhanden ist." +msgstr "Ein Daumenwert ist 60 °C für PLA und 110 °C für ABS. Auf 0 setzen, falls kein beheiztes Druckbett vorhanden ist." -#: src/slic3r/GUI/GLCanvas3D.cpp:721 +#: src/slic3r/GUI/GLCanvas3D.cpp:691 msgid "A toolpath outside the print area was detected" msgstr "Ein Werkzeugweg außerhalb des Druckbereichs wurde erkannt" -#: src/slic3r/GUI/AboutDialog.cpp:35 +#: src/slic3r/GUI/AboutDialog.cpp:199 #, possible-c-format msgid "About %s" msgstr "Über %s" -#: src/libslic3r/GCode/PreviewData.cpp:499 +#: src/slic3r/GUI/GLCanvas3D.cpp:964 #, possible-c-format msgid "above %.2f mm" msgstr "oberhalb %.2f mm" -#: src/libslic3r/PrintConfig.cpp:1499 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Über Z" -#: src/slic3r/GUI/Tab.cpp:1103 +#: src/slic3r/GUI/Tab.cpp:1166 msgid "Acceleration control (advanced)" msgstr "Beschleunigungskontrolle (fortgeschritten)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73 +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Accuracy" +msgstr "Genauigkeit" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 msgid "Activate" msgstr "Aktivieren" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43 msgid "Active" msgstr "Aktiv" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/DoubleSlider.cpp:1103 +msgid "active" +msgstr "aktiv" + +#: src/slic3r/GUI/GLCanvas3D.cpp:272 msgid "Adaptive" msgstr "Adaptiv" -#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237 +#: src/slic3r/GUI/Tab.cpp:243 msgid "Add a new printer" msgstr "Neuen Drucker hinzufügen" -#: src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Add a pad underneath the supported model" msgstr "Fügt eine Grundschicht unter das gestützte Modell" -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." -msgstr "Fügen Sie eine Sheath (eine einzelne Druckkontur) um die Basisschicht herum hinzu. Das macht das Stützmaterial zuverlässiger, aber auch schwieriger zu entfernen." +msgstr "Fügen Sie eine Sheath (eine einzelne Druckkontur) um die Basisschicht herum hinzu. Das macht die Stützstrukturen zuverlässiger, aber auch schwieriger zu entfernen." -#: src/slic3r/GUI/wxExtensions.cpp:3441 +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" +msgstr "Weiteren Code hinzufügen - Strg + Linksklick" + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" +msgstr "Weiteren Code hinzufügen - Rechtsklick" + +#: src/slic3r/GUI/DoubleSlider.cpp:1449 msgid "Add color change" -msgstr "Farbwechsel hinzufügen" +msgstr "Farbwechsel hinzufügen" -#: src/slic3r/GUI/wxExtensions.cpp:3435 +#: src/slic3r/GUI/DoubleSlider.cpp:1148 msgid "Add color change (%1%) for:" -msgstr "Farbwechsel (%1%) hinzufügen für:" +msgstr "Farbwechsel (%1%) hinzufügen für:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/DoubleSlider.cpp:959 +msgid "Add color change - Left click" +msgstr "Farbwechsel hinzufügen - Linksklick" + +#: src/slic3r/GUI/DoubleSlider.cpp:957 +msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" +msgstr "Farbwechsel hinzufügen - Linksklick für vordefinierte Farbe oder Shift + Linksklick für benutzerdefinierte Farbauswahl" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Add color change marker for current layer" msgstr "Fügt einen Farbwechselmarker der aktuellen Schicht hinzu" -#: src/slic3r/GUI/wxExtensions.cpp:3447 +#: src/slic3r/GUI/DoubleSlider.cpp:1462 msgid "Add custom G-code" msgstr "Benutzerdefinierten G-Code hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:245 msgid "Add detail" msgstr "Detail hinzufügen" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +msgid "Add drainage hole" +msgstr "Drainageloch hinzufügen" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 +msgid "Add extruder change - Left click" +msgstr "Extruderwechsel hinzufügen - Linksklick" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 msgid "Add extruder to sequence" msgstr "Extruder zur Sequenz hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1662 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 msgid "Add Generic Subobject" msgstr "Generische Subobjekt hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2584 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2613 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2631 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 msgid "Add Height Range" msgstr "Höhenbereich hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3463 +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 +#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 msgid "Add instance" msgstr "Kopie hinzufügen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 msgid "Add Instance of the selected object" msgstr "Kopie des gewählten Objektes hinzufügen" @@ -390,436 +437,452 @@ msgstr "Kopie des gewählten Objektes hinzufügen" msgid "Add layer range" msgstr "Schichtbereich hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1950 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 msgid "Add Layers" msgstr "Schichten hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1067 +#: src/slic3r/GUI/GUI_ObjectList.cpp:52 msgid "Add modifier" msgstr "Modifizierer hinzufügen" -#: src/libslic3r/PrintConfig.cpp:447 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." -msgstr "Fügen Sie bei Bedarf weitere Perimeter hinzu, um Spalten in schrägen Wänden zu vermeiden. Slic3r fügt immer wieder Perimeter hinzu, bis mehr als 70% der unmittelbar darüber liegenden Schleife unterstützt werden." +msgstr "Fügen Sie bei Bedarf weitere Perimeter hinzu, um Spalten in schrägen Wänden zu vermeiden. PrusaSlicer fügt immer wieder Perimeter hinzu, bis mehr als 70% der unmittelbar darüber liegenden Schleife unterstützt werden." -#: src/slic3r/GUI/Plater.cpp:3516 +#: src/slic3r/GUI/Plater.cpp:3949 msgid "Add one more instance of the selected object" msgstr "Eine weitere Kopie des gewählten Objekts hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1066 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1082 +#: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "Teil hinzufügen" -#: src/slic3r/GUI/wxExtensions.cpp:3444 +#: src/slic3r/GUI/DoubleSlider.cpp:1459 msgid "Add pause print" msgstr "Druckpause hinzufügen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 msgid "Add point" msgstr "Punkt hinzufügen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Add point to selection" msgstr "Punkt zur Auswahl hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 msgid "Add settings" msgstr "Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 msgid "Add Settings Bundle for Height range" msgstr "Höhenbreich Einstellungsbündel hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1191 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Object" msgstr "Objekt Einstellungsbündel hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1190 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 msgid "Add Settings Bundle for Sub-object" msgstr "Subobjekt Einstellungsbündel hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 msgid "Add Settings for Layers" msgstr "Schichten Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1128 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Object" msgstr "Objekt Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1127 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 msgid "Add Settings for Sub-object" msgstr "Subobjekt Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1676 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1922 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 msgid "Add Shape" -msgstr "Form hinzufügen" +msgstr "Form hinzufügen" -#: src/libslic3r/PrintConfig.cpp:382 +#: src/libslic3r/PrintConfig.cpp:409 msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)." -msgstr "Fügen Sie stabiles Infill in der Nähe von schrägen Flächen hinzu, um die vertikale Schalenstärke zu gewährleisten (obere und untere massive Schichten)." +msgstr "Fügen Sie massives Infill in der Nähe von schrägen Flächen hinzu, um die vertikale Schalenstärke zu gewährleisten (obere und untere massive Schichten)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1069 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:54 msgid "Add support blocker" msgstr "Stützblocker hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:53 msgid "Add support enforcer" msgstr "Stützverstärker hinzufügen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:531 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 msgid "Add support point" msgstr "Stützpunkt hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3392 +#: src/slic3r/GUI/GLCanvas3D.cpp:4516 msgid "Add..." msgstr "Hinzufügen..." -#: src/slic3r/GUI/PresetBundle.cpp:1683 +#: src/slic3r/GUI/PresetBundle.cpp:1697 msgid "Add/Remove filaments" msgstr "Filamente hinzufügen/entfernen" -#: src/slic3r/GUI/Preset.cpp:1102 +#: src/slic3r/GUI/Preset.cpp:1151 msgid "Add/Remove materials" msgstr "Materialien hinzufügen/entfernen" -#: src/slic3r/GUI/Tab.cpp:920 +#: src/slic3r/GUI/Preset.cpp:1153 +msgid "Add/Remove printers" +msgstr "Drucker hinzufügen/entfernen" + +#: src/slic3r/GUI/Tab.cpp:972 msgid "Additional information:" msgstr "Weitere Informationen:" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:59 msgid "Additional Settings" msgstr "Zusätzliche Einstellungen" -#: src/slic3r/GUI/ConfigWizard.cpp:431 +#: src/slic3r/GUI/ConfigWizard.cpp:790 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." -msgstr "Zusätzlich wird ein Momentaufnahme der gesamten Konfiguration als Sicherung erstellt, bevor ein Update durchgeführt wird." +msgstr "Zusätzlich wird eine Momentaufnahme der gesamten Konfiguration als Sicherung erstellt, bevor ein Update durchgeführt wird." #: src/slic3r/GUI/BonjourDialog.cpp:72 msgid "Address" msgstr "Adresse" -#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76 -#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026 -#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139 -#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515 -#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435 -#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 +#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 +#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 +#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 +#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 msgid "Advanced" msgstr "Erweiterte Einstellungen" -#: src/slic3r/GUI/ConfigWizard.cpp:786 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Advanced mode" msgstr "Fortgeschrittener Modus" -#: src/slic3r/GUI/GUI_App.cpp:675 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "Erweiterter Anzeigemodus" -#: src/slic3r/GUI/FirmwareDialog.cpp:803 +#: src/slic3r/GUI/FirmwareDialog.cpp:841 msgid "Advanced: Output log" msgstr "Fortgeschritten: Ausgabeprotokoll" -#: src/libslic3r/PrintConfig.cpp:636 +#: src/libslic3r/PrintConfig.cpp:668 msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." -msgstr "Nach einem Werkzeugwechsel ist die genaue Position des neu geladenen Filaments innerhalb der Düse möglicherweise nicht bekannt, und der Filamentdruck ist wahrscheinlich noch nicht stabil. Bevor der Druckkopf in eine Füllung oder ein Opferobjekt wischt, wird Slic3r immer diese Materialmenge in den Wischturm leiten, um aufeinanderfolgende Füll- oder Opferobjekt-Extrusionen zuverlässig herzustellen." +msgstr "Nach einem Werkzeugwechsel ist die genaue Position des neu geladenen Filaments innerhalb der Düse möglicherweise nicht bekannt, und der Filamentdruck ist wahrscheinlich noch nicht stabil. Bevor der Druckkopf in eine Füllung oder ein Opferobjekt wischt, wird PrusaSlicer immer diese Materialmenge in den Wischturm leiten, um aufeinanderfolgende Füll- oder Opferobjekt-Extrusionen zuverlässig herzustellen." -#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031 +#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-Code am Schichtende" -#: src/libslic3r/PrintConfig.cpp:3009 +#: src/libslic3r/PrintConfig.cpp:3383 msgid "Align the model to the given point." msgstr "Das Modell auf den angegebenen Punkt ausrichten." -#: src/libslic3r/PrintConfig.cpp:3008 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Align XY" msgstr "Ausrichten von XY" -#: src/libslic3r/PrintConfig.cpp:1561 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "Ausgerichtet" -#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3158 msgid "All" msgstr "Alle" -#: src/libslic3r/Print.cpp:1135 +#: src/libslic3r/Print.cpp:1215 msgid "All objects are outside of the print volume." -msgstr "Alle Objekte befinden sich ausserhalb des Druckraums." +msgstr "Alle Objekte befinden sich außerhalb des Druckraums." #: src/slic3r/GUI/Plater.cpp:3298 msgid "All objects will be removed, continue ?" msgstr "Alle Objekte werden entfernt, fortfahren?" -#: src/slic3r/GUI/ConfigWizard.cpp:188 +#: src/slic3r/GUI/Plater.cpp:4684 +msgid "All objects will be removed, continue?" +msgstr "Alle Objekte werden entfernt, fortfahren?" + +#: src/slic3r/GUI/ConfigWizard.cpp:289 msgid "All standard" msgstr "Alles standard" -#: src/libslic3r/Zipper.cpp:65 +#: src/libslic3r/Zipper.cpp:62 msgid "allocation failed" msgstr "Allokation fehlgeschlagen" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Along X axis" msgstr "Entlang der X Achse" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Along Y axis" msgstr "Entlang der Y Achse" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Along Z axis" msgstr "Entlang der Z Achse" -#: src/slic3r/GUI/ConfigWizard.cpp:122 +#: src/slic3r/GUI/ConfigWizard.cpp:222 msgid "Alternate nozzles:" msgstr "Alternative Düsen:" -#: src/slic3r/GUI/Plater.cpp:3561 +#: src/slic3r/GUI/Plater.cpp:5022 #, possible-c-format msgid "AMF file exported to %s" msgstr "AMF Datei exportiert nach %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:725 +#: src/slic3r/GUI/GLCanvas3D.cpp:695 msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" msgstr "Ein Objekt außerhalb des Druckbereichs wurde erkannt.\nBeheben Sie das aktuelle Problem, um mit dem Slicen fortzufahren" -#: src/slic3r/GUI/GLCanvas3D.cpp:720 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "An object outside the print area was detected" msgstr "Ein Objekt außerhalb des Druckbereichs wurde erkannt" -#: src/slic3r/GUI/Tab.cpp:2781 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "and it has the following unsaved changes:" msgstr "und hat die folgenden ungesicherten Änderungen:" -#: src/slic3r/GUI/Plater.cpp:2461 +#: src/slic3r/GUI/Plater.cpp:3154 msgid "Another export job is currently running." -msgstr "Ein anderer Exportjob läuft zur Zeit." +msgstr "Ein anderer Exportjob läuft zurzeit." -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "Jeder Pfeil" + +#: src/slic3r/GUI/Tab.cpp:967 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Alle Änderungen sollten als neue Voreinstellungen gespeichert werden, die von diesem vererbt wurden." -#: src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" msgstr "API Key / Kennwort" -#: src/slic3r/GUI/GUI_App.cpp:671 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Anwendungseinstellungen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 msgid "Apply changes" msgstr "Änderungen anwenden" -#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "ungefähre Sekunden" -#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "Archimedische Bögen" -#: src/libslic3r/Zipper.cpp:91 +#: src/libslic3r/Zipper.cpp:88 msgid "archive is too large" msgstr "Archiv ist zu groß" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:2955 +#: src/slic3r/GUI/Tab.cpp:3107 msgid "Are you sure you want to %1% the selected preset?" msgstr "Sind Sie sicher, dass Sie die gewählte Voreinstellung %1% möchten?" -#: src/slic3r/GUI/FirmwareDialog.cpp:862 +#: src/slic3r/GUI/FirmwareDialog.cpp:902 msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" msgstr "Sind Sie sicher, dass Sie das Flashen der Firmware abbrechen wollen? Dies könnte Ihren Drucker in einen unbrauchbaren Zustand versetzen!" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "Are you sure you want to continue?" +msgstr "Sind Sie sicher, dass Sie weitermachen wollen?" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 msgid "Are you sure you want to do it?" msgstr "Sind Sie sicher, dass Sie es tun wollen?" -#: src/libslic3r/PrintConfig.cpp:2258 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "Bereichsfüllung" -#: src/slic3r/GUI/Plater.cpp:609 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Around object" msgstr "Um das Objekt" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/Plater.cpp:2738 msgid "Arrange" msgstr "Anordnen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3486 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Arrange selection" msgstr "Auswahl anordnen" -#: src/libslic3r/PrintConfig.cpp:3054 +#: src/libslic3r/PrintConfig.cpp:3428 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Die zur Verfügung stehenden Modelle in einer Platte anordnen und zu einem einzigen Modell zusammenführen, um Aktionen zusammen durchführen zu können." -#: src/slic3r/GUI/Plater.cpp:2106 +#: src/slic3r/GUI/Plater.cpp:2797 msgid "Arranging" msgstr "Anordnen" -#: src/slic3r/GUI/Plater.cpp:2718 +#: src/slic3r/GUI/Plater.cpp:2825 msgid "Arranging canceled." msgstr "Anordnen abgebrochen." -#: src/slic3r/GUI/Plater.cpp:2144 +#: src/slic3r/GUI/Plater.cpp:2826 msgid "Arranging done." msgstr "Anordnung beendet." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Arrow Down" msgstr "Pfeil runter" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Arrow Left" msgstr "Pfeil links" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Arrow Right" msgstr "Pfeil rechts" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Arrow Up" msgstr "Pfeil hoch" -#: src/slic3r/GUI/GUI_App.cpp:303 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Als Workaround können Sie PrusaSlicer mit einer software-gerenderten 3D-Grafik ausführen, indem Sie prusa-slicer.exe mit dem Parameter --sw_renderer ausführen." -#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743 -#: src/slic3r/GUI/Tab.cpp:2798 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 +#: src/slic3r/GUI/Tab.cpp:2944 msgid "Attention!" msgstr "Achtung!" -#: src/libslic3r/PrintConfig.cpp:1785 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "Stützstrukturen automatisch generieren" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "Teile automatisch zentrieren" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 msgid "Auto-generate points" msgstr "Punkte automatisch generieren" -#: src/slic3r/GUI/Plater.cpp:979 +#: src/slic3r/GUI/Plater.cpp:1154 #, possible-c-format msgid "Auto-repaired (%d errors)" msgstr "Auto-Reparatur (%d Fehler)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:337 #, possible-c-format msgid "Auto-repaired (%d errors):" msgstr "Auto-Reparatur (%d Fehler):" -#: src/slic3r/GUI/FirmwareDialog.cpp:771 +#: src/slic3r/GUI/FirmwareDialog.cpp:809 msgid "Autodetected" msgstr "Automatisch erkannt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1338 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 msgid "Autogenerate support points" msgstr "Stützpunkte automatisch generieren" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 msgid "Autogeneration will erase all manually edited points." msgstr "Die automatische Generierung löscht alle manuell bearbeiteten Punkte." -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Automatic generation" msgstr "Automatische Erzeugung" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Automatic updates" msgstr "Automatische Updates" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "Repariere automatisch die STL Datei" -#: src/slic3r/GUI/Tab.cpp:1110 +#: src/slic3r/GUI/Tab.cpp:1173 msgid "Autospeed (advanced)" -msgstr "Automatische Geschindigkeit (fortgeschritten)" +msgstr "Automatische Geschwindigkeit (fortgeschritten)" -#: src/libslic3r/PrintConfig.cpp:111 +#: src/libslic3r/PrintConfig.cpp:126 msgid "Avoid crossing perimeters" msgstr "Kreuzen der Kontur vermeiden" -#: src/slic3r/GUI/Tab.cpp:3081 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "BACK ARROW" msgstr "PFEIL ZURÜCK" -#: src/slic3r/GUI/Tab.cpp:3113 +#: src/slic3r/GUI/Tab.cpp:3274 msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." msgstr "Das Symbol PFEIL ZURÜCK zeigt an, dass die Einstellungen geändert wurden und nicht mit dem zuletzt gespeicherten Preset für die aktuelle Optionsgruppe übereinstimmen. Klicken Sie hier, um alle Einstellungen für die aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen." -#: src/slic3r/GUI/Tab.cpp:3127 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." msgstr "Das Symbol PFEIL ZURÜCK zeigt an, dass der Wert geändert wurde und nicht mit dem zuletzt gespeicherten Preset übereinstimmt. \nKlicken Sie, um den aktuellen Wert auf das zuletzt gespeicherte Preset zurückzusetzen." -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Hintergrundberechnung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "backwards edges" msgstr "umgekehrte Kanten" -#: src/slic3r/GUI/MainFrame.cpp:152 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "basiert auf Slic3r" -#: src/slic3r/GUI/Tab.cpp:1484 +#: src/slic3r/GUI/Tab.cpp:1441 msgid "Bed" msgstr "Druckbett" #: src/libslic3r/PrintConfig.cpp:61 msgid "Bed custom model" -msgstr "Bett individuelles Modell" +msgstr "Druckbett individuelles Modell" #: src/libslic3r/PrintConfig.cpp:56 msgid "Bed custom texture" -msgstr "Bett individuelle Textur" +msgstr "Druckbett individuelle Textur" -#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape" msgstr "Druckbrettprofil" -#: src/libslic3r/PrintConfig.cpp:50 +#: src/libslic3r/PrintConfig.cpp:51 msgid "Bed shape" msgstr "Druckbettkontur" -#: src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape and Size" -msgstr "Bettform und -größe" +msgstr "Druckbettform und -größe" -#: src/libslic3r/PrintConfig.cpp:122 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Bed temperature" msgstr "Druckbetttemperatur" -#: src/libslic3r/PrintConfig.cpp:120 +#: src/libslic3r/PrintConfig.cpp:135 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." -msgstr "Druckbett-Temperatur für Schichten nach der ersten Schicht. Setzen Sie diesen Wert auf Null, um die Befehle zur Steuerung der Betttemperatur im Output zu deaktivieren." +msgstr "Druckbetttemperatur für Schichten nach der ersten Schicht. Setzen Sie diesen Wert auf null, um die Befehle zur Steuerung der Betttemperatur im Output zu deaktivieren." -#: src/slic3r/GUI/ConfigWizard.cpp:626 +#: src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "Bed Temperature:" -msgstr "Betttemperatur:" +msgstr "Druckbetttemperatur:" -#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128 +#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 msgid "Before layer change G-code" msgstr "G-Code vor dem Schichtwechsel" @@ -827,98 +890,110 @@ msgstr "G-Code vor dem Schichtwechsel" msgid "Before roll back" msgstr "Vor dem Zurückwechseln" -#: src/slic3r/GUI/Plater.cpp:608 +#: src/slic3r/GUI/Plater.cpp:637 msgid "Below object" msgstr "Unter dem Objekt" -#: src/libslic3r/PrintConfig.cpp:1508 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "Unter Z" -#: src/libslic3r/PrintConfig.cpp:139 +#: src/libslic3r/PrintConfig.cpp:154 msgid "Between objects G-code" msgstr "G-Code zwischen Objekten" -#: src/slic3r/GUI/Tab.cpp:1979 +#: src/slic3r/GUI/Tab.cpp:2004 msgid "Between objects G-code (for sequential printing)" msgstr "G-Code zwischen Objekten (Sequentielles Drucken)" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 msgid "Bottle volume" msgstr "Flaschenvolumen" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 msgid "Bottle weight" msgstr "Flaschengewicht" #. TRN To be shown in the main menu View->Bottom -#: src/slic3r/GUI/MainFrame.cpp:524 +#. TRN To be shown in Print Settings "Bottom solid layers" +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 +#: src/libslic3r/PrintConfig.cpp:173 msgid "Bottom" msgstr "Unten" -#: src/libslic3r/PrintConfig.cpp:409 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "Bodenfüllmuster" -#: src/libslic3r/PrintConfig.cpp:152 +#: src/slic3r/GUI/PresetHints.cpp:338 +msgid "Bottom is open." +msgstr "Boden ist offen." + +#: src/slic3r/GUI/PresetHints.cpp:332 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "Die Bodenschale ist %1% mm stark für eine Schichthöhe von %2% mm." + +#: src/libslic3r/PrintConfig.cpp:167 msgid "Bottom solid layers" -msgstr "Kompakte Basisschichten" +msgstr "Massive Basisschichten" -#: src/slic3r/GUI/MainFrame.cpp:524 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" -msgstr "Ansicht von Unten" +msgstr "Ansicht von unten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1087 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1090 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 msgid "Box" msgstr "Kubus" -#: src/libslic3r/PrintConfig.cpp:157 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bridge" msgstr "Überbrückung" -#: src/libslic3r/PrintConfig.cpp:186 +#: src/libslic3r/PrintConfig.cpp:212 msgid "Bridge flow ratio" msgstr "Brückenflussverhältnis" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Überbrückungs-Infill" -#: src/libslic3r/PrintConfig.cpp:198 +#: src/libslic3r/PrintConfig.cpp:224 msgid "Bridges" msgstr "Überbrückungen" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:203 msgid "Bridges fan speed" -msgstr "Brückenventilatorgeschwindigkeit" +msgstr "Brückenlüftergeschwindigkeit" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:192 msgid "Bridging angle" msgstr "Überbrückungswinkel" -#: src/libslic3r/PrintConfig.cpp:168 +#: src/libslic3r/PrintConfig.cpp:194 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." -msgstr "Überbrückungswinkel Übersteuerung. Wird der Wert auf Null gesetzt, wird der Überbrückungswinkel automatisch berechnet. Andernfalls wird der angegebene Winkel für alle Brücken verwendet. Verwenden Sie 180° für den Nullwinkel." +msgstr "Überbrückungswinkel Übersteuerung. Wird der Wert auf null gesetzt, wird der Überbrückungswinkel automatisch berechnet. Andernfalls wird der angegebene Winkel für alle Brücken verwendet. Verwenden Sie 180° für den Nullwinkel." -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "Überbrückungvolumen" -#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056 +#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "Rand" -#: src/libslic3r/PrintConfig.cpp:208 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Brim width" msgstr "Randbreite" -#: src/slic3r/GUI/Tab.cpp:1681 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 +#: src/slic3r/GUI/Tab.cpp:1719 msgid "Browse" msgstr "Suchen" -#: src/libslic3r/Zipper.cpp:85 +#: src/libslic3r/Zipper.cpp:82 msgid "buffer too small" msgstr "Puffer zu klein" @@ -926,461 +1001,514 @@ msgstr "Puffer zu klein" msgid "Buttons And Text Colors Description" msgstr "Schaltflächen und Textfarben Beschreibung" -#: src/slic3r/GUI/PresetHints.cpp:220 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "mit dem Maximum des Druckerprofils" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:115 +msgid "Camera" +msgstr "Kamera" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 msgid "Camera view" msgstr "Kameraansicht" -#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37 -#: src/slic3r/GUI/ProgressStatusBar.cpp:28 +#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Abbrechen" -#: src/slic3r/GUI/PrintHostDialogs.cpp:156 +#: src/slic3r/GUI/PrintHostDialogs.cpp:157 msgid "Cancel selected" msgstr "Abbruch ausgewählt" -#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Abgebrochen" -#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231 +#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Abbrechen" -#: src/slic3r/GUI/FirmwareDialog.cpp:866 +#: src/slic3r/GUI/FirmwareDialog.cpp:906 msgid "Cancelling..." msgstr "Abbrechen..." -#: src/slic3r/GUI/Tab.cpp:2905 +#: src/libslic3r/Flow.cpp:55 +msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "Kann die Extrusionsbreite für %1% nicht berechnen: Variable \"%2%\" nicht zugänglich." + +#: src/slic3r/GUI/Tab.cpp:3057 msgid "Cannot overwrite a system profile." msgstr "Systemprofil kann nicht überschrieben werden." -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:3061 msgid "Cannot overwrite an external profile." msgstr "Ein externes Profil kann nicht überschrieben werden." -#: src/libslic3r/SLAPrint.cpp:612 +#: src/libslic3r/SLAPrint.cpp:613 msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Ohne Stützpunkte kann nicht weitergearbeitet werden! Fügen Sie Stützpunkte hinzu oder deaktivieren Sie die Stützstruktur-Generierung." -#: src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/Tab.cpp:1832 msgid "Capabilities" msgstr "Fähigkeiten" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "Erfassen einer Konfigurations-Momentaufnahme" -#: src/libslic3r/PrintConfig.cpp:3035 +#: src/libslic3r/PrintConfig.cpp:3409 msgid "Center" msgstr "Mitte" -#: src/libslic3r/PrintConfig.cpp:3036 +#: src/libslic3r/PrintConfig.cpp:3410 msgid "Center the print around the given center." msgstr "Zentriert den Druck um den angegebenen Mittelpunkt." -#: src/slic3r/GUI/Tab.cpp:1744 +#: src/slic3r/GUI/Tab.cpp:1726 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Zertifikatsdatei (*.crt, *.pem)|*.crt;*.pem|alle Dateien|*.*" -#: src/slic3r/GUI/GUI_App.cpp:683 -msgid "Change Application &Language" -msgstr "Sprache (&l)" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:154 msgid "Change camera type (perspective, orthographic)" msgstr "Ändern des Kameratyps (perspektivisch, orthografisch)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1226 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +msgid "Change drainage hole diameter" +msgstr "Durchmesser des Drainagelochs ändern" + +#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 msgid "Change extruder" msgstr "Wechsel Extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:534 msgid "Change Extruder" msgstr "Wechsel Extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/DoubleSlider.cpp:1113 +msgid "Change extruder (N/A)" +msgstr "Extruder wechseln (nv)" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Change Extruders" msgstr "Wechsel Extruder" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:144 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 #, possible-c-format msgid "Change Option %s" msgstr "Ändere Option %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3134 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 msgid "Change Part Type" msgstr "Teil Typ ändern" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:925 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 msgid "Change point head diameter" msgstr "Ändern des Stützpunkt-Kopfdurchmessers" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Change the number of instances of the selected object" msgstr "Anzahl der Kopien des gewählten Objektes ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1185 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 msgid "Change type" msgstr "Typ ändern" -#: src/slic3r/GUI/UpdateDialogs.cpp:56 +#: src/slic3r/GUI/UpdateDialogs.cpp:53 msgid "Changelog && Download" msgstr "Changelog && Download" -#: src/slic3r/GUI/GUI_App.cpp:378 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "Wechsele die Anwendungssprache" -#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61 +#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Nach Updates suchen" -#: src/slic3r/GUI/BedShapeDialog.cpp:509 -msgid "Choose a file to import bed texture from (PNG/SVG):" -msgstr "Wählen Sie eine Datei aus, aus der Sie die Betttextur importieren möchten (PNG/SVG):" +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "Suche nach Konfigurationsaktualisierungen" -#: src/slic3r/GUI/MainFrame.cpp:621 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "Nach Updates suchen" + +#: src/slic3r/GUI/BedShapeDialog.cpp:532 +msgid "Choose a file to import bed texture from (PNG/SVG):" +msgstr "Wählen Sie eine Datei aus, aus der Sie die Druckbetttextur importieren möchten (PNG/SVG):" + +#: src/slic3r/GUI/MainFrame.cpp:775 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wählen Sie eine Datei zum Slicen (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/BedShapeDialog.cpp:532 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" -msgstr "Wählen Sie eine STL-Datei aus, aus der Sie das Bettmodell importieren möchten:" +msgstr "Wählen Sie eine STL-Datei aus, aus der Sie das Druckbettmodell importieren möchten:" -#: src/slic3r/GUI/BedShapeDialog.cpp:464 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" -msgstr "Wählen Sie eine STL-Datei aus, aus der Sie die Bettform importieren möchten:" +msgstr "Wählen Sie eine STL-Datei aus, aus der Sie die Druckbettform importieren möchten:" -#: src/slic3r/GUI/GUI_App.cpp:510 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "Wählen Sie eine Datei (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:501 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wählen Sie eine oder mehrere Dateien (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:490 +#: src/slic3r/GUI/ConfigWizard.cpp:896 msgid "Choose the type of firmware used by your printer." msgstr "Wählen Sie den Typ der von Ihrem Drucker verwendeten Firmware." -#: src/slic3r/GUI/BedShapeDialog.cpp:84 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "Kreisförmig" -#: src/slic3r/GUI/GLCanvas3D.cpp:3701 src/slic3r/GUI/GLCanvas3D.cpp:3734 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 msgid "Click right mouse button to open History" msgstr "Klicken Sie mit der rechten Maustaste, um den Verlauf zu öffnen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:383 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Click the icon to change the object printable property" msgstr "Klicken Sie auf das Symbol, um die Druckbar-Eigenschaft des Objekts zu ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:377 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Click the icon to change the object settings" msgstr "Klicken Sie auf das Symbol, um die Objekteinstellungen zu ändern" -#: src/slic3r/GUI/Plater.cpp:292 +#: src/slic3r/GUI/Plater.cpp:340 msgid "Click to edit preset" msgstr "Klicken zum Bearbeiten der Voreinstellung" -#: src/libslic3r/PrintConfig.cpp:216 +#: src/libslic3r/PrintConfig.cpp:242 msgid "Clip multi-part objects" msgstr "Beschneiden von Objekten aus mehreren Teilen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 msgid "Clipping of view" msgstr "Ausschnitt der Ansicht" -#: src/slic3r/GUI/FirmwareDialog.cpp:814 -#: src/slic3r/GUI/PrintHostDialogs.cpp:160 +#: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" -msgstr "Schliessen" +msgstr "Schließen" -#: src/libslic3r/PrintConfig.cpp:550 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +msgid "Closing distance" +msgstr "Schliessabstand" + +#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 +#: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Farbe" -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 +#: src/slic3r/GUI/DoubleSlider.cpp:972 +msgid "Color change (\"%1%\")" +msgstr "Farbwechsel (\"%1%\")" + +#: src/slic3r/GUI/DoubleSlider.cpp:973 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "Farbwechsel (\"%1%\") für Extruder %2%" + +#: src/slic3r/GUI/GLCanvas3D.cpp:995 #, possible-c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Farbwechsel für Extruder %d bei %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535 -#: src/libslic3r/GCode/PreviewData.cpp:406 +#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Color Print" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:250 msgid "Colorprint height" msgstr "Colorprint Höhe" -#: src/libslic3r/PrintConfig.cpp:942 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "Infill kombinieren alle" -#: src/libslic3r/PrintConfig.cpp:947 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "Kombiniere das Infill all n Schichten" -#: src/slic3r/GUI/UpdateDialogs.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "Befehle" + +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "Kommentar:" -#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 msgid "Compatible print profiles" msgstr "Kompatible Druckprofile" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:276 msgid "Compatible print profiles condition" msgstr "Kompatible Druckprofile Bedingung" -#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 msgid "Compatible printers" msgstr "Kompatible Drucker" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Compatible printers condition" msgstr "Kompatible Druckerbedingung" -#: src/libslic3r/PrintConfig.cpp:268 +#: src/libslic3r/PrintConfig.cpp:294 msgid "Complete individual objects" msgstr "Kompatible Einzelobjekte" -#: src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/PrintHostDialogs.cpp:234 msgid "Completed" msgstr "Fertig" -#: src/libslic3r/Zipper.cpp:57 +#: src/libslic3r/Zipper.cpp:54 msgid "compression failed" msgstr "Komprimierung fehlgeschlagen" -#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "Konzentrisch" -#: src/slic3r/GUI/ConfigWizard.cpp:1185 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Assistant" msgstr "Konfigurations &Assistent" -#: src/slic3r/GUI/ConfigWizard.cpp:1182 +#: src/slic3r/GUI/ConfigWizard.cpp:2116 msgid "Configuration &Wizard" msgstr "Konfigurations-Assistent (&W)" -#: src/slic3r/GUI/ConfigWizard.cpp:1184 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Assistant" msgstr "Konfigurations-Assistent" -#: src/libslic3r/PrintConfig.cpp:1251 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "Konfigurationsnotizen" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:104 msgid "Configuration Snapshots" msgstr "Konfigurations-Momentaufnahmen" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "Konfigurationsupdate" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 msgid "Configuration update is available" msgstr "Konfigurationsupdate ist verfügbar" -#: src/slic3r/GUI/ConfigWizard.cpp:1181 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Configuration update is necessary to install" +msgstr "Ein Konfigurations-Update muss installiert werden." + +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "Konfigurationsupdates" + +#: src/slic3r/GUI/ConfigWizard.cpp:2115 msgid "Configuration Wizard" msgstr "Konfigurations-Assistent" -#: src/slic3r/GUI/FirmwareDialog.cpp:863 +#: src/slic3r/GUI/FirmwareDialog.cpp:903 msgid "Confirmation" msgstr "Bestätigung" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1929 msgid "Connection failed." msgstr "Verbindung ist fehlgeschlagen." -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/Tab.cpp:3612 msgid "Connection of the support sticks and junctions" msgstr "Verbindung von Stützstäben und Verbindungen" -#: src/slic3r/Utils/Duet.cpp:51 +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "Die Verbindung zur AstroBox funktioniert korrekt." + +#: src/slic3r/Utils/Duet.cpp:49 msgid "Connection to Duet works correctly." msgstr "Verbindung zu Duet funktioniert einwandfrei." -#: src/slic3r/Utils/FlashAir.cpp:70 +#: src/slic3r/Utils/FlashAir.cpp:68 msgid "Connection to FlashAir works correctly and upload is enabled." msgstr "Die Verbindung zu FlashAir funktioniert einwandfrei und der Upload ist aktiviert." -#: src/slic3r/Utils/OctoPrint.cpp:84 +#: src/slic3r/Utils/OctoPrint.cpp:83 msgid "Connection to OctoPrint works correctly." -msgstr "Verbindung zu Octoprint funktioniert einwandfrei." +msgstr "Verbindung zu OctoPrint funktioniert einwandfrei." -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1926 msgid "Connection to printer works correctly." msgstr "Verbindung zum Drucker funktioniert einwandfrei." -#: src/slic3r/Utils/OctoPrint.cpp:195 +#: src/slic3r/Utils/OctoPrint.cpp:176 msgid "Connection to Prusa SL1 works correctly." msgstr "Verbindung zum Prusa SL1 funktioniert einwandfrei." -#: src/libslic3r/PrintConfig.cpp:1823 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Kontakt Z-Abstand" -#: src/slic3r/GUI/AboutDialog.cpp:96 +#: src/slic3r/GUI/AboutDialog.cpp:261 msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Beiträge von Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik und zahlreichen anderen." -#: src/libslic3r/PrintConfig.cpp:2433 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Steuert den Brückentyp zwischen zwei benachbarten Säulen. Kann Zickzack, Kreuz (Doppelzickzack) oder dynamisch sein, das je nach Abstand der beiden Säulen automatisch zwischen den beiden erstgenannten umschaltet." -#: src/slic3r/GUI/Tab.cpp:1489 +#: src/slic3r/GUI/Tab.cpp:1446 msgid "Cooling" msgstr "Kühlung" -#: src/libslic3r/PrintConfig.cpp:629 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "Kühlbewegungen beschleunigen von dieser Anfangsgeschwindigkeit aus." -#: src/libslic3r/PrintConfig.cpp:648 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Kühlbewegungen beschleunigen auf diese Geschwindigkeit hin." -#: src/slic3r/GUI/Tab.cpp:1510 +#: src/slic3r/GUI/Tab.cpp:1467 msgid "Cooling thresholds" msgstr "Kühlungsschwellwerte" -#: src/libslic3r/PrintConfig.cpp:291 +#: src/libslic3r/PrintConfig.cpp:317 msgid "Cooling tube length" msgstr "Länge des Kühlschlauchs" -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:309 msgid "Cooling tube position" msgstr "Position des Kühlschlauchs" -#: src/slic3r/GUI/Tab.cpp:2878 +#: src/slic3r/GUI/GLCanvas3D.cpp:4554 msgid "Copy" msgstr "Kopieren" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "Auswahl in Zwischenablage kopieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 msgid "Copy to clipboard" msgstr "Zu Zwischenablage kopieren" -#: src/slic3r/GUI/SysInfoDialog.cpp:120 +#: src/slic3r/GUI/SysInfoDialog.cpp:154 msgid "Copy to Clipboard" msgstr "Zu Zwischenablage kopieren" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Das Kopieren des temporären G-Codes auf den Ausgabe-G-Code ist fehlgeschlagen" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Das Kopieren des temporären G-Codes auf den Ausgabe-G-Code ist fehlgeschlagen. SD-Karte eventuell schreibgeschützt?" -#: src/slic3r/GUI/AboutDialog.cpp:92 +#: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Urheberrecht" -#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325 +#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 msgid "Correction for expansion" msgstr "Korrektur der Ausdehnung" -#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310 +#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 msgid "Corrections" msgstr "Korrekturen" -#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056 -#: src/libslic3r/PrintConfig.cpp:717 +#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 msgid "Cost" msgstr "Kosten" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Cost (money)" msgstr "Kosten (Geld)" -#: src/slic3r/GUI/Plater.cpp:2140 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Modellobjekte konnten nicht angeordnet werden! Einige Geometrien können ungültig sein." -#: src/slic3r/Utils/Duet.cpp:56 +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "Konnte keine Verbindung zur AstroBox herstellen" + +#: src/slic3r/Utils/Duet.cpp:54 msgid "Could not connect to Duet" msgstr "Ich konnte keine Verbindung zum Duet herstellen" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Could not connect to FlashAir" msgstr "Die Verbindung zu FlashAir konnte nicht hergestellt werden" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Could not connect to OctoPrint" msgstr "Ich konnte keine Verbindung zu OctoPrint herstellen" -#: src/slic3r/Utils/OctoPrint.cpp:200 +#: src/slic3r/Utils/OctoPrint.cpp:181 msgid "Could not connect to Prusa SLA" msgstr "Ich konnte keine Verbindung zum Prusa SLA herstellen" -#: src/slic3r/GUI/Tab.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1689 msgid "Could not get a valid Printer Host reference" msgstr "Es konnte keine gültige Drucker-Host-Referenz ermittelt werden" -#: src/slic3r/Utils/Duet.cpp:151 +#: src/slic3r/Utils/Duet.cpp:134 msgid "Could not get resources to create a new connection" msgstr "Ressourcen zum Erstellen einer neuen Verbindung konnten nicht bezogen werden" -#: src/libslic3r/PrintConfig.cpp:1872 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "Cover the top contact layer of the supports with loops. Disabled by default." -msgstr "Decken Sie die obere Kontaktschicht der Stützen mit Schleifen ab. Standardmäßig deaktiviert." +msgstr "Deckt die obere Kontaktschicht der Stützstrukturen mit Schleifen ab. Standardmäßig deaktiviert." -#: src/libslic3r/PrintConfig.cpp:73 +#: src/libslic3r/PrintConfig.cpp:89 msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." msgstr "Spalte, die kleiner als der doppelte Lückenschlussradius sind, werden während des Slicens des Dreiecksnetzes gefüllt. Der Lückenschluss kann die endgültige Druckauflösung verringern, daher ist es ratsam, den Wert relativ niedrig zu halten." -#: src/libslic3r/Zipper.cpp:61 +#: src/libslic3r/Zipper.cpp:58 msgid "CRC-32 check failed" msgstr "CRC-32 Check fehlgeschlagen" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "Create pad around object and ignore the support elevation" msgstr "Erstellt eine Grundschicht um das Objekt herum und ignoriert die Unterstützungshöhe" -#: src/libslic3r/PrintConfig.cpp:2460 +#: src/libslic3r/PrintConfig.cpp:2715 msgid "Critical angle" msgstr "Kritischer Winkel" -#: src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Cross" msgstr "Kreuz" -#: src/libslic3r/PrintConfig.cpp:800 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "Kubisch" -#: src/slic3r/GUI/wxExtensions.cpp:2413 +#: src/slic3r/GUI/wxExtensions.cpp:704 #, possible-c-format msgid "Current mode is %s" msgstr "Aktueller Modus ist %s" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:959 msgid "Current preset is inherited from the default preset." msgstr "Aktuelle Voreinstellung ist abgeleitet von der Standardvoreinstellung." -#: src/slic3r/GUI/Tab.cpp:928 +#: src/slic3r/GUI/Tab.cpp:962 #, possible-c-format msgid "Current preset is inherited from:\n\t%s" msgstr "Aktuelle Voreinstellung ist abgeleitet von:\n%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:45 +#: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Aktuelle Version:" @@ -1388,180 +1516,193 @@ msgstr "Aktuelle Version:" msgid "Cusp (mm)" msgstr "Spitze (mm)" -#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239 -#: src/libslic3r/GCode/PreviewData.cpp:175 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Benutzerdefiniert" -#: src/libslic3r/PrintConfig.cpp:96 +#: src/libslic3r/PrintConfig.cpp:112 msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Benutzerdefinierte CA-Zertifikatsdatei kann für HTTPS OctoPrint-Verbindungen im crt/pem-Format angegeben werden. Wenn das Feld leer bleibt, wird das standardmäßige Zertifikatsverzeichnis der Betriebssystem-Zertifizierungsstelle verwendet." -#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 msgid "Custom G-code" msgstr "Benutzerdefinierter G-Code" +#: src/slic3r/GUI/DoubleSlider.cpp:1591 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "Benutzerdefinierter G-Code auf der aktuellen Ebene (%1% mm)." + #: src/slic3r/GUI/wxExtensions.cpp:3500 msgid "Custom Gcode on current layer (%1% mm)." msgstr "Benutzerdefinierter Gcode auf der aktuellen Schicht (%1% mm)." -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Benutzerdefinierter Drucker" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "Benutzerdefinierte Drucker-Einrichtung" -#: src/slic3r/GUI/ConfigWizard.cpp:377 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "Benutzerdefinierter Profilname:" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 msgid "Cut" msgstr "Schneiden" -#: src/slic3r/GUI/Plater.cpp:4193 +#: src/slic3r/GUI/Plater.cpp:4801 msgid "Cut by Plane" msgstr "Schneiden durch Ebene" -#: src/libslic3r/PrintConfig.cpp:3014 +#: src/libslic3r/PrintConfig.cpp:3388 msgid "Cut model at the given Z." msgstr "Schneidet Modell am gegebenen Z-Wert." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Cylinder" msgstr "Zylinder" -#: src/slic3r/GUI/MainFrame.cpp:491 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "All&es Abwählen" -#: src/libslic3r/PrintConfig.cpp:3115 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Data directory" msgstr "Datenverzeichnis" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:332 msgid "Deadzone:" msgstr "Todeszone:" -#: src/libslic3r/Zipper.cpp:55 +#: src/libslic3r/Zipper.cpp:52 msgid "decompression failed or archive is corrupted" msgstr "Entpacken fehlgeschlagen oder Archiv defekt" -#: src/slic3r/GUI/Plater.cpp:4127 +#: src/slic3r/GUI/Plater.cpp:4735 msgid "Decrease Instances" msgstr "Kopien verringern" -#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245 -#: src/libslic3r/PrintConfig.cpp:299 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 msgid "Default" msgstr "Standard" -#: xs/src/slic3r/GUI/Field.cpp:98 +#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 msgid "default" msgstr "Standard" -#: src/libslic3r/PrintConfig.cpp:730 +#: src/libslic3r/PrintConfig.cpp:777 msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them." msgstr "Standard-Grundwinkel für die Ausrichtung der Füllung. Hierfür werden Kreuzschraffuren verwendet. Brücken werden mit der besten Richtung gefüllt, die Slic3r erkennen kann, so dass diese Einstellung sie nicht beeinflusst." -#: src/libslic3r/PrintConfig.cpp:522 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "Standardextrusionsbreite" -#: src/slic3r/GUI/Tab.cpp:937 +#: src/slic3r/GUI/Tab.cpp:989 msgid "default filament profile" msgstr "Standard-Filamentprofil" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:335 msgid "Default filament profile" msgstr "Standard-Filamentprofil" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:336 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Standard-Filamentprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei Auswahl des aktuellen Druckerprofils wird dieses Filamentprofil aktiviert." -#: src/slic3r/GUI/Tab.cpp:2757 +#: src/slic3r/GUI/Tab.cpp:2903 #, possible-c-format msgid "Default preset (%s)" msgstr "Standard Voreinstellung(%s)" -#: src/libslic3r/GCode/PreviewData.cpp:491 +#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 msgid "Default print color" msgstr "Standard Druckfarbe" -#: src/slic3r/GUI/Tab.cpp:934 +#: src/slic3r/GUI/Tab.cpp:986 msgid "default print profile" msgstr "Standard-Druckprofil" -#: src/libslic3r/PrintConfig.cpp:316 +#: src/libslic3r/PrintConfig.cpp:342 msgid "Default print profile" msgstr "Standard-Druckprofil" -#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341 -#: src/libslic3r/PrintConfig.cpp:2352 +#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 +#: src/libslic3r/PrintConfig.cpp:2594 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Standarddruckprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei Auswahl des aktuellen Druckerprofils wird dieses Druckprofil aktiviert." -#: src/slic3r/GUI/Tab.cpp:951 +#: src/slic3r/GUI/Tab.cpp:1003 msgid "default SLA material profile" msgstr "Standard-SLA-Materialprofil" -#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351 +#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 msgid "Default SLA material profile" msgstr "Standard-SLA-Materialprofil" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:1007 msgid "default SLA print profile" msgstr "Standard-SLA-Druckprofil" -#: src/slic3r/GUI/Field.cpp:105 +#: src/slic3r/GUI/Field.cpp:131 msgid "default value" msgstr "Standardwert" -#: src/slic3r/GUI/ConfigWizard.cpp:375 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "Benutzerdefiniertes Druckerprofil definieren" -#: src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." -msgstr "Definiert die Tiefe des Grundschichthohlraums. Zum Deaktivieren der Aushöhlung auf Null setzen. Seien Sie vorsichtig, wenn Sie diese Funktion aktivieren, da einige Harze einen extremen Saugeffekt im Hohlraum erzeugen können, der das Abziehen des Drucks von der Wannenfolie erschwert." +msgstr "Definiert die Tiefe des Grundschichthohlraums. Zum Deaktivieren der Aushöhlung auf null setzen. Seien Sie vorsichtig, wenn Sie diese Funktion aktivieren, da einige Harze einen extremen Saugeffekt im Hohlraum erzeugen können, der das Abziehen des Drucks von der Wannenfolie erschwert." -#: src/slic3r/GUI/GUI_ObjectList.cpp:237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:344 msgid "degenerate facets" msgstr "entartete Facetten" -#: src/libslic3r/PrintConfig.cpp:608 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "Verzögerung nach dem Entladen" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "delete" msgstr "löschen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891 -#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Delete" msgstr "Löschen" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "&Alles löschen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Delete All" msgstr "Alle löschen" -#: src/slic3r/GUI/Plater.cpp:3298 +#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 msgid "Delete all" msgstr "Alle löschen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 msgid "Delete All Instances from Object" msgstr "Alle Kopien des Objektes löschen" -#: src/slic3r/GUI/wxExtensions.cpp:3465 +#: src/slic3r/GUI/DoubleSlider.cpp:1488 msgid "Delete color change" msgstr "Farbwechsel löschen" @@ -1569,171 +1710,188 @@ msgstr "Farbwechsel löschen" msgid "Delete color change for Extruder %1%" msgstr "Farbwechsel für Extruder %1% löschen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 msgid "Delete color change marker for current layer" msgstr "Löscht einen Farbwechselmarker der aktuellen Schicht" -#: src/slic3r/GUI/wxExtensions.cpp:3467 +#: src/slic3r/GUI/DoubleSlider.cpp:1491 msgid "Delete custom G-code" msgstr "Benutzerdefinierten G-Code löschen" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +msgid "Delete drainage hole" +msgstr "Drainageloch entfernen" + #: src/slic3r/GUI/wxExtensions.cpp:3095 msgid "Delete extruder change to \"%1%\"" msgstr "Extruderwechsel auf \"%1%\" löschen " -#: src/slic3r/GUI/GUI_ObjectList.cpp:1898 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 msgid "Delete Height Range" msgstr "Höhenbereich löschen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1876 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 msgid "Delete Instance" msgstr "Kopie löschen" -#: src/slic3r/GUI/Plater.cpp:2592 +#: src/slic3r/GUI/Plater.cpp:2696 msgid "Delete Object" msgstr "Objekt löschen" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:100 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 #, possible-c-format msgid "Delete Option %s" msgstr "Lösche Option %s" -#: src/slic3r/GUI/wxExtensions.cpp:3466 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Delete pause print" msgstr "Druckpause löschen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Delete selected" msgstr "Löschen ausgewählt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 msgid "Delete Selected" msgstr "Löschen ausgewählt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2303 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 msgid "Delete Selected Item" msgstr "Gewähltes Element löschen" -#: src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Plater.cpp:4692 msgid "Delete Selected Objects" msgstr "Ausgewählte Objekte entfernen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1782 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 msgid "Delete Settings" msgstr "Einstellungen löschen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1857 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 msgid "Delete Subobject" msgstr "Subobjekt löschen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:720 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 msgid "Delete support point" msgstr "Stützpunkt löschen" -#: src/slic3r/GUI/Tab.cpp:131 +#: src/slic3r/GUI/Tab.cpp:136 msgid "Delete this preset" msgstr "Lösche diese Voreinstellung" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/DoubleSlider.cpp:1001 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "Häkchen löschen - Linksklick oder Taste \"-\" drücken" + +#: src/slic3r/GUI/DoubleSlider.cpp:1489 +msgid "Delete tool change" +msgstr "Werkzeugwechsel löschen" + +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "Löscht alle Objekte" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "Löscht die aktuelle Auswahl" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 +#: src/libslic3r/PrintConfig.cpp:2495 msgid "Density" msgstr "Dichte" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." -msgstr "Infilldichte. Als Prozentwert von 0% - 100% ausgedrückt." +msgstr "Infilldichte. Als Prozentwert von 0% - 100% ausgedrückt." -#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584 -#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086 -#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 +#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 msgid "Dependencies" msgstr "Abhängigkeiten" -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "Wiedereinzugsgeschwindigkeit" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "Alles abwählen" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Deselect by rectangle" msgstr "Abwahl über Rechteck" -#: src/slic3r/GUI/MainFrame.cpp:492 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "Alle Objekte abwählen" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "Umfangbrücken entdecken" -#: src/libslic3r/PrintConfig.cpp:1988 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)." msgstr "Erkennen von Wänden mit einfacher Breite (Teile, bei denen zwei Extrusionen nicht passen und wir sie in eine einzige Druckspur zusammenfassen müssen)." -#: src/libslic3r/PrintConfig.cpp:1986 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "Dünne Wände erkennen" -#: src/libslic3r/PrintConfig.cpp:3083 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Erkennung nicht zusammenhängender Teile in den angegebenen Modellen und Aufteilung in einzelne Objekte." -#: src/slic3r/GUI/Plater.cpp:1713 +#: src/slic3r/GUI/Plater.cpp:2352 msgid "Detected advanced data" msgstr "Erweiterte Daten gefunden" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:306 msgid "Device:" msgstr "Gerät:" -#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "Durchmesser" -#: src/libslic3r/PrintConfig.cpp:2443 +#: src/libslic3r/PrintConfig.cpp:2685 msgid "Diameter in mm of the pillar base" msgstr "Durchmesser der Pfeilerbasis in mm" -#: src/libslic3r/PrintConfig.cpp:2399 +#: src/libslic3r/PrintConfig.cpp:2641 msgid "Diameter in mm of the support pillars" -msgstr "Duchmesser der Stützpfeiler in mm" +msgstr "Durchmesser der Stützpfeiler in mm" -#: src/libslic3r/PrintConfig.cpp:2371 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Diameter of the pointing side of the head" msgstr "Durchmesser der Spitzenseite des Kopfes" -#: src/slic3r/GUI/BedShapeDialog.cpp:89 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." msgstr "Durchmesser des Druckbettes. Es wird angenommen, dass der Ursprung (0,0) sich im Mittelpunkt befindet." -#: src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "Richtung" -#: src/libslic3r/PrintConfig.cpp:323 +#: src/libslic3r/PrintConfig.cpp:349 msgid "Disable fan for the first" -msgstr "Kein Ventilator für die ersten" +msgstr "Kein Lüfter für die ersten" -#: src/libslic3r/PrintConfig.cpp:1280 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Deaktiviert den Einzug, wenn der Verfahrweg die Perimeter der oberen Schicht nicht überschreitet (und somit ist der Auslauf wahrscheinlich unsichtbar)." -#: src/slic3r/GUI/wxExtensions.cpp:3078 +#: src/slic3r/GUI/DoubleSlider.cpp:925 msgid "Discard all custom changes" msgstr "Alle benutzerdefinierten Änderungen verwerfen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 msgid "Discard changes" msgstr "Änderungen verwerfen" -#: src/slic3r/GUI/Tab.cpp:2784 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 msgid "Discard changes and continue anyway?" msgstr "Änderungen verwerfen und fortfahren?" @@ -1741,96 +1899,112 @@ msgstr "Änderungen verwerfen und fortfahren?" msgid "Displacement (mm)" msgstr "Versatz (mm)" -#: src/slic3r/GUI/Tab.cpp:2041 +#: src/slic3r/GUI/Tab.cpp:2076 msgid "Display" msgstr "Display" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "Displayhöhe" -#: src/libslic3r/PrintConfig.cpp:2319 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "Zeige horizontale Spiegelung" -#: src/libslic3r/PrintConfig.cpp:2227 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "Displayausrichtung" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "Zeige das Druckhost Warteschlangenfenster" -#: src/libslic3r/PrintConfig.cpp:2326 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "Zeige vertikale Spiegelung" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "Displaybreite" -#: src/libslic3r/PrintConfig.cpp:341 +#: src/libslic3r/PrintConfig.cpp:367 msgid "Distance between copies" msgstr "Abstand zwischen Kopien" -#: src/libslic3r/PrintConfig.cpp:1610 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." -msgstr "Distanz zwischen Schürze und Objekt. Auf Null stellen um die Schürze an das Objekt zu verbinden und einen Rand für bessere Haftung zu generieren." +msgstr "Distanz zwischen Schürze und Objekt. Auf null stellen um die Schürze an das Objekt zu verbinden und einen Rand für bessere Haftung zu generieren." -#: src/libslic3r/PrintConfig.cpp:2752 +#: src/libslic3r/PrintConfig.cpp:2873 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Abstand zwischen zwei Verbindungsstäben, die das Objekt mit der erzeugten Grundschicht verbinden." -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "Abstand vom Objekt" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Abstand der 0,0 G-Code-Koordinate von der linken vorderen Ecke des Rechtecks." -#: src/libslic3r/PrintConfig.cpp:285 +#: src/libslic3r/PrintConfig.cpp:310 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Abstand des Mittelpunktes des Kühlrohres von der Extruderspitze." -#: src/libslic3r/PrintConfig.cpp:1338 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Abstand der Extruderspitze von der Position, an der das Filament beim Entladen abgestellt wird. Dies sollte mit dem Wert in der Drucker-Firmware übereinstimmen." -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:368 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Abstand für die automatische Druckplattenbelegung." -#: src/libslic3r/PrintConfig.cpp:3097 +#: src/libslic3r/PrintConfig.cpp:3471 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Nicht abbrechen, wenn eine an --load übergebene Datei nicht existiert." -#: src/libslic3r/PrintConfig.cpp:3041 +#: src/libslic3r/PrintConfig.cpp:3415 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Die angegebenen Modelle werden vor dem Zusammenführen nicht neu angeordnet und behalten ihre ursprünglichen XY-Koordinaten." -#: src/slic3r/GUI/Field.cpp:206 +#: src/slic3r/GUI/Field.cpp:235 #, possible-c-format msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." msgstr "Meinen Sie%s anstelle von %s %s?\nWählen Sie JA, wenn Sie diesen Wert auf %s%% ändern möchten, \noder NEIN, wenn Sie sicher sind, dass %s %s ein korrekter Wert ist." -#: src/slic3r/GUI/GUI_App.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "Möchten Sie die Standardfilamente automatisch auswählen?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "Möchten Sie automatisch Standardmaterialien auswählen?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1893 +msgid "Do you want to delete all saved tool changes?" +msgstr "Möchten Sie alle gespeicherten Werkzeugänderungen löschen?" + +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "Wollen Sie fortfahren?" +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "Do you want to retry" +msgstr "Möchten Sie es erneut versuchen" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 msgid "Do you want to save your manually edited support points?" msgstr "Möchten Sie Ihre manuell bearbeiteten Stützpunkte speichern?" -#: src/libslic3r/PrintConfig.cpp:3040 +#: src/libslic3r/PrintConfig.cpp:3414 msgid "Don't arrange" msgstr "Nicht Anordnen" -#: src/slic3r/GUI/UpdateDialogs.cpp:55 +#: src/slic3r/GUI/UpdateDialogs.cpp:71 msgid "Don't notify about new releases any more" msgstr "Keine Benachrichtigung mehr über neue Releases" -#: src/libslic3r/PrintConfig.cpp:333 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Don't support bridges" msgstr "Brücken nicht unterstützen" @@ -1838,141 +2012,169 @@ msgstr "Brücken nicht unterstützen" msgid "Downgrade" msgstr "Downgrade" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Drag" msgstr "Ziehen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:340 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:355 -msgid "Drop to bed" -msgstr "Auf das Bett fallen lassen" +#: src/libslic3r/SLAPrintSteps.cpp:42 +msgid "Drilling holes into model." +msgstr "Löcher in das Modell bohren." -#: src/libslic3r/PrintConfig.cpp:3044 +#: src/libslic3r/SLAPrintSteps.cpp:163 +msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." +msgstr "Das Bohren von Löchern in das Netz ist fehlgeschlagen. Dies wird normalerweise durch ein beschädigtes Modell verursacht. Versuchen Sie zuerst, es zu reparieren." + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:337 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:349 +msgid "Drop to bed" +msgstr "Auf das Druckbett fallen lassen" + +#: src/libslic3r/PrintConfig.cpp:3418 msgid "Duplicate" msgstr "Duplizieren" -#: src/libslic3r/PrintConfig.cpp:3049 +#: src/libslic3r/PrintConfig.cpp:3423 msgid "Duplicate by grid" msgstr "Duplizieren nach Raster" -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "Während der übrigen Schichten, Lüfter" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2660 msgid "Dynamic" msgstr "Dynamisch" -#: src/slic3r/GUI/MainFrame.cpp:708 +#: src/slic3r/GUI/MainFrame.cpp:751 msgid "E&xport" msgstr "E&xport" -#: src/slic3r/GUI/GUI_ObjectList.cpp:238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:345 msgid "edges fixed" msgstr "Kanten korrigiert" -#: src/slic3r/GUI/wxExtensions.cpp:3460 +#: src/slic3r/GUI/DoubleSlider.cpp:1480 msgid "Edit color" msgstr "Farbe bearbeiten" -#: src/slic3r/GUI/wxExtensions.cpp:3462 +#: src/slic3r/GUI/DoubleSlider.cpp:933 +msgid "Edit current color - Right click the colored slider segment" +msgstr "Aktuelle Farbe bearbeiten - Rechtsklick auf das farbige Schiebereglersegment" + +#: src/slic3r/GUI/DoubleSlider.cpp:1482 msgid "Edit custom G-code" msgstr "Benutzerdefinierten G-Code bearbeiten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2690 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 msgid "Edit Height Range" msgstr "Höhenbereich bearbeiten" -#: src/slic3r/GUI/wxExtensions.cpp:3461 +#: src/slic3r/GUI/DoubleSlider.cpp:1481 msgid "Edit pause print message" msgstr "Druckpausen-Mitteilung bearbeiten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:373 +#: src/slic3r/GUI/DoubleSlider.cpp:1003 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "Häkchen bearbeiten - Strg + Linksklick" + +#: src/slic3r/GUI/DoubleSlider.cpp:1004 +msgid "Edit tick mark - Right click" +msgstr "Häkchen bearbeiten - Rechtsklick" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 msgid "Editing" msgstr "Bearbeitung" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:375 msgid "Elephant foot compensation" -msgstr "Elefantenfuss Kompensation" +msgstr "Elefantenfußkompensation" -#: src/libslic3r/SLAPrint.cpp:678 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "Elefantenfuß Mindestbreite" + +#: src/libslic3r/SLAPrint.cpp:625 msgid "Elevation is too low for object. Use the \"Pad around object\" feature to print the object without elevation." msgstr "Die Erhöhung ist zu niedrig für das Objekt. Verwenden Sie die Funktion \"Grundschicht um Object\", um das Objekt ohne Erhöhung zu drucken." -#: src/libslic3r/PrintConfig.cpp:1044 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode." msgstr "Schreibt M73 P[Prozent gedruckt] R[Restzeit in Minuten] im Abstand von 1 Minute in den G-Code, damit die Firmware die genaue Restzeit anzeigt. Ab sofort erkennt nur noch die Prusa i3 MK3 Firmware das M73. Die i3 MK3 Firmware unterstützt auch das M73 Qxx Sxx für den Silent Mode." -#: src/libslic3r/GCode.cpp:628 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "Leere Schichten erkannt, die Ausgabe wäre nicht druckbar." -#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286 -#: src/libslic3r/PrintConfig.cpp:2099 +#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Aktivieren" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:303 msgid "Enable auto cooling" msgstr "Automatische Kühlung aktivieren" -#: src/libslic3r/PrintConfig.cpp:539 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" -msgstr "Ventilator anschalten wenn die Schichtdruckzeit geringer ist als" +msgstr "Lüfter einschalten wenn die Schichtdruckzeit geringer ist als" -#: src/libslic3r/PrintConfig.cpp:2321 +#: src/libslic3r/PrintConfig.cpp:2899 +msgid "Enable hollowing" +msgstr "Aushöhlung aktivieren" + +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "Horizontale Spiegelung der Ausgabebilder aktivieren" -#: src/libslic3r/PrintConfig.cpp:1781 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "Aktiviert Generierung von Stützstrukturen." -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:966 msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." -msgstr "Aktivieren Sie dies, um Kommentare in den G-Code einzufügen, die die Druckbewegungen beschriften zu welchem Objekt sie gehören, was für das Octoprint CancelObject Plugin nützlich ist. Diese Einstellungen sind NICHT kompatibel mit der Einstellung Single Extruder Multi Material und Wischen ins Objekt / Wischen ins Infill." +msgstr "Aktivieren Sie dies, um Kommentare in den G-Code einzufügen, die die Druckbewegungen beschriften zu welchem Objekt sie gehören, was für das OctoPrint CancelObject Plugin nützlich ist. Diese Einstellungen sind NICHT kompatibel mit der Einstellung Single Extruder Multi Material und Wischen ins Objekt / Wischen ins Infill." -#: src/libslic3r/PrintConfig.cpp:881 +#: src/libslic3r/PrintConfig.cpp:929 msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." msgstr "Aktivieren Sie diese Option, um eine kommentierte G-Code-Datei zu erhalten, wobei jede Zeile durch einen beschreibenden Text erklärt wird. Wenn Sie von einer SD-Karte drucken, kann die zusätzliche Dateigröße dazu führen, dass Ihre Firmware langsamer wird." -#: src/libslic3r/PrintConfig.cpp:2085 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "Variable Schichthöhen aktivieren" -#: src/libslic3r/PrintConfig.cpp:2328 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "Vertikale Spiegelung der Ausgabebilder aktivieren" -#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955 -#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "G-Code am Ende" -#: src/libslic3r/PrintConfig.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "Erzwinge Stützstrukturen bei den ersten" -#: src/libslic3r/PrintConfig.cpp:1845 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" -msgstr "Erzwinge Stützmaterial bei den ersten n Schichten" +msgstr "Erzwinge Stützstrukturen bei den ersten n Schichten" -#: src/slic3r/GUI/PrintHostDialogs.cpp:197 -#: src/slic3r/GUI/PrintHostDialogs.cpp:228 +#: src/slic3r/GUI/PrintHostDialogs.cpp:198 +#: src/slic3r/GUI/PrintHostDialogs.cpp:229 msgid "Enqueued" msgstr "In der Warteschlange" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" -msgstr "Stelle die vertikale Hüllenstärke sicher" +msgstr "Stelle die vertikale Hüllenstärke sicher" -#: src/slic3r/GUI/wxExtensions.cpp:3499 +#: src/slic3r/GUI/DoubleSlider.cpp:1590 msgid "Enter custom G-code used on current layer" msgstr "Benutzerdefinierten G-Code für die aktuelle Schicht eingeben" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Enter new name" msgstr "Geben Sie den neuen Namen ein" @@ -1980,262 +2182,292 @@ msgstr "Geben Sie den neuen Namen ein" msgid "Enter short message shown on Printer display during pause print" msgstr "Kurzmitteilung eingeben, die während der Druckpause auf dem Druckerdisplay angezeigt wird" -#: src/slic3r/GUI/ConfigWizard.cpp:622 -msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." -msgstr "Geben Sie die Betttemperatur ein, die erforderlich ist, damit Ihr Filament an Ihrem beheizten Bett haftet." +#: src/slic3r/GUI/DoubleSlider.cpp:1606 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "Geben Sie eine kurze Nachricht ein, die auf dem Druckerdisplay angezeigt wird, wenn der Druck angehalten wird." -#: src/slic3r/GUI/ConfigWizard.cpp:570 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 +msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." +msgstr "Geben Sie die Druckbetttemperatur ein, die erforderlich ist, damit Ihr Filament an Ihrem beheizten Druckbett haftet." + +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Enter the diameter of your filament." msgstr "Geben Sie den Durchmesser des Filaments ein." -#: src/slic3r/GUI/ConfigWizard.cpp:557 +#: src/slic3r/GUI/ConfigWizard.cpp:967 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Geben Sie den Durchmesser der Hotenddüse ein." -#: src/slic3r/GUI/ConfigWizard.cpp:608 +#: src/slic3r/GUI/DoubleSlider.cpp:1622 +msgid "Enter the height you want to jump to" +msgstr "Geben Sie die Höhe ein, auf die Sie wechseln möchten" + +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "Enter the temperature needed for extruding your filament." msgstr "Geben Sie die Temperatur ein, die für die Extrusion Ihres Filaments benötigt wird." -#: src/libslic3r/PrintConfig.cpp:718 +#: src/libslic3r/PrintConfig.cpp:761 msgid "Enter your filament cost per kg here. This is only for statistical information." msgstr "Geben Sie hier Ihre Filamentkosten pro kg ein. Dies dient ausschließlich statistischen Zwecken." -#: src/libslic3r/PrintConfig.cpp:686 +#: src/libslic3r/PrintConfig.cpp:718 msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement." msgstr "Geben Sie hier Ihre Filamentdichte ein. Dies dient ausschließlich statistischen Zwecken. Ein vernünftiger Weg ist es, eine bekannte Filamentlänge zu wiegen und das Verhältnis von Länge zu Volumen zu berechnen. Besser ist es, das Volumen direkt durch Verdrängung zu berechnen." -#: src/libslic3r/PrintConfig.cpp:678 +#: src/libslic3r/PrintConfig.cpp:710 msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Geben Sie hier Ihren Filamentdurchmesser ein. Eine hohe Genauigkeit ist erforderlich, also verwenden Sie einen Messschieber und führen Sie mehrere Messungen entlang des Filaments durch, um dann den Mittelwert zu berechnen." -#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Fehler" -#: src/slic3r/GUI/FirmwareDialog.cpp:608 +#: src/slic3r/GUI/FirmwareDialog.cpp:645 #, possible-c-format msgid "Error accessing port at %s: %s" msgstr "Fehler beim Zugriff auf Port bei %s:%s" -#: src/slic3r/GUI/Plater.cpp:3593 +#: src/slic3r/GUI/Plater.cpp:3441 +msgid "Error during reload" +msgstr "Fehler beim erneuten Laden" + +#: src/slic3r/GUI/Plater.cpp:5073 #, possible-c-format msgid "Error exporting 3MF file %s" msgstr "Fehler beim Exportieren der 3MF Datei %s" -#: src/slic3r/GUI/Plater.cpp:3564 +#: src/slic3r/GUI/Plater.cpp:5025 #, possible-c-format msgid "Error exporting AMF file %s" -msgstr "Fehler beim Exportieren der AMF Datei %s" +msgstr "Fehler beim Exportieren der AMF Datei %s" -#: src/slic3r/GUI/PrintHostDialogs.cpp:153 +#: src/slic3r/GUI/PrintHostDialogs.cpp:154 msgid "Error Message" msgstr "Fehlermeldung" -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:118 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Fehler beim Parsen der PrusaSlicer-Konfigurationsdatei, sie ist wahrscheinlich beschädigt. Versuchen Sie, die Datei manuell zu löschen, um den Fehler zu beheben. Ihre Benutzerprofile sind davon nicht betroffen." -#: src/slic3r/GUI/PrintHostDialogs.cpp:271 +#: src/slic3r/GUI/PrintHostDialogs.cpp:272 msgid "Error uploading to print host:" msgstr "Fehler beim Hochloden zu Druckhost:" -#: src/libslic3r/Zipper.cpp:105 +#: src/libslic3r/Zipper.cpp:102 msgid "Error with zip archive" msgstr "Fehler beim ZIP-Archiv" -#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1443 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 msgid "Error!" msgstr "Fehler!" -#: src/slic3r/GUI/BedShapeDialog.cpp:482 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "Fehler! Ungültiges Modell" -#: src/slic3r/GUI/FirmwareDialog.cpp:610 +#: src/slic3r/GUI/FirmwareDialog.cpp:647 #, possible-c-format msgid "Error: %s" msgstr "Fehler: %s" -#: src/slic3r/GUI/Plater.cpp:1503 +#: src/slic3r/GUI/Job.hpp:123 msgid "ERROR: not enough resources to execute a new job." msgstr "FEHLER: Nicht genügend Ressourcen, um einen neuen Job auszuführen." -#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028 -#: src/slic3r/GUI/Plater.cpp:1070 +#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 +#: src/slic3r/GUI/Plater.cpp:1255 msgid "Estimated printing time" msgstr "Erwartete Druckzeit" -#: src/slic3r/GUI/Plater.cpp:424 +#: src/slic3r/GUI/Plater.cpp:499 msgid "Everywhere" msgstr "Überall" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." msgstr "außer für die ersten %1% Schichten." -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "außer für die erste Schicht." -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1373 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Übermäßig %1%=%2% mm, um mit einem Düsendurchmesser von %3% mm druckbar zu sein" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 #, possible-c-format msgid "Exit %s" msgstr "%s beenden" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:361 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Experimentelle Option zur Verhinderung der Bildung von Trägermaterial unter Überbrückungsflächen." -#: src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan." msgstr "Experimentelle Option zur Anpassung des Durchflusses für Überhänge (Brückenvolumenfluss wird verwendet), zur Anwendung der Brückengeschwindigkeit und zur Aktivierung des Lüfters." -#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "Experte" -#: src/slic3r/GUI/ConfigWizard.cpp:787 +#: src/slic3r/GUI/ConfigWizard.cpp:823 msgid "Expert mode" msgstr "Expertenmodus" -#: src/slic3r/GUI/GUI_App.cpp:676 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "Experten Anzeigemodus" -#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821 +#: src/slic3r/GUI/Plater.cpp:5555 msgid "Export" msgstr "Export" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "Export Konfiguration (&C)" -#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 msgid "Export &G-code" msgstr "Export &G-Code" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Werkzeugpfade als OBJ exportieren (&t)" -#: src/libslic3r/PrintConfig.cpp:2949 +#: src/libslic3r/PrintConfig.cpp:3323 msgid "Export 3MF" msgstr "Export 3MF" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "Exportiere alle Voreinstellungen in eine Datei" -#: src/libslic3r/PrintConfig.cpp:2954 +#: src/libslic3r/PrintConfig.cpp:3328 msgid "Export AMF" msgstr "Exportiere AMF" -#: src/slic3r/GUI/Plater.cpp:1932 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Export AMF file:" msgstr "Exportiere AMF Datei:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 msgid "Export as STL" msgstr "Exportiere als STL" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "Konfiguration exportieren" + +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "Konfigurationssamlung exportieren (&B)" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "Exportiere die aktuelle Konfiguration in eine Datei" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "Exportiere die aktuelle Plattenbelegung als AMF" -#: src/slic3r/GUI/MainFrame.cpp:362 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "Exportiere die aktuelle Plattenbelegung als G-Code" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "Exportiere die aktuelle Plattenbelegung als STL" -#: src/slic3r/GUI/MainFrame.cpp:368 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" -msgstr "Exportiert die aktuelle Plattenbelegung als STL einschliesslich Stützstrukturen" +msgstr "Exportiert die aktuelle Plattenbelegung als STL einschließlich Stützstrukturen" -#: src/slic3r/GUI/Plater.cpp:2722 +#: src/slic3r/GUI/Plater.cpp:3673 msgid "Export failed" msgstr "Export ist fehlgeschlagen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733 -#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964 +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "Exportieren Sie die vollständigen Pfadnamen der Modelle und Teilequellen in 3mf- und amf-Dateien" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 +#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 msgid "Export G-code" msgstr "Export G-Code" -#: src/libslic3r/PrintConfig.cpp:2931 +#: src/libslic3r/PrintConfig.cpp:3305 msgid "Export OBJ" msgstr "Exportiere OBJ" -#: src/slic3r/GUI/Plater.cpp:2531 +#: src/slic3r/GUI/Plater.cpp:2594 msgid "Export OBJ file:" msgstr "Exportiere OBJ Datei:" -#: src/slic3r/Utils/FixModelByWin10.cpp:368 +#: src/slic3r/Utils/FixModelByWin10.cpp:369 +#: src/slic3r/Utils/FixModelByWin10.cpp:374 msgid "Export of a temporary 3mf file failed" msgstr "Export einer temporären 3MF Datei fehlgeschlagen" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" msgstr "Exportiere die Plattenbelegung als &AMF" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" msgstr "Exportiere die Plattenbelegung als &STL" -#: src/slic3r/GUI/MainFrame.cpp:481 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" -msgstr "Exportiere Plattenbelegung als STL einschliesslich Stützstrukturen" +msgstr "Exportiere Plattenbelegung als STL einschließlich Stützstrukturen" -#: src/libslic3r/PrintConfig.cpp:2943 +#: src/libslic3r/PrintConfig.cpp:3317 msgid "Export SLA" msgstr "Exportiere SLA" -#: src/libslic3r/PrintConfig.cpp:2959 +#: src/slic3r/GUI/Preferences.cpp:73 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "Vollständige Pfadnamen der Quellen in 3mf und amf exportieren" + +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Export STL" msgstr "Exportiere STL" -#: src/slic3r/GUI/Plater.cpp:1925 +#: src/slic3r/GUI/Plater.cpp:2575 msgid "Export STL file:" msgstr "Exportiere STL Datei:" -#: src/libslic3r/PrintConfig.cpp:2950 +#: src/libslic3r/PrintConfig.cpp:3324 msgid "Export the model(s) as 3MF." msgstr "Exportiert das/die Modell(e) als 3MF Datei." -#: src/libslic3r/PrintConfig.cpp:2955 +#: src/libslic3r/PrintConfig.cpp:3329 msgid "Export the model(s) as AMF." msgstr "Exportiert das/die Modell(e) als AMF Datei." -#: src/libslic3r/PrintConfig.cpp:2932 +#: src/libslic3r/PrintConfig.cpp:3306 msgid "Export the model(s) as OBJ." msgstr "Exportiert das/die Modell(e) als OBJ Datei." -#: src/libslic3r/PrintConfig.cpp:2960 +#: src/libslic3r/PrintConfig.cpp:3334 msgid "Export the model(s) as STL." msgstr "Exportiert das/die Modell(e) als STL Datei." -#: src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Export the selected object as STL file" msgstr "Exportiere das gewählte Objekt als STL Datei" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/Plater.cpp:877 +msgid "Export to SD card / Flash drive" +msgstr "Export auf SD-Karte/Flash-Laufwerk" + +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" msgstr "Werkzeugpfad als OBJ exportieren" -#: src/libslic3r/Print.cpp:1517 +#: src/libslic3r/Print.cpp:1634 msgid "Exporting G-code" msgstr "Exportiere G-Code" @@ -2248,139 +2480,143 @@ msgstr "Exportiere Modell..." msgid "Exporting source model" msgstr "Exportieren des Quellmodells" -#: src/libslic3r/SLAPrint.cpp:700 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "Belichtungszeit ist außerhalb der Druckerprofilgrenzen." -#: src/slic3r/GUI/Tab.cpp:3306 +#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 msgid "Exposure" msgstr "Belichtung" -#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311 +#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 msgid "Exposure time" msgstr "Belichtungszeit" -#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" -msgstr "Aussenschicht" +msgstr "Außenkontur" -#: src/slic3r/GUI/PresetHints.cpp:153 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" -msgstr "Aussenschichten" +msgstr "Außenkonturen" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" -msgstr "Aussenschichten" +msgstr "Außenkonturen" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" -msgstr "Aussenkonturen zuerst drucken" +msgstr "Außenkonturen zuerst drucken" -#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "Extra Länge bei Neustart" -#: src/libslic3r/PrintConfig.cpp:1321 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "Zusätzliche Ladestrecke" -#: src/libslic3r/PrintConfig.cpp:445 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "Extra Konturen wenn notwendig" -#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479 -#: src/libslic3r/PrintConfig.cpp:455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extruder" -#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475 +#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 +#: src/libslic3r/GCode/PreviewData.cpp:445 #, possible-c-format msgid "Extruder %d" msgstr "Extruder %d" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/DoubleSlider.cpp:978 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "Extruder (Werkzeug) ist geändert auf Extruder \"%1%\"" + +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Extruder and Bed Temperatures" msgstr "Extruder- und Druckbetttemperatur" -#: src/slic3r/GUI/WipeTowerDialog.cpp:226 +#: src/slic3r/GUI/WipeTowerDialog.cpp:255 msgid "Extruder changed to" msgstr "Extruder geändert auf" -#: src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/Tab.cpp:1235 msgid "Extruder clearance (mm)" msgstr "Extruder Abstand (mm)" -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "Extruder Farbe" -#: src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "Extruder Offset" -#: src/libslic3r/PrintConfig.cpp:863 +#: src/libslic3r/PrintConfig.cpp:911 msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file." -msgstr "Extrudertemperatur für die erste Schicht. Wenn Sie die Temperatur während des Druckvorgangs manuell regeln möchten, setzen Sie diesen Wert auf Null, um die Temperatursteuerbefehle in der Ausgabedatei zu deaktivieren." +msgstr "Extrudertemperatur für die erste Schicht. Wenn Sie die Temperatur während des Druckvorgangs manuell regeln möchten, setzen Sie diesen Wert auf null, um die Temperatursteuerbefehle in der Ausgabedatei zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." -msgstr "Extrudertemperatur für Schichten nach der ersten Schicht. Setzen Sie diesen Wert auf Null, um die Temperaturregelbefehle im Ausgabedatei zu deaktivieren." +msgstr "Extrudertemperatur für Schichten nach der ersten Schicht. Setzen Sie diesen Wert auf null, um die Temperaturregelbefehle in der Ausgabedatei zu deaktivieren." -#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72 -#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119 -#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456 -#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340 -#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852 -#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151 -#: src/libslic3r/PrintConfig.cpp:2159 +#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "Extruder" -#: src/libslic3r/PrintConfig.cpp:507 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "Extrusionsachse" -#: src/libslic3r/PrintConfig.cpp:513 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "Extrusionsfaktor" -#: src/slic3r/GUI/ConfigWizard.cpp:612 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 msgid "Extrusion Temperature:" msgstr "Extrusionstemperatur:" -#: src/slic3r/GUI/Tab.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:1207 msgid "Extrusion width" msgstr "Extrusionbreite" -#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514 -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523 -#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962 -#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "Extrusionsbreite" -#: src/slic3r/GUI/Plater.cpp:139 +#: src/slic3r/GUI/Plater.cpp:164 msgid "Facets" msgstr "Flächen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "facets added" msgstr "Facetten hinzugefügt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:239 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "facets removed" msgstr "Facetten enfernt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:241 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets reversed" msgstr "Facetten umgekehrt" -#: src/libslic3r/PrintConfig.cpp:2302 +#: src/libslic3r/PrintConfig.cpp:2508 msgid "Faded layers" msgstr "Ausblendende Schichten" -#: src/libslic3r/Zipper.cpp:47 +#: src/libslic3r/Zipper.cpp:44 msgid "failed finding central directory" msgstr "Zentrales Verzeichnis nicht gefunden" @@ -2388,270 +2624,270 @@ msgstr "Zentrales Verzeichnis nicht gefunden" msgid "Failed loading the input model." msgstr "Das Laden des Inputmodells ist fehlgeschlagen." -#: src/libslic3r/PrintBase.cpp:65 +#: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." msgstr "Die Verarbeitung der output_filename_format Vorlage ist fehlgeschlagen." -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "Kühllüfter" -#: src/slic3r/GUI/Tab.cpp:1501 +#: src/slic3r/GUI/Tab.cpp:1458 msgid "Fan settings" -msgstr "Ventilator Einstellungen" +msgstr "Lüfter Einstellungen" -#: src/slic3r/GUI/Tab.cpp:1502 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" -msgstr "Ventilatorgeschwindigkeit" +msgstr "Lüftergeschwindigkeit" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" -msgstr "Ventilatorgeschwindigkeit (%)" +msgstr "Lüftergeschwindigkeit (%)" -#: src/libslic3r/PrintConfig.cpp:2240 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "Schnell" -#: src/libslic3r/PrintConfig.cpp:2241 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "Schnelles Kippen" -#: src/slic3r/GUI/GUI_App.cpp:135 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "Fataler Fehler" -#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/libslic3r/GCode/PreviewData.cpp:394 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Merkmalstyp" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 msgid "Feature types" msgstr "Merkmalstypen" -#: src/slic3r/GUI/ConfigWizard.cpp:1488 +#: src/slic3r/GUI/ConfigWizard.cpp:1528 msgid "FFF Technology Printers" msgstr "FFF Technologie Drucker" -#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470 -#: src/slic3r/GUI/Tab.cpp:1471 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1275 +#: src/slic3r/GUI/Preset.cpp:1472 msgid "filament" msgstr "Filament" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Filament and Nozzle Diameters" msgstr "Filament- und Düsendurchmesser" -#: src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/ConfigWizard.cpp:984 msgid "Filament Diameter:" msgstr "Filamentdurchmesser:" -#: src/libslic3r/PrintConfig.cpp:620 +#: src/libslic3r/PrintConfig.cpp:651 msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." msgstr "Das Filament wird durch Hin- und Herbewegen in den Kühlschläuchen abgekühlt. Geben Sie die gewünschte Anzahl dieser Bewegungen an." -#: src/libslic3r/PrintConfig.cpp:654 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "Filament Ladezeit" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "Filament Bemerkungen" -#: src/slic3r/GUI/Tab.cpp:1502 src/slic3r/GUI/Tab.cpp:1557 +#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 msgid "Filament Overrides" msgstr "Filament Übersteuerung" -#: src/libslic3r/PrintConfig.cpp:1312 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "Filament Parkposition" -#: src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filament Profiles Selection" msgstr "Filament Profile Auswahl" -#: src/slic3r/GUI/Tab.cpp:1516 +#: src/slic3r/GUI/Tab.cpp:1473 msgid "Filament properties" msgstr "Filament Eigenschaften" -#: src/slic3r/GUI/Tab.hpp:335 +#: src/slic3r/GUI/Tab.hpp:354 msgid "Filament Settings" msgstr "Filamenteinstellungen" -#: src/libslic3r/PrintConfig.cpp:694 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "Filament Typ" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "Filament Entladezeit" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 msgid "filaments" msgstr "Filamente" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filaments" msgstr "Filamente" -#: src/libslic3r/Zipper.cpp:75 +#: src/libslic3r/Zipper.cpp:72 msgid "file close failed" -msgstr "Dateischliessen fehlgeschlagen" +msgstr "Dateischließen fehlgeschlagen" -#: src/libslic3r/Zipper.cpp:69 +#: src/libslic3r/Zipper.cpp:66 msgid "file create failed" msgstr "Dateierzeugen fehlgeschlagen" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:793 msgid "File Not Found" msgstr "Datei nicht gefunden" -#: src/libslic3r/Zipper.cpp:89 +#: src/libslic3r/Zipper.cpp:86 msgid "file not found" msgstr "Datei nicht gefunden" -#: src/libslic3r/Zipper.cpp:67 +#: src/libslic3r/Zipper.cpp:64 msgid "file open failed" msgstr "Öffnen der Datei fehlgeschlagen" -#: src/libslic3r/Zipper.cpp:73 +#: src/libslic3r/Zipper.cpp:70 msgid "file read failed" msgstr "Dateilesen fehlgeschlagen" -#: src/libslic3r/Zipper.cpp:77 +#: src/libslic3r/Zipper.cpp:74 msgid "file seek failed" msgstr "Dateizugriff fehlgeschlagen" -#: src/libslic3r/Zipper.cpp:79 +#: src/libslic3r/Zipper.cpp:76 msgid "file stat failed" msgstr "Zugriff auf Dateieigenschaften fehlgeschlagen" -#: src/libslic3r/Zipper.cpp:39 +#: src/libslic3r/Zipper.cpp:36 msgid "file too large" msgstr "Datei zu groß" -#: src/libslic3r/Zipper.cpp:71 +#: src/libslic3r/Zipper.cpp:68 msgid "file write failed" msgstr "Schreiben der Datei fehlgeschlagen" -#: src/slic3r/GUI/PrintHostDialogs.cpp:152 +#: src/slic3r/GUI/PrintHostDialogs.cpp:153 msgid "Filename" msgstr "Dateiname" -#: src/libslic3r/PrintConfig.cpp:728 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "Füllwinkel" -#: src/libslic3r/PrintConfig.cpp:742 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "Fülldichte" -#: src/libslic3r/PrintConfig.cpp:779 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "Füllmuster" -#: src/libslic3r/PrintConfig.cpp:410 +#: src/libslic3r/PrintConfig.cpp:437 msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells." -msgstr "Füllmuster für die Boden Füllung. Dies wirkt sich nur auf die äußere sichtbare Bodenschicht aus, nicht aber auf die angrenzenden soliden Konturen." +msgstr "Füllmuster für die Boden Füllung. Dies wirkt sich nur auf die äußere sichtbare Bodenschicht aus, nicht aber auf die angrenzenden massiven Konturen." -#: src/libslic3r/PrintConfig.cpp:781 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "Füllmuster für allgemeines Infill mit niedriger Dichte." -#: src/libslic3r/PrintConfig.cpp:390 +#: src/libslic3r/PrintConfig.cpp:417 msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells." -msgstr "Füllmuster für die obere Füllung. Dies betrifft nur die obere sichtbare Schicht und nicht die angrenzenden festen Schalen." +msgstr "Füllmuster für die obere Füllung. Dies betrifft nur die obere sichtbare Schicht und nicht die angrenzenden massiven Konturen." #: src/slic3r/GUI/BonjourDialog.cpp:225 msgid "Finished" msgstr "Fertig" -#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920 +#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:740 +#: src/slic3r/GUI/FirmwareDialog.cpp:777 msgid "Firmware flasher" msgstr "Firmware Flasher" -#: src/slic3r/GUI/FirmwareDialog.cpp:765 +#: src/slic3r/GUI/FirmwareDialog.cpp:802 msgid "Firmware image:" msgstr "Firmware Image:" -#: src/slic3r/GUI/Tab.cpp:2431 +#: src/slic3r/GUI/Tab.cpp:2573 msgid "Firmware Retraction" msgstr "Firmware Einzug" -#: src/slic3r/GUI/ConfigWizard.cpp:486 +#: src/slic3r/GUI/ConfigWizard.cpp:892 msgid "Firmware Type" msgstr "Firmware Typ" -#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821 -#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "Erste Schicht" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "Höhe der ersten Schicht" -#: src/libslic3r/Print.cpp:1328 +#: src/libslic3r/Print.cpp:1418 msgid "First layer height can't be greater than nozzle diameter" msgstr "Schichthöhe der ersten Schicht darf nicht größer sein als der Düsendurchmesser" -#: src/libslic3r/PrintConfig.cpp:852 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "Druckgeschwindigkeit der ersten Schicht" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "Volumenparameter der ersten Schicht" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 msgid "Fix through the Netfabb" msgstr "Reparieren mittels Netfabb" -#: src/slic3r/GUI/Plater.cpp:3072 +#: src/slic3r/GUI/Plater.cpp:3482 msgid "Fix Throught NetFabb" msgstr "Reparieren mittels Netfabb" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" msgstr "Flashe Drucker &Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:146 +#: src/slic3r/GUI/FirmwareDialog.cpp:150 msgid "Flash!" msgstr "Flash!" -#: src/slic3r/GUI/FirmwareDialog.cpp:275 +#: src/slic3r/GUI/FirmwareDialog.cpp:284 msgid "Flashing cancelled." msgstr "Flashen abgebrochen." -#: src/slic3r/GUI/FirmwareDialog.cpp:192 +#: src/slic3r/GUI/FirmwareDialog.cpp:199 msgid "Flashing failed" msgstr "Flashen fehlgeschlagen" -#: src/slic3r/GUI/FirmwareDialog.cpp:274 +#: src/slic3r/GUI/FirmwareDialog.cpp:283 msgid "Flashing failed. Please see the avrdude log below." msgstr "Flashen misslungen. Bitte überprüfen Sie das Avrdude log unterhalb." -#: src/slic3r/GUI/FirmwareDialog.cpp:148 +#: src/slic3r/GUI/FirmwareDialog.cpp:152 msgid "Flashing in progress. Please do not disconnect the printer!" msgstr "Es wird geflashed. Bitte nicht den Drucker abklemmen!" -#: src/slic3r/GUI/FirmwareDialog.cpp:273 +#: src/slic3r/GUI/FirmwareDialog.cpp:282 msgid "Flashing succeeded!" msgstr "Flashen erfolgreich!" -#: src/slic3r/GUI/Tab.cpp:1156 +#: src/slic3r/GUI/Tab.cpp:1220 msgid "Flow" msgstr "Fluss" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" msgstr "die Durchflussmenge ist am Maximum" @@ -2675,299 +2911,390 @@ msgstr "Für das Löschen des \"%1%\"-Codes verwenden Sie die linke Maustaste\nF msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" msgstr "Um Farbwechsel zu löschen, verwenden Sie die linke Maustaste\nFür die Bearbeitung von Farben verwenden Sie die rechte Maustaste" -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Für weitere Informationen besuchen Sie bitte unsere Wiki-Seite:" -#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528 +#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 msgid "For support enforcers only" msgstr "Nur für Stützverstärker" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3345 +#: src/slic3r/GUI/Tab.cpp:3249 msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." msgstr "Beim linken Knopf: zeigt eine Nicht-System- (oder Nicht-Standard-) Einstellung an.\nBeim rechten Knopf: zeigt an, dass die Einstellung nicht geändert wurde." -#: src/slic3r/GUI/ConfigManipulation.cpp:128 +#: src/slic3r/GUI/ConfigManipulation.cpp:136 msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." msgstr "Damit der Reinigungsturm mit den löslichen Trägermaterialien arbeiten kann, müssen die Stützschichten mit den Objektschichten synchronisiert sein." -#: src/libslic3r/Print.cpp:1302 +#: src/libslic3r/Print.cpp:1392 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Damit der Reinigungsturm mit den löslichen Trägermaterialien arbeiten kann, müssen die Stützschichten mit den Objektschichten synchronisiert sein." -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Force pad around object everywhere" msgstr "Grundschicht überall um Objekt erzwingen" -#: src/libslic3r/PrintConfig.cpp:1660 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "Force solid infill for regions having a smaller area than the specified threshold." -msgstr "Feste Füllung für Bereiche, die eine kleinere Fläche als die angegebene Schwelle aufweisen." +msgstr "Massives Infill für Bereiche, die eine kleinere Fläche als die angegebene Schwelle aufweisen." -#: src/libslic3r/PrintConfig.cpp:1023 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." -msgstr "Erzwingt die Erzeugung von festen Schalen zwischen benachbarten Materialien/Volumina. Geeignet für Multiextruderdrucke mit transluzenten Materialien oder manuell löslichen Trägermaterialien." +msgstr "Erzwingt die Erzeugung von massiven Schalen zwischen benachbarten Materialien/Volumina. Geeignet für Multiextruderdrucke mit transluzenten Materialien oder manuell löslichen Trägermaterialien." -#: src/slic3r/GUI/WipeTowerDialog.cpp:262 +#: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "From" msgstr "Von" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 msgid "From Object List You can't delete the last solid part from object." msgstr "Sie können nicht das letzte solide Teil des Objekts von der Objektliste löschen." -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "Front" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "Frontalansicht" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1015 msgid "full profile name" msgstr "vollständiger Profilname" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "G-code" msgstr "G-Code" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87 +#: src/slic3r/GUI/DoubleSlider.cpp:987 +msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." +msgstr "Der mit diesem Häkchen verbundene G-Code steht in Konflikt mit dem Druckmodus.\nSeine Bearbeitung führt zu Änderungen der Slicer-Daten." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 msgid "G-code file exported to %1%" msgstr "G-Code Datei exportiert nach %1%" -#: src/libslic3r/PrintConfig.cpp:888 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "G-Code Typ" -#: src/libslic3r/PrintConfig.cpp:689 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2496 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870 -#: src/libslic3r/GCode/PreviewData.cpp:170 +#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Lückenfüllung" -#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812 -#: src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 +#: src/slic3r/GUI/Tab.cpp:2038 msgid "General" msgstr "Allgemein" -#: src/libslic3r/PrintConfig.cpp:1242 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder." msgstr "Erzeugt nicht weniger als die Anzahl der Schürzenschleifen, die benötigt wird, um die angegebene Menge an Filament auf der unteren Schicht zu verbrauchen. Bei Multiextruder-Maschinen gilt dieses Minimum für jeden Extruder." -#: src/libslic3r/PrintConfig.cpp:1779 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "Generiere Stützstrukturen" -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." -msgstr "Generiere Stützmaterial für die angegebene Anzahl von Schichten, die von unten gezählt werden, unabhängig davon, ob normales Stützmaterial aktiviert ist oder nicht und unabhängig von einer Winkelschwelle. Dies ist nützlich, um die Haftung von Objekten mit einem sehr dünnen oder schlechten Standfuß auf der Bauplatte zu erhöhen." +msgstr "Generiere Stützstrukturen für die angegebene Anzahl von Schichten, die von unten gezählt werden, unabhängig davon, ob normale Stützstrukturen aktiviert sind oder nicht und unabhängig von einer Winkelschwelle. Dies ist nützlich, um die Haftung von Objekten mit einem sehr dünnen oder schlechten Standfuß auf der Bauplatte zu erhöhen." -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2604 msgid "Generate supports" msgstr "Stützstrukturen generieren" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2606 msgid "Generate supports for the models" msgstr "Erzeugt Stützstrukturen für die Modelle" -#: src/libslic3r/Print.cpp:1492 +#: src/libslic3r/Print.cpp:1610 msgid "Generating brim" msgstr "Generiere Rand" -#: src/libslic3r/Print.cpp:1524 +#: src/libslic3r/Print.cpp:1638 msgid "Generating G-code" msgstr "Generiere G-Code" -#: src/libslic3r/SLAPrint.cpp:58 +#: src/libslic3r/SLAPrintSteps.cpp:46 msgid "Generating pad" msgstr "Generiere Grundschicht" -#: src/libslic3r/PrintObject.cpp:141 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" -msgstr "Generiere Aussenschichten" +msgstr "Generiere Außenkonturen" -#: src/libslic3r/Print.cpp:1484 +#: src/libslic3r/Print.cpp:1602 msgid "Generating skirt" msgstr "Generiere Schürze" -#: src/libslic3r/PrintObject.cpp:391 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "Generiere Stützstrukturen" -#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809 +#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 msgid "Generating support points" msgstr "Erzeuge Stützpunkte" -#: src/libslic3r/SLAPrint.cpp:57 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Generating support tree" msgstr "Erzeuge Baumstützstruktur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1551 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 msgid "Generic" msgstr "Generisch" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 msgid "Gizmo cut" msgstr "Gizmo Schnitt" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Gizmo move" msgstr "Gizmo Bewegung" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 msgid "Gizmo Place face on bed" msgstr "Gizmo auf Fläche platzieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Gizmo rotate" msgstr "Gizmo Rotieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 msgid "Gizmo scale" msgstr "Gizmo Skalieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA Aushöhlung" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo SLA support points" msgstr "Gizmo SLA Stützpunkte" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:641 +#: src/slic3r/GUI/GLCanvas3D.cpp:2945 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 msgid "Gizmo-Move" msgstr "Gizmo Bewegen" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:569 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 msgid "Gizmo-Place on Face" msgstr "Gizmo Auf Fläche legen" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:651 +#: src/slic3r/GUI/GLCanvas3D.cpp:3025 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 msgid "Gizmo-Rotate" msgstr "Gizmo-Rotation" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:646 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 msgid "Gizmo-Scale" msgstr "Gizmo Skalierung" -#: src/slic3r/GUI/AboutDialog.cpp:95 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "Gizmos" + +#: src/slic3r/GUI/AboutDialog.cpp:259 msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, Version 3" -#: src/slic3r/GUI/ConfigWizard.cpp:571 +#: src/slic3r/GUI/ConfigWizard.cpp:981 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Eine hohe Genauigkeit ist erforderlich, also verwenden Sie einen Messschieber und führen Sie mehrere Messungen entlang des Filaments durch, um dann den Mittelwert zu berechnen." -#: src/libslic3r/PrintConfig.cpp:797 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "Gitternetz" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1846 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 msgid "Group manipulation" msgstr "Gruppenbearbeitung" -#: src/libslic3r/PrintConfig.cpp:805 +#: src/slic3r/GUI/Preferences.cpp:137 +msgid "GUI" +msgstr "GUI" + +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "Gyroid" -#: src/slic3r/GUI/Tab.cpp:2775 +#: src/slic3r/GUI/Tab.cpp:2921 msgid "has the following unsaved changes:" msgstr "hat die folgenden ungesicherten Änderungen:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "Kopfdurchmesser" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "Die Kopfeindringung sollte nicht größer als die Kopfbreite sein." -#: src/libslic3r/PrintConfig.cpp:822 +#: src/libslic3r/PrintConfig.cpp:869 msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." -msgstr "Druckbetttemperatur für die erste Schicht. Setzen Sie diesen Wert auf Null, um die Befehle zur Steuerung der Betttemperatur im Ausgang zu deaktivieren." +msgstr "Druckbetttemperatur für die erste Schicht. Setzen Sie diesen Wert auf null, um die Befehle zur Steuerung der Betttemperatur im Ausgang zu deaktivieren." -#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Höhe" -#: src/libslic3r/GCode/PreviewData.cpp:396 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "Höhe (mm)" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts." -msgstr "Höhe der Schürze in Schichten. Eine hohe Schürze kann gegen Zugluft schützen." +msgstr "Höhe der Schürze in Schichten. Eine hohe Schürze kann gegen Zugluft schützen." -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "Displayhöhe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 msgid "Height range Modifier" msgstr "Höhenbereich Modifizierer" -#: src/slic3r/GUI/GLCanvas3D.cpp:3650 src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Height ranges" msgstr "Höhenbereiche" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:251 msgid "Heights at which a filament change is to occur." msgstr "Höhen, bei denen eine Filamentwechsel stattfinden soll." -#: src/slic3r/GUI/ConfigWizard.cpp:300 +#: src/slic3r/GUI/ConfigWizard.cpp:433 #, possible-c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Hallo, willkommen bei %s! Dieses %s hilft Ihnen bei der Erstkonfiguration; nur ein paar Einstellungen und Sie sind bereit zum Drucken." -#: src/libslic3r/PrintConfig.cpp:2976 +#: src/libslic3r/PrintConfig.cpp:3350 msgid "Help" msgstr "Hilfe" -#: src/libslic3r/PrintConfig.cpp:2982 +#: src/libslic3r/PrintConfig.cpp:3356 msgid "Help (FFF options)" msgstr "Hilfe (FFF Optionen)" -#: src/libslic3r/PrintConfig.cpp:2987 +#: src/libslic3r/PrintConfig.cpp:3361 msgid "Help (SLA options)" msgstr "Hilfe (SLA Optionen)" -#: src/slic3r/GUI/WipeTowerDialog.cpp:225 +#: src/slic3r/GUI/WipeTowerDialog.cpp:254 msgid "Here you can adjust required purging volume (mm³) for any given pair of tools." msgstr "Hier können Sie das erforderliche Reinigungsvolumen (mm³) für ein beliebiges Werkzeugpaar einstellen." -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "Hohe Extruderstromstärke beim Filamentwechsel" -#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806 +#: src/slic3r/GUI/GLCanvas3D.cpp:282 +msgid "Higher print quality versus higher print speed." +msgstr "Höhere Druckqualität versus höhere Druckgeschwindigkeit." + +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "HIlbertkurve" -#: src/slic3r/GUI/Plater.cpp:873 +#: src/slic3r/GUI/Plater.cpp:1039 msgid "Hold Shift to Slice & Export G-code" msgstr "Halten Sie die Umschalttaste gedrückt, um zu slicen und den G-Code zu exportieren" -#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "Lochtiefe" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "Lochdurchmesser" + +#: src/slic3r/GUI/Plater.cpp:2744 +msgid "Hollow" +msgstr "Aushöhlen" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" +msgstr "Aushöhlen und Bohren" + +#: src/libslic3r/PrintConfig.cpp:2901 +msgid "Hollow out a model to have an empty interior" +msgstr "Ein Modell aushöhlen, um einen leeren Innenraum zu erhalten" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "Dieses Objekt aushöhlen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 +#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 +#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 +#: src/libslic3r/PrintConfig.cpp:2926 +msgid "Hollowing" +msgstr "Aushöhlen" + +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Hollowing accuracy" +msgstr "Genauigkeit" + +#: src/slic3r/GUI/Plater.cpp:2910 +msgid "Hollowing cancelled." +msgstr "Aushöhlen abgebrochen" + +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Hollowing closing distance" +msgstr "Schliessabstand" + +#: src/slic3r/GUI/Plater.cpp:2911 +msgid "Hollowing done." +msgstr "Aushöhlung erledigt." + +#: src/slic3r/GUI/Plater.cpp:2913 +msgid "Hollowing failed." +msgstr "Das Aushöhlen ist fehlgeschlagen." + +#: src/libslic3r/PrintConfig.cpp:2928 +msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." +msgstr "Das Aushöhlen erfolgt in zwei Schritten: Zuerst wird ein imaginärer Innenraum tiefer (Versatz plus Schließabstand) in das Objekt hinein berechnet und dann wird es wieder auf den angegebenen Versatz aufgeblasen. Ein größerer Schließabstand macht den Innenraum runder. Bei Null wird der Innenraum dem Außenraum am ähnlichsten sein." + +#: src/libslic3r/SLAPrintSteps.cpp:41 +msgid "Hollowing model" +msgstr "Aushöhlen des Modells" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +msgid "Hollowing parameter change" +msgstr "Änderung der Aushöhlungsparameter" + +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Hollowing thickness" +msgstr "Wandstärke" + +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Bienenwabe" -#: src/slic3r/GUI/Tab.cpp:1013 +#: src/slic3r/GUI/Tab.cpp:1066 msgid "Horizontal shells" msgstr "Horizontale Konturhüllen" -#: src/libslic3r/PrintConfig.cpp:209 +#: src/libslic3r/PrintConfig.cpp:235 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Horizontalbreite des Randes, der um jedes Objekt auf der Bodenschicht gedruckt wird." -#: src/slic3r/GUI/PrintHostDialogs.cpp:151 +#: src/slic3r/GUI/PrintHostDialogs.cpp:152 msgid "Host" msgstr "Host" -#: src/libslic3r/PrintConfig.cpp:1267 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "Host Typ" @@ -2975,749 +3302,810 @@ msgstr "Host Typ" msgid "Hostname" msgstr "Hostname" -#: src/libslic3r/PrintConfig.cpp:81 +#: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" msgstr "Hostname, IP oder URL" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:141 msgid "Hover the cursor over buttons to find more information \nor click this button." msgstr "Bewegen Sie den Mauszeiger über die Schaltflächen, um weitere Informationen zu erhalten,\noder klicken Sie auf diese Schaltfläche." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2803 msgid "How far should the pad extend around the contained geometry" msgstr "Wie weit sich die Grundschicht um die enthaltene Geometrie erstrecken soll" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2892 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Wie weit die kleinen Verbinder in den Modellkörper eindringen sollen." -#: src/libslic3r/PrintConfig.cpp:2380 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "How much the pinhead has to penetrate the model surface" msgstr "Wie tief der Nadelkopf in die Modelloberfläche eindringt" -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/libslic3r/PrintConfig.cpp:2746 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Wie viel die Stützen das unterstützte Objekt anheben sollen. Wenn \"Grundschicht um Objekt\" aktiviert ist, wird dieser Wert ignoriert." -#: src/libslic3r/PrintConfig.cpp:95 +#: src/libslic3r/PrintConfig.cpp:111 msgid "HTTPS CA File" msgstr "HTTPS CA Datei" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "HTTPS-CA-Datei ist optional. Sie wird nur benötigt, wenn Sie HTTPS mit einem selbstsignierten Zertifikat verwenden." -#: src/slic3r/GUI/Tab.cpp:1773 +#: src/slic3r/GUI/Tab.cpp:1755 #, possible-c-format msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." msgstr "HTTPS CA-Datei:\nAuf diesem System verwendet %s HTTPS-Zertifikate aus dem System Zertifikatsspeicher oder Schlüsselbund. Um eine benutzerdefinierte CA-Datei zu verwenden, importieren Sie bitte Ihre CA-Datei in den Zertifikatsspeicher / Schlüsselbund." -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:226 msgid "Icon size in a respect to the default size" msgstr "Symbolgröße in Bezug auf die Standardgröße" -#: src/slic3r/GUI/PrintHostDialogs.cpp:148 +#: src/slic3r/GUI/PrintHostDialogs.cpp:149 msgid "ID" msgstr "ID" -#: src/libslic3r/PrintConfig.cpp:1787 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Wenn dieses Kontrollkästchen aktiviert ist, werden Stützstrukturen automatisch basierend auf dem Schwellenwert für den Überhang generiert. Wenn diese Option nicht aktiviert ist, werden Stützen nur innerhalb der Volumen der \"Stützverstärker\" generiert." -#: src/slic3r/GUI/ConfigWizard.cpp:413 +#: src/slic3r/GUI/ConfigWizard.cpp:772 #, possible-c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Falls aktiviert, sucht %s online nach neuen Versionen der Anwendung. Falls eine neue Version verfügbar ist, wird eine Mitteilung beim nächsten Programmstart angezeigt (aber nie während der Programmausführung). Dies dient nur der Mitteilung; es findet keine automatische Installation statt." -#: src/slic3r/GUI/ConfigWizard.cpp:423 +#: src/slic3r/GUI/ConfigWizard.cpp:782 #, possible-c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Wenn aktiviert, lädt %s Updates der eingebauten Systemvoreinstellungen im Hintergrund herunter. Diese Updates werden in einen separaten temporären Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar wird, wird sie beim Programmstart angeboten." -#: src/libslic3r/PrintConfig.cpp:1774 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." msgstr "Wenn aktiviert, werden alle Druckextruder zu Beginn des Druckvorgangs an der Vorderkante des Druckbetts geprimt." -#: src/slic3r/GUI/Preferences.cpp:63 +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "Wenn diese Option aktiviert ist, ermöglicht der Befehl Von Festplatte neu laden das automatische Suchen und Laden der Dateien, wenn er aufgerufen wird.\nWenn nicht aktiviert, fordert der Befehl Von der Festplatte neu laden jede Datei über ein Dialogfeld zum Öffnen von Dateien zur Auswahl auf." + +#: src/slic3r/GUI/Preferences.cpp:75 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." +msgstr "Wenn diese Option aktiviert ist, ermöglicht der Befehl \"Von Festplatte neu laden\" das automatische Suchen und Laden der Dateien, wenn er aufgerufen wird." + +#: src/slic3r/GUI/Preferences.cpp:66 msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Wenn aktiviert, wird PrusaSlicer online nach den neuen Versionen von sich selbst suchen. Wenn eine neue Version verfügbar wird, wird beim nächsten Anwendungsstart (nie während der Programmnutzung) eine Benachrichtigung angezeigt. Dies ist nur ein Benachrichtigungsmechanismus, es erfolgt keine automatische Installation." -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:84 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Wenn aktiviert, lädt Slic3r Updates der eingebauten Systemvoreinstellungen im Hintergrund herunter. Diese Updates werden in einen separaten temporären Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar wird, wird sie beim Programmstart angeboten." -#: src/slic3r/GUI/Preferences.cpp:105 +#: src/slic3r/GUI/Preferences.cpp:108 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Wenn aktiviert, wird die 3D-Szene in Retina-Auflösung gerendert. Wenn Sie Probleme mit der 3D-Leistung haben, kann es hilfreich sein, diese Option zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Wenn aktiviert, wird der Reinigungsturm nicht auf Schichten ohne Werkzeugwechsel gedruckt. Bei Schichten mit Werkzeugwechsel fährt der Extruder nach unten, um den Reinigungsturm zu drucken. Der Benutzer ist dafür verantwortlich, dass es nicht zu einer Kollision mit dem Druck kommt." -#: src/slic3r/GUI/Preferences.cpp:112 +#: src/slic3r/GUI/Preferences.cpp:131 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "Wenn aktiviert, verwenden Sie eine freie Kamera. Wenn nicht aktiviert, verwenden Sie eine beschränkte Kamera." + +#: src/slic3r/GUI/Preferences.cpp:123 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Wenn aktiviert, verwenden Sie eine perspektivische Kamera. Wenn nicht aktiviert, verwenden Sie eine orthographische Kamera." -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:149 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Wenn aktiviert, können Sie die Größe der Symbolleistensymbole manuell ändern." -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "If estimated layer time is below ~%1%s, fan will run at %2%%% and print speed will be reduced so that no less than %3%s are spent on that layer (however, speed will never be reduced below %4%mm/s)." -msgstr "Wenn die geschätzte Schichtzeit unter ~%1%s liegt, läuft der Lüfter mit %2%%% und die Druckgeschwindigkeit wird reduziert, so dass nicht weniger als %3%s für diese Schicht verwendet werden (die Geschwindigkeit wird jedoch nie unter %4%mm/s reduziert)." +msgstr "Wenn die geschätzte Schichtzeit unter ~%1%s liegt, läuft der Lüfter mit %2%%% und die Druckgeschwindigkeit wird reduziert, so dass nicht weniger als %3%s für diese Schicht verwendet werden (die Geschwindigkeit wird jedoch nie unter %4%mm/s reduziert)." -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "If estimated layer time is greater, but still below ~%1%s, fan will run at a proportionally decreasing speed between %2%%% and %3%%%." -msgstr "Falls die erwartete Schichtdruckzeit größer, aber noch unterhalb von ~%1%s ist, wird der Lüfter mit einer sich proportional verringernden Geschwindigkeit zwischen %2%%% und %3%%% laufen." +msgstr "Falls die erwartete Schichtdruckzeit größer, aber noch unterhalb von ~%1%s ist, wird der Lüfter mit einer sich proportional verringernden Geschwindigkeit zwischen %2%%% und %3%%% laufen." -#: src/libslic3r/PrintConfig.cpp:853 +#: src/libslic3r/PrintConfig.cpp:901 msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds." msgstr "Wird diese Geschwindigkeit als Absolutwert in mm/s angegeben, so wird sie auf alle Druckbewegungen der ersten Lage angewendet, unabhängig von ihrem Typ. In Prozent ausgedrückt (z.B. 40%) skaliert es die voreingestellten Geschwindigkeiten." -#: src/libslic3r/PrintConfig.cpp:540 +#: src/libslic3r/PrintConfig.cpp:573 msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds." msgstr "Wenn die Druckzeit der Ebenen unter dieser Anzahl von Sekunden liegt, wird der Lüfter aktiviert und seine Geschwindigkeit durch Interpolation der minimalen und maximalen Geschwindigkeiten berechnet." -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value." msgstr "Wenn die Druckzeit der Ebene unter dieser Anzahl von Sekunden liegt, wird die Geschwindigkeit des Druckvorgangs verringert, um die Zeitdauer auf diesen Wert zu verlängern." -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:567 msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS." msgstr "Wenn diese Option aktiviert ist, wird der Lüfter niemals deaktiviert und läuft mindestens mit seiner Minimaldrehzahl weiter. Sinnvoll für PLA, ungeignet für ABS." -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "If this is enabled, Slic3r will auto-center objects around the print bed center." -msgstr "Wenn diese Option aktiviert ist, zentriert Slic3r Objekte automatisch um die Mitte des Druckbettes." +msgstr "Wenn diese Option aktiviert ist, zentriert PrusaSlicer Objekte automatisch um die Mitte des Druckbettes." -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code." -msgstr "Wenn diese Option aktiviert ist, wird Slic3r Objekte vorverarbeiten, sobald sie geladen werden, um Zeit beim Export von G-Code zu sparen." +msgstr "Wenn diese Option aktiviert ist, wird PrusaSlicer Objekte vorverarbeiten, sobald sie geladen werden, um Zeit beim Export von G-Code zu sparen." -#: src/slic3r/GUI/Preferences.cpp:38 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files." -msgstr "Wenn diese Option aktiviert ist, öffnet Slic3r das letzte Ausgabeverzeichnis anstelle des Verzeichnisses, in dem sich die Eingabedateien befinden." +msgstr "Wenn diese Option aktiviert ist, öffnet PrusaSlicer das letzte Ausgabeverzeichnis anstelle des Verzeichnisses, in dem sich die Eingabedateien befinden." -#: src/libslic3r/PrintConfig.cpp:1492 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered." msgstr "Wenn Sie diesen Wert auf einen positiven Wert setzen, wird Z bei jedem Auslösen eines Einzugs schnell angehoben. Bei Verwendung mehrerer Extruder wird nur die Einstellung für den ersten Extruder berücksichtigt." -#: src/libslic3r/PrintConfig.cpp:1501 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers." msgstr "Wenn Sie diesen Wert auf einen positiven Wert setzen, erfolgt der Z-Hub nur oberhalb des angegebenen absoluten Z-Wertes. Sie können diese Einstellung für das Auslassen von Z-Hüben auf den ersten Ebenen einstellen." -#: src/libslic3r/PrintConfig.cpp:1510 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers." msgstr "Wenn Sie diesen Wert auf einen positiven Wert setzen, erfolgt der Z-Hub nur unterhalb des angegebenen absoluten Z-Wertes. Sie können diese Einstellung so einstellen, dass der Z-Hub auf die ersten Lagen begrenzt wird." -#: src/libslic3r/PrintConfig.cpp:1384 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables." -msgstr "Wenn Sie den Ausgabe-G-Code durch eigene Skripte verarbeiten wollen, geben Sie hier einfach die absoluten Pfade an. Trennen Sie mehrere Skripte durch ein Semikolon. Skripten werden als erstes Argument die absoluten Pfad zur G-Code-Datei übergeben, und sie können auf die Slic3r-Konfigurationseinstellungen zugreifen, indem sie Umgebungsvariablen lesen." +msgstr "Wenn Sie den Ausgabe-G-Code durch eigene Skripte verarbeiten wollen, geben Sie hier einfach die absoluten Pfade an. Trennen Sie mehrere Skripte durch ein Semikolon. Skripten wird als erstes Argument der absolute Pfad zur G-Code-Datei übergeben, und sie können auf die PrusaSlicer-Konfigurationseinstellungen zugreifen, indem sie Umgebungsvariablen lesen." -#: src/libslic3r/PrintConfig.cpp:498 +#: src/libslic3r/PrintConfig.cpp:530 msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)." msgstr "Wenn Ihre Firmware die Verschiebung des Extruders nicht beherrscht, benötigen Sie den G-Code, um sie zu berücksichtigen. Mit dieser Option können Sie die Verschiebung jedes Extruders in Bezug auf den ersten Extruder festlegen. Es erwartet positive Koordinaten (sie werden von der XY-Koordinate subtrahiert)." -#: src/libslic3r/PrintConfig.cpp:2068 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Wenn Ihre Firmware relative E-Werte benötigt, diese Option aktivieren, ansonsten lassen Sie sie unmarkiert. Die meisten Firmwares verwenden absolute Werte." -#: src/libslic3r/PrintConfig.cpp:3096 +#: src/libslic3r/PrintConfig.cpp:3470 msgid "Ignore non-existent config files" msgstr "Ignoriere fehlende Konfigurationsdateien" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "Importiere Konfiguration (&C)" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "Importiere Konfigurationssamlung (&B)" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "Importiere Konfiguration von &Projekt" -#: src/slic3r/GUI/Plater.cpp:4016 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "Konfiguration aus ini/amf/3mf/gcode importieren" + +#: src/slic3r/GUI/Plater.cpp:4616 msgid "Import Object" msgstr "Objekt importieren" -#: src/slic3r/GUI/Plater.cpp:4020 +#: src/slic3r/GUI/Plater.cpp:4620 msgid "Import Objects" msgstr "Objekte importieren" -#: src/slic3r/Utils/FixModelByWin10.cpp:383 +#: src/slic3r/Utils/FixModelByWin10.cpp:390 msgid "Import of the repaired 3mf file failed" msgstr "Import einer reparierten 3MF Datei fehlgeschlagen" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importiere STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:106 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "Importe STL/OBJ/AMF/3MF ohne Konfigurationsdaten, behalte Bett bei" +msgstr "Importe STL/OBJ/AMF/3MF ohne Konfigurationsdaten, behalte Druckbett bei" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2416 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "Importiere STL/OBJ/AMF/3MF mit Konfigurationsdaten, Druckplatte beibehalten" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 #, possible-c-format msgid "In this mode you can select only other %s Items%s" msgstr "In diesem Modus wählen Sie nur andere %s Elemente%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:132 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "Inkompatible Konfigurationssammlungen:" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 #, possible-c-format msgid "Incompatible with this %s" msgstr "Nicht kompatibel mit diesem %s" -#: src/slic3r/GUI/Plater.cpp:4091 +#: src/slic3r/GUI/Plater.cpp:4700 msgid "Increase Instances" msgstr "Kopien erhöhen" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:269 msgid "Increase/decrease edit area" msgstr "Bearbeitungsbereich vergrößern/verkleinern" +#: src/slic3r/GUI/Plater.cpp:2906 +msgid "Indexing hollowed object" +msgstr "Indizierung ausgehöhlter Objekte" + #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3338 +#: src/slic3r/GUI/Tab.cpp:3242 msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." msgstr "zeigt an, dass einige Einstellungen geändert wurden und nicht mit den System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen.\nKlicken Sie auf das Symbol GEÖFFNETES SCHLOSS, um alle Einstellungen für die aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3334 +#: src/slic3r/GUI/Tab.cpp:3238 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "zeigt an, dass die Einstellungen mit den System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3083 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "zeigt an, dass die Einstellungen geändert wurden und nicht mit dem zuletzt gespeicherten Preset für die aktuelle Optionsgruppe übereinstimmen. \nKlicken Sie auf das Symbol PFEIL ZURÜCK, um alle Einstellungen für die aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen." -#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69 -#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439 -#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031 -#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167 -#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729 -#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780 -#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943 -#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659 -#: src/libslic3r/PrintConfig.cpp:1676 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 +#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "Infill" -#: src/slic3r/GUI/PresetHints.cpp:171 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "Infill" -#: src/libslic3r/PrintConfig.cpp:972 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "Infill vor Kontur" -#: src/libslic3r/PrintConfig.cpp:953 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "Infill Extruder" -#: src/libslic3r/PrintConfig.cpp:987 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "Infill/Kontur Überlappung" -#: src/libslic3r/Print.cpp:1476 +#: src/libslic3r/Print.cpp:1580 msgid "Infilling layers" msgstr "Fülle Schichten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2424 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 msgid "Info" msgstr "Info" -#: src/libslic3r/PrintConfig.cpp:1008 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "Übernimmt Profil" -#: src/libslic3r/SLAPrint.cpp:707 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "Anfang-Belichtungszeit ist außerhalb der Druckerprofilgrenzen." -#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318 +#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 msgid "Initial exposure time" msgstr "Anfang-Belichtungszeit" -#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296 +#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 msgid "Initial layer height" msgstr "Anfangsschichthöhe" -#: src/slic3r/GUI/Field.cpp:155 +#: src/slic3r/GUI/Field.cpp:199 msgid "Input value is out of range" msgstr "Der Eingabewert ist nicht im gültigen Bereich" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "Inspiziere / aktiviere Konfigurations-Momentaufnahmen" -#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 #, possible-c-format msgid "Instance %d" msgstr "Kopie %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1887 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 msgid "Instance manipulation" msgstr "Kopie Bearbeitung" -#: src/slic3r/GUI/wxExtensions.cpp:358 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 msgid "Instances" msgstr "Kopien" -#: src/slic3r/GUI/GUI_ObjectList.cpp:934 src/slic3r/GUI/GUI_ObjectList.cpp:3346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 msgid "Instances to Separated Objects" msgstr "Kopien in einzelne Objekte wandeln" -#: src/libslic3r/PrintConfig.cpp:1886 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "Schnittstellen Schichten" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" msgstr "Kontaktschleifen" -#: src/libslic3r/PrintConfig.cpp:1895 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" msgstr "Schnittstellenmuster Abstand" -#: src/libslic3r/PrintConfig.cpp:1022 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "Schnittstellenshells" -#: src/libslic3r/Zipper.cpp:87 +#: src/libslic3r/Zipper.cpp:84 msgid "internal error" msgstr "interner Fehler" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Internes Infill" -#: src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:3090 msgid "Invalid data" msgstr "Ungültige Daten" -#: src/slic3r/GUI/BedShapeDialog.cpp:471 src/slic3r/GUI/BedShapeDialog.cpp:520 -#: src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "Ungültiges Dateiformat." -#: src/libslic3r/Zipper.cpp:83 +#: src/libslic3r/Zipper.cpp:80 msgid "invalid filename" msgstr "ungültiger Dateiname" -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "Ungültige Eindringtiefe des Stützkopfes" -#: src/libslic3r/Zipper.cpp:51 +#: src/libslic3r/Zipper.cpp:48 msgid "invalid header or archive is corrupted" msgstr "ungültiger Dateiheader oder Archiv ist beschädigt" -#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173 +#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Ungültige numerische Eingabe." -#: src/libslic3r/Zipper.cpp:81 +#: src/libslic3r/Zipper.cpp:78 msgid "invalid parameter" msgstr "ungültiger Parameter" -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "Ungültiger Nadelkopfdurchmesser" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:94 +#: src/slic3r/GUI/AboutDialog.cpp:258 msgid "is licensed under the" msgstr "ist unter der Lizenz der" -#: src/slic3r/GUI/Tab.cpp:2779 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Is necessary to install a configuration update. " +msgstr "Ein Konfigurations-Update muss installiert werden." + +#: src/slic3r/GUI/Tab.cpp:2925 msgid "is not compatible with print profile" msgstr "ist mit dem Druckprofil nicht kompatibel" -#: src/slic3r/GUI/Tab.cpp:2778 +#: src/slic3r/GUI/Tab.cpp:2924 msgid "is not compatible with printer" msgstr "ist mit dem Drucker nicht kompatibel" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "Iso" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "Iso Ansicht" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:966 msgid "It can't be deleted or modified." msgstr "Es ist keine Löschung oder Änderung möglich." -#: src/libslic3r/PrintConfig.cpp:926 +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "It is not allowed to change the file to reload" +msgstr "Es ist nicht erlaubt, die neu zu ladende Datei zu ändern" + +#: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Es kann vorteilhaft sein, den Extrudermotorstrom während des Filamentwechselvorgangs zu erhöhen, um schnelle Rammvorschübe zu ermöglichen und den Widerstand beim Laden eines Filaments mit einer ungünstig geformten Spitze zu überwinden." -#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Es ist nicht möglich mehrteilige Objekte mit dem SLA-Verfahren zu drucken." -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2225 msgid "Jerk limits" msgstr "Ruck-Begrenzungen" -#: src/libslic3r/PrintConfig.cpp:1579 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "Jitter" -#: src/libslic3r/PrintConfig.cpp:533 -msgid "Keep fan always on" -msgstr "Ventilator ständig laufen lassen" +#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 +#: src/slic3r/GUI/DoubleSlider.cpp:1623 +msgid "Jump to height" +msgstr "Zur Höhe wechseln" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194 +#: src/slic3r/GUI/DoubleSlider.cpp:928 +#, possible-c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "Auf Höhe %s wechseln oder Extrudersequenz für den gesamten Druck einstellen" + +#: src/libslic3r/PrintConfig.cpp:566 +msgid "Keep fan always on" +msgstr "Lüfter ständig laufen lassen" + +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "Unteren Teil behalten" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:309 msgid "Keep min" msgstr "Halte min" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "Oberen Teil behalten" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 msgid "Keyboard Shortcuts" msgstr "Tastaturkürzel" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "Tastaturkürzel" + +#: src/libslic3r/PrintConfig.cpp:2489 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "Objekte benennen" -#: src/libslic3r/PrintConfig.cpp:2234 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "Querformat" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "Spache" -#: src/slic3r/GUI/GUI_App.cpp:755 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "Sprachauswahl" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1770 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 msgid "Last instance of an object cannot be deleted." msgstr "Letzte Kopie eines Objektes kann nicht gelöscht werden." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2994 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 msgid "Layer" msgstr "Schicht" -#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55 +#: src/slic3r/GUI/ConfigManipulation.cpp:49 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Schichthöhe" -#: src/libslic3r/Print.cpp:1332 +#: src/libslic3r/Print.cpp:1423 msgid "Layer height can't be greater than nozzle diameter" msgstr "Schichthöhe darf nicht größer sein als der Düsendurchmesser" -#: src/slic3r/GUI/Tab.cpp:2260 +#: src/slic3r/GUI/Tab.cpp:2358 msgid "Layer height limits" msgstr "Schichthöhen Grenzen" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "Layer height:" msgstr "Schichthöhe:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2109 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 msgid "Layer range Settings to modify" msgstr "Schichtbereicheinstellungen zum Ändern" -#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620 -#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844 -#: src/libslic3r/PrintConfig.cpp:1889 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "Schichten" -#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 +#: src/slic3r/GUI/Tab.cpp:3585 msgid "Layers" msgstr "Schichten" -#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 msgid "Layers and perimeters" msgstr "Schichten und Umfänge" -#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68 -#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56 -#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381 -#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446 -#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026 -#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371 -#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987 -#: src/libslic3r/PrintConfig.cpp:2044 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 +#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "Schichten und Konturen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "Schichtenschieber" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 msgid "Layers Slider Shortcuts" msgstr "Schichtenschieber Kürzel" -#. TRN To be shown in Print Settings "Bottom solid layers" -#: rc/libslic3r/PrintConfig.cpp:149 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Bottom" msgstr "Boden" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/libslic3r/PrintConfig.cpp:2043 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Top" msgstr "Decke" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "Links" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Left click" msgstr "Linker Mausklick" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:242 msgid "Left mouse button:" msgstr "Linke Maustaste:" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "Anicht von Links" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:259 msgid "Legend" msgstr "Legende" -#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "Länge" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:318 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Länge des Kühlschlauchs, um den Raum für Kühlbewegungen im Inneren zu begrenzen." #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:124 +#: src/slic3r/GUI/AboutDialog.cpp:129 msgid "License agreements of all following programs (libraries) are part of application license agreement" msgstr "Lizenzvereinbarungen für alle folgenden Programme (Bibliotheken) sind Teil der Anwendungslizenzvereinbarung" -#: src/libslic3r/PrintConfig.cpp:1491 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "Z Hebung" -#: src/libslic3r/PrintConfig.cpp:801 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "Linie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1050 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 msgid "Load" msgstr "Laden" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "Lade ein Modell" -#: src/libslic3r/PrintConfig.cpp:3116 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Lädt und speichert Einstellungen im angegebenen Verzeichnis. Dies ist nützlich, um verschiedene Profile zu pflegen oder Konfigurationen aus einem Netzwerkspeicher zu übernehmen." -#: src/libslic3r/PrintConfig.cpp:3100 +#: src/libslic3r/PrintConfig.cpp:3474 msgid "Load config file" msgstr "Lade Konfigurationsdatei" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 msgid "Load Config from .ini/amf/3mf/gcode" msgstr "Lade Konfiguration von .ini/amf/3mf/gcode" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 msgid "Load Config from .ini/amf/3mf/gcode and merge" msgstr "Lade und füge Konfiguration von .ini/amf/3mf/gcode hinzu" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Lade und füge Konfiguration von ini/amf/3mf/gcode hinzu" + +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "Lade Konfiguration aus Projektdatei" -#: src/libslic3r/PrintConfig.cpp:3101 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Lädt die Konfiguration aus der angegebenen Datei. Es kann mehr als einmal verwendet werden, um Optionen aus mehreren Dateien zu laden." -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "Laden einer exportierten Konfigurationsdatei" -#: src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1375 msgid "Load File" msgstr "Datei laden" -#: src/slic3r/GUI/Plater.cpp:1275 +#: src/slic3r/GUI/Plater.cpp:1379 msgid "Load Files" msgstr "Dateien laden" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 msgid "Load Part" msgstr "Teil laden" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "Lade Voreinstellungen aus einer Sammlung" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4588 msgid "Load Project" msgstr "Projekt laden" -#: src/slic3r/GUI/BedShapeDialog.cpp:97 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "Lade Umriß von STL..." -#: src/slic3r/GUI/BedShapeDialog.cpp:181 src/slic3r/GUI/BedShapeDialog.cpp:249 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "Laden..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:235 +#: src/slic3r/GUI/WipeTowerDialog.cpp:264 msgid "loaded" msgstr "geladen wird" -#: src/slic3r/GUI/Plater.cpp:1782 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "Loaded" msgstr "Geladen" -#: src/slic3r/GUI/Plater.cpp:1590 +#: src/slic3r/GUI/Plater.cpp:2257 msgid "Loading" msgstr "Lade" -#: src/slic3r/GUI/GUI_App.cpp:407 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "Lade Anzeigemodus" -#: src/slic3r/GUI/GUI_App.cpp:399 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "Laden der aktuellen Voreinstellungen" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:378 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Loading repaired model" msgstr "Lade repariertes Modell" -#: src/libslic3r/PrintConfig.cpp:575 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "Ladegeschwindigkeit" -#: src/libslic3r/PrintConfig.cpp:583 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "Ladegeschwindigkeit zu Beginn" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:63 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:106 msgid "Local coordinates" msgstr "Lokale Koordinaten" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:49 msgid "Lock supports under new islands" msgstr "Fixiere Stützen unter neuen Inseln" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3236 msgid "LOCKED LOCK" msgstr "GESCHLOSSENES SCHLOSS" -#: src/slic3r/GUI/Tab.cpp:3360 +#: src/slic3r/GUI/Tab.cpp:3264 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "Das Symbol LOCKED LOCK zeigt an, dass die Einstellungen mit den System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen" -#: src/slic3r/GUI/Tab.cpp:3376 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "Das Symbol LOCKED LOCK zeigt an, dass der Wert mit dem System- (oder Standard-) Wert übereinstimmt." -#: src/libslic3r/PrintConfig.cpp:3119 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Logging level" msgstr "Logging-Level" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "Schleifen (minimal)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 msgid "Lower Layer" msgstr "Untere Schicht" -#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209 -#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087 -#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110 -#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132 -#: src/libslic3r/PrintConfig.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "Maschinengrenzen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 msgid "Main Shortcuts" msgstr "Haupt Kürzel" -#: src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/Plater.cpp:168 msgid "Manifold" msgstr "Hülle ok" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:57 msgid "Manual editing" msgstr "Manuelle Bearbeitung" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 msgid "Masked SLA file exported to %1%" msgstr "Maskierte SLA-Datei exportiert nach %1%" -#: src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:754 msgid "Mate&rial Settings Tab" msgstr "Mate&rial Einstellungen" -#: src/slic3r/GUI/Tab.cpp:3300 +#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.hpp:391 +#: src/slic3r/GUI/Tab.hpp:415 msgid "Material Settings" msgstr "Material Einstellungen" -#: src/slic3r/GUI/Plater.cpp:140 +#: src/slic3r/GUI/Plater.cpp:165 msgid "Materials" msgstr "Material" -#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "Max" -#: src/libslic3r/PrintConfig.cpp:2470 +#: src/libslic3r/PrintConfig.cpp:2725 msgid "Max bridge length" msgstr "Max Überbrückungslänge" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2813 msgid "Max merge distance" msgstr "Maximaler Zusammenfügeabstand" -#: src/libslic3r/PrintConfig.cpp:2479 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max pillar linking distance" msgstr "Max. Pfeiler Verbindungsabstand" -#: src/libslic3r/PrintConfig.cpp:64 +#: src/libslic3r/PrintConfig.cpp:80 msgid "Max print height" msgstr "Max. Druckhöhe" -#: src/libslic3r/PrintConfig.cpp:1172 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "Maximale Druckgeschwindigkeit" @@ -3725,167 +4113,167 @@ msgstr "Maximale Druckgeschwindigkeit" msgid "max PrusaSlicer version" msgstr "max PrusaSlicer Version" -#: src/libslic3r/PrintConfig.cpp:1203 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "Max. volumetrische Steigung negativ" -#: src/libslic3r/PrintConfig.cpp:1192 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "Max. volumetrische Steigung positiv" -#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "Maximale Volumengeschwindigkeit" -#: src/libslic3r/PrintConfig.cpp:2167 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "Maximaler Überbrückungsabstand" -#: src/libslic3r/PrintConfig.cpp:2193 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "Maximalabstand zwischen Stützen auf spärlichen Infill-Abschnitten." -#: src/libslic3r/PrintConfig.cpp:1099 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "Maximale Beschleunigung E" -#: src/libslic3r/PrintConfig.cpp:1105 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "Maximale Beschleunigung der E-Achse" -#: src/libslic3r/PrintConfig.cpp:1102 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "Maximale Beschleunigung der X-Achse" -#: src/libslic3r/PrintConfig.cpp:1103 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "Maximale Beschleunigung der Y-Achse" -#: src/libslic3r/PrintConfig.cpp:1104 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Maximale Beschleunigung der Z-Achse" -#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" -msgstr "Maximale Beschleunigung beim Extruden" +msgstr "Maximale Beschleunigung beim Extrudieren" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" -msgstr "Maximale Beschleunigung beim Extruden (M204 S)" +msgstr "Maximale Beschleunigung beim Extrudieren (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "Maximale Beschleunigung beim Einzug" -#: src/libslic3r/PrintConfig.cpp:1169 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "Maximale Beschleunigung beim Einzug (M204 T)" -#: src/libslic3r/PrintConfig.cpp:1096 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "Maximale Beschleunigung X" -#: src/libslic3r/PrintConfig.cpp:1097 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Maximale Beschleunigung Y" -#: src/libslic3r/PrintConfig.cpp:1098 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Maximale Beschleunigung Z" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2218 msgid "Maximum accelerations" msgstr "Maximale Beschleunigungen" -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 msgid "Maximum exposure time" msgstr "Maximale Belichtungszeit" -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" msgstr "Maximaler Vorschub E" -#: src/libslic3r/PrintConfig.cpp:1087 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" msgstr "Maximaler Vorschub auf der E-Achse" -#: src/libslic3r/PrintConfig.cpp:1084 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" msgstr "Maximaler Vorschub auf der X-Achse" -#: src/libslic3r/PrintConfig.cpp:1085 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" msgstr "Maximaler Vorschub auf der Y-Achse" -#: src/libslic3r/PrintConfig.cpp:1086 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" msgstr "Maximaler Vorschub auf der Z-Achse" -#: src/libslic3r/PrintConfig.cpp:1078 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" msgstr "Maximaler Vorschub X" -#: src/libslic3r/PrintConfig.cpp:1079 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" msgstr "Maximaler Vorschub Y" -#: src/libslic3r/PrintConfig.cpp:1080 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" msgstr "Maximaler Vorschub Z" -#: src/slic3r/GUI/Tab.cpp:2165 +#: src/slic3r/GUI/Tab.cpp:2213 msgid "Maximum feedrates" msgstr "Maximaler Vorschub" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 msgid "Maximum initial exposure time" msgstr "Maximale Anfang-Belichtungszeit" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Maximaler Ruck E" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "Maximaler Ruck auf der E-Achse" -#: src/libslic3r/PrintConfig.cpp:1120 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "Maximaler Ruck auf der X-Achse" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Maximaler Ruck auf der Y-Achse" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Maximaler Ruck auf der Z-Achse" -#: src/libslic3r/PrintConfig.cpp:1114 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Maximaler Ruck X" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Maximaler Ruck Y" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Maximaler Ruck Z" -#: src/libslic3r/PrintConfig.cpp:566 +#: src/libslic3r/PrintConfig.cpp:598 msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." -msgstr "Maximale volumetrische Geschwindigkeit, die für dieses Filament zulässig ist. Begrenzt die maximale volumetrische Geschwindigkeit eines Drucks auf das Minimum von Druck- und Filament-Volumengeschwindigkeit. Wird auf Null gesetzt, wenn es keine Begrenzung gibt." +msgstr "Maximale volumetrische Geschwindigkeit, die für dieses Filament zulässig ist. Begrenzt die maximale volumetrische Geschwindigkeit eines Drucks auf das Minimum von Druck- und Filament-Volumengeschwindigkeit. Wird auf null gesetzt, wenn es keine Begrenzung gibt." -#: src/libslic3r/PrintConfig.cpp:3053 +#: src/libslic3r/PrintConfig.cpp:3427 msgid "Merge" msgstr "Zusammenfügen" -#: src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Das Zusammenfügen von Brücken oder Säulen in andere Säulen kann den Radius vergrößern. Null bedeutet keine Erhöhung, eins bedeutet volle Erhöhung." -#: src/libslic3r/SLAPrint.cpp:71 +#: src/libslic3r/SLAPrintSteps.cpp:62 msgid "Merging slices and calculating statistics" msgstr "Zusammenführung der Slices und Berechnung der Statistiken" @@ -3893,7 +4281,7 @@ msgstr "Zusammenführung der Slices und Berechnung der Statistiken" msgid "Mesh repair failed." msgstr "Netzreparatur fehlgeschlagen." -#: src/slic3r/GUI/wxExtensions.cpp:3514 +#: src/slic3r/GUI/DoubleSlider.cpp:1607 msgid "Message for pause print on current layer (%1% mm)." msgstr "Meldung für die Druckpause auf der aktuellen Schicht (%1% mm)." @@ -3901,11 +4289,11 @@ msgstr "Meldung für die Druckpause auf der aktuellen Schicht (%1% mm)." msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" msgstr "Meldungen mit einem niedrigeren oder gleichwertigen Schweregrad zum Loglevel werden ausgegeben. 0:Protokoll, 1:Debug, 2:Info, 3:Warnung, 4:Fehler, 5:Fatal" -#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Min" -#: src/libslic3r/PrintConfig.cpp:1233 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "Minimale Druckgeschwindigkeit" @@ -3913,195 +4301,239 @@ msgstr "Minimale Druckgeschwindigkeit" msgid "min PrusaSlicer version" msgstr "min PrusaSlicer Version" -#: src/libslic3r/PrintConfig.cpp:2507 +#: src/libslic3r/PrintConfig.cpp:2763 msgid "Minimal distance of the support points" msgstr "Minimaler Abstand der Stützpunkte" -#: src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "Minimale Filament Extrusionlänge" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:54 msgid "Minimal points distance" msgstr "Minimaler Prunktabstand" -#: src/libslic3r/PrintConfig.cpp:635 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "Minimale Wischmenge im Wischturm" -#: src/libslic3r/PrintConfig.cpp:1442 +#: src/libslic3r/PrintConfig.cpp:177 +msgid "Minimum bottom shell thickness" +msgstr "Minimale Stärke der Bodenschale" + +#: src/slic3r/GUI/PresetHints.cpp:335 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "Die Mindeststärke der Bodenschale beträgt %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1512 msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Minimale Detailauflösung, die verwendet wird, um die Eingabedatei zu vereinfachen, um den Slicingjob zu beschleunigen und den Speicherverbrauch zu reduzieren. Hochauflösende Modelle weisen oft mehr Details auf, als der Drucker wiedergeben kann. Setzen Sie den Wert auf Null, um die Vereinfachung zu deaktivieren und die volle Auflösung des Eingangsdatei zu verwenden." -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 msgid "Minimum exposure time" msgstr "Minimale Belichtungszeit" -#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" msgstr "Maximaler Vorschub bei Extrusion" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" -msgstr "Minimaler Vorschub beim Extruden (M205 S)" +msgstr "Minimaler Vorschub beim Extrudieren (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2182 +#: src/slic3r/GUI/Tab.cpp:2230 msgid "Minimum feedrates" msgstr "Minimaler Vorschub" -#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 +#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 msgid "Minimum initial exposure time" msgstr "Minimale Anfang-Belichtungszeit" -#: src/libslic3r/PrintConfig.cpp:1452 +#: src/slic3r/GUI/Tab.cpp:1071 +msgid "Minimum shell thickness" +msgstr "Minimale Schalenstärke" + +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "Mindeststärke einer Ober-/Bodenschale" + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "Mindeststärke der oberen Schale" + +#: src/slic3r/GUI/PresetHints.cpp:316 +msgid "Minimum top shell thickness is %1% mm." +msgstr "Die Mindeststärke der Oberschale beträgt %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "Minimalbewegung nach Einziehen" -#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" msgstr "Minimaler Vorschub im Eilgang" -#: src/libslic3r/PrintConfig.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" msgstr "Minimaler Vorschub im Eilgang (M205 T)" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Minimum wall thickness of a hollowed model." +msgstr "Mindestwandstärke eines ausgehöhlten Modells." + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum width of features to maintain when doing elephant foot compensation." +msgstr "Mindestbreite der Merkmale, die bei der Kompensation des Elefantenfußes einzuhalten sind." + +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror" msgstr "Spiegeln" -#: src/libslic3r/PrintConfig.cpp:2320 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "Horizontal spiegeln" -#: src/slic3r/GUI/GLCanvas3D.cpp:1711 +#: src/slic3r/GUI/GLCanvas3D.cpp:2075 msgid "Mirror Object" msgstr "Objekt spiegeln" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror the selected object" msgstr "Ausgewähltes Objekt spiegeln" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Mirror the selected object along the X axis" msgstr "Ausgewähltes Objekt entlang der X-Achse spiegeln" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Mirror the selected object along the Y axis" msgstr "Ausgewähltes Objekt entlang der Y-Achse spiegeln" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Mirror the selected object along the Z axis" msgstr "Ausgewähltes Objekt entlang der Z-Achse spiegeln" -#: src/libslic3r/PrintConfig.cpp:2327 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "Vertikal spiegeln" -#: src/slic3r/Utils/OctoPrint.cpp:69 +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 #, possible-c-format msgid "Mismatched type of print host: %s" msgstr "Nicht übereinstimmender Typ des Druckhosts: %s" -#: src/libslic3r/GCode/PreviewData.cpp:176 +#: src/libslic3r/ExtrusionEntity.cpp:323 msgid "Mixed" msgstr "Gemischt" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2482 msgid "ml" msgstr "ml" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118 -#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84 -#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210 -#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293 -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353 -#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484 -#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680 -#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227 -#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263 -#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454 -#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503 -#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521 -#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612 -#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898 -#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125 -#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179 -#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297 -#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381 -#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454 -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483 -#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510 -#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539 -#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 +#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 +#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 +#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 +#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 +#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 +#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 +#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 +#: src/libslic3r/PrintConfig.cpp:2909 msgid "mm" msgstr "mm" -#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" -msgstr "mm (Null eingeben zum deaktivieren)" +msgstr "mm (null eingeben zum Deaktivieren)" -#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992 -#: src/libslic3r/PrintConfig.cpp:1797 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mm oder %" -#: src/libslic3r/PrintConfig.cpp:201 src/libslic3r/PrintConfig.cpp:577 -#: src/libslic3r/PrintConfig.cpp:585 src/libslic3r/PrintConfig.cpp:594 -#: src/libslic3r/PrintConfig.cpp:602 src/libslic3r/PrintConfig.cpp:629 -#: src/libslic3r/PrintConfig.cpp:648 src/libslic3r/PrintConfig.cpp:874 -#: src/libslic3r/PrintConfig.cpp:1001 src/libslic3r/PrintConfig.cpp:1079 -#: src/libslic3r/PrintConfig.cpp:1099 src/libslic3r/PrintConfig.cpp:1112 -#: src/libslic3r/PrintConfig.cpp:1123 src/libslic3r/PrintConfig.cpp:1176 -#: src/libslic3r/PrintConfig.cpp:1235 src/libslic3r/PrintConfig.cpp:1363 -#: src/libslic3r/PrintConfig.cpp:1537 src/libslic3r/PrintConfig.cpp:1546 -#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:2053 +#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 +#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 +#: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 +#: src/libslic3r/PrintConfig.cpp:1050 src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1181 +#: src/libslic3r/PrintConfig.cpp:1191 src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1300 src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/PrintConfig.cpp:2154 msgid "mm/s" msgstr "mm/s" -#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856 -#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702 -#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s oder %" -#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303 -#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936 -#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134 -#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334 +#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:1661 +#: src/libslic3r/PrintConfig.cpp:1730 msgid "mm²" msgstr "mm²" -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" -#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" msgstr "Modus" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" msgstr "Modell" -#: src/slic3r/GUI/BedShapeDialog.cpp:239 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "Modell" @@ -4109,133 +4541,162 @@ msgstr "Modell" msgid "Model fixing" msgstr "Modellkorrektur" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model Repair by the Netfabb service" msgstr "Modellreparatur durch den Netfabb-Dienst" -#: src/slic3r/Utils/FixModelByWin10.cpp:406 +#: src/slic3r/Utils/FixModelByWin10.cpp:413 msgid "Model repair canceled" msgstr "Modellreparatur abgebrochen" -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model repair failed:" msgstr "Modellreparatur fehlgeschlagen:" -#: src/slic3r/Utils/FixModelByWin10.cpp:400 +#: src/slic3r/Utils/FixModelByWin10.cpp:407 msgid "Model repair finished" msgstr "Modellreparatur beendet" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 msgid "Model repaired successfully" msgstr "Modellreparatur erfolgreich" -#: src/slic3r/GUI/Preset.cpp:207 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "geändert" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Modifier" msgstr "Veränderer" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1163 msgid "Modifiers" msgstr "Veränderer" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2503 msgid "money/bottle" msgstr "Kosten/Flasche" -#: src/libslic3r/PrintConfig.cpp:719 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "Kosten/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Mouse wheel" msgstr "Mausrad" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:266 msgid "Mouse wheel:" msgstr "Mausrad:" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" msgstr "Bewegen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Move clipping plane" msgstr "Beschnittebene bewegen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Move current slider thumb Down" msgstr "Bewege aktuellen Schieberegler nach unten" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Move current slider thumb Up" msgstr "Bewege aktuellen Schieberegler nach oben" -#: src/slic3r/GUI/GLCanvas3D.cpp:2872 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +msgid "Move drainage hole" +msgstr "Drainageloch bewegen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3538 msgid "Move Object" msgstr "Objekt bewegen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 msgid "Move point" msgstr "Punkt bewegen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "Auswahl 10 mm in negativer X-Richtung verschieben" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "Auswahl 10 mm in negativer Y-Richtung verschieben" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "Auswahl 10 mm in positiver X-Richtung verschieben" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "Auswahl 10 mm in positiver Y-Richtung verschieben" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 msgid "Move support point" msgstr "Stützpunkt bewegen" -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "Bewegung im Kameraraum" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "Bewegungsschritt auf 1 mm eingestellt" + +#: src/libslic3r/PrintConfig.cpp:2201 msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Multi-Material-Drucker müssen eventuell Extruder bei Werkzeugwechseln vor- oder nachspülen. Extrudieren Sie das überschüssige Material in den Reinigungsturm." -#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769 +#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 msgid "Multi-part object detected" msgstr "Objekt mit mehreren Teilen erkannt" -#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436 +#: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 #, possible-c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." -msgstr "Mehrere %s Geräte gefunden. Bitte immer nur eins zum Flashen anschliessen." +msgstr "Mehrere %s Geräte gefunden. Bitte immer nur eins zum Flashen anschließen." -#: src/slic3r/GUI/Tab.cpp:1118 +#: src/slic3r/GUI/Tab.cpp:1181 msgid "Multiple Extruders" msgstr "Mehrere Extruder" -#: src/slic3r/GUI/Plater.cpp:2414 +#: src/slic3r/GUI/Plater.cpp:2394 msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" msgstr "Für einen Multimaterialdrucker wurden mehrere Objekte geladen.\nSoll ich, anstatt sie als mehrere Objekte zu betrachten, \ndiese Dateien als ein einzelnes Objekt mit mehreren Teilen behandeln?" -#: src/libslic3r/PrintConfig.cpp:3050 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Multiply copies by creating a grid." msgstr "Multiple Kopien durch Erstellen eines Rasters." -#: src/libslic3r/PrintConfig.cpp:3045 +#: src/libslic3r/PrintConfig.cpp:3419 msgid "Multiply copies by this factor." msgstr "Mehrfache Kopien mit diesem Faktor." -#: src/slic3r/GUI/Field.cpp:139 +#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 msgid "N/A" msgstr "N.V." -#: src/slic3r/GUI/GUI_ObjectList.cpp:176 +#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Name" -#: src/libslic3r/PrintConfig.cpp:1418 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter." msgstr "Name der Druckervariante. Beispielsweise können die Druckervarianten durch einen Düsendurchmesser unterschieden werden." -#: src/libslic3r/PrintConfig.cpp:1412 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "Name des Druckerherstellers." -#: src/libslic3r/PrintConfig.cpp:1009 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "Name des Profils, von dem dieses Profil abgeleitet wurde." -#: src/libslic3r/PrintConfig.cpp:1560 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "Nächste" @@ -4243,36 +4704,40 @@ msgstr "Nächste" msgid "Network lookup" msgstr "Network Lookup" -#: src/slic3r/GUI/Plater.cpp:2056 +#: src/slic3r/GUI/Plater.cpp:2135 msgid "New Project" msgstr "Neues Projekt" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 +msgid "New project, clear plater" +msgstr "Neues Projekt, Druckplatte leeren" + +#: src/slic3r/GUI/UpdateDialogs.cpp:38 #, possible-c-format msgid "New version of %s is available" msgstr "Eine neue Version von %s ist verfügbar" -#: src/slic3r/GUI/UpdateDialogs.cpp:47 +#: src/slic3r/GUI/UpdateDialogs.cpp:45 msgid "New version:" msgstr "Neue Version:" -#: src/slic3r/GUI/GLCanvas3D.cpp:3750 +#: src/slic3r/GUI/GLCanvas3D.cpp:4722 msgid "Next Redo action: %1%" msgstr "Nächste Redo Aktion: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:3718 +#: src/slic3r/GUI/GLCanvas3D.cpp:4690 msgid "Next Undo action: %1%" msgstr "Nächste Undo-Aktion: %1%" -#: src/libslic3r/PrintConfig.cpp:912 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "Keine Extrusion" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:422 msgid "No pad can be generated for this model with the current configuration" msgstr "Für dieses Modell kann mit der aktuellen Konfiguration keine Grundschicht generiert werden" -#: src/slic3r/GUI/MainFrame.cpp:635 +#: src/slic3r/GUI/MainFrame.cpp:786 msgid "No previously sliced file." msgstr "Keine vorher gesclicete Datei." @@ -4280,160 +4745,175 @@ msgstr "Keine vorher gesclicete Datei." msgid "NO RAMMING AT ALL" msgstr "ÜBERHAUPT KEIN RAMMEN" -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Keine spärlichen Schichten (EXPERIMENTELL)" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2765 msgid "No support points will be placed closer than this threshold." msgstr "Es werden keine Stützpunkte näher als dieser Schwellenwert platziert." -#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422 -#: src/libslic3r/GCode/PreviewData.cpp:162 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates aviable" +msgstr "Keine Updates verfügbar" + +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Kein" -#: src/slic3r/GUI/Tab.cpp:2152 +#: src/slic3r/GUI/Tab.cpp:2199 msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1073 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "normal mode" msgstr "Normaler Modus" -#: src/libslic3r/Zipper.cpp:49 +#: src/libslic3r/Zipper.cpp:46 msgid "not a ZIP archive" msgstr "kein ZIP Archiv" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 msgid "Not found: " msgstr "Nicht gefunden:" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/GUI/DoubleSlider.cpp:985 +msgid "Note" +msgstr "Hinweis" + +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "Hinweis: Die AstroBox-Version 1.1.0 oder höher ist erforderlich." + +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." msgstr "Hinweis: FlashAir mit Firmware 2.00.02 oder neuer und aktivierter Upload-Funktion ist erforderlich." -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Hinweis: Es ist mindestens die OctoPrint-Version 1.1.0 erforderlich." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Hinweis: Einige Tastenkombinationen funktionieren nur im (Nicht-)Bearbeitungsmodus." -#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194 -#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577 -#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986 -#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080 -#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329 +#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 +#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 +#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 +#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 +#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 msgid "Notes" msgstr "Anmerkungen" -#: src/slic3r/GUI/GUI.cpp:277 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 msgid "Notice" msgstr "Hinweis" -#: src/slic3r/GUI/ConfigWizard.cpp:118 +#: src/slic3r/GUI/ConfigWizard.cpp:218 msgid "nozzle" msgstr "Düse" -#: src/libslic3r/PrintConfig.cpp:1261 +#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Düsendurchmesser" -#: src/slic3r/GUI/ConfigWizard.cpp:560 +#: src/slic3r/GUI/ConfigWizard.cpp:970 msgid "Nozzle Diameter:" msgstr "Düsendurchmesser:" -#: src/libslic3r/PrintConfig.cpp:618 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "Anzahl der Kühlbewegungen" -#: src/slic3r/GUI/Tab.cpp:1845 +#: src/slic3r/GUI/Tab.cpp:1837 msgid "Number of extruders of the printer." msgstr "Anzahl der Extruder des Druckers." -#: src/libslic3r/PrintConfig.cpp:1888 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "Number of interface layers to insert between the object(s) and support material." msgstr "Anzahl der Schnittstellenschichten, die zwischen Objekt(en) und Trägermaterial eingefügt werden sollen." -#: src/libslic3r/PrintConfig.cpp:1627 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely." -msgstr "Anzahl der Schleifen für die Schürze. Wenn die Option Minimale Extrusionslänge gesetzt ist, kann die Anzahl der Schleifen größer sein als die hier konfigurierte. Setzen Sie diesen Wert auf Null, um die Schürze komplett zu deaktivieren." +msgstr "Anzahl der Schleifen für die Schürze. Wenn die Option Minimale Extrusionslänge gesetzt ist, kann die Anzahl der Schleifen größer sein als die hier konfigurierte. Setzen Sie diesen Wert auf null, um die Schürze komplett zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:2214 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "Anzahl an Pixeln in" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Anzahl an Pixeln in X" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Anzahl an Pixeln in Y" -#: src/libslic3r/PrintConfig.cpp:151 +#: src/libslic3r/PrintConfig.cpp:166 msgid "Number of solid layers to generate on bottom surfaces." -msgstr "Anzahl der zu erzeugenden festen Schichten auf der Bodenfläche." +msgstr "Anzahl der zu erzeugenden massiven Schichten auf der Bodenfläche." -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." -msgstr "Anzahl der zu erzeugenden festen Schichten auf der Ober- und Unterseite." +msgstr "Anzahl der zu erzeugenden massiven Schichten auf der Ober- und Unterseite." -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." -msgstr "Anzahl der zu erzeugenden festen Schichten auf der Oberseite." +msgstr "Anzahl der zu erzeugenden massiven Schichten auf der Oberseite." -#: src/libslic3r/PrintConfig.cpp:2303 +#: src/libslic3r/PrintConfig.cpp:2509 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Anzahl der für die Reduzierung der Belichtungszeit benötigten Schichten, von der anfänglichen bis zur Belichtungszeit" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:243 msgid "Number of tool changes" msgstr "Anzahl der Werkzeugwechsel" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2744 msgid "Object elevation" msgstr "Objekt-Hebung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1858 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 msgid "Object manipulation" msgstr "Objektbearbeitung" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "Objektname" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 msgid "Object or Instance" msgstr "Objekt oder Kopie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Object reordered" msgstr "Objekt neu angeordnet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1868 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 msgid "Object Settings to modify" msgstr "Abweichende Objekteigenschaften" -#: src/slic3r/GUI/Plater.cpp:1875 +#: src/slic3r/GUI/Plater.cpp:2513 msgid "Object too large?" msgstr "Objekt zu groß?" -#: src/libslic3r/PrintConfig.cpp:2161 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "Objekt wird zum Reinigen der Düse nach einem Materialwechsel verwendet, um Material zu sparen, das sonst im Reinigungsturm landen und die Druckzeit verkürzen würde. Die Farben der Objekte werden dabei gemischt." -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "object(s)" msgstr "Objekt(e)" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "objects" msgstr "Objekte" -#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "Achterstern-Spirale" @@ -4441,299 +4921,332 @@ msgstr "Achterstern-Spirale" msgid "OctoPrint version" msgstr "OctoPrint Version" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2419 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 msgid "of a current Object" msgstr "des aktuellen Objekts" -#: src/slic3r/GUI/wxExtensions.cpp:2570 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "Offset" + +#: src/slic3r/GUI/DoubleSlider.cpp:923 msgid "One layer mode" msgstr "Eine Schicht Modus" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1361 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Eines oder mehrere Objekte wurden einem Extruder zugewiesen, der auf diesem Drucker nicht vorhanden ist." -#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Nur dann Stützen schaffen, wenn sie auf der Druckplattform aufbauen. Erstellt keine Stützstrukturen, die auf dem Ausdruck gründen würden." -#: src/libslic3r/PrintConfig.cpp:978 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "Infill nur wo es notwendig ist drucken" -#: src/slic3r/GUI/Tab.cpp:2271 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Only lift Z" msgstr "Nur Z anheben" -#: src/libslic3r/PrintConfig.cpp:1500 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "Z nur Anheben über" -#: src/libslic3r/PrintConfig.cpp:1509 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Z anheben nur unter" -#: src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "Nur bei Umfangsüberquerungen einziehen" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1189 msgid "Ooze prevention" msgstr "Vermeidung von Nachsickern (Ooze)" -#: src/libslic3r/Print.cpp:1193 +#: src/libslic3r/Print.cpp:1262 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "Die Sickervermeidung wird derzeit nicht unterstützt, wenn der Wischturm aktiviert ist." -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "Öffne eine Projektdatei" -#: src/slic3r/GUI/Tab.cpp:1745 +#: src/slic3r/GUI/Tab.cpp:1727 msgid "Open CA certificate file" msgstr "Open CA Zertifikat Datei" -#: src/slic3r/GUI/UpdateDialogs.cpp:63 src/slic3r/GUI/UpdateDialogs.cpp:126 +#: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "Änderungsseite öffnen" -#: src/slic3r/GUI/UpdateDialogs.cpp:68 +#: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Downloadseite öffnen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:105 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "Öffne Projekt STL/OBJ/AMF/3MF mit Konfiguration, Druckplatte leeren" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" msgstr "Öffne Konfiguration aus Projekt STL/OBJ/AMF/3MF, lösche Druckbett" -#: src/slic3r/GUI/MainFrame.cpp:551 +#: src/slic3r/GUI/MainFrame.cpp:695 #, possible-c-format msgid "Open the %s website in your browser" msgstr "%s-Website in Ihrem Browser öffnen" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Download-Seite für die Prusa3D-Treiber in Ihrem Browser öffnen" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Open the software releases page in your browser" msgstr "Seite mit Programmversionen in Ihrem Browser öffnen" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize orientation" msgstr "Optimiere Ausrichtung" -#: src/slic3r/GUI/Plater.cpp:2643 +#: src/slic3r/GUI/Plater.cpp:2751 msgid "Optimize Rotation" msgstr "Rotation optimieren" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize the rotation of the object for better print results." msgstr "Optimiere die Rotation des Objekts für ein besseres Druckergebnis." -#: src/libslic3r/PrintConfig.cpp:112 +#: src/libslic3r/PrintConfig.cpp:127 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimieren Sie die Verfahrbewegungen, um das Überschreiten von Konturen zu minimieren. Dies ist vor allem bei Bowdenextrudern nützlich, die unter sickerndem Material leiden. Diese Funktion verlangsamt sowohl den Druck als auch die Generierung des G-Codes." -#: src/slic3r/GUI/Tab.cpp:1070 +#: src/slic3r/GUI/Tab.cpp:1133 msgid "Options for support material and raft" -msgstr "Optionen für Stützmaterial und Raft" +msgstr "Optionen für Stützstrukturen und Raft" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/DoubleSlider.cpp:960 +msgid "or press \"+\" key" +msgstr "oder drücken Sie die Taste \"+\"" + +#: src/slic3r/GUI/Plater.cpp:2876 msgid "Orientation found." msgstr "Ausrichtung gefunden." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2875 msgid "Orientation search canceled." msgstr "Ausrichtungssuche abgebrochen." -#: src/slic3r/GUI/BedShapeDialog.cpp:79 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "Nullpunkt" -#: src/slic3r/GUI/Tab.cpp:1165 +#: src/slic3r/GUI/Tab.cpp:1229 msgid "Other" msgstr "Sonstige" -#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977 +#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Andere Schichten" -#: src/slic3r/GUI/ConfigWizard.cpp:438 +#: src/slic3r/GUI/ConfigWizard.cpp:857 msgid "Other Vendors" msgstr "Andere Hersteller" -#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 msgid "Output file" msgstr "Ausgabedatei" -#: src/libslic3r/PrintConfig.cpp:3104 +#: src/libslic3r/PrintConfig.cpp:3478 msgid "Output File" msgstr "Ausgabedatei" -#: src/libslic3r/PrintConfig.cpp:1294 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "Ausgabe Dateinamen Format" -#: src/libslic3r/PrintConfig.cpp:2992 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Output Model Info" msgstr "Ausgabe Modellinformationen" -#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 msgid "Output options" msgstr "Ausgabeoptionen" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" -msgstr "Überhängende Aussenschicht" +msgstr "Überhängende Außenkontur" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "Überhangsschwellwert" -#: src/slic3r/GUI/Tab.cpp:1153 +#: src/slic3r/GUI/Tab.cpp:1217 msgid "Overlap" msgstr "Überlappung" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "D&ruckeinstellungen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520 -#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426 -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523 -#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547 -#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569 +#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 +#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 +#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 +#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 +#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 +#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 +#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 +#: src/libslic3r/PrintConfig.cpp:2890 msgid "Pad" msgstr "Grundschicht (Pad)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 +#: src/slic3r/GUI/GUI_ObjectList.cpp:45 msgid "Pad and Support" msgstr "Grundschicht und Stützen" -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "Pad around object" msgstr "Grundschicht um Objekt" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2853 msgid "Pad around object everywhere" msgstr "Grundschicht überall um Objekt" -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2802 msgid "Pad brim size" msgstr "Grundschicht Randgröße" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "Die Randgröße der Grundschicht ist für die aktuelle Konfiguration zu klein." -#: src/libslic3r/PrintConfig.cpp:2731 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector penetration" msgstr "Objektgrundschicht Verbindungseindringtiefe" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "Pad object connector stride" msgstr "Objektgrundschicht Verbindungsschritte" -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector width" msgstr "Objektgrundschicht Verbinderbreite" -#: src/libslic3r/PrintConfig.cpp:2700 +#: src/libslic3r/PrintConfig.cpp:2860 msgid "Pad object gap" msgstr "Grundschicht Objekt Abstand" -#: src/libslic3r/PrintConfig.cpp:2532 +#: src/libslic3r/PrintConfig.cpp:2788 msgid "Pad wall height" msgstr "Grundschicht Wandhöhe" -#: src/libslic3r/PrintConfig.cpp:2568 +#: src/libslic3r/PrintConfig.cpp:2835 msgid "Pad wall slope" msgstr "Grundschicht Wandneigung" -#: src/libslic3r/PrintConfig.cpp:2522 +#: src/libslic3r/PrintConfig.cpp:2778 msgid "Pad wall thickness" -msgstr "Grundschicht Wanddicke" +msgstr "Grundschicht Wandstärke" -#: src/slic3r/GUI/Field.cpp:108 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "Page Down" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "Page Up" + +#: src/slic3r/GUI/Field.cpp:134 msgid "parameter name" msgstr "Parametername" -#: src/slic3r/GUI/Field.cpp:184 +#: src/slic3r/GUI/Field.cpp:238 msgid "Parameter validation" msgstr "Parameterüberprüfung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Part" msgstr "Teil" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1881 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 msgid "Part manipulation" msgstr "Teilbearbeitung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 msgid "Part Settings to modify" msgstr "Abweichende Teileigenschaften" -#: src/slic3r/GUI/GLCanvas3D.cpp:3449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4563 msgid "Paste" msgstr "Einfügen" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "Aus Zwischenablage einfügen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 msgid "Paste from clipboard" msgstr "Aus Zwischenablage einfügen" -#: src/slic3r/GUI/Plater.cpp:4772 +#: src/slic3r/GUI/Plater.cpp:5640 msgid "Paste From Clipboard" msgstr "Aus Zwischenablage einfügen" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "Muster" -#: src/libslic3r/PrintConfig.cpp:1805 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "Muster Winkel" -#: src/libslic3r/PrintConfig.cpp:1929 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" msgstr "Muster Abstand" -#: src/libslic3r/PrintConfig.cpp:1917 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "Unterstützungsmaterialmuster." -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/DoubleSlider.cpp:976 +msgid "Pause print (\"%1%\")" +msgstr "Druck pausieren (\"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 +#: src/slic3r/GUI/GLCanvas3D.cpp:987 msgid "Pause print or custom G-code" msgstr "Druckpausen oder benutzerdefinierter G-Code" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "Schnitt ausführen" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163 -msgid "Perimeter" -msgstr "Aussenschicht" +#: src/libslic3r/PrintConfig.cpp:2918 +msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." +msgstr "Leistung vs. Genauigkeit der Berechnung. Niedrigere Werte können zu unerwünschten Artefakten führen." -#: src/libslic3r/PrintConfig.cpp:1339 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +msgid "Perimeter" +msgstr "Außenkontur" + +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "Umfang Extruder" -#: src/slic3r/GUI/PresetHints.cpp:162 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" -msgstr "Aussenschichten" +msgstr "Außenkonturen" -#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348 -#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "Konturen" -#: src/slic3r/GUI/ConfigWizard.cpp:816 +#: src/slic3r/GUI/ConfigWizard.cpp:861 #, possible-c-format msgid "Pick another vendor supported by %s" msgstr "Wählen Sie einen anderen Hersteller, der von %s unterstützt wird" @@ -4742,11 +5255,11 @@ msgstr "Wählen Sie einen anderen Hersteller, der von %s unterstützt wird" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Bildgrößen, die in einer.gcode und .sl1 Datei gespeichert werden sollen" -#: src/libslic3r/PrintConfig.cpp:2430 +#: src/libslic3r/PrintConfig.cpp:2672 msgid "Pillar widening factor" msgstr "Pfeilerverbreiterungsfaktor" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Der Nadelkopfdurchmesser sollte kleiner sein als der Säulendurchmesser." @@ -4754,40 +5267,48 @@ msgstr "Der Nadelkopfdurchmesser sollte kleiner sein als der Säulendurchmesser. msgid "Place bearings in slots and resume" msgstr "Lager in Nuten einsetzen und wieder aufnehmen" -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32 +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "Lager in Nuten einsetzen und Druck wieder aufnehmen" + +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "Auf Fläche legen" -#: src/slic3r/GUI/MainFrame.cpp:161 +#: src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Druckplatte" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 msgid "Plater Shortcuts" msgstr "Druckplatten Kürzel" -#: src/slic3r/GUI/GUI.cpp:143 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Bitte überprüfen und korrigieren Sie Ihre Objektliste." -#: src/slic3r/GUI/Tab.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 msgid "Please check your object list before preset changing." msgstr "Bitte überprüfen Sie Ihre Objektliste, bevor Sie die Voreinstellungen ändern." -#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:286 +#: src/slic3r/GUI/Plater.cpp:3272 +msgid "Please select the file to reload" +msgstr "Bitte wählen Sie die neu zu ladende Datei aus" + +#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" msgstr "Teile des Urheberrechts" -#: src/libslic3r/PrintConfig.cpp:2235 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "Hochformat" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:215 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:457 msgid "Position" msgstr "Position" -#: src/slic3r/GUI/Tab.cpp:2265 +#: src/slic3r/GUI/Tab.cpp:2363 msgid "Position (for multi-extruder printers)" msgstr "Position (für Multi-Extruder-Drucker)" @@ -4795,245 +5316,278 @@ msgstr "Position (für Multi-Extruder-Drucker)" msgid "Position (mm)" msgstr "Position (mm)" -#: src/libslic3r/PrintConfig.cpp:1553 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Position des Startpunktes des Umfangs." -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "X-Position" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Y-Position" -#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Nachbearbeitungs Script" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "&Vorschau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Einstellungen" -#: src/libslic3r/PrintConfig.cpp:1571 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "Bevorzugte Richtung für die Naht" -#: src/libslic3r/PrintConfig.cpp:1582 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "Bevorzugte Zitterrichtung für die Naht" -#: src/libslic3r/PrintObject.cpp:251 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "Infill wird vorbereitet" -#: src/slic3r/GUI/Tab.cpp:2758 +#: src/slic3r/GUI/Tab.cpp:2904 #, possible-c-format msgid "Preset (%s)" msgstr "Voreinstellung (%s)" -#: src/slic3r/GUI/Tab.cpp:3031 -msgid "Preset with name \"%1%\" already exist." +#: src/slic3r/GUI/Tab.cpp:3066 +msgid "Preset with name \"%1%\" already exists." msgstr "Eine Voreinstellung mit dem Namen \"%1%\" existiert bereits." -#: src/slic3r/GUI/Tab.cpp:2994 +#: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" msgstr "PresetName||%1% - Kopieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" msgstr "Drücken um das Abwahlrechteck zu aktivieren\noder um gewählte Objekte zu skalieren oder\num die eigene Mitte zu drehen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "Drücken um das Abwahlrechteck zu aktivieren" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Drücken um Eine-Richtungs-Skalierung im Skalierungsgizmo zu aktivieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 #, no-c-format msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Drücken um Auswahlrechteck zu aktivieren\noder mit 5% bei der Gizmo Skalierung zu rasten\noder mit 1 mm bei der Gizmo Bewegung" +msgstr "Drücken um Auswahlrechteck zu aktivieren\noder mit 5% bei der Gizmo Skalierung zu rasten\noder mit 1 mm bei der Gizmo Bewegung" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "Drücken um das Auswahlrechteck zu aktivieren" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" +msgstr "Zum Skalieren drücken (in Gizmo-Skalierung) oder drehen (in Gizmo-Rotation)\nausgewählter Objekte um ihr eigenes Zentrum herum" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Press to scale selection to fit print volume\nin Gizmo scale" msgstr "Drücken, um die Auswahl passend zum\nDruckvolumen in der Gizmo Skalierung anzupassen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 msgid "Press to select multiple object or move multiple object with mouse" msgstr "Drücken zum Auswählen des mehrteiligen Objekts oder Bewegen des mehrteiligen Objekts mit der Maus" -#: src/slic3r/GUI/Tab.cpp:2288 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with mouse" +msgstr "Drücken zum Auswählen des mehrteiligen Objekts \noder Bewegen des mehrteiligen Objekts mit der Maus" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with a mouse" +msgstr "Drücken zum Auswählen des mehrteiligen Objekts \noder Bewegen des mehrteiligen Objekts mit der Maus" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" +msgstr "Drücken um mit 5% bei der Gizmo Skalierung zu rasten\noder mit 1 mm bei der Gizmo Bewegung" + +#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 msgid "Preview" msgstr "Vorschau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "Vorschau des ausgehöhlten und aufgebohrten Modells" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 msgid "Preview Shortcuts" msgstr "Vorschau Kürzel" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid "Previously sliced file (" msgstr "Vorher geslicete Datei (" -#: src/libslic3r/PrintConfig.cpp:1773 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "Alle Druckextruder vorfüllen" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 msgid "print" msgstr "Druck" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "Druck&host Warteschlange" -#: src/libslic3r/PrintConfig.cpp:439 +#: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Drucken Sie Konturumfänge von der äußersten zur innersten Kontur anstatt der standardmäßigen umgekehrten Reihenfolge." -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Print Diameters" msgstr "Druckdurchmesser" -#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074 +#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 msgid "Print Host upload" msgstr "Hochladen zum Druckhost" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -#: src/slic3r/GUI/PrintHostDialogs.cpp:135 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Druckhost Warteschlange" -#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405 +#: src/slic3r/GUI/DoubleSlider.cpp:941 +msgid "Print mode" +msgstr "Druckmodus" + +#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 msgid "Print Settings" msgstr "Druckeinstellungen" -#: src/slic3r/GUI/Plater.cpp:681 +#: src/slic3r/GUI/Plater.cpp:812 msgid "Print settings" msgstr "Druckeinstellungen" -#: src/slic3r/GUI/Tab.cpp:1520 +#: src/slic3r/GUI/Tab.cpp:1480 msgid "Print speed override" msgstr "Korrektur der Druckgeschwindigkeit" -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Druck z" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "Druck&ereinstellungen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1438 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Printable" msgstr "Druckbar" -#: src/slic3r/GUI/Plater.cpp:685 +#: src/slic3r/GUI/Plater.cpp:816 msgid "Printer" msgstr "Drucker" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 msgid "printer" msgstr "Drucker" -#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "Drucker absolute Korrektur" -#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283 +#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 msgid "Printer gamma correction" msgstr "Drucker Gammakorrektur" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/Tab.cpp:978 msgid "printer model" msgstr "Druckermodell" -#: src/libslic3r/PrintConfig.cpp:1402 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "Drucker Anmerkungen" -#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267 -#: src/libslic3r/PrintConfig.cpp:2268 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "Drucker skalierte Korrektur" -#: src/slic3r/GUI/Tab.hpp:368 +#: src/slic3r/GUI/Tab.hpp:390 msgid "Printer Settings" msgstr "Druckereinstellungen" -#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43 +#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44 msgid "Printer technology" msgstr "Druckertechnologie" -#: src/libslic3r/PrintConfig.cpp:1396 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "Druckertyp" -#: src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "Druckervariante" -#: src/libslic3r/PrintConfig.cpp:1411 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "Druckerhersteller" -#: src/libslic3r/Print.cpp:1294 +#: src/libslic3r/Print.cpp:1384 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Der Druck erfolgt mit mehreren Extrudern mit unterschiedlichen Düsendurchmessern. Falls Stützen mit dem aktuellen Extruder gedruckt werden sollen (support_material_extruder == 0 oder support_material_interface_extruder == 0), müssen alle Druckdüsen den gleichen Durchmesser aufweisen." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:715 +#: src/slic3r/GUI/MainFrame.cpp:851 #, possible-c-format msgid "Processing %s" msgstr "Berechne %s" -#: src/slic3r/GUI/Plater.cpp:2287 +#: src/slic3r/GUI/Plater.cpp:2267 #, possible-c-format msgid "Processing input file %s" msgstr "Eingabe Datei %s wird verarbeitet" -#: src/libslic3r/PrintObject.cpp:110 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "Verarbeitung der dreieckigen Netze" -#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585 -#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087 -#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 +#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 +#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 msgid "Profile dependencies" msgstr "Profil Abhängigkeiten" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "Profil:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:149 +#: src/slic3r/GUI/PrintHostDialogs.cpp:150 msgid "Progress" msgstr "Fortschritt" -#: src/slic3r/GUI/FirmwareDialog.cpp:779 +#: src/slic3r/GUI/FirmwareDialog.cpp:817 msgid "Progress:" msgstr "Fortschritt:" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Prusa 3D &Drivers" msgstr "Prusa 3&D Treiber" -#: src/slic3r/GUI/ConfigWizard.cpp:1109 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa FFF Technology Printers" msgstr "Prusa FFF Technologie Drucker" -#: src/slic3r/GUI/ConfigWizard.cpp:1112 +#: src/slic3r/GUI/ConfigWizard.cpp:2001 msgid "Prusa MSLA Technology Printers" msgstr "Prusa MSLA Technologie Drucker" -#: src/slic3r/GUI/AboutDialog.cpp:255 +#: src/slic3r/GUI/AboutDialog.cpp:260 msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap community." msgstr "PrusaSlicer basiert auf Slic3r von Alessandro Ranellucci und der RepRap Community." -#: src/slic3r/GUI/GUI_App.cpp:297 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 #, possible-c-format msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." msgstr "PrusaSlicer benötigt einen OpenGL 2.0-fähigen Grafiktreiber, um korrekt zu laufen, während die OpenGL-Version %s, Render %s, Hersteller %s erkannt wurde." @@ -5042,288 +5596,334 @@ msgstr "PrusaSlicer benötigt einen OpenGL 2.0-fähigen Grafiktreiber, um korrek msgid "PrusaSlicer version" msgstr "PrusaSlicer Version" -#: src/slic3r/GUI/ConfigWizard.cpp:771 +#: src/slic3r/GUI/ConfigWizard.cpp:816 msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." msgstr "Die Benutzeroberflächen von PrusaSlicer sind in drei Varianten erhältlich:\nEinfach, Fortgeschritten und Experte.\nDer einfache Modus zeigt nur die am häufigsten verwendeten Einstellungen, die für den regulären 3D-Druck relevant sind. Die beiden anderen bieten eine immer anspruchsvollere Feinabstimmung, sie sind für fortgeschrittene bzw. erfahrene Anwender geeignet." -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Das Reinigen nach dem Werkzeugwechsel erfolgt innerhalb der Füllungen dieses Objekts. Dies reduziert die Abfallquote, kann aber aufgrund zusätzlicher Verfahrwege zu einer längeren Druckzeit führen." -#: src/slic3r/GUI/Plater.cpp:456 +#: src/slic3r/GUI/Plater.cpp:541 msgid "Purging volumes" msgstr "Reinigungsvolumen" -#: src/libslic3r/PrintConfig.cpp:2106 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "Reinigungsvolumen - Lade-/Entladevolumen" -#: src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "Reinigungsvolumen - Matrix" -#: src/slic3r/GUI/Tab.cpp:1019 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "Qualität" + +#: src/slic3r/GUI/Tab.cpp:1082 msgid "Quality (slower slicing)" msgstr "Qualität (langsameres Slicen)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1145 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1377 +#: src/slic3r/GUI/GLCanvas3D.cpp:278 +msgid "Quality / Speed" +msgstr "Qualität / Geschwindigkeit" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 #, possible-c-format msgid "Quick Add Settings (%s)" msgstr "Schnelles Einstellen (%s)" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "Quick Slice" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "Quick Slice und Speichern unter" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 #, possible-c-format msgid "Quit %s" msgstr "%s verlassen" -#: src/libslic3r/PrintConfig.cpp:479 +#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Radius" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1129 msgid "Raft" msgstr "Raft" -#: src/libslic3r/PrintConfig.cpp:1431 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" -msgstr "Raft Schichten" +msgstr "Raftschichten" -#: src/slic3r/GUI/WipeTowerDialog.cpp:14 +#: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "Einstellungen für das Rammen" -#: src/slic3r/GUI/WipeTowerDialog.cpp:40 +#: src/slic3r/GUI/WipeTowerDialog.cpp:41 msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." msgstr "Rammen steht für die beschleunigte Extrusion unmittelbar vor einem Werkzeugwechsel in einem MM-Drucker mit einem Extruder. Der Zweck ist, die Spitze des entladenen Filaments geeignet zu formen, damit es das Laden des neuen Filaments nicht behindert und später selber wieder eingeführt werden kann. Diese Phase ist wichtig und verschiedene Materialien können unterschiedliche Extrusionsgeschwindigkeiten benötigen, um die richtige Form zu erzielen. Aus diesem Grund können die Extrusionsraten für das Rammen angepasst werden.\n\nDies ist eine Einstellung für fortgeschrittene Benutzer. Falsche Anpassungen werden sehr wahrscheinlich zu Verstopfungen führen oder dazu, dass die Zähne der Extruderwelle ins Filament einschneiden usw." -#: src/slic3r/GUI/WipeTowerDialog.cpp:90 +#: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" msgstr "Abstand der Rammlinien" -#: src/slic3r/GUI/WipeTowerDialog.cpp:88 +#: src/slic3r/GUI/WipeTowerDialog.cpp:89 msgid "Ramming line width" msgstr "Breite der Rammlinie" -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "Rammparameter" -#: src/slic3r/GUI/Tab.cpp:1545 +#: src/slic3r/GUI/Tab.cpp:1507 msgid "Ramming settings" msgstr "Einstellungen für das Rammen" -#: src/libslic3r/PrintConfig.cpp:1559 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "Zufällig" -#: src/slic3r/GUI/wxExtensions.cpp:486 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 msgid "Range" msgstr "Bereich" -#: src/libslic3r/SLAPrint.cpp:72 +#: src/libslic3r/SLAPrintSteps.cpp:63 msgid "Rasterizing layers" msgstr "Schichten werden gerastert" -#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "Erneutes &Laden von der Festplatte" + +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "Neu konfigurieren" -#: src/slic3r/GUI/FirmwareDialog.cpp:783 +#: src/slic3r/GUI/FirmwareDialog.cpp:821 msgid "Ready" msgstr "Fertig" -#: src/slic3r/GUI/Plater.cpp:2406 +#: src/slic3r/GUI/Plater.cpp:3099 msgid "Ready to slice" msgstr "Bereit zum Slicen" -#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "Hinten" -#: src/slic3r/GUI/MainFrame.cpp:526 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "Ansicht von Hinten" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "Letzte Projekte" -#: src/slic3r/GUI/PresetHints.cpp:262 +#: src/slic3r/GUI/PresetHints.cpp:263 #, possible-c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Empfohlene Stärke der dünnen Wände des Objekts für die Schichthöhe %.2f und" +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." +msgstr "Empfohlene Stärke der dünnen Wände des Objekts: Nicht verfügbar wegen extrem geringer Extrusionsbreite" + #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." -msgstr "Empfohlene Stärke der dünnen Wände des Objekts: Nicht verfügbar wegen unzulässiger Schichthöhe." +msgstr "Empfohlene Stärke der dünnen Wände des Objekts: Nicht verfügbar wegen unzulässiger Schichthöhe." -#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "Neu Erzeugen" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "Rechteckig" -#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796 -#: src/libslic3r/PrintConfig.cpp:1922 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "Geradlinig" -#: src/libslic3r/PrintConfig.cpp:1923 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "Rechtwinkliges Gitter" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3639 -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Redo" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Redo %1$d Aktion" msgstr[1] "Redo %1$d Aktionen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Redo History" msgstr "Redo Verlauf" -#: src/slic3r/GUI/Tab.cpp:1037 +#: src/slic3r/GUI/Tab.cpp:1100 msgid "Reducing printing time" msgstr "Druckzeit wird verkürzt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3461 +msgid "Reload all from disk" +msgstr "Alles von der Festplatte neu laden" + +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 +#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 msgid "Reload from disk" msgstr "Neuladen von Festplatte" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3328 +msgid "Reload from: " +msgstr "Neuladen von:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "Druckplatte neu von der Festplatte laden" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "Druckplatte neu von der Festplatte laden" + +#: src/slic3r/GUI/Plater.cpp:3972 msgid "Reload the selected object from disk" msgstr "Das ausgewählte Objekt von der Festplatte neu laden" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3715 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 msgid "Reload the selected volumes from disk" -msgstr "Die ausgewählten Volumes von der Festplatte neu laden" +msgstr "Die ausgewählten Volumen von der Festplatte neu laden" -#: src/slic3r/GUI/Preferences.cpp:36 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "Ausgabeverzeichnis merken" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "remove" msgstr "Entfernen" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Remove" msgstr "Entfernen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "Alle Löcher entfernen" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:51 msgid "Remove all points" msgstr "Alle Punkte entfernen" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:251 msgid "Remove detail" msgstr "Detail entfernen" +#: src/slic3r/GUI/Plater.cpp:876 +msgid "Remove device" +msgstr "Gerät entfernen" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 msgid "Remove extruder from sequence" msgstr "Extruder aus der Sequenz entfernen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3475 +#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 msgid "Remove instance" msgstr "Kopie entfernen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 msgid "Remove Instance of the selected object" -msgstr "Entfernt Kopie des gewählten Objekt" +msgstr "Entfernt Kopie des gewählten Objekts" #: src/slic3r/GUI/GUI_ObjectLayers.cpp:153 msgid "Remove layer range" msgstr "Schichtbereich entfernen" -#: src/slic3r/GUI/Plater.cpp:3518 +#: src/slic3r/GUI/Plater.cpp:3951 msgid "Remove one instance of the selected object" -msgstr "Entferne eine Kopie des gewählten Objekt" +msgstr "Entferne eine Kopie des gewählten Objekts" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "Parameter entfernen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Remove point" msgstr "Punkt entfernen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Remove point from selection" msgstr "Punkt von Auswahl entfernen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "Ausgewählte Löcher entfernen" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 msgid "Remove selected points" msgstr "Ausgewählte Punkte entfernen" -#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 msgid "Remove the selected object" msgstr "Ausgewähltes Objekt entfernen" -#: src/slic3r/GUI/ConfigWizard.cpp:305 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Benutzerprofile entfernen - von Grund auf neu installieren (eine Momentaufnahme wird vorab erstellt)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1200 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 msgid "Rename" msgstr "Umbenennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Object" msgstr "Objekt umbenennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Sub-object" msgstr "Subobjekt umbenennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Renaming" msgstr "Am Umbenennen" -#: src/libslic3r/PrintConfig.cpp:3125 +#: src/libslic3r/PrintConfig.cpp:3500 msgid "Render with a software renderer" msgstr "Rendern mit einem Software-Renderer" -#: src/libslic3r/PrintConfig.cpp:3126 +#: src/libslic3r/PrintConfig.cpp:3501 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Rendern mit einem Software-Renderer. Der mitgelieferte MESA-Software-Renderer wird anstelle des standardmäßigen OpenGL-Treibers geladen." -#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058 +#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 msgid "Repair" msgstr "Reparieren" -#: src/slic3r/Utils/FixModelByWin10.cpp:387 +#: src/slic3r/Utils/FixModelByWin10.cpp:394 msgid "Repaired 3MF file contains more than one object" msgstr "Die reparierte 3MF Datei enhält mehr als ein Objekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:391 +#: src/slic3r/Utils/FixModelByWin10.cpp:398 msgid "Repaired 3MF file contains more than one volume" msgstr "Die reparierte 3MF Datei enhält mehr als ein Volumen" -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:392 msgid "Repaired 3MF file does not contain any object" msgstr "Die reparierte 3MF Datei enhält keine Objekte" -#: src/slic3r/Utils/FixModelByWin10.cpp:389 +#: src/slic3r/Utils/FixModelByWin10.cpp:396 msgid "Repaired 3MF file does not contain any volume" msgstr "Die reparierte 3MF Datei enhält keine Volumen" @@ -5331,176 +5931,189 @@ msgstr "Die reparierte 3MF Datei enhält keine Volumen" msgid "Repairing model by the Netfabb service" msgstr "Reparieren des Modells durch den Netfabb-Dienst" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "Letzten Quick Slice wiederholen" -#: src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "Letzten Quick Slice wiederholen" -#: src/slic3r/GUI/Tab.cpp:3032 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Replace?" msgstr "Ersetzen?" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Report an I&ssue" msgstr "E&in Problem melden" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 #, possible-c-format msgid "Report an issue on %s" msgstr "Einen Problem melden über %s" -#: src/slic3r/Utils/PresetUpdater.cpp:590 +#: src/slic3r/Utils/PresetUpdater.cpp:713 #, possible-c-format msgid "requires max. %s" msgstr "benötigt max. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:588 +#: src/slic3r/Utils/PresetUpdater.cpp:710 #, possible-c-format msgid "requires min. %s" msgstr "benötigt min. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:583 +#: src/slic3r/Utils/PresetUpdater.cpp:705 #, possible-c-format msgid "requires min. %s and max. %s" msgstr "benötigt min. %s und max. %s" -#: src/slic3r/GUI/FirmwareDialog.cpp:772 +#: src/slic3r/GUI/FirmwareDialog.cpp:810 msgid "Rescan" msgstr "Rescan" -#: src/slic3r/GUI/Tab.cpp:1879 +#: src/slic3r/GUI/Tab.cpp:1904 msgid "Rescan serial ports" msgstr "Serielle Schnittstellen nochmals abfragen" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:318 msgid "Reset" msgstr "Rücksetzen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 msgid "Reset clipping plane" msgstr "Beschnittebene zurücksetzen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 msgid "Reset direction" msgstr "Richtung zurücksetzen" -#: src/slic3r/GUI/Plater.cpp:2603 +#: src/slic3r/GUI/Plater.cpp:2707 msgid "Reset Project" msgstr "Projekt zurücksetzen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:303 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Rotation zurücksetzen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:328 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 msgid "Reset Rotation" msgstr "Rotation zurücksetzen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:285 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:290 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:397 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:399 msgid "Reset scale" msgstr "Skalierung zurücksetzen" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:257 msgid "Reset to base" msgstr "Zurücksetzen auf Basis" -#: src/slic3r/GUI/Tab.cpp:2584 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Reset to Filament Color" msgstr "Zurücksetzen auf Filamentfarbe" -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "Auflösung" -#: src/libslic3r/PrintConfig.cpp:1459 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "Einzugslänge vor einer Reinigung" -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" -msgstr "Bei Schichtwechsel Einziehen" +msgstr "Bei Schichtwechsel einziehen" -#: src/slic3r/GUI/Tab.cpp:2268 +#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 +#: src/slic3r/GUI/Tab.cpp:2366 msgid "Retraction" msgstr "Einzug" -#: src/libslic3r/PrintConfig.cpp:1453 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "Retraction is not triggered when travel moves are shorter than this length." msgstr "Der Einzug wird nicht ausgelöst, wenn die Fahrbewegungen kürzer als diese Länge sind." -#: src/libslic3r/PrintConfig.cpp:1474 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "Einzugslänge" -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "Einzugslänge (Werkzeugwechsel)" -#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "Einzugsgeschwindigkeit" -#: src/slic3r/GUI/Tab.cpp:2284 +#: src/slic3r/GUI/Tab.cpp:2382 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Einzug, wenn das Werkzeug deaktiviert ist (weiterführende Einstellungen für Multi-Extruder-Einrichtungen)" -#: src/slic3r/GUI/GUI_Preview.cpp:244 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Retractions" msgstr "Einzüge" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "Rechts" -#: src/slic3r/GUI/GUI_ObjectList.cpp:381 +#: src/slic3r/GUI/GUI_ObjectList.cpp:400 msgid "Right button click the icon to change the object printable property" msgstr "Klicken Sie mit der rechten Maustaste auf das Symbol, um die Druckbar-Eigenschaft des Objekts zu ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Right button click the icon to change the object settings" msgstr "Klicken Sie mit der rechten Maustaste auf das Symbol, um die Objekteinstellungen zu ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:250 +#: src/slic3r/GUI/GUI_ObjectList.cpp:357 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Klicken Sie mit der rechten Maustaste auf das Symbol, um die STL über Netfabb zu reparieren" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Right click" msgstr "Rechter Mausklick" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Right mouse button:" msgstr "Rechte Maustaste:" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "Ansicht von rechts" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253 -#: src/libslic3r/PrintConfig.cpp:3062 +#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 +#: src/libslic3r/PrintConfig.cpp:3436 msgid "Rotate" msgstr "Drehen" -#: src/libslic3r/PrintConfig.cpp:3067 +#: src/libslic3r/PrintConfig.cpp:3441 msgid "Rotate around X" msgstr "Rotiere um X" -#: src/libslic3r/PrintConfig.cpp:3072 +#: src/libslic3r/PrintConfig.cpp:3446 msgid "Rotate around Y" msgstr "Rotiere um Y" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "Unteren Teil umdrehen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "Auswahl um 45 Grad drehen gegen UZS" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "Auswahl um 45 Grad drehen im UZS" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:321 +#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotation" @@ -5508,118 +6121,124 @@ msgstr "Rotation" msgid "Rotation (deg)" msgstr "Rotation (Grad)" -#: src/libslic3r/PrintConfig.cpp:3068 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Rotation angle around the X axis in degrees." msgstr "Rotationswinkel um die X-Achse in Grad." -#: src/libslic3r/PrintConfig.cpp:3073 +#: src/libslic3r/PrintConfig.cpp:3447 msgid "Rotation angle around the Y axis in degrees." msgstr "Rotationswinkel um die Y-Achse in Grad." -#: src/libslic3r/PrintConfig.cpp:3063 +#: src/libslic3r/PrintConfig.cpp:3437 msgid "Rotation angle around the Z axis in degrees." msgstr "Rotationswinkel um die Z-Achse in Grad." -#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658 +#: src/slic3r/GUI/GUI_App.cpp:797 #, possible-c-format msgid "Run %s" msgstr "%s ausführen" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 msgid "Running post-processing scripts" msgstr "Post-Prozess Scripts werden ausgeführt" -#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81 -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612 -#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671 -#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252 -#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319 +#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 +#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 +#: src/libslic3r/PrintConfig.cpp:2557 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:466 src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end G-code" msgstr "S&ende G-code" -#: src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end to print" msgstr "Zum Drucken s&enden" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3401 #, possible-c-format msgid "Save %s as:" msgstr "Speichere %s als:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:828 #, possible-c-format msgid "Save %s file as:" msgstr "Speichere %s Datei als:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 msgid "Save changes?" msgstr "Änderungen speichern?" -#: src/libslic3r/PrintConfig.cpp:2997 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Save config file" msgstr "Speichere Konfigurationsdatei" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:927 msgid "Save configuration as:" msgstr "Konfiguration speichern unter:" -#: src/libslic3r/PrintConfig.cpp:2998 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Save configuration to the specified file." msgstr "Sichert die Konfiguration in der angegebenen Datei." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:133 +#: src/slic3r/GUI/Tab.cpp:135 #, possible-c-format msgid "Save current %s" msgstr "Speichere aktuelle %s" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "Speichere aktuelle Projektdatei" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "Speichere aktuelle Projektdatei als" -#: src/slic3r/GUI/Plater.cpp:1938 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Save file as:" msgstr "Speichere Datei als:" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save G-code file as:" msgstr "Speichere G-Code Datei als:" -#: src/slic3r/GUI/MainFrame.cpp:757 +#: src/slic3r/GUI/MainFrame.cpp:901 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Speichern als OBJ-Datei (weniger anfällig für Koordinatenfehler als STL):" -#: src/slic3r/GUI/Tab.hpp:417 +#: src/slic3r/GUI/Tab.hpp:442 msgid "Save preset" msgstr "Sichern der Voreinstellung" -#: src/slic3r/GUI/MainFrame.cpp:843 +#: src/slic3r/GUI/MainFrame.cpp:982 msgid "Save presets bundle as:" msgstr "Sichern der Voreinstellungssammlung unter:" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "Projekt sichern &als" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Save project (3MF)" -msgstr "Speichere Projekt (3MF)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "Speichere Projekt (3mf)" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "Speichere Projekt als (3mf)" + +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save SL1 file as:" msgstr "Speichere SL1 Datei als:" -#: src/slic3r/GUI/MainFrame.cpp:692 +#: src/slic3r/GUI/MainFrame.cpp:840 msgid "Save zip file as:" msgstr "Speichere Zip Datei als:" @@ -5629,10 +6248,11 @@ msgstr "Speichere Zip Datei als:" msgid "Saving mesh into the 3MF container failed." msgstr "Sichern des Netzes in einen 3MF-Container fehlgeschlagen." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254 -#: src/libslic3r/PrintConfig.cpp:3077 +#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Scale" msgstr "Skalieren" @@ -5640,47 +6260,51 @@ msgstr "Skalieren" msgid "Scale (%)" msgstr "Skaliere (%)" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Skalierungsfaktoren" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "Scale selection to fit print volume\nin Gizmo scale" +msgstr "Auswahl passend zum Druckvolumen in der Gizmo Skalierung anpassen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale the selected object to fit the print volume" msgstr "Skalieren des ausgewählten Objekts so, dass es in das Druckvolumen passt" -#: src/libslic3r/PrintConfig.cpp:3086 +#: src/libslic3r/PrintConfig.cpp:3460 msgid "Scale to Fit" msgstr "Passend skalieren" -#: src/slic3r/GUI/Selection.cpp:947 +#: src/slic3r/GUI/Selection.cpp:939 msgid "Scale To Fit" msgstr "Passend skalieren" -#: src/libslic3r/PrintConfig.cpp:3087 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Scale to fit the given volume." msgstr "Auf das gegebene Volumen skalieren." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale to print volume" msgstr "Auf Druckvolumen skalieren" -#: src/libslic3r/PrintConfig.cpp:3078 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Scaling factor or percentage." msgstr "Skalierungsfaktor oder Prozentsatz." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Geplante Hochladung auf `%1%`. Siehe Fenster -> Druck-Host Uploadwarteschlange" -#: src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "Nahtposition" -#: src/libslic3r/PrintConfig.cpp:1572 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "Bevorzugte Richtung für Nähte" -#: src/libslic3r/PrintConfig.cpp:1581 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "Bevorzugte Zitterrichtung für Nähte" @@ -5688,115 +6312,119 @@ msgstr "Bevorzugte Zitterrichtung für Nähte" msgid "Searching for devices" msgstr "Es wird nach Geräten gesucht" -#: src/slic3r/GUI/Plater.cpp:2190 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Searching for optimal orientation" msgstr "Suche nach der optimalen Orientierung" -#: src/slic3r/GUI/GUI_App.cpp:1100 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Gcode Datei auswählen:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 -msgid "Select All objects" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" msgstr "Alle Objekte auswählen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 msgid "Select all points" msgstr "Alle Punkte auswählen" -#: src/slic3r/GUI/ConfigWizard.cpp:1089 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "Select all standard printers" msgstr "Wähle alle Standarddrucker" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 msgid "Select by rectangle" msgstr "Auswahl über Rechteck" -#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870 +#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 msgid "Select configuration to load:" msgstr "Konfiguration zum Laden auswählen:" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:82 msgid "Select coordinate space, in which the transformation will be performed." msgstr "Koordinatenraum wählen, in dem die Transformation durchgeführt wird." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2834 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 msgid "Select extruder number for selected objects and/or parts" msgstr "Wählen Sie die Extrudernummer für die ausgewählten Objekte und/oder Teile" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2847 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 msgid "Select extruder number:" msgstr "Wählen Sie die Extruder Nummer:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 msgid "Select Filament Settings Tab" msgstr "Wählt Filamenteinstellungsreiter" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1251 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 msgid "Select new extruder for the object/part" -msgstr "Wählt einen anderen Extruder für das Objekte / Teil" +msgstr "Wählt einen anderen Extruder für das Objekte / Teil" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "Select Plater Tab" msgstr "Wählt Druckplattenreiter" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Select Print Settings Tab" msgstr "Wählt Druckeinstellungsreiter" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Select Printer Settings Tab" msgstr "Wählt Druckereinstellungsreiter" -#: src/slic3r/GUI/GUI_ObjectList.cpp:917 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 msgid "Select showing settings" msgstr "Wähle Anzeigeeinstellungen" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "Wählen Sie die Sprache aus" -#: src/slic3r/GUI/Tab.cpp:57 +#: src/slic3r/GUI/Tab.cpp:59 msgid "Select the print profiles this profile is compatible with." msgstr "Wählt die Druckprofile, die mit diesem Profil kompatibel sind." -#: src/slic3r/GUI/Tab.cpp:51 +#: src/slic3r/GUI/Tab.cpp:53 msgid "Select the printers this profile is compatible with." msgstr "Wählen Sie die Drucker aus, die mit diesem Profil kompatibel sind." -#: src/slic3r/GUI/MainFrame.cpp:744 +#: src/slic3r/GUI/MainFrame.cpp:891 msgid "Select the STL file to repair:" msgstr "Geben Sie die STL-Datei an, die repariert werden soll:" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:241 msgid "Select toolbar icon size in respect to the default one." msgstr "Wählen Sie die Symbolgröße der Symbolleiste in Bezug auf die Standardgröße." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2545 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Select type of part" msgstr "Wählen Sie den Typ des Teils" -#: src/slic3r/GUI/Plater.cpp:606 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Select what kind of pad do you need" msgstr "Wählen Sie aus, welche Art von Grundschicht Sie benötigen" -#: src/slic3r/GUI/Plater.cpp:421 +#: src/slic3r/GUI/Plater.cpp:495 msgid "Select what kind of support do you need" msgstr "Wählen Sie aus, welche Art von Unterstützung Sie benötigen" +#: src/slic3r/GUI/DoubleSlider.cpp:1890 +msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" +msgstr "Wählen Sie JA, wenn Sie alle gespeicherten Werkzeugänderungen löschen möchten, \n\tNEIN, wenn Sie möchten, dass alle Werkzeugänderungen auf Farbwechsel umgestellt werden, \n\toder ABBRECHEN, um sie unverändert zu lassen" + #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" msgstr "Auswahl hinzufügen" -#: src/slic3r/GUI/Selection.cpp:384 +#: src/slic3r/GUI/Selection.cpp:376 msgid "Selection-Add All" msgstr "Auswahl Alles hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 msgid "Selection-Add from list" msgstr "Auswahl aus Liste hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:5623 +#: src/slic3r/GUI/GLCanvas3D.cpp:6659 msgid "Selection-Add from rectangle" msgstr "Auswahl über Rechteck hinzufügen" @@ -5812,15 +6440,15 @@ msgstr "Auswahl Objekt hinzufügen" msgid "Selection-Remove" msgstr "Auswahl entfernen" -#: src/slic3r/GUI/Selection.cpp:410 +#: src/slic3r/GUI/Selection.cpp:402 msgid "Selection-Remove All" msgstr "Auswahl Alles entfernen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 msgid "Selection-Remove from list" msgstr "Auswahl aus Liste entfernen" -#: src/slic3r/GUI/GLCanvas3D.cpp:5642 +#: src/slic3r/GUI/GLCanvas3D.cpp:6678 msgid "Selection-Remove from rectangle" msgstr "Auswahl über Rechteck entfernen" @@ -5832,11 +6460,11 @@ msgstr "Auswahl Kopie entfernen" msgid "Selection-Remove Object" msgstr "Auswahl Objekt entfernen" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "Alle Objekte auswählen" -#: src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:5556 msgid "Send G-code" msgstr "Sende G-code" @@ -5844,27 +6472,31 @@ msgstr "Sende G-code" msgid "Send G-Code to printer host" msgstr "Sende G-Code zum Druckerhost" -#: src/slic3r/GUI/MainFrame.cpp:466 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "Sende die aktuelle Plattenbelegung als G-Code zum Drucken" -#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 msgid "Send to printer" msgstr "Zum Drucker senden" -#: src/slic3r/GUI/Tab.cpp:1169 +#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +msgid "Seq." +msgstr "Seq." + +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Sequential printing" msgstr "Sequentielles Drucken" -#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591 +#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Serieller Port" -#: src/libslic3r/PrintConfig.cpp:1599 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "Serielle Portgeschwindigkeit" -#: src/slic3r/GUI/FirmwareDialog.cpp:769 +#: src/slic3r/GUI/FirmwareDialog.cpp:807 msgid "Serial port:" msgstr "Serieller Port:" @@ -5872,17 +6504,17 @@ msgstr "Serieller Port:" msgid "Service name" msgstr "Name des Dienstes" -#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025 -#: src/slic3r/GUI/Tab.cpp:3008 +#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 +#: src/slic3r/GUI/Tab.cpp:3160 msgid "Set" msgstr "Setzen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1192 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Object" msgstr "Als separates Objekt festlegen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Objects" msgstr "Als separate Objekte festlegen" @@ -5890,7 +6522,7 @@ msgstr "Als separate Objekte festlegen" msgid "Set extruder change for every" msgstr "Extruderwechsel bei jedem" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2833 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 msgid "Set extruder for selected items" msgstr "Extruder für die gewählten Elemente wählen" @@ -5898,6 +6530,10 @@ msgstr "Extruder für die gewählten Elemente wählen" msgid "Set extruder sequence" msgstr "Extrudersequenz einstellen" +#: src/slic3r/GUI/DoubleSlider.cpp:1504 +msgid "Set extruder sequence for the entire print" +msgstr "Extrudersequenz für den gesamten Druck einstellen" + #: src/slic3r/GUI/wxExtensions.cpp:3080 msgid "Set extruder sequence for whole print" msgstr "Extrudersequenz für den gesamten Druck einstellen" @@ -5906,667 +6542,695 @@ msgstr "Extrudersequenz für den gesamten Druck einstellen" msgid "Set extruder(tool) sequence" msgstr "Extruder(werkzeug)sequenz einstellen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Set lower thumb to current slider thumb" msgstr "Stelle den unteren Regler auf den aktuellen Schieberegler" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:245 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:297 msgid "Set Mirror" msgstr "Spiegel setzen" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Set number of instances" msgstr "Setze Anzahl der Kopien" -#: src/slic3r/GUI/Plater.cpp:4163 +#: src/slic3r/GUI/Plater.cpp:4771 #, possible-c-format msgid "Set numbers of copies to %d" msgstr "Setze Anzahl der Kopien auf %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:746 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" msgstr "Orientierung setzen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:715 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:750 msgid "Set Position" msgstr "Position setzen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Setze Druckbar" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" msgstr "Setze druckbare Kopie" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:811 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:846 msgid "Set Scale" msgstr "Setze Skalierung" -#: src/libslic3r/PrintConfig.cpp:2228 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Setzt die aktuelle Ausrichtung der LCD-Anzeige im SLA-Drucker. Der Hochformatmodus kehrt die Bedeutung der Anzeigeparameter Breite und Höhe um und die Ausgabebilder werden um 90 Grad gedreht." -#: src/slic3r/GUI/ConfigWizard.cpp:527 +#: src/slic3r/GUI/ConfigWizard.cpp:933 msgid "Set the shape of your printer's bed." msgstr "Stellen Sie die Konturen Ihres Druckerbettes ein." -#: src/libslic3r/PrintConfig.cpp:524 +#: src/libslic3r/PrintConfig.cpp:556 msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite zuzulassen. Falls auf Null belassen, wird Slic3r die Extrusionsbreiten vom Durchmesser der Druckdüse ableiten (siehe die Hilfstexte für die Extrusionsbreite für Aussenschichten, Infill usw.). Falls als Prozentwert (z.B. 230%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite zuzulassen. Falls auf null belassen, wird PrusaSlicer die Extrusionsbreiten vom Durchmesser der Druckdüse ableiten (siehe die Hilfstexte für die Extrusionsbreite für Außenkonturen, Infill usw.). Falls als Prozentwert (z.B. 230%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:417 +#: src/libslic3r/PrintConfig.cpp:448 msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für externe Aussenschichten anzugeben. Falls auf Null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. 200%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für externe Außenkonturen anzugeben. Falls auf null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. 200%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:831 +#: src/libslic3r/PrintConfig.cpp:878 msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für die erste Druckschicht anzugeben. Sie können damit eine dickere Extrusion für bessere Haftung erzwingen. Falls auf Null belassen, wird die Standard-Extrusionsbreite verwendet. Falls als Prozentwert (z.B. 120%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für die erste Druckschicht anzugeben. Sie können damit eine stärkere Extrusion für bessere Haftung erzwingen. Falls auf null belassen, wird die Standard-Extrusionsbreite verwendet. Falls als Prozentwert (z.B. 120%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:1689 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für den Infill bei stabilen Flächen anzugeben. Falls auf Null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für den Infill bei massiven Flächen anzugeben. Falls auf null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:2019 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für die oberen Aussenflächen anzugeben. Dünnere Extrusionsbreiten sind vorteilhaft, um Engstellen auszufüllen und um eine schönere Oberfläche zu erhalten. Falls auf Null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse verwendet. Falls als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für die oberen Außenflächen anzugeben. Dünnere Extrusionsbreiten sind vorteilhaft, um Engstellen auszufüllen und um eine schönere Oberfläche zu erhalten. Falls auf null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse verwendet. Falls als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für den Infill anzugeben. Falls auf Null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Dickere Extrusionsbreiten sind vorteilhaft, um den Infill zu beschleunigen und um die Teile stärker zu machen. Falls als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für den Infill anzugeben. Falls auf null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Stärke Extrusionsbreiten sind vorteilhaft, um den Infill zu beschleunigen und um die Teile stärker zu machen. Falls als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:1350 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für Aussenschichten anzugeben. Dünnere Extrusionsbreiten sind vorteilhaft, um genauere Oberflächen zu erhalten. Falls auf Null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. 200%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für Außenkonturen anzugeben. Dünnere Extrusionsbreiten sind vorteilhaft, um genauere Oberflächen zu erhalten. Falls auf null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. 200%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." -msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für das Stützmaterial anzugeben. Falls auf Null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse verwendet. Als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." +msgstr "Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite für die Stützstrukturen anzugeben. Falls auf null belassen, wird die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse verwendet. Als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet." -#: src/libslic3r/PrintConfig.cpp:480 +#: src/libslic3r/PrintConfig.cpp:512 msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater." -msgstr "Stellen Sie dies auf den Freiraumradius um Ihren Extruder ein. Wenn der Extruder nicht zentriert ist, wählen Sie zur Sicherheit den größten Wert. Diese Einstellung wird verwendet, um Kollisionen zu prüfen und die grafische Vorschau auf der Druckplatte anzuzeigen." +msgstr "Stellen Sie dies auf den Freiraumradius um Ihren Extruder ein. Wenn der Extruder nicht zentriert ist, wählen Sie zur Sicherheit den größten Wert. Diese Einstellung wird verwendet, um Kollisionen zu prüfen und die grafische Vorschau auf der Druckplatte anzuzeigen." -#: src/libslic3r/PrintConfig.cpp:65 +#: src/libslic3r/PrintConfig.cpp:81 msgid "Set this to the maximum height that can be reached by your extruder while printing." msgstr "Stellen Sie hier die maximale Höhe ein, die Ihr Extruder beim Drucken erreichen kann." -#: src/libslic3r/PrintConfig.cpp:469 +#: src/libslic3r/PrintConfig.cpp:501 msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Stellen Sie dies auf den vertikalen Abstand zwischen Ihrer Düsenspitze und (in der Regel) den X-Wagenstangen ein. Mit anderen Worten, das ist die Höhe des Abstandszylinders um Ihren Extruder herum und stellt die maximale Tiefe dar, die der Extruder vor der Kollision mit anderen Druckobjekten sehen kann." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Setze Undruckbar" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" msgstr "Setze undruckbare Kopie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Set upper thumb to current slider thumb" msgstr "Stelle den oberen Regler auf den aktuellen Schieberegler" -#: src/slic3r/GUI/BedShapeDialog.cpp:143 +#: src/libslic3r/PrintConfig.cpp:3494 +msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." +msgstr "Stellt die Empfindlichkeit der Protokollierung ein. 0:fatal, 1:Fehler, 2:Warnung, 3:Info, 4:Debug, 5: Trace.\nZum Beispiel. loglevel=2 protokolliert fatale, Fehler- und Warnstufenmeldungen." + +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Einstellungen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Settings for height range" msgstr "Einstellungen für Höhenbereich" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "Soll ich diese Einstellungen für Stützen anpassen?" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "Soll ich diese Einstellungen anpassen, um die Spiralvase zu aktivieren?" -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "Soll ich diese Einstellungen anpassen, um den Reinigungsturm zu aktivieren? " -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "Soll ich auf geradliniges Füllmuster wechseln?" -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Soll ich die Stützschichten synchronisieren, um den Reinigungsturm zu aktivieren?" -#: src/slic3r/GUI/BedShapeDialog.cpp:60 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 msgid "Shape" msgstr "Form" -#: src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/GUI_Preview.cpp:258 msgid "Shells" msgstr "Konturhüllen" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:254 msgid "Shift + Left mouse button:" msgstr "Gross + Linke Maustaste:" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:260 msgid "Shift + Right mouse button:" msgstr "Gross + Rechte Maustaste:" -#: src/slic3r/GUI/GUI_Preview.cpp:221 +#: src/slic3r/GUI/GUI_Preview.cpp:233 msgid "Show" msgstr "Anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show &Configuration Folder" msgstr "Zeige Konfigurationsordner (&C)" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show &labels" +msgstr "Anzeigen Beschriftungen (&l)" + +#: src/slic3r/GUI/MainFrame.cpp:707 msgid "Show about dialog" msgstr "\"Über\"-Dialog anzeigen" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show advanced settings" msgstr "Ausführliche Einstellungen anzeigen" -#: src/slic3r/GUI/PrintHostDialogs.cpp:158 +#: src/slic3r/GUI/PrintHostDialogs.cpp:159 msgid "Show error message" msgstr "Fehlermeldungen anzeigen" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "Show incompatible print and filament presets" msgstr "Inkompatible Druck- und Filamenteinstellungen anzeigen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Show keyboard shortcuts list" msgstr "Liste der Tastaturkürzel anzeigen" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show object/instance labels in 3D scene" +msgstr "Objekt-/Kopiebeschriftungen in der 3D-Szene anzeigen" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show simplified settings" msgstr "Vereinfachte Einstellungen anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "Stützen anzeigen" + +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show system information" msgstr "Systeminformationen anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "Anzeigen des 3D Editiermodus" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "Vorschau der 3D-Schnitte anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:480 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "Filamenteinstellungen anzeigen" -#: src/libslic3r/PrintConfig.cpp:2983 +#: src/libslic3r/PrintConfig.cpp:3357 msgid "Show the full list of print/G-code configuration options." msgstr "Zeigt die vollständige Liste der Konfigurationsmöglichkeiten für Druck/GCode an." -#: src/libslic3r/PrintConfig.cpp:2988 +#: src/libslic3r/PrintConfig.cpp:3362 msgid "Show the full list of SLA print configuration options." msgstr "Zeigt die vollständige Liste der Konfigurationsmöglichkeiten für SLA Druck an." -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:710 msgid "Show the list of the keyboard shortcuts" msgstr "Liste der Tastaturkürzel anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" msgstr "Druckplatte anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "Druckeinstellungen anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "Druckereinstellungen anzeigen" -#: src/libslic3r/PrintConfig.cpp:2977 +#: src/libslic3r/PrintConfig.cpp:3351 msgid "Show this help." msgstr "Diese Hilfe zeigen." -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show user configuration folder (datadir)" -msgstr "Zeige User Konfiguration Ordner (datadir)" +msgstr "Zeige Benutzerkonfigurationsordner (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 msgid "Show/Hide (L)egend" msgstr "Zeige/Verberge (L)egende" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Einstellungsdialog für 3Dconnexion-Geräte ein-/ausblenden" -#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "Zeige/Verberge Legende" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Show/Hide object/instance labels" +msgstr "Objekt-/Kopiebeschriftungen ein-/ausblenden" + +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "Einfach" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Simple mode" msgstr "Einfacher Modus" -#: src/slic3r/GUI/GUI_App.cpp:674 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "EInfacher Anzeigemodus" -#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239 +#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 msgid "Single extruder MM setup" -msgstr "Einzelner Extruder MM Setup" +msgstr "Einzelextruder MM Setup" -#: src/libslic3r/PrintConfig.cpp:1767 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" -msgstr "Einzelner Extruder mit Multi-Material" +msgstr "Einzelextruder mit Multi-Material" -#: src/slic3r/GUI/Tab.cpp:2023 +#: src/slic3r/GUI/Tab.cpp:1865 msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" msgstr "Einzel-Extruder Multi-Material ist ausgewählt, \nund alle Extruder müssen den gleichen Durchmesser haben.\nMöchten Sie den Durchmesser für alle Extruder auf den Wert des ersten Extruderdüsendurchmessers ändern?" -#: src/slic3r/GUI/Tab.cpp:2240 +#: src/slic3r/GUI/Tab.cpp:2303 msgid "Single extruder multimaterial parameters" -msgstr "Einzelner Extruder Multimaterial Parameter" +msgstr "Einzelextruder Multimaterial Parameter" -#: src/slic3r/GUI/BedShapeDialog.cpp:72 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137 -#: src/slic3r/GUI/Tab.cpp:2257 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 +#: src/slic3r/GUI/Tab.cpp:2320 msgid "Size" -msgstr "Grösse" +msgstr "Größe" -#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014 +#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 msgid "Size and coordinates" -msgstr "Grösse und Koordinaten" +msgstr "Größe und Koordinaten" -#: src/slic3r/GUI/BedShapeDialog.cpp:73 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." -msgstr "Grösse der rechteckigen Platte in X und Y." +msgstr "Größe der rechteckigen Platte in X und Y." -#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050 -#: src/libslic3r/GCode/PreviewData.cpp:171 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Schürze" -#: src/slic3r/GUI/Tab.cpp:1049 +#: src/slic3r/GUI/Tab.cpp:1112 msgid "Skirt and brim" msgstr "Schürze und Rand" -#: src/libslic3r/PrintConfig.cpp:1617 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "Schürzenhöhe" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "Schleifen für die Schürze" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 msgid "SLA gizmo keyboard shortcuts" msgstr "SLA Gizmo Tastaturkürzel" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1150 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 msgid "SLA gizmo turned off" msgstr "SLA Gizmo ausgeschaltet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1115 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 msgid "SLA gizmo turned on" msgstr "SLA Gizmo eingeschaltet" -#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277 +#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 msgid "SLA material" msgstr "SLA Material" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Material Profiles Selection" msgstr "SLA Material Profile Auswahl" -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 msgid "SLA material type" msgstr "SLA Materialtyp" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Materials" msgstr "SLA Materialien" -#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276 +#: src/slic3r/GUI/Preset.cpp:1473 msgid "SLA print" msgstr "SLA Druck" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2569 msgid "SLA print material notes" msgstr "SLA Druckmaterial-Anmerkungen" -#: src/slic3r/GUI/Plater.cpp:690 +#: src/slic3r/GUI/Plater.cpp:814 msgid "SLA print settings" msgstr "SLA Druckeinstellungen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 msgid "SLA Support Points" msgstr "SLA Stützpunkte" -#: src/slic3r/GUI/GLCanvas3D.cpp:722 +#: src/slic3r/GUI/GLCanvas3D.cpp:692 msgid "SLA supports outside the print area were detected" msgstr "SLA Stützstrukturen außerhalb des Druckraums entdeckt" -#: src/slic3r/GUI/ConfigWizard.cpp:1493 +#: src/slic3r/GUI/ConfigWizard.cpp:1533 msgid "SLA Technology Printers" msgstr "SLA Technologie Drucker" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Slab" msgstr "Slab" -#: src/libslic3r/PrintConfig.cpp:1268 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host." -msgstr "Slic3r kann G-Code Dateien auf einen Drucker-Host hochladen. Dieses Feld sollte den Typ des Hosts enthalten." +msgstr "PrusaSlicer kann G-Code Dateien auf einen Drucker-Host hochladen. Dieses Feld sollte den Typ des Hosts enthalten." -#: src/libslic3r/PrintConfig.cpp:89 +#: src/libslic3r/PrintConfig.cpp:105 msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." -msgstr "Slic3r kann G-Code Dateien zu einem Druckerhost hochladen. Dieses Feld sollte den API-Schlüssel oder das Kennwort enthalten, die für die Authentifizierung erforderlich sind." +msgstr "PrusaSlicer kann G-Code Dateien zu einem Druckerhost hochladen. Dieses Feld sollte den API-Schlüssel oder das Kennwort enthalten, die für die Authentifizierung erforderlich sind." -#: src/libslic3r/PrintConfig.cpp:82 +#: src/libslic3r/PrintConfig.cpp:98 msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance." -msgstr "Slic3r kann G-Code Dateien auf einen Drucker-Host hochladen. Dieses Feld sollte den Hostnamen, die IP-Adresse oder die URL der Drucker-Hostinstanz enthalten." +msgstr "PrusaSlicer kann G-Code Dateien auf einen Drucker-Host hochladen. Dieses Feld sollte den Hostnamen, die IP-Adresse oder die URL der Drucker-Hostinstanz enthalten." -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." -msgstr "Slic3r wird die Geschwindigkeit nicht unterhalb dieser Geschwindigkeit skalieren." +msgstr "PrusaSlicer wird die Geschwindigkeit nicht unterhalb dieser Geschwindigkeit skalieren." -#: src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Slice" msgstr "Slice" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "Datei zu G-Code slicen" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "Datei zu G-Code slicen, speichern als" -#: src/libslic3r/PrintConfig.cpp:71 +#: src/libslic3r/PrintConfig.cpp:87 msgid "Slice gap closing radius" msgstr "Slice Lückenschlussradius" -#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3618 +#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5140 msgid "Slice now" msgstr "Jetzt slicen" -#: src/libslic3r/PrintConfig.cpp:2944 +#: src/libslic3r/PrintConfig.cpp:3318 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Slice das Modell und Export von SLA-Druckschichten als PNG." -#: src/libslic3r/PrintConfig.cpp:2965 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Slice the model and export toolpaths as G-code." msgstr "Modell slicen und Werkzeugwege als G-Code exportieren." -#: src/libslic3r/PrintConfig.cpp:2971 +#: src/libslic3r/PrintConfig.cpp:3345 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Slice das Modell als FFF oder SLA basierend auf dem Konfigurationswert von printer_technology." -#: src/slic3r/GUI/Plater.cpp:193 +#: src/slic3r/GUI/Plater.cpp:218 msgid "Sliced Info" msgstr "Slice-Info" -#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159 -#: src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3647 msgid "Slicing" msgstr "Slice" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 msgid "Slicing complete" -msgstr "Der Slice ist abgeschlossen" +msgstr "Slicing abgeschlossen" -#: src/libslic3r/SLAPrint.cpp:1459 +#: src/libslic3r/SLAPrint.cpp:760 msgid "Slicing done" -msgstr "Der Slice ist beendet" +msgstr "Slicing abgeschlossen" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:876 msgid "Slicing Done!" -msgstr "Der Slice ist beendet!" +msgstr "Slicing abgeschlossen!" -#: src/libslic3r/SLAPrint.cpp:759 +#: src/libslic3r/SLAPrintSteps.cpp:209 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Das Slicen wurde wegen eines internen Fehlers gestoppt: Defekter Sliceindex." -#: src/libslic3r/SLAPrint.cpp:55 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Slicing model" msgstr "Slice das Modell" -#: src/libslic3r/SLAPrint.cpp:59 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing supports" msgstr "Slice Stützstrukturen" -#: src/libslic3r/PrintConfig.cpp:2249 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "Langsam" -#: src/libslic3r/PrintConfig.cpp:1635 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "Langsamer drucken wenn die Schichtdruckzeit geringer ist als" -#: src/libslic3r/PrintConfig.cpp:2250 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "Langsames Kippen" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" -msgstr "Dünne Aussenschichten" +msgstr "Dünne Außenkonturen" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:293 msgid "Smooth" msgstr "Glätten" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:263 msgid "Smoothing" msgstr "Glätten" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "Name der Momentaufnahme" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Software &Releases" msgstr "Software &Release" -#: src/slic3r/GUI/PresetHints.cpp:181 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" -msgstr "Stabiles Infill" +msgstr "Massives Infill" -#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687 -#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" -msgstr "Stabiles Infill" +msgstr "Massives Infill" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "Massives Infill alle" -#: src/libslic3r/PrintConfig.cpp:1667 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "Massives Infill Extruder" -#: src/libslic3r/PrintConfig.cpp:1658 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" msgstr "Massives Infill Flächen Schwellwert" -#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" -msgstr "Kompakte Schichten" +msgstr "Massive Schichten" -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "Lösliches Material" -#: src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." -msgstr "Lösliches Material wird meistens für lösliche Stützen verwendet." +msgstr "Lösliches Material wird meistens für Stützstrukturen verwendet." -#: src/libslic3r/PrintConfig.cpp:914 +#: src/libslic3r/PrintConfig.cpp:937 msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Einige G/M-Code Befehle, einschließlich Temperaturregelung und andere, sind nicht universell einsetzbar. Stellen Sie diese Option auf die Firmware Ihres Druckers ein, um eine kompatible Ausgabe zu erhalten. Der Zusatz \"No Extrusion\" verhindert, dass PrusaSlicer überhaupt einen Extrusionswert exportiert." +#: src/slic3r/GUI/GLCanvas3D.cpp:693 +msgid "Some objects are not visible" +msgstr "Einige Objekte sind nicht sichtbar" + #: src/slic3r/GUI/GLCanvas3D.cpp:721 msgid "Some objects are not visible when editing supports" msgstr "Einige Objekte sind bei der Bearbeitung von Stützen nicht sichtbar" -#: src/libslic3r/Print.cpp:1162 +#: src/libslic3r/Print.cpp:1222 msgid "Some objects are too close; your extruder will collide with them." -msgstr "Einige Objekte sind zu nahe; Ihr Extruder wird mit ihnen zusammenstossen." +msgstr "Einige Objekte sind zu nahe; Ihr Extruder wird mit ihnen zusammenstoßen." -#: src/libslic3r/Print.cpp:1177 +#: src/libslic3r/Print.cpp:1224 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Einige Objekte sind zu hoch und können nicht ohne Zusammenstoss mit dem Extruder gedruckt werden." -#: src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2815 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Einige Objekte können mit ein paar kleineren Grundschichten auskommen, anstatt mit einer einzigen großen. Dieser Parameter definiert, wie weit die Mittelpunkte von zwei kleineren Grundschichten entfernt sein soll. Wenn sie näher sind, werden sie zu einem Block zusammengeführt." -#: src/libslic3r/PrintConfig.cpp:2086 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default." msgstr "Mit einigen Druckern oder Druckerkonfigurationen ist es schwierig, mit einer variablen Schichthöhe zu drucken. Standardmässig aktiviert." -#: src/libslic3r/PrintConfig.cpp:1897 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." -msgstr "Abstand zwischen den Schnittstellenlinien. Auf Null stellen, um ein solides Interface zu erhalten." +msgstr "Abstand zwischen den Schnittstellenlinien. Auf null stellen, um ein massives Interface zu erhalten." -#: src/libslic3r/PrintConfig.cpp:1931 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." -msgstr "Abstand zwischen Stützmateriallinien." +msgstr "Abstand zwischen Stützstrukturlinien." -#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512 -#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084 -#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598 -#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698 -#: src/libslic3r/PrintConfig.cpp:2029 +#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 +#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "Geschwindigkeit" -#: src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "Geschwindigkeit (baud) des USB/seriellen Ports für den Drucker Anschluß." -#: src/libslic3r/GCode/PreviewData.cpp:400 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "Geschwindigkeit (mm/s)" -#: src/libslic3r/PrintConfig.cpp:872 +#: src/libslic3r/PrintConfig.cpp:920 msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." -msgstr "Geschwindigkeit, mit der kleine Lücken mit kurzen Zickzackbewegungen gefüllt werden. Beschränken Sie diese auf einen mässigen Wert, um übermässiges Rütteln und Resonanzprobleme zu vermeiden. Auf Null gesetzt, wird das Füllen kleiner Lücken deaktiviert." +msgstr "Geschwindigkeit, mit der kleine Lücken mit kurzen Zickzackbewegungen gefüllt werden. Beschränken Sie diese auf einen mässigen Wert, um übermässiges Rütteln und Resonanzprobleme zu vermeiden. Auf null gesetzt, wird das Füllen kleiner Lücken deaktiviert." -#: src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Tab.cpp:1160 msgid "Speed for non-print moves" msgstr "Geschwindigkeit für Bewegungen zwischen den Druckvorgängen" -#: src/libslic3r/PrintConfig.cpp:1362 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." -msgstr "Geschwindigkeit für Aussenschichten (Konturen, bzw. vertikale Hüllen). Für Automatik auf Null setzen." +msgstr "Geschwindigkeit für Außenkonturen (Konturen, bzw. vertikale Hüllen). Für Automatik auf null setzen." -#: src/slic3r/GUI/Tab.cpp:1085 +#: src/slic3r/GUI/Tab.cpp:1148 msgid "Speed for print moves" msgstr "Geschwindigkeit für Druckbewegungen" -#: src/libslic3r/PrintConfig.cpp:200 +#: src/libslic3r/PrintConfig.cpp:226 msgid "Speed for printing bridges." msgstr "Brückendruckgeschwindigkeit." -#: src/libslic3r/PrintConfig.cpp:1699 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto." -msgstr "Druckgeschwindigkeit für stabile Bereiche (obere/untere/innenliegende waagrechte Hüllen). Sie kann als Prozentwert (z.B. 80%) der oben eingegebenen standardmässigen Infill-Geschwindigkeit angegeben werden. Für Automatik auf Null setzen." +msgstr "Druckgeschwindigkeit für massive Bereiche (obere/untere/innenliegende waagrechte Hüllen). Sie kann als Prozentwert (z.B. 80%) der oben eingegebenen standardmässigen Infill-Geschwindigkeit angegeben werden. Für Automatik auf null setzen." -#: src/libslic3r/PrintConfig.cpp:1906 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed." msgstr "Geschwindigkeit für den Druck von Trägermaterial-Schnittstellenschichten. Wenn es als Prozentsatz (z.B. 50%) ausgedrückt wird, wird es über die Geschwindigkeit des Trägermaterials berechnet." -#: src/libslic3r/PrintConfig.cpp:1940 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." -msgstr "Druckgeschwindigkeit des Stützmaterials." +msgstr "Druckgeschwindigkeit der Stützstrukturen." -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." -msgstr "Druckgeschwindigkeit für den Infill. Für Automatik auf Null setzen." +msgstr "Druckgeschwindigkeit für den Infill. Für Automatik auf null setzen." -#: src/libslic3r/PrintConfig.cpp:2030 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto." -msgstr "Druckgeschwindigkeit für die oberen stabilen Schichten (betrifft nur die obersten Aussenschichten und nicht deren innenliegende stabilen Schichten). Wir empfehlen, diesen Wert zu reduzieren, um eine schönere Oberfläche zu erhalten. Dies kann als Prozentwert (z.B. 80%) der oben eingegebenen Geschwindigkeit für stabiles Infill angegeben werden. Für Automatik auf Null setzen." +msgstr "Druckgeschwindigkeit für die oberen massiven Schichten (betrifft nur die obersten Außenkonturen und nicht deren innenliegende massiven Schichten). Wir empfehlen, diesen Wert zu reduzieren, um eine schönere Oberfläche zu erhalten. Dies kann als Prozentwert (z.B. 80%) der oben eingegebenen Geschwindigkeit für massives Infill angegeben werden. Für Automatik auf null setzen." -#: src/libslic3r/PrintConfig.cpp:2052 +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "Bewegungsgeschwindigkeit (zwischen weit entfernten Extrusionsorten)." -#: src/libslic3r/PrintConfig.cpp:627 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "Geschwindigkeit der ersten Kühlbewegung" -#: src/libslic3r/PrintConfig.cpp:646 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "Geschwindigkeit der letzten Kühlbewegung" -#: src/libslic3r/PrintConfig.cpp:585 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "Geschwindigkeit, die zu Beginn der Ladephase verwendet wird." -#: src/libslic3r/PrintConfig.cpp:577 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "Geschwindigkeit, mit der Filament auf dem Reinigungsturm geladen wird." -#: src/libslic3r/PrintConfig.cpp:593 +#: src/libslic3r/PrintConfig.cpp:624 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Geschwindigkeit, mit der Filament auf dem Reinigungsturm entladen wird (betrifft nicht den ersten Teil des Entladens direkt nach dem Rammen)." -#: src/libslic3r/PrintConfig.cpp:602 +#: src/libslic3r/PrintConfig.cpp:633 msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Geschwindigkeit, mit der die Spitze des Filaments unmittelbar nach dem Rammen entladen wird." -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Speed:" msgstr "Geschwindigkeit:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Sphere" msgstr "Kugel" -#: src/libslic3r/PrintConfig.cpp:1717 +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "Spiralvasenmodus" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "Spiralvasenmodus" -#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988 -#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082 +#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 msgid "Split" msgstr "Trennen" -#: src/slic3r/GUI/Plater.cpp:2971 +#: src/slic3r/GUI/Plater.cpp:4028 msgid "Split the selected object" msgstr "Teile das gewählte Objekt" -#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988 +#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 msgid "Split the selected object into individual objects" msgstr "Ausgewähltes Objekt in Einzelobjekte trennen" -#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008 +#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 msgid "Split the selected object into individual sub-parts" msgstr "Ausgewähltes Objekt in einzelne Unterteile trennen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3490 +#: src/slic3r/GUI/GLCanvas3D.cpp:4599 msgid "Split to objects" msgstr "In Objekte trennen" -#: src/slic3r/GUI/Plater.cpp:2796 +#: src/slic3r/GUI/Plater.cpp:2965 msgid "Split to Objects" msgstr "In Objekte trennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1110 +#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "In Teile trennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1904 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 msgid "Split to Parts" msgstr "In Teile trennen" @@ -6574,11 +7238,11 @@ msgstr "In Teile trennen" msgid "Standard" msgstr "Standard" -#: src/libslic3r/PrintConfig.cpp:799 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "Sterne" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "Ein neues Projekt beginnen" @@ -6586,12 +7250,12 @@ msgstr "Ein neues Projekt beginnen" msgid "Start at height" msgstr "Starte auf Höhe" -#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949 -#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Start G-Code" -#: src/slic3r/GUI/MainFrame.cpp:403 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "Neuen Slicing-Prozess starten" @@ -6599,23 +7263,23 @@ msgstr "Neuen Slicing-Prozess starten" msgid "Start printing after upload" msgstr "Beginne den Druckjob nach dem Hochladen" -#: src/slic3r/GUI/PrintHostDialogs.cpp:150 +#: src/slic3r/GUI/PrintHostDialogs.cpp:151 msgid "Status" msgstr "Status" -#: src/slic3r/GUI/FirmwareDialog.cpp:782 +#: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Status:" msgstr "Status:" -#: src/slic3r/GUI/Tab.cpp:2158 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Stealth" msgstr "Stealth" -#: src/slic3r/GUI/Plater.cpp:1084 +#: src/slic3r/GUI/Plater.cpp:1267 msgid "stealth mode" msgstr "Stealth Modus" -#: src/slic3r/GUI/Plater.cpp:3545 +#: src/slic3r/GUI/Plater.cpp:5001 #, possible-c-format msgid "STL file exported to %s" msgstr "Die STL-Datei wurde exportiert zu %s" @@ -6624,736 +7288,803 @@ msgstr "Die STL-Datei wurde exportiert zu %s" msgid "Stop at height" msgstr "Stoppe auf Höhe" -#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 msgid "Success!" msgstr "Erfolg!" -#: src/slic3r/GUI/PresetHints.cpp:200 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "Stützen" -#: src/libslic3r/PrintConfig.cpp:2441 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Support base diameter" -msgstr "Stützfuss Durchmesser" +msgstr "Stützfuß Durchmesser" -#: src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2693 msgid "Support base height" -msgstr "Stützfuss Höhe" +msgstr "Stützfuß Höhe" -#: src/libslic3r/PrintConfig.cpp:2566 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base safety distance" msgstr "Sicherheitsabstand der Stützbasis" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Blocker" msgstr "Stützblocker" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Enforcer" msgstr "Stützverstärker" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "Stütz-Generator" -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3593 msgid "Support head" msgstr "Stützkopf" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2611 msgid "Support head front diameter" msgstr "Durchmesser des Stützkopfes vorne" -#: src/libslic3r/PrintConfig.cpp:2378 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head penetration" msgstr "Eindringtiefe des Stützkopfes" -#: src/libslic3r/PrintConfig.cpp:2387 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head width" msgstr "Stützkopfbreite" -#: src/slic3r/GUI/PresetHints.cpp:210 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "Schnittstelle zu den Stützen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70 -#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236 -#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060 -#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432 -#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786 -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806 -#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887 -#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905 -#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930 -#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939 -#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956 -#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" -msgstr "Stützmaterial" +msgstr "Stützstrukturen" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904 -#: src/libslic3r/GCode/PreviewData.cpp:173 +#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" -msgstr "Schnittstelle zum Stützmaterial" +msgstr "Schnittstellenmaterial zu den Stützstrukturen" -#: src/libslic3r/PrintConfig.cpp:1957 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)." -msgstr "Für Überhänge, deren Neigungswinkel (90° = vertikal) oberhalb der vorgegebenen Schwelle liegt, wird kein Stützmaterial erzeugt. Mit anderen Worten, dieser Wert stellt die größte horizontale Steigung (gemessen von der horizontalen Ebene) dar, die Sie ohne Trägermaterial drucken können. Für die automatische Erkennung auf Null setzen (empfohlen)." +msgstr "Für Überhänge, deren Neigungswinkel (90° = vertikal) oberhalb der vorgegebenen Schwelle liegt, wird keine Stützstruktur erzeugt. Mit anderen Worten, dieser Wert stellt die größte horizontale Steigung (gemessen von der horizontalen Ebene) dar, die Sie ohne Trägermaterial drucken können. Für die automatische Erkennung auf null setzen (empfohlen)." -#: src/libslic3r/PrintConfig.cpp:1877 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" -msgstr "Stützmaterial/Raft Schnittstellen Extruder" +msgstr "Stützstrukturen/Raft Schnittstellen Extruder" -#: src/libslic3r/PrintConfig.cpp:1851 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" -msgstr "Stützmaterial/Raft/Schürzen Extruder" +msgstr "Stützstrukturen/Raft/Schürzen Extruder" -#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815 -#: src/libslic3r/PrintConfig.cpp:2423 +#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2665 msgid "Support on build plate only" -msgstr "Stützmaterial nur auf dem Druckbrett" +msgstr "Stützstrukturen nur auf dem Druckbrett" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:991 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 msgid "Support parameter change" -msgstr "Stützmaterial Änderung" +msgstr "Stützparameter Änderung" -#: src/slic3r/GUI/Tab.cpp:3406 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support pillar" msgstr "Stützpfeiler" -#: src/libslic3r/PrintConfig.cpp:2407 +#: src/libslic3r/PrintConfig.cpp:2649 msgid "Support pillar connection mode" msgstr "Stützpfeiler Verbindungsmodus" -#: src/libslic3r/PrintConfig.cpp:2397 +#: src/libslic3r/PrintConfig.cpp:2639 msgid "Support pillar diameter" msgstr "Durchmesser der Stützpfeiler" -#: src/libslic3r/PrintConfig.cpp:2499 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "Support points density" msgstr "Stützpunktdichte" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 msgid "Support points edit" msgstr "Stützpunkte editieren" -#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519 -#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397 -#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363 -#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379 -#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398 -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431 -#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490 -#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508 +#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 +#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 +#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 +#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 +#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 +#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 +#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 +#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 +#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 +#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Supports" msgstr "Stützen" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "supports and pad" msgstr "Stützen und Grundschicht" -#: src/libslic3r/PrintConfig.cpp:1043 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "Unterstützt Restzeit" -#: src/libslic3r/PrintConfig.cpp:1053 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "Unterstützt Stealth Modus" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 +#: src/slic3r/GUI/ConfigManipulation.cpp:159 msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" msgstr "Stützen funktionieren besser, wenn die folgende Funktion aktiviert ist:\n- Erkennen von Umfangbrücken" -#: src/slic3r/GUI/Preferences.cpp:76 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets" msgstr "\"Standard\"-Einstellungen unterdrücken" -#: src/slic3r/GUI/Preferences.cpp:78 +#: src/slic3r/GUI/Preferences.cpp:91 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "\"Standard\"-Einstellungen in den Auswahlen für Druck / Filament / Drucker unterdrücken, falls andere gültige Voreinstellungen vorhanden sind." -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/DoubleSlider.cpp:1112 +msgid "Switch code to Change extruder" +msgstr "Code umschalten auf Extruder wechseln" + +#: src/slic3r/GUI/DoubleSlider.cpp:1147 +msgid "Switch code to Color change (%1%) for:" +msgstr "Umschalten des Codes auf Farbwechsel (%1%) für:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 msgid "Switch to 3D" msgstr "Zeige 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 msgid "Switch to editing mode" msgstr "Zum Bearbeitungsmodus umschalten" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 msgid "Switch to Preview" msgstr "Wechseln zur Vorschau" -#: src/slic3r/GUI/wxExtensions.cpp:2412 +#: src/slic3r/GUI/wxExtensions.cpp:703 #, possible-c-format msgid "Switch to the %s mode" msgstr "Wechseln zum %s Modus" -#: src/slic3r/GUI/GUI_App.cpp:752 +#: src/slic3r/GUI/GUI_App.cpp:882 msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." msgstr "Das Umschalten der Sprache löst einen Neustart der Anwendung aus.\nSie verlieren den Inhalt der Druckplatte." -#: src/slic3r/GUI/WipeTowerDialog.cpp:327 +#: src/slic3r/GUI/WipeTowerDialog.cpp:365 msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" msgstr "Das Umschalten auf einfache Einstellungen verwirft die im erweiterten Modus vorgenommenen Änderungen!\n\nWollen Sie fortfahren?" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1016 msgid "symbolic profile name" msgstr "symbolischer Profilname" -#: src/libslic3r/PrintConfig.cpp:1949 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive." msgstr "Stützschichten mit den Druckschichten des Objekts synchronisieren. Dies ist nützlich bei Multi-Material-Druckern, bei denen der Wechsel des Extruders kostenaufwendig ist." -#: src/libslic3r/PrintConfig.cpp:1947 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "Mit Objektschichten synchronisieren" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "System &Info" msgstr "System&informationen" -#: src/slic3r/GUI/SysInfoDialog.cpp:44 +#: src/slic3r/GUI/SysInfoDialog.cpp:78 msgid "System Information" msgstr "Systeminformationen" -#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970 -#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067 -#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553 +#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 +#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 +#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "Systemvoreinstellungen" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" msgstr "Erfa&ssen einer Konfigurations-Momentaufnahme" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Ich erfasse eine Momentaufnahme der Konfiguration" -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatur" -#: src/libslic3r/PrintConfig.cpp:1727 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped." msgstr "Der anzuwendende Temperaturunterschied, wenn kein Extruder aktiv ist. Dies aktiviert eine \"Wegwerf-\"Schürze über die ganze Druckhöhe, auf der die Düsen periodisch gereinigt werden." -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "Temperaturen" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Temperatures" msgstr "Temperaturen" -#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 msgid "Test" msgstr "Test" -#: src/slic3r/GUI/BedShapeDialog.cpp:171 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "Textur" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Das %1% Füllmuster ist nicht für die Arbeit mit 100%% Dichte vorgesehen." -#: src/slic3r/GUI/FirmwareDialog.cpp:530 +#: src/slic3r/GUI/FirmwareDialog.cpp:548 #, possible-c-format msgid "The %s device could not have been found" msgstr "Das %s-Gerät konnte nicht gefunden werden" -#: src/slic3r/GUI/FirmwareDialog.cpp:417 +#: src/slic3r/GUI/FirmwareDialog.cpp:436 #, possible-c-format msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." msgstr "Das %s-Gerät wurde nicht gefunden.\nWenn das Gerät angeschlossen ist, drücken Sie bitte die Reset-Taste neben dem USB-Anschluss...." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." msgstr "Das aktuell manipulierte Objekt wird gekippt (Drehwinkel sind keine Vielfachen von 90°).\nEine ungleiche Skalierung von geschwenkten Objekten ist nur im Weltkoordinatensystem möglich,\nsobald die Drehung in die Objektkoordinaten eingearbeitet wurde." -#: src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2717 msgid "The default angle for connecting support sticks and junctions." msgstr "Der Standardwinkel für die Verbindung von Stützstäben und Verbindungen." -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:631 msgid "The endings of the support pillars will be deployed on the gap between the object and the pad. 'Support base safety distance' has to be greater than the 'Pad object gap' parameter to avoid this." msgstr "Die Enden der Stützpfeiler werden auf dem Spalt zwischen dem Objekt und der Grundschicht eingesetzt. Der \"Sicherheitsabstand der Stützbasis\" muss größer sein als der Parameter \"Objektabstand Grundschicht\", um dies zu vermeiden." -#: src/libslic3r/PrintConfig.cpp:457 +#: src/libslic3r/PrintConfig.cpp:489 msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders." -msgstr "Der Extruder, der verwendet werden soll, falls keine sonstigen Extrudereinstellungen angegeben wurden. Dies übersteuert die Angaben für die Aussenschicht- und Infill-Extruder, aber nicht die Angabe des Extruders für die Stützen." +msgstr "Der Extruder, der verwendet werden soll, falls keine sonstigen Extrudereinstellungen angegeben wurden. Dies übersteuert die Angaben für die Außenkontur- und Infill-Extruder, aber nicht die Angabe des Extruders für die Stützen." -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "Extruder der beim Infill benutzt wird." -#: src/libslic3r/PrintConfig.cpp:1341 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "Extruder der beim Umfang und Rand Drucken benutzt werden soll. Der erste Extruder ist 1." -#: src/libslic3r/PrintConfig.cpp:1669 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." -msgstr "Der Extruder der beim Drucken von solidem Infill benutzt werden soll." +msgstr "Der Extruder der beim Drucken von massivem Infill benutzt werden soll." -#: src/libslic3r/PrintConfig.cpp:1879 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too." -msgstr "Der Extruder, der für den Druck von Schnittstellen zum Stützmaterial verwendet wird (1+, oder Null um den aktuellen Extruder für die Minimierung von Werkzeugwechseln zu verwenden). Dies betrifft auch den Raft." +msgstr "Der Extruder, der für den Druck von Schnittstellen zu den Stützstrukturen verwendet wird (1+, oder null um den aktuellen Extruder für die Minimierung von Werkzeugwechseln zu verwenden). Dies betrifft auch den Raft." -#: src/libslic3r/PrintConfig.cpp:1853 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)." -msgstr "Der Extruder, der für den Druck von Stützmaterial, Raft und Schürze verwendet wird (1+, oder Null um den aktuellen Extruder für die Minimierung von Werkzeugwechseln zu verwenden)." +msgstr "Der Extruder, der für den Druck von Stützstrukturen, Raft und Schürze verwendet wird (1+, oder null um den aktuellen Extruder für die Minimierung von Werkzeugwechseln zu verwenden)." -#: src/libslic3r/PrintConfig.cpp:695 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "Die Materialart des Filaments zur Verwendung in benutzerdefinierten G-Codes." -#: src/libslic3r/PrintConfig.cpp:3105 +#: src/libslic3r/PrintConfig.cpp:3479 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Die Datei, in die die Ausgabe geschrieben wird (falls nicht angegeben, basiert sie auf der Eingabedatei)." -#: src/libslic3r/PrintConfig.cpp:1054 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "Die Firmware unterstützt den Stealth Modus" -#: src/libslic3r/PrintConfig.cpp:351 +#: src/libslic3r/PrintConfig.cpp:377 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "Die erste Schicht wird in der XY-Ebene um den vorgegebenen Wert verkleinert, um das Ausquetschen in der ersten Schicht (\"Elephant Foot\"-Effekt) zu kompensieren." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2726 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 msgid "the following characters are not allowed:" msgstr "die folgenden Zeichen sind nicht erlaubt:" -#: src/slic3r/GUI/Tab.cpp:3311 +#: src/slic3r/GUI/Tab.cpp:3445 msgid "the following suffix is not allowed:" msgstr "das folgenden Suffix ist nicht erlaubt:" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Der Abstand zwischen dem Objektboden und der erzeugten Grundschicht im Nullhöhenmodus." -#: src/libslic3r/PrintConfig.cpp:2453 +#: src/libslic3r/PrintConfig.cpp:2695 msgid "The height of the pillar base cone" msgstr "Die Höhe des Pfeilergrundkegels" -#: src/libslic3r/PrintConfig.cpp:2481 -msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." -msgstr "Der maximale Abstand zwischen 2 Pfeilern, die miteinander verbunden werden. Ein Wert von Null verhindert die Kaskadierung von Pfeilern." +#: src/slic3r/GUI/DoubleSlider.cpp:1895 +msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." +msgstr "Die letzten Farbwechsel-Daten wurden für einen Multi-Extruder-Druck mit Werkzeugwechsel für den gesamten Druck gespeichert." -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/slic3r/GUI/DoubleSlider.cpp:1889 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "Die letzten Farbwechsel-Daten wurden für einen Multi-Extruder-Druck gespeichert." + +#: src/slic3r/GUI/DoubleSlider.cpp:1873 +msgid "The last color change data was saved for a multiple extruder printer profile." +msgstr "Die letzten Farbwechsel-Daten wurden für ein Mehrfach-Extruder-Druckerprofil gespeichert." + +#: src/slic3r/GUI/DoubleSlider.cpp:1872 +msgid "The last color change data was saved for a single extruder printer profile." +msgstr "Die letzten Farbwechsel-Daten wurden für ein Einzel-Extruder-Druckerprofil gespeichert." + +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." +msgstr "Die letzten Farbwechsel-Daten wurden für einen Einzel-Extruder-Druck gespeichert." + +#: src/libslic3r/PrintConfig.cpp:2736 +msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." +msgstr "Der maximale Abstand zwischen 2 Pfeilern, die miteinander verbunden werden. Ein Wert von null verhindert die Kaskadierung von Pfeilern." + +#: src/libslic3r/PrintConfig.cpp:2727 msgid "The max length of a bridge" msgstr "Die maximale Länge einer Überbrückung" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2705 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Der Mindestabstand des Säulenfußes zum Modell in mm. Sinnvoll im Nullhöhenmodus, bei dem ein Spalt gemäß diesem Parameter zwischen Modell und Grundschicht eingefügt wird." -#: src/libslic3r/PrintConfig.cpp:2176 +#: src/libslic3r/PrintConfig.cpp:175 +msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." +msgstr "Die Anzahl der unteren Massivschichten wird über bottom_solid_layers erhöht, wenn es notwendig ist, um die Mindeststärke der Bodenschale zu erfüllen." + +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." +msgstr "Die Anzahl der obersten Massivschichten wird über top_solid_layers erhöht, wenn es notwendig ist, um die Mindeststärke der Oberschale zu erfüllen. Dies ist nützlich, um einen Kisseneffekt beim Drucken mit variabler Lagenhöhe zu verhindern." + +#: src/libslic3r/PrintConfig.cpp:2277 msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes." msgstr "Das Objekt wird in der XY-Ebene um den konfigurierten Wert (negativ = einwärts, positiv = auswärts) vergrößert/verkleinert. Dies kann bei der Feinabstimmung von Lochgrößen hilfreich sein." -#: src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "The object will be raised by this number of layers, and support material will be generated under it." msgstr "Das Objekt wird um diese Anzahl von Schichten angehoben, und darunter wird Trägermaterial erzeugt." -#: src/libslic3r/PrintConfig.cpp:2259 +#: src/libslic3r/PrintConfig.cpp:2424 msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "Der Prozentsatz der Bettfläche.\nWenn der Druckbereich den angegebenen Wert überschreitet,\nwird eine langsame Verkippung verwendet, andernfalls - eine schnelle Verkippung" +msgstr "Der Prozentsatz der Druckbettfläche.\nWenn der Druckbereich den angegebenen Wert überschreitet,\nwird eine langsame Verkippung verwendet, andernfalls - eine schnelle Verkippung" -#: src/slic3r/GUI/GUI_App.cpp:831 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "Die Voreinstellungen auf den folgenden Reitern wurden geändert" -#: src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "Der Drucker multiplext mehrere Filamente in einem Hotend." -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Format/3mf.cpp:1630 msgid "The selected 3mf file has been saved with a newer version of %1% and is not compatible." msgstr "Die ausgewählte 3mf-Datei wurde mit einer neueren Version von %1% gespeichert und ist nicht kompatibel." -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "The selected amf file has been saved with a newer version of %1% and is not compatible." msgstr "Die ausgewählte amf-Datei wurde mit einer neueren Version von %1% gespeichert und ist nicht kompatibel." -#: src/slic3r/GUI/BedShapeDialog.cpp:342 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "Die ausgewählte Datei enthält keine Geometrie." -#: src/slic3r/GUI/BedShapeDialog.cpp:346 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Die ausgewählte Datei enthält mehrere nicht zusammenhängende Bereiche. Dies wird nicht unterstützt." -#: src/slic3r/GUI/Plater.cpp:2271 +#: src/slic3r/GUI/Plater.cpp:2954 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "Das ausgewählte Objekt konnte nicht getrennt werden, weil es aus mehr als einem Volumen/Material besteht." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 msgid "The selected object couldn't be split because it contains only one part." msgstr "Das ausgewählte Objekt konnte nicht getrennt werden, da es nur aus einem Teil besteht." -#: src/slic3r/GUI/MainFrame.cpp:410 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "Das ausgewählte Projekt ist nicht mehr verfügbar" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." +msgstr "Der sequentielle Druck ist eingeschaltet.\nEs ist unmöglich, einen benutzerdefinierten G-Code für Objekte anzuwenden, die sequentiell gedruckt werden.\nDieser Code wird bei der G-Code-Generierung nicht verarbeitet." + +#: src/libslic3r/PrintConfig.cpp:2837 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." -msgstr "Die Neigung der Grundschichtwand in Bezug auf die Bettebene. 90 Grad bedeutet gerade Wände." +msgstr "Die Neigung der Grundschichtwand in Bezug auf die Druckbettebene. 90 Grad bedeutet gerade Wände." -#: src/libslic3r/PrintConfig.cpp:1544 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used." -msgstr "Die Geschwindigkeit, mit der ein Filament nach dem Einzug wieder in den Extruder vorgeschoben wird. Falls Null, wird die Einzugsgeschwindigkeit verwendet." +msgstr "Die Geschwindigkeit, mit der ein Filament nach dem Einzug wieder in den Extruder vorgeschoben wird. Falls null, wird die Einzugsgeschwindigkeit verwendet." -#: src/libslic3r/PrintConfig.cpp:1536 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "Die Einzugsgeschwindigkeit (sie betrifft nur den Extruderantrieb)." +#: src/slic3r/GUI/ConfigManipulation.cpp:81 +#, no-c-format +msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" +msgstr "Der Spiralvasenmodus erfordert:\n- einen Perimeter\n- keine oberen massiven Schichten\n- 0% Fülldichte\n- kein Stützmaterial\n- Vertikale Schalenstärke sicherstellen aktiv\n- Dünne Wände erkennen nicht aktiv\n- " + #: src/slic3r/GUI/ConfigManipulation.cpp:75 #, no-c-format msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "Der Spiralvasenmodus erfordert:\n- einen Perimeter\n- keine oberen festen Schichten\n- 0% Fülldichte\n- kein Trägermaterial\n- inaktiv Vertikale Schalendicke sicherstellen" +msgstr "Der Spiralvasenmodus erfordert:\n- einen Perimeter\n- keine oberen massiven Schichten\n- 0% Fülldichte\n- kein Trägermaterial\n- inaktiv Vertikale Schalenstärke sicherstellen" -#: src/libslic3r/Print.cpp:1187 +#: src/libslic3r/Print.cpp:1233 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "Die Option Spiralvase kann nur beim Drucken eines einzelnen Objekts verwendet werden." -#: src/libslic3r/Print.cpp:1189 +#: src/libslic3r/Print.cpp:1240 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "Die Option Spiralvase kann nur beim Drucken von Objekten aus einem einzigen Material verwendet werden." -#: src/slic3r/GUI/Tab.cpp:2900 +#: src/slic3r/GUI/Tab.cpp:3052 msgid "The supplied name is empty. It can't be saved." msgstr "Der angegebene Name ist leer. Die Speicherung kann nicht erfolgen." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3449 msgid "The supplied name is not available." msgstr "Der angegebene Name ist nicht verfügbar." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2725 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278 -#: src/slic3r/GUI/Tab.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:3444 msgid "The supplied name is not valid;" msgstr "Der angegebene Name ist ungültig;" -#: src/libslic3r/Print.cpp:1268 +#: src/libslic3r/Print.cpp:1218 msgid "The supplied settings will cause an empty print." msgstr "Die vorgenommenen Einstellungen führen zu einem leeren Druck." -#: src/libslic3r/PrintConfig.cpp:2524 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "The thickness of the pad and its optional cavity walls." -msgstr "Die Dicke der Grundschicht und seine optionalen Hohlraumwände." +msgstr "Die Stärke der Grundschicht und seine optionalen Hohlraumwände." -#: src/libslic3r/PrintConfig.cpp:1825 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." -msgstr "Der vertikale Abstand zwischen Objekt und Trägermaterialschnittstelle. Wenn Sie diesen Wert auf 0 setzen, wird Slic3r auch verhindern, dass Bridge-Flow und -Geschwindigkeit für die erste Objektschicht verwendet werden." +msgstr "Der vertikale Abstand zwischen Objekt und Trägermaterialschnittstelle. Wenn Sie diesen Wert auf 0 setzen, wird PrusaSlicer auch verhindern, dass Bridge-Flow und -Geschwindigkeit für die erste Objektschicht verwendet werden." -#: src/slic3r/GUI/Tab.cpp:2429 +#: src/slic3r/GUI/Tab.cpp:2571 msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" msgstr "Die Reinigungsoption ist nicht verfügbar, wenn der Firmware-Einzug verwendet wird.\n\nSoll ich sie ausschalten, um den Firmware-Einzug zu aktivieren?" -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "Der Reinigungsturm unterstützt derzeit kein volumetrisches E (use_volumetric_e=0)." -#: src/slic3r/GUI/ConfigManipulation.cpp:107 +#: src/slic3r/GUI/ConfigManipulation.cpp:115 msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "Der Reinigungsturm unterstützt derzeit nur die unlöslichen Stützen, wenn sie mit dem aktuellen Extruder gedruckt werden, ohne einen Werkzeugwechsel auszulösen.\n(sowohl der Stützmaterial-Extruder als auch der Stützmaterial-Schnittstellen-Extruder müssen auf 0 eingestellt sein)" +msgstr "Der Reinigungsturm unterstützt derzeit nur die unlöslichen Stützen, wenn sie mit dem aktuellen Extruder gedruckt werden, ohne einen Werkzeugwechsel auszulösen.\n(sowohl der Stützstruktur-Extruder als auch der Stützstruktur-Schnittstellen-Extruder müssen auf 0 eingestellt sein)" -#: src/libslic3r/Print.cpp:1306 +#: src/libslic3r/Print.cpp:1396 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "Der Reinigungsturm unterstützt zur Zeit nichtlösliche Stützen nur, falls sie mit dem aktuellen Extruder ohne einen Werkzeugwechsel gedruckt werden (sowohl support_material_extruder wie auch support_material_interface_extruder müssen auf Null gesetzt werden)." +msgstr "Der Reinigungsturm unterstützt zur Zeit nichtlösliche Stützen nur, falls sie mit dem aktuellen Extruder ohne einen Werkzeugwechsel gedruckt werden (sowohl support_material_extruder wie auch support_material_interface_extruder müssen auf null gesetzt werden)." -#: src/libslic3r/Print.cpp:1200 +#: src/libslic3r/Print.cpp:1266 +msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." +msgstr "Der Wischturm wird derzeit nicht für sequentielle Multimaterialdrucke unterstützt." + +#: src/libslic3r/Print.cpp:1258 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Der Reinigungsturm wird derzeit nur für die Varianten Marlin und RepRap/Sprinter und Repetier G-Code unterstützt." -#: src/libslic3r/Print.cpp:1202 +#: src/libslic3r/Print.cpp:1260 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Der Wischturm wird derzeit nur mit relativer Extruder-Adressierung unterstützt ((use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1225 +#: src/libslic3r/Print.cpp:1289 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" -msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der gleichen Anzahl von Raft-Schichten gedruckt werden" +msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der gleichen Anzahl von Raftschichten gedruckt werden" -#: src/libslic3r/Print.cpp:1227 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der gleichen support_material_contact_distance gedruckt werden" -#: src/libslic3r/Print.cpp:1229 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese gleich gesliced werden." -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1287 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese die gleiche Schichthöhe haben" -#: src/libslic3r/Print.cpp:1155 +#: src/libslic3r/Print.cpp:1253 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "Der Wischturm wird nur unterstützt, wenn alle Extruder den gleichen Düsendurchmesser haben und Filamente mit dem gleichen Durchmesser verwenden." -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1335 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "Der Reinigungsturm wird nur unterstützt, wenn alle Objekte die gleiche variable Schichthöhe haben" -#: src/slic3r/GUI/UpdateDialogs.cpp:127 +#: src/libslic3r/SLAPrintSteps.cpp:596 +msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." +msgstr "Es gibt nicht druckbare Objekte. Versuchen Sie, die Stützeinstellungen anzupassen, um die Objekte druckbar zu machen." + +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." +msgstr "Es gibt einen Farbwechsel für den Extruder, der bisher noch nicht verwendet wurde.\nÜberprüfen Sie Ihre Einstellungen, um überflüssige Farbwechsel zu vermeiden." + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." +msgstr "Es gibt einen Farbwechsel für den Extruder, der nicht vor dem Ende des Druckauftrags verwendet wird.\nDieser Code wird bei der G-Code-Generierung nicht verarbeitet." + +#: src/slic3r/GUI/DoubleSlider.cpp:993 +msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." +msgstr "Es gibt einen Extruderwechsel, der auf denselben Extruder eingestellt ist.\nDieser Code wird während der G-Code-Generierung nicht verarbeitet." + +#: src/slic3r/GUI/UpdateDialogs.cpp:225 #, possible-c-format msgid "This %s version: %s" msgstr "Diese %s Version: %s" -#: src/libslic3r/PrintConfig.cpp:140 +#: src/libslic3r/PrintConfig.cpp:155 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." -msgstr "Dieser Code wird beim sequentiellen Drucken zwischen Objekten eingefügt. Standardmäßig werden Extruder- und Betttemperatur mit dem Befehl, der nicht auf die Änderung wartet, zurückgesetzt. Wenn jedoch M104, M109, M140 oder M190 in diesem benutzerdefinierten Code erkannt werden, fügt Slic3r keine Temperaturbefehle hinzu. Beachten Sie, dass Sie Platzhaltervariablen für alle Slic3r-Einstellungen verwenden können, so dass Sie einen \"M109 S[first_layer_temperature]\"-Befehl an beliebiger Stelle platzieren können." +msgstr "Dieser Code wird beim sequentiellen Drucken zwischen Objekten eingefügt. Standardmäßig werden Extruder- und Betttemperatur mit dem Befehl, der nicht auf die Änderung wartet, zurückgesetzt. Wenn jedoch M104, M109, M140 oder M190 in diesem benutzerdefinierten Code erkannt werden, fügt Slic3r keine Temperaturbefehle hinzu. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen verwenden können, so dass Sie einen \"M109 S[first_layer_temperature]\"-Befehl an beliebiger Stelle platzieren können." -#: src/libslic3r/PrintConfig.cpp:1032 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Dieser benutzerdefinierte Code wird bei jedem Schichtwechsel eingefügt, direkt nach der Z-Bewegung und bevor der Extruder zum ersten Lagenpunkt fährt. Beachten Sie, dass Sie Platzhaltervariablen für alle Slic3r-Einstellungen sowie [layer_num] und [layer_z] verwenden können." -#: src/libslic3r/PrintConfig.cpp:129 +#: src/libslic3r/PrintConfig.cpp:144 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." -msgstr "Dieser benutzerdefinierte Code wird bei jedem Lagenwechsel, unmittelbar vor der Z Bewegung, eingefügt. Beachten Sie, dass Sie Platzhaltervariablen für alle Slic3r-Einstellungen sowie [layer_num] und [layer_z] verwenden können." +msgstr "Dieser benutzerdefinierte Code wird bei jedem Lagenwechsel, unmittelbar vor der Z Bewegung, eingefügt. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen sowie [layer_num] und [layer_z] verwenden können." -#: src/libslic3r/PrintConfig.cpp:2057 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "This custom code is inserted before every toolchange. Placeholder variables for all PrusaSlicer settings as well as {previous_extruder} and {next_extruder} can be used. When a tool-changing command which changes to the correct extruder is included (such as T{next_extruder}), PrusaSlicer will emit no other such command. It is therefore possible to script custom behaviour both before and after the toolchange." msgstr "Dieser benutzerdefinierte Code wird vor jedem Werkzeugwechsel eingefügt. Platzhaltervariablen für alle PrusaSlicer-Einstellungen sowie {previous_extruder} und {next_extruder} können verwendet werden. Wenn ein Werkzeugwechselbefehl enthalten ist, der zum richtigen Extruder wechselt (z.B. T{next_extruder}), gibt PrusaSlicer keinen anderen solchen Befehl aus. Es ist daher möglich, benutzerdefiniertes Verhalten sowohl vor als auch nach dem Werkzeugwechsel zu skripten." -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:396 msgid "This end procedure is inserted at the end of the output file, before the printer end gcode (and before any toolchange from this filament in case of multimaterial printers). Note that you can use placeholder variables for all PrusaSlicer settings. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Dieser Endvorgang wird am Ende der Ausgabedatei, vor dem G-Code des Druckerendes (und vor jedem Werkzeugwechsel von diesem Filament bei Multimaterialdruckern) eingefügt. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen verwenden können. Wenn Sie mehrere Extruder haben, wird der gcode in Extruderreihenfolge verarbeitet." -#: src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:386 msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all PrusaSlicer settings." msgstr "Diese Endprozedur wird am Ende der Ausgabedatei eingefügt. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen verwenden können." -#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds." msgstr "Diese experimentelle Einstellung beschränkt die Änderungsgeschwindigkeit der Extrusionsmenge. Ein Wert von 1.8 mm³/s² gewährleistet, dass eine Änderung der Extrusionsmenge von 1.8 mm³/s (0.45mm Extrusionsbreite, 0.2mm Extrusionshöhe, Vorschub 20 mm/s) zu 5.4 mm³/s (Vorschub 60 mm/s) mindestens 2 Sekunden dauern wird." -#: src/libslic3r/PrintConfig.cpp:1183 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports." msgstr "Diese experimentelle Einstellung gibt die maximale volumetrische Geschwindigkeit an, die von Ihrem Extruder unterstützt wird." -#: src/libslic3r/PrintConfig.cpp:2061 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." msgstr "Diese experimentelle Einstellung benutzt G10 und G11 Befehle, damit die Druckerfirmware den Einzug übernimmt. Dies wird nur von neueren Marlin-Versionen unterstützt." -#: src/libslic3r/PrintConfig.cpp:2075 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." -msgstr "Diese experimentelle Einstellung generiert E-Koordinaten in Kubikmillimetern stat in linearen Millimetern. Wenn die Firmware den Filamentdurchmesser noch nicht kennt, können Sie Befehle wie 'M200 D[filament_diameter_0] T0' in den Start-G-Code eingeben, um den volumetrischen Modus zu aktivieren und den in Slic3r angegebenen Filamentdurchmesser zu benutzen. Dies wird nur von neueren Marlin-Versionen unterstützt." +msgstr "Diese experimentelle Einstellung generiert E-Koordinaten in Kubikmillimetern stat in linearen Millimetern. Wenn die Firmware den Filamentdurchmesser noch nicht kennt, können Sie Befehle wie 'M200 D[filament_diameter_0] T0' in den Start-G-Code eingeben, um den volumetrischen Modus zu aktivieren und den in PrusaSlicer angegebenen Filamentdurchmesser zu benutzen. Dies wird nur von neueren Marlin-Versionen unterstützt." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2848 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 msgid "This extruder will be set for selected items" msgstr "Dieser Extruder wird den gewählten Elementen zugeordnet" -#: src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Diese Einstellung beeinflusst den Materialausstoss bei Brücken. Sie können den Wert leicht verringern, um die Extrusionsfäden zu strecken und ein Durchhängen zu vermeiden. Die Standardwerte sind aber normalerweise ausreichend und Sie sollten zuerst mit der Lüftergeschwindigkeit experimentieren, bevor Sie diesen Wert verändern." -#: src/libslic3r/PrintConfig.cpp:514 +#: src/libslic3r/PrintConfig.cpp:546 msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." -msgstr "Dieser Faktor ändert die Extrusionsmenge proportional. Sie müssen diese Einstellung möglicherweise anpassen, um schöne Oberflächen und korrekte Hüllendicken zu erhalten. Die üblichen Werte bewegen sich zwischen 0,9 und 1,1. Falls Sie grössere Anpassungen eingeben müssen, kontrollieren Sie auch den Filamentdurchmesser und die E-Schritte in Ihrer Firmware." +msgstr "Dieser Faktor ändert die Extrusionsmenge proportional. Sie müssen diese Einstellung möglicherweise anpassen, um schöne Oberflächen und korrekte Hüllenstärken zu erhalten. Die üblichen Werte bewegen sich zwischen 0,9 und 1,1. Falls Sie größere Anpassungen eingeben müssen, kontrollieren Sie auch den Filamentdurchmesser und die E-Schritte in Ihrer Firmware." -#: src/libslic3r/PrintConfig.cpp:178 +#: src/libslic3r/PrintConfig.cpp:204 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Die Lüftergeschwindigkeit, die für Überbrückungen und Überhänge benutzt wird." -#: src/libslic3r/PrintConfig.cpp:944 +#: src/libslic3r/PrintConfig.cpp:992 msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy." -msgstr "Diese Einstellung erlaubt es, Infill zu kombinieren und die Druckdauer zu verringern, indem dickere Infill-Schichten gedruckt werden, während gleichzeitig dünne Aussenschichten und damit die Genauigkeit erhalten bleiben." +msgstr "Diese Einstellung erlaubt es, Infill zu kombinieren und die Druckdauer zu verringern, indem stärkere Infill-Schichten gedruckt werden, während gleichzeitig dünne Außenkonturen und damit die Genauigkeit erhalten bleiben." -#: src/libslic3r/PrintConfig.cpp:1677 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height." -msgstr "Diese Einstellung erzwingt eine stabile Schicht nach einer vorgegebenen Anzahl von Schichten. Null deaktiviert diese Einstellung. Sie können jeden Wert eingeben (z.B. 9999); Slic3r wird automatisch die grösstmögliche Anzahl von Schichten wählen, die in Abhängigkeit von Düsendurchmesser und Schichthöhe kombiniert werden können." +msgstr "Diese Einstellung erzwingt eine massive Schicht nach einer vorgegebenen Anzahl von Schichten. Null deaktiviert diese Einstellung. Sie können jeden Wert eingeben (z.B. 9999); PrusaSlicer wird automatisch die größtmögliche Anzahl von Schichten wählen, die in Abhängigkeit von Düsendurchmesser und Schichthöhe kombiniert werden können." -#: src/libslic3r/PrintConfig.cpp:1718 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." -msgstr "Dieses Verfahren erhöht die Z-Position allmählich, während eine einfache Hülle gedruckt wird, um jeglichen sichtbaren Saum zu vermeiden. Diese Option setzt eine einzige Aussenschicht, keinen Infill, keine stabilen Deckenschichten und keine Stützen voraus. Sie können immer noch eine beliebige Anzahl von Bodenschichten sowie Schleifen für Schürzen und Rand einstellen. Die Methode funktioniert nicht, wenn mehr als ein Objekt gedruckt wird." +msgstr "Dieses Verfahren erhöht die Z-Position allmählich, während eine einfache Hülle gedruckt wird, um jeglichen sichtbaren Saum zu vermeiden. Diese Option setzt eine einzige Außenkontur, keinen Infill, keine massiven Deckenschichten und keine Stützen voraus. Sie können immer noch eine beliebige Anzahl von Bodenschichten sowie Schleifen für Schürzen und Rand einstellen. Die Methode funktioniert nicht, wenn mehr als ein Objekt gedruckt wird." -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2351 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Diese Datei kann nicht im einfachen Modus geladen werden. Möchten Sie in den fortgeschrittenen Modus wechseln?" -#: src/slic3r/GUI/Plater.cpp:2361 +#: src/slic3r/GUI/Plater.cpp:2341 msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" msgstr "Diese Datei enthält mehrere Objekte, die in verschiedenen Höhen positioniert sind. Anstatt sie als mehrere Objekte zu betrachten, soll ich diese Datei als ein einzelnes Objekt mit mehreren Teilen betrachten?" -#: src/slic3r/GUI/FirmwareDialog.cpp:313 +#: src/slic3r/GUI/FirmwareDialog.cpp:332 #, possible-c-format msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." msgstr "Diese Firmware-Hex-Datei stimmt nicht mit dem Druckermodell überein.\nDie Hex-Datei ist für: %s\nDrucker erkannt: %s\n\nMöchtest Sie fortfahren und diese Hex-Datei trotzdem flashen?\nBitte fahren Sie nur fort, wenn Sie der festen Überzeugung sind, dass dies das Richtige ist." -#: src/libslic3r/PrintConfig.cpp:278 +#: src/libslic3r/PrintConfig.cpp:304 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Diese Einstellung aktiviert the Logik, die die Druckgeschwindigkeit und Lüftergeschwindigkeit automatisch gemäß der Schichtdruckdauer regelt." -#: src/slic3r/GUI/Plater.cpp:448 +#: src/slic3r/GUI/Plater.cpp:533 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Dieses Kontrollkästchen aktiviert den Rand (Brim), der um jedes Objekt auf der ersten Ebene gedruckt wird." -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "Diese Stellung erzwingt einen Einzug bei jeder Z-Bewegung." -#: src/libslic3r/PrintConfig.cpp:2093 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Diese Einstellung wird die Düse während dem Einzug bewegen, um mögliche Tropfen bei einem undichten Extruder zu minimieren." -#: src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a default preset." msgstr "Dies ist eine Standard-Voreinstellung." -#: src/libslic3r/PrintConfig.cpp:2501 +#: src/libslic3r/PrintConfig.cpp:2757 msgid "This is a relative measure of support points density." msgstr "Dies ist ein relatives Maß für die Dichte der Stützpunkte." -#: src/slic3r/GUI/Tab.cpp:2528 +#: src/slic3r/GUI/Tab.cpp:2334 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Dies ist ein Einzelextruder-Multimaterialdrucker, die Durchmesser aller Extruder werden auf den neuen Wert eingestellt. Möchten Sie fortfahren?" -#: src/slic3r/GUI/Tab.cpp:923 +#: src/slic3r/GUI/Tab.cpp:957 msgid "This is a system preset." msgstr "Dies ist eine Systemvoreinstellung." -#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." -msgstr "Dies wird nur als visuelles Hilfsmittel in der Slic3r-Benutzeroberfläche verwendet." +msgstr "Dies wird nur als visuelles Hilfsmittel in der PrusaSlicer-Benutzeroberfläche verwendet." -#: src/libslic3r/PrintConfig.cpp:300 +#: src/libslic3r/PrintConfig.cpp:326 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." -msgstr "Dies ist der Beschleunigungswert, auf den Ihr Drucker zurückgesetzt wird, nachdem aufgabenspezifische Beschleunigungswerte (Aussenschichten/Infill) verwendet wurden. Setzen Sie dies auf Null, um ein Zurückstellen der Beschleunigungswerte zu deaktivieren." +msgstr "Dies ist der Beschleunigungswert, auf den Ihr Drucker zurückgesetzt wird, nachdem aufgabenspezifische Beschleunigungswerte (Außenkonturen/Infill) verwendet wurden. Setzen Sie dies auf null, um ein Zurückstellen der Beschleunigungswerte zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:158 +#: src/libslic3r/PrintConfig.cpp:184 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." -msgstr "Die Beschleunigung, die Ihr Drucker für Brücken verwendet. Setzen Sie dies auf Null, um die Beschleunigungskontrolle bei Brücken zu deaktivieren." +msgstr "Die Beschleunigung, die Ihr Drucker für Brücken verwendet. Setzen Sie dies auf null, um die Beschleunigungskontrolle bei Brücken zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:813 +#: src/libslic3r/PrintConfig.cpp:860 msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer." -msgstr "Die Beschleunigung, die Ihr Drucker für die erste Schicht verwendet. Setzen Sie dies auf Null, um die Beschleunigungskontrolle bei der ersten Schicht zu deaktivieren." +msgstr "Die Beschleunigung, die Ihr Drucker für die erste Schicht verwendet. Setzen Sie dies auf null, um die Beschleunigungskontrolle bei der ersten Schicht zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:934 +#: src/libslic3r/PrintConfig.cpp:982 msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill." -msgstr "Diese Stellung bestimmt die Beschleunigung des Druckers für Infill. Setzen Sie dies auf Null, um die Beschleunigungskontrolle für Infill zu deaktivieren." +msgstr "Diese Stellung bestimmt die Beschleunigung des Druckers für Infill. Setzen Sie dies auf null, um die Beschleunigungskontrolle für das Infill zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:1331 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters." -msgstr "Dies ist die Beschleunigung, die der Drucker für Aussenschichten benutzen wird. Ein hoher Wert wie 9000 ergibt üblicherweise gute Resultate falls Ihre Hardware mithalten kann. Setzen Sie dies auf Null, um die Beschleunigungskontrolle bei Aussenschichten zu deaktivieren." +msgstr "Dies ist die Beschleunigung, die der Drucker für Außenkonturen benutzen wird. Ein hoher Wert wie 9000 ergibt üblicherweise gute Resultate falls Ihre Hardware mithalten kann. Setzen Sie dies auf null, um die Beschleunigungskontrolle bei Außenkonturen zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:1262 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "Durchmesser der Extruderdüse (z.B.: 0.5, 0.35 usw.)" -#: src/libslic3r/PrintConfig.cpp:1162 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter." msgstr "Dies ist die höchste druckbare Schichthöhe für diesen Extruder, mit der die variable Schichthöhe und Stützschichthöhe abgedeckt wird. Die maximale empfohlene Schichthöhe beträgt 75% der Extrusionsbreite, um eine angemessene Zwischenlagenhaftung zu erreichen. Bei Einstellung auf 0 ist die Lagenhöhe auf 75% des Düsendurchmessers begrenzt." -#: src/libslic3r/PrintConfig.cpp:1225 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm." msgstr "Dies ist die niedrigste druckbare Schichthöhe für diesen Extruder und begrenzt die Auflösung bei variabler Schichthöhe. Typische Werte liegen zwischen 0,05 mm und 0,1 mm." -#: src/libslic3r/GCode.cpp:630 +#: src/libslic3r/GCode.cpp:639 msgid "This is usually caused by negligibly small extrusions or by a faulty model. Try to repair the model or change its orientation on the bed." -msgstr "Dies wird in der Regel durch vernachlässigbar kleine Extrusionen oder durch ein fehlerhaftes Modell verursacht. Versuchen Sie, das Modell zu reparieren oder seine Ausrichtung auf dem Bett zu ändern." +msgstr "Dies wird in der Regel durch vernachlässigbar kleine Extrusionen oder durch ein fehlerhaftes Modell verursacht. Versuchen Sie, das Modell zu reparieren oder seine Ausrichtung auf dem Druckbett zu ändern." -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools." msgstr "Diese Matrix beschreibt die Volumina (in Kubikmillimetern), die benötigt werden, um das neue Filament auf dem Reinigungsturm für ein bestimmtes Werkzeugpaar zu reinigen." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 msgid "This operation is irreversible.\nDo you want to proceed?" msgstr "Dieser Vorgang ist nicht mehr rückgängig zu machen.\nMöchten Sie fortfahren?" -#: src/libslic3r/PrintConfig.cpp:1372 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." -msgstr "Diese Stellung bestimmt die Anzahl der Aussenschichten, die für jede Schicht erzeugt werden. Slic3r kann diese Zahl automatisch vergrössern, wenn es schräge Oberflächen erkennt, die sich mit einer höheren Zahl von Aussenschichten besser drucken lassen, wenn die \"Zusätzliche Aussenschichten falls notwendig\" Option aktiviert ist." +msgstr "Diese Stellung bestimmt die Anzahl der Außenkonturen, die für jede Schicht erzeugt werden. PusaSlicer kann diese Zahl automatisch vergrößern, wenn es schräge Oberflächen erkennt, die sich mit einer höheren Zahl von Außenkonturen besser drucken lassen, wenn die \"Zusätzliche Außenkonturen falls notwendig\" Option aktiviert ist." -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures." -msgstr "Mit dieser Option wird die Temperatur der inaktiven Extruder gesenkt, um ein Materialnachsickern zu verhindern. Es aktiviert automatisch eine hohe Schürze und bewegt die Extruder bei Temperaturänderungen ausserhalb dieser Schürze." +msgstr "Mit dieser Option wird die Temperatur der inaktiven Extruder gesenkt, um ein Materialnachsickern zu verhindern. Es aktiviert automatisch eine hohe Schürze und bewegt die Extruder bei Temperaturänderungen außerhalb dieser Schürze." -#: src/libslic3r/PrintConfig.cpp:980 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved." -msgstr "Diese Einstellung beschränkt den Infill auf die Bereiche, die tatsächlich für das Stützen von Decken benötigt werden (der Infill dient hier als internes Stützmaterial). Falls aktiviert, kann dies die Erstellung des G-Codes wegen zusätzlichen Kontrollschritten verlangsamen." +msgstr "Diese Einstellung beschränkt den Infill auf die Bereiche, die tatsächlich für das Stützen von Decken benötigt werden (der Infill dient hier als interne Stützstruktur). Falls aktiviert, kann dies die Erstellung des G-Codes wegen zusätzlichen Kontrollschritten verlangsamen." -#: src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "This option will switch the print order of perimeters and infill, making the latter first." -msgstr "Diese Einstellungen kehrt die Druckreihenfolge von Aussenschichten und Infill um, sodass der Infill zuerst gedruckt wird." +msgstr "Diese Einstellungen kehrt die Druckreihenfolge von Außenkonturen und Infill um, sodass der Infill zuerst gedruckt wird." -#: src/libslic3r/PrintConfig.cpp:427 +#: src/libslic3r/PrintConfig.cpp:459 msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." -msgstr "Diese separate Einstellung wirkt sich auf die Geschwindigkeit der äusseren (sichtbaren) Aussenschichten aus. Als Prozentwert eingegeben (z.B. 80%), wird sie ausgehend von der obigen Geschwindigkeitseinstellung für Aussenschichten berechnet. Für die automatische Berechnung auf Null setzen." +msgstr "Diese separate Einstellung wirkt sich auf die Geschwindigkeit der äußeren (sichtbaren) Außenkonturen aus. Als Prozentwert eingegeben (z.B. 80%), wird sie ausgehend von der obigen Geschwindigkeitseinstellung für Außenkonturen berechnet. Für die automatische Berechnung auf null setzen." -#: src/libslic3r/PrintConfig.cpp:1648 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." -msgstr "Diese separate Einstellung wirkt sich auf die Geschwindigkeit von Aussenschichten mit einem Radius <= 6,5 mm (üblicherweise Bohrungen) aus. Als Prozentwert eingegeben (z.B. 80%), wird sie ausgehend von der obigen Geschwindigkeitseinstellung für Aussenschichten berechnet. Für eine automatische Berechnung setzen Sie dies auf Null." +msgstr "Diese separate Einstellung wirkt sich auf die Geschwindigkeit von Außenkonturen mit einem Radius <= 6,5 mm (üblicherweise Bohrungen) aus. Als Prozentwert eingegeben (z.B. 80%), wird sie ausgehend von der obigen Geschwindigkeitseinstellung für Außenkonturen berechnet. Für eine automatische Berechnung setzen Sie dies auf null." -#: src/libslic3r/PrintConfig.cpp:989 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width." -msgstr "Diese Einstellung fügt eine zusätzliche Überlappung zwischen Aussenschichten und Infill ein, um die Haftung zu verbessern. Theoretisch sollte dies nicht notwendig sein, doch vorhandenes Getriebespiel könnte Lücken erzeugen. Als Prozentwert eingegeben (z.B. 15%) wird sie ausgehend von der Extrusionsbreite für die Aussenschicht ausgerechnet." +msgstr "Diese Einstellung fügt eine zusätzliche Überlappung zwischen Außenkonturen und Infill ein, um die Haftung zu verbessern. Theoretisch sollte dies nicht notwendig sein, doch vorhandenes Getriebespiel könnte Lücken erzeugen. Als Prozentwert eingegeben (z.B. 15%) wird sie ausgehend von der Extrusionsbreite für die Außenkontur ausgerechnet." -#: src/libslic3r/PrintConfig.cpp:57 +#: src/libslic3r/PrintConfig.cpp:73 msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print." -msgstr "Diese Einstellung bestimmt die Höhe (und damit die Gesamtanzahl) der Scheiben/Schichten. Dünnere Schichten ergeben eine bessere Genauigkeit, benötigen aber mehr Zeit zum drucken." +msgstr "Diese Einstellung bestimmt die Höhe (und damit die Gesamtanzahl) der Scheiben/Schichten. Dünnere Schichten ergeben eine bessere Genauigkeit, benötigen aber mehr Zeit zum Drucken." -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "Diese Einstellung bestimmt die maximale Geschwindigkeit Ihres Lüfters." -#: src/libslic3r/PrintConfig.cpp:1216 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "Diese Einstellung gibt den minimalen PWM-Wert an, den Ihr Lüfter für den Betrieb benötigt." -#: src/libslic3r/PrintConfig.cpp:1801 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "This start procedure is inserted at the beginning, after any printer start gcode (and after any toolchange to this filament in case of multi-material printers). This is used to override settings for a specific filament. If PrusaSlicer detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Dieser Startvorgang wird am Anfang, nach jedem Drucker-Startgcode (und nach jedem Werkzeugwechsel zu diesem Filament bei Multi-Material-Druckern) eingefügt. Dies wird verwendet, um die Einstellungen für einen bestimmten Filament zu überschreiben. Wenn PrusaSlicer M104, M109, M140 oder M190 in Ihren benutzerdefinierten Codes erkennt, werden solche Befehle nicht automatisch vorangestellt, so dass Sie die Reihenfolge der Heizbefehle und andere benutzerdefinierte Aktionen anpassen können. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen verwenden können, so dass Sie einen Befehl \"M109 S[first_layer_temperature]\" beliebig platzieren können. Wenn Sie mehrere Extruder haben, wird der gcode in Extruderreihenfolge verarbeitet." -#: src/libslic3r/PrintConfig.cpp:1786 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If PrusaSlicer detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Dieser Startvorgang wird am Anfang eingefügt, nachdem das Bett die Solltemperatur erreicht hat und der Extruder gerade mit dem Erwärmen begonnen hat, und bevor der Extruder das Erwärmen beendet hat. Wenn PrusaSlicer M104 oder M190 in Ihren benutzerdefinierten Codes erkennt, werden solche Befehle nicht automatisch vorangestellt, so dass Sie die Reihenfolge der Heizbefehle und andere benutzerdefinierte Aktionen anpassen können. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen verwenden können, so dass Sie einen Befehl \"M109 S[first_layer_temperature]\" beliebig platzieren können." -#: src/libslic3r/PrintConfig.cpp:664 +#: src/libslic3r/PrintConfig.cpp:695 msgid "This string is edited by RammingDialog and contains ramming specific parameters." msgstr "Diese Zeichenfolge wird vom RammDialog angepasst und enthält für das Rammen spezifische Parameter." -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." msgstr "Dieser Wert wird zu allen Z-Koordinaten im ausgegebenen G-Code hinzuaddiert oder davon abgezogen. Damit kann eine fehlerhafte Z-Endanschlagsposition kompensiert werden: wenn z.B. bei Ihrem Nullwert die Druckdüse sich beim Endanschlag 0.3mm über der Druckplatte befindet, setzen Sie diesen Wert auf -0.3 (oder stellen Sie Ihren Endanschlag neu ein)." -#: src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." msgstr "Dieser Vektor speichert die erforderlichen Volumina für den Wechsel von/zu jedem am Reinigungsturm verwendeten Werkzeug. Diese Werte werden verwendet, um die Erstellung des vollen Reinigungsvolumens zu vereinfachen." -#: src/slic3r/GUI/UpdateDialogs.cpp:155 +#: src/slic3r/GUI/UpdateDialogs.cpp:216 #, possible-c-format msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." msgstr "Diese Version von %s ist nicht kompatibel zu den aktuell installierten Konfigurationssammlungen.\nDies wurde wahrscheinlich dadurch verursacht, dass Sie eine ältere %s Version benutzt haben, nachdem Sie eine neuere ausgeführt hatten.\n\nSie können %s entweder beenden und es mit einer neueren Version nochmals versuchen, oder Sie können die erstmalige Startkonfiguration nochmals wiederholen. In diesem Fall wird eine Sicherungskopie der aktuellen Konfiguration erstellt, bevor die mit dieser %s-Version kompatiblen Dateien installiert werden." -#: src/libslic3r/PrintConfig.cpp:2284 +#: src/libslic3r/PrintConfig.cpp:2449 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." -msgstr "Dadurch wird eine Gammakorrektur auf die gerasterten 2D-Polygone angewendet. Ein Gamma-Wert von Null bedeutet Schwellenwertbildung mit dem Schwellenwert in der Mitte. Dieses Verhalten eliminiert Antialiasing, ohne Löcher in Polygonen zu verlieren." +msgstr "Dadurch wird eine Gammakorrektur auf die gerasterten 2D-Polygone angewendet. Ein Gamma-Wert von null bedeutet Schwellenwertbildung mit dem Schwellenwert in der Mitte. Dieses Verhalten eliminiert Antialiasing, ohne Löcher in Polygonen zu verlieren." -#: src/libslic3r/PrintConfig.cpp:1994 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "Threads" -#: src/libslic3r/PrintConfig.cpp:1995 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Threads werden benutzt, um mehrere zeitaufwendige Berechnungen gleichzeitig auszuführen. Die optimale Anzahl beträgt etwas mehr als die Anzahl der verfügbaren Kerne/Prozessoren." -#: src/slic3r/GUI/Tab.cpp:2052 +#: src/slic3r/GUI/Tab.cpp:2091 msgid "Tilt" msgstr "Kippen" -#: src/slic3r/GUI/Tab.cpp:2053 +#: src/slic3r/GUI/Tab.cpp:2092 msgid "Tilt time" msgstr "Kippzeit" @@ -7361,157 +8092,187 @@ msgstr "Kippzeit" msgid "Time" msgstr "Zeit" -#: src/libslic3r/PrintConfig.cpp:655 +#: src/libslic3r/PrintConfig.cpp:687 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." -msgstr "Zeit, in der die Druckerfirmware (oder die Multi-Material-Einheit 2.0) während eines Werkzeugwechsels (bei Ausführung des T-Codes) einen anderen Filament lädt. Diese Zeit wird vom G-Code Zeitschätzer zur Gesamtdruckzeit addiert." +msgstr "Zeit, in der die Druckerfirmware (oder die Multi-Material-Einheit 2.0) während eines Werkzeugwechsels (bei Ausführung des T-Codes) ein anderes Filament lädt. Diese Zeit wird vom G-Code Zeitschätzer zur Gesamtdruckzeit addiert." -#: src/libslic3r/PrintConfig.cpp:670 +#: src/libslic3r/PrintConfig.cpp:702 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Zeit, in der die Druckerfirmware (oder die Multi-Material-Einheit 2.0) während eines Werkzeugwechsels (bei Ausführung des T-Codes) ein Filament entlädt. Diese Zeit wird vom G-Code Zeitschätzer zur Gesamtdruckzeit addiert." -#: src/libslic3r/PrintConfig.cpp:2242 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "Dauer des schnellen Kippens" -#: src/libslic3r/PrintConfig.cpp:2251 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "Dauer des langsamen Kippens" -#: src/libslic3r/PrintConfig.cpp:610 +#: src/libslic3r/PrintConfig.cpp:641 msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." -msgstr "Wartezeit, nachdem das Filament entladen wurde. Dies kann zu zuverlässigeren Werkzeugwechseln beitragen bei flexiblen Materialien, die mehr Zeit zum Schrumpfen auf ihre ursprüngliche Grösse brauchen." +msgstr "Wartezeit, nachdem das Filament entladen wurde. Dies kann zu zuverlässigeren Werkzeugwechseln beitragen bei flexiblen Materialien, die mehr Zeit zum Schrumpfen auf ihre ursprüngliche Größe brauchen." -#: src/slic3r/GUI/Tab.cpp:916 +#: src/slic3r/GUI/DoubleSlider.cpp:962 +msgid "To add another code use Ctrl + Left click" +msgstr "Um einen weiteren Code hinzuzufügen, verwenden Sie Strg + Linksklick" + +#: src/slic3r/GUI/DoubleSlider.cpp:963 +msgid "To add another code use Right click" +msgstr "Um einen weiteren Code hinzuzufügen, klicken Sie mit der rechten Maustaste" + +#: src/slic3r/GUI/Tab.cpp:968 msgid "To do that please specify a new name for the preset." msgstr "Zur Ausführung geben Sie bitte einen neuen Namen für die Voreinstellung ein." #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "Um unnötige Werkzeugmanipulationen zu vermeiden wurden \nFarbänderungen für unbenutzte Extruder gelöscht" +msgstr "Um unnötige Werkzeugmanipulationen zu vermeiden, wurden\nFarbänderungen für unbenutzte Extruder gelöscht" -#: src/slic3r/GUI/Plater.cpp:2966 +#: src/slic3r/GUI/Plater.cpp:4023 msgid "To objects" msgstr "Zu Objekten" -#: src/slic3r/GUI/Plater.cpp:2968 +#: src/slic3r/GUI/Plater.cpp:4025 msgid "To parts" msgstr "Zu Teilen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:212 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 #, possible-c-format msgid "Toggle %c axis mirroring" msgstr "Umschalten der Spiegelung der %c-Achse" -#: src/libslic3r/Zipper.cpp:37 +#: src/libslic3r/Zipper.cpp:34 msgid "too many files" msgstr "zu viele Dateien" -#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315 -#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404 +#: src/libslic3r/SLAPrintSteps.cpp:154 +msgid "Too much overlapping holes." +msgstr "Zu viele überlappende Löcher." + +#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 +#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 +#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Werkzeug" -#: src/slic3r/GUI/WipeTowerDialog.cpp:240 +#: src/slic3r/GUI/WipeTowerDialog.cpp:276 msgid "Tool #" msgstr "Werkzeug #" -#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006 +#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-Code für Werkzeugwechsel" -#: src/slic3r/GUI/Tab.cpp:1530 +#: src/slic3r/GUI/Tab.cpp:1493 msgid "Toolchange parameters with single extruder MM printers" msgstr "Werkzeugwechsel-Parameter für MM-Drucker mit einem Extruder" #. TRN To be shown in the main menu View->Top -#: src/slic3r/GUI/MainFrame.cpp:522 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "Decke" -#: src/libslic3r/PrintConfig.cpp:388 +#: src/slic3r/GUI/PresetHints.cpp:300 +msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "Hinweis zur Ober-/Bodenschalestärke: Nicht verfügbar wegen ungültiger Schichthöhe." + +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "Deckenfüllmuster" -#: src/slic3r/GUI/PresetHints.cpp:189 +#: src/slic3r/GUI/PresetHints.cpp:319 +msgid "Top is open." +msgstr "Oben ist offen." + +#: src/slic3r/GUI/PresetHints.cpp:313 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "Die obere Schale ist %1% mm stark für eine Schichthöhe von %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" -msgstr "Oberes stabiles Infill" +msgstr "Oberes massives Infill" -#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017 -#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" -msgstr "Oberes stabiles Infill" +msgstr "Oberes massives Infill" -#: src/libslic3r/PrintConfig.cpp:2046 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" -msgstr "Obere stabile Schichten" +msgstr "Obere massive Schichten" -#: src/slic3r/GUI/MainFrame.cpp:522 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "Ansicht von oben" -#: src/slic3r/GUI/WipeTowerDialog.cpp:247 +#: src/slic3r/GUI/WipeTowerDialog.cpp:285 msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded." msgstr "Das gesamte Reinigungsvolumen wird durch die Addition folgender zwei Werte berechnet, je nachdem welche Werkzeuge geladen/entladen sind." -#: src/slic3r/GUI/WipeTowerDialog.cpp:84 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 msgid "Total rammed volume" msgstr "Gesamtes Rammvolumen" -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 +#: src/slic3r/GUI/WipeTowerDialog.cpp:83 msgid "Total ramming time" msgstr "Gesamte Rammdauer" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:516 msgid "Translate" msgstr "Übersetzen" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Übersetzung" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051 +#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Eilgang" -#: src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "Dreiecke" -#: src/libslic3r/PrintConfig.cpp:3059 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Repariere alle ungeschlossenen Netze (diese Option wird implizit hinzugefügt, wenn wir das Modell slicen müssen, um die gewünschte Aktion ausführen zu können)." -#: src/libslic3r/PrintConfig.cpp:1397 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "Druckertyp." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2549 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Type:" msgstr "Typ:" -#: src/libslic3r/Zipper.cpp:35 +#: src/slic3r/GUI/Plater.cpp:3436 +msgid "Unable to reload:" +msgstr "Kann nicht nachgeladen werden:" + +#: src/libslic3r/Zipper.cpp:32 msgid "undefined error" msgstr "unbekannter Fehler" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3609 -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Undo" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Undo %1$d Aktion" msgstr[1] "Undo %1$d Aktionen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Undo History" msgstr "Undo Verlauf" -#: src/libslic3r/Zipper.cpp:59 +#: src/libslic3r/Zipper.cpp:56 msgid "unexpected decompressed size" msgstr "unerwartete dekomprimierte Größe" @@ -7519,96 +8280,102 @@ msgstr "unerwartete dekomprimierte Größe" msgid "Unknown" msgstr "Unbekannt" -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 msgid "Unknown error occured" msgstr "Unbekannter Fehler aufgetreten" -#: src/slic3r/GUI/WipeTowerDialog.cpp:234 +#: src/slic3r/GUI/WipeTowerDialog.cpp:263 msgid "unloaded" msgstr "entladen wird" -#: src/libslic3r/PrintConfig.cpp:591 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "Entladegeschwindigkeit" -#: src/libslic3r/PrintConfig.cpp:600 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "Entladegeschwindigkeit zu Beginn" -#: src/slic3r/GUI/Tab.cpp:3069 +#: src/slic3r/GUI/Tab.cpp:3240 msgid "UNLOCKED LOCK" msgstr "OFFENES SCHLOSS" -#: src/slic3r/GUI/Tab.cpp:3362 +#: src/slic3r/GUI/Tab.cpp:3266 msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." msgstr "Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass einige Einstellungen geändert wurden und nicht mehr mit den System- (oder Standard-) Werte für die aktuelle Optionsgruppe identisch sind.\nKlicken Sie, um alle Einstellungen für die aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." -#: src/slic3r/GUI/Tab.cpp:3377 +#: src/slic3r/GUI/Tab.cpp:3281 msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." msgstr "Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass der Wert geändert wurde und nicht mit der System- (oder Standard-) Einstellung identisch ist.\nKlicken Sie, um den aktuellen Wert auf die System- (oder Standard-) Einstellung zurückzusetzen." -#: src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Unretractions" msgstr "Wiedereinzüge" -#: src/slic3r/GUI/Tab.cpp:2785 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "Unsaved Changes" msgstr "Nicht abgespeicherte Änderungen" -#: src/slic3r/GUI/GUI_App.cpp:790 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "Nicht abgespeicherte Voreinstellungen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 msgid "Unselect gizmo / Clear selection" msgstr "Gizmo abwählen / Auswahl löschen" -#: src/libslic3r/Zipper.cpp:63 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "Gizmo abwählen oder Auswahl löschen" + +#: src/libslic3r/Zipper.cpp:60 msgid "unsupported central directory size" msgstr "nicht unterstützte zentrale Verzeichnisgröße" -#: src/libslic3r/Zipper.cpp:43 +#: src/libslic3r/Zipper.cpp:40 msgid "unsupported encryption" msgstr "nicht unterstützte Verschlüsselung" -#: src/libslic3r/Zipper.cpp:45 +#: src/libslic3r/Zipper.cpp:42 msgid "unsupported feature" msgstr "nicht unterstützte Funktion" -#: src/libslic3r/Zipper.cpp:41 +#: src/libslic3r/Zipper.cpp:38 msgid "unsupported method" msgstr "nicht unterstützte Methode" -#: src/libslic3r/Zipper.cpp:53 +#: src/libslic3r/Zipper.cpp:50 msgid "unsupported multidisk archive" msgstr "nicht unterstütztes Multidisk-Archiv" -#: src/slic3r/GUI/GUI_App.cpp:305 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "Nicht unterstützte OpenGL Version" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 msgid "Unsupported selection" msgstr "Nicht unterstützte Auswahl" -#: src/libslic3r/GCode/PreviewData.cpp:495 +#: src/slic3r/GUI/GLCanvas3D.cpp:960 #, possible-c-format msgid "up to %.2f mm" msgstr "bis zu %.2f mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/UpdateDialogs.cpp:38 msgid "Update available" msgstr "Ein Update ist verfügbar" -#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 msgid "Update built-in Presets automatically" msgstr "Eingebaute Voreinstellungen automatisch aktualisieren" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Updates" msgstr "Updates" -#: src/slic3r/GUI/ConfigWizard.cpp:426 +#: src/slic3r/GUI/ConfigWizard.cpp:785 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Updates werden niemals ohne das Einverständnis des Benutzers ausgeführt, und werden niemals die vom Benutzer geänderten Einstellungen überschreiben." @@ -7616,11 +8383,11 @@ msgstr "Updates werden niemals ohne das Einverständnis des Benutzers ausgeführ msgid "Upgrade" msgstr "Aktualisieren" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" -msgstr "Lade ein Firmware Image zu einem Arduino basierten Drucker hoch" +msgstr "Lade ein Firmware Image zu einem Arduino-basierten Drucker hoch" -#: src/slic3r/Utils/FlashAir.cpp:60 +#: src/slic3r/Utils/FlashAir.cpp:58 msgid "Upload not enabled on FlashAir card." msgstr "Hochladen nicht auf der FlashAir-Karte aktiviert." @@ -7628,32 +8395,32 @@ msgstr "Hochladen nicht auf der FlashAir-Karte aktiviert." msgid "Upload to Printer Host with the following filename:" msgstr "Transferiere zum Druckerhost mit dem Dateinamen:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:229 +#: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "Lade hoch" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 msgid "Upper Layer" msgstr "Obere Schicht" -#: src/slic3r/GUI/Tab.cpp:1873 +#: src/slic3r/GUI/Tab.cpp:1898 msgid "USB/Serial connection" msgstr "USB/Serielle Verbindung" -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "USB-/serielle Schnittstelle für den Druckeranschluss." -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 +#: src/slic3r/GUI/DoubleSlider.cpp:1115 msgid "Use another extruder" msgstr "Einen anderen Extruder verwenden" -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:147 msgid "Use custom size for toolbar icons" msgstr "Benutzerdefinierte Größe für Symbolleistensymbole verwenden" -#: src/libslic3r/PrintConfig.cpp:2060 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "Firmware-Einzug aktivieren" @@ -7661,51 +8428,59 @@ msgstr "Firmware-Einzug aktivieren" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Benutzen Sie den Schrägstrich (/) als Verzeichnistrenner falls nötig." -#: src/libslic3r/PrintConfig.cpp:2515 +#: src/slic3r/GUI/Preferences.cpp:129 +msgid "Use free camera" +msgstr "Benutze freie Kamera" + +#: src/libslic3r/PrintConfig.cpp:2771 msgid "Use pad" msgstr "Grundschicht benutzen" -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "Use perspective camera" msgstr "Benutze perspektivische Kamera" -#: src/libslic3r/PrintConfig.cpp:2067 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "Relative Abstände für Extrusion benutzen" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "Use Retina resolution for the 3D scene" msgstr "Verwende Retina Auflösung für die 3D Anzeige" -#: src/libslic3r/PrintConfig.cpp:508 +#: src/libslic3r/PrintConfig.cpp:540 msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)." msgstr "Verwenden Sie diese Einstellung, um den Buchstaben der Achse anzugeben, die mit Ihrem Extruder verknüpft ist (normalerweise E, aber bei manchen Druckern ist dies A)." -#: src/libslic3r/PrintConfig.cpp:1807 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "Use this setting to rotate the support material pattern on the horizontal plane." -msgstr "Verwenden Sie diese Einstellung, um das Muster für das Stützmaterial auf der horizontalen Ebene zu drehen." +msgstr "Verwenden Sie diese Einstellung, um das Muster für die Stützstrukturen auf der horizontalen Ebene zu drehen." -#: src/libslic3r/PrintConfig.cpp:2074 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "Volumetrisches E benutzen" -#: src/slic3r/GUI/Plater.cpp:214 +#: src/slic3r/GUI/DoubleSlider.cpp:1139 +msgid "used" +msgstr "genutzt" + +#: src/slic3r/GUI/Plater.cpp:239 msgid "Used Filament (g)" msgstr "Filamentbedarf (g)" -#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041 +#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 msgid "Used Filament (m)" msgstr "Filamentbedarf (Meter)" -#: src/slic3r/GUI/Plater.cpp:213 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Filament (mm³)" msgstr "Filamentbedarf (mm³)" -#: src/slic3r/GUI/Plater.cpp:1015 +#: src/slic3r/GUI/Plater.cpp:1188 msgid "Used Material (ml)" msgstr "Benutztes Material (ml)" -#: src/slic3r/GUI/Plater.cpp:215 +#: src/slic3r/GUI/Plater.cpp:240 msgid "Used Material (unit)" msgstr "Benutztes Material (Einheit)" @@ -7713,117 +8488,117 @@ msgstr "Benutztes Material (Einheit)" msgid "User" msgstr "Benutzer" -#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071 -#: src/slic3r/GUI/PresetBundle.cpp:1558 +#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 +#: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "Benutzerdefinierte Voreinstellungen" -#: src/libslic3r/Zipper.cpp:93 +#: src/libslic3r/Zipper.cpp:90 msgid "validation failed" msgstr "Überprüfung fehlgeschlagen" -#: src/slic3r/GUI/ButtonsDescription.cpp:41 +#: src/slic3r/GUI/ButtonsDescription.cpp:36 msgid "Value is the same as the system value" msgstr "Der Wert ist gleich wie die Systemeinstellung" -#: src/slic3r/GUI/ButtonsDescription.cpp:58 +#: src/slic3r/GUI/ButtonsDescription.cpp:53 msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Der Wert wurde geändert und ist nicht gleich wie die Systemeinstellung oder die letzte abgespeicherte Voreinstellung" -#: src/slic3r/GUI/Tab.cpp:2151 +#: src/slic3r/GUI/Tab.cpp:2198 msgid "Values in this column are for Normal mode" msgstr "Werte in dieser Spalte sind für den normalen Modus" -#: src/slic3r/GUI/Tab.cpp:2157 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Stealth mode" msgstr "Werte in dieser Spalte sind für den Stealth Modus" -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 msgid "Variable layer height" msgstr "Variable Schichthöhe" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1713 msgid "Variable layer height - Adaptive" msgstr "Variable Schichthöhe - Adaptiv" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:604 msgid "Variable layer height - Manual edit" msgstr "Variable Schichthöhe - Manuell bearbeiten" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1705 msgid "Variable layer height - Reset" msgstr "Variable Schichthöhe - Zurücksetzen" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1721 msgid "Variable layer height - Smooth all" msgstr "Variable Schichthöhe - Alles glätten" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "variants" msgstr "Varianten" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 msgid "vendor" msgstr "Hersteller" -#: src/slic3r/GUI/ConfigWizard.cpp:536 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "Hersteller:" -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "Ausführlicher G-Code" -#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "Version" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 msgid "version" msgstr "Version" -#: src/slic3r/GUI/Tab.cpp:1002 +#: src/slic3r/GUI/Tab.cpp:1055 msgid "Vertical shells" msgstr "Vertikale Konturhüllen" -#: src/slic3r/GUI/GUI_Preview.cpp:209 +#: src/slic3r/GUI/GUI_Preview.cpp:220 msgid "View" msgstr "Ansicht" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:814 msgid "View mode" msgstr "Anzeigemodus" -#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867 -#: src/libslic3r/SLAPrint.cpp:915 +#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 +#: src/libslic3r/SLAPrintSteps.cpp:430 msgid "Visualizing supports" msgstr "Anzeigen der Stützstrukturen" -#: src/slic3r/GUI/Plater.cpp:138 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Volume" msgstr "Volumen" -#: src/slic3r/GUI/WipeTowerDialog.cpp:248 +#: src/slic3r/GUI/WipeTowerDialog.cpp:286 msgid "Volume to purge (mm³) when the filament is being" msgstr "Volumen zum Reinigen (mm³) wenn das Filament ist" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Volumes in Object reordered" msgstr "Volumen in Objekt neu angeordnet" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "Volumetrisch" -#: src/slic3r/GUI/Tab.cpp:1800 +#: src/slic3r/GUI/Tab.cpp:1593 msgid "Volumetric flow hints not available" msgstr "Hinweise zum Volumenstrom nicht verfügbar" -#: src/slic3r/GUI/GUI_Preview.cpp:216 +#: src/slic3r/GUI/GUI_Preview.cpp:228 msgid "Volumetric flow rate" msgstr "Volumetrische Flussrate" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "Volumetrische Flussrate (mm³/s)" @@ -7831,298 +8606,311 @@ msgstr "Volumetrische Flussrate (mm³/s)" msgid "Volumetric speed" msgstr "Volumengeschwindigkeit" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283 -#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328 +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Wall thickness" +msgstr "Wandstärke" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 +#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Warnung" -#: src/slic3r/GUI/ConfigWizard.cpp:294 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "Willkommen" -#: src/slic3r/GUI/ConfigWizard.cpp:296 +#: src/slic3r/GUI/ConfigWizard.cpp:427 #, possible-c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Willkommen zum %s Konfigurations-Assistent" -#: src/slic3r/GUI/ConfigWizard.cpp:298 +#: src/slic3r/GUI/ConfigWizard.cpp:429 #, possible-c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Willkommen zum %s Konfigurations-Assistent" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:99 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Falls angekreuzt, werden Voreinstellungen für Druck und Filament im Voreinstellungseditor auch dann angezeigt, wenn sie als inkompatibel zum aktiven Drucker gekennzeichnet wurden" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "während dem Druck" -#: src/libslic3r/PrintConfig.cpp:217 +#: src/libslic3r/PrintConfig.cpp:243 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Wenn Multi-Material-Objekte gedruckt werden, wird Slic3r mit diesen Einstellungen einen überlappenden Teil des Objekts durch den anderen einschränken (zweiter Teil wird durch den ersten Teil eingeschränkt, dritter Teil wird durch den ersten und zweiten eingeschränkt usw.)." -#: src/libslic3r/PrintConfig.cpp:269 +#: src/libslic3r/PrintConfig.cpp:295 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." -msgstr "Wenn mehrere Objekte oder Kopien gedruckt werden, wird bei dieser Einstellung jedes Objekt vollständig gedruckt, bevor das nächste (angefangen mit der Bodenschicht) begonnen wird. Diese Einstellung ist nützlich, um Fehldrucke zu vermeiden. Slic3r sollte vor Extruderkollisionen warnen und diese verhindern, aber seien Sie trotzdem aufmerksam." +msgstr "Wenn mehrere Objekte oder Kopien gedruckt werden, wird bei dieser Einstellung jedes Objekt vollständig gedruckt, bevor das nächste (angefangen mit der Bodenschicht) begonnen wird. Diese Einstellung ist nützlich, um Fehldrucke zu vermeiden. PrusaSlicer sollte vor Extruderkollisionen warnen und diese verhindern, aber seien Sie trotzdem aufmerksam." -#: src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:891 msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height." -msgstr "Wenn mit sehr kleinen Schichthöhen gedruckt wird, möchten Sie vielleicht trotzdem eine dickere Bodenschicht drucken, um die Haftung sowie die Toleranz bei nicht perfekt ebenen Druckplatten zu verbessern. Dieser Wert kann als Absolutwert oder als Prozentwert (z.B. 150%) der Standardschichthöhe angegeben werden." +msgstr "Wenn mit sehr kleinen Schichthöhen gedruckt wird, möchten Sie vielleicht trotzdem eine stärkere Bodenschicht drucken, um die Haftung sowie die Toleranz bei nicht perfekt ebenen Druckplatten zu verbessern. Dieser Wert kann als Absolutwert oder als Prozentwert (z.B. 150%) der Standardschichthöhe angegeben werden." -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Wenn der Einzug vor dem Werkzeugwechsel ausgelöst wird, wird das Filament um diese Länge eingezogen. (Die Länge wird am unverarbeiteten Filament vor dem Extruder gemessen)." -#: src/libslic3r/PrintConfig.cpp:1475 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Wenn der Einzug ausgelöst wird, wird das Filament um diese Länge eingezogen. (Die Länge wird am unverarbeiteten Filament vor dem Extruder gemessen)." -#: src/libslic3r/PrintConfig.cpp:1347 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." -msgstr "Wenn auf Null gesetzt, ist der Weg, den das Filament während der Beladung aus der Parkposition zurücklegt, genau der gleiche wie beim Entladen. Im positiven Fall wird sie weiter geladen, im negativen Fall ist die Ladebewegung kürzer als die Entladung." +msgstr "Wenn auf null gesetzt, ist der Weg, den das Filament während der Beladung aus der Parkposition zurücklegt, genau der gleiche wie beim Entladen. Im positiven Fall wird sie weiter geladen, im negativen Fall ist die Ladebewegung kürzer als die Entladung." -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow." -msgstr "Wenn andere Geschwindigkeitseinstellungen auf Null gesetzt wurden, wird Slic3r die optimale Geschwindigkeit automatisch berechnen, um den Extruderdruck konstant zu halten. Diese experimentelle Einstellung erlaubt Ihnen, die höchste zulässige Druckgeschwindigkeit anzugeben." +msgstr "Wenn andere Geschwindigkeitseinstellungen auf null gesetzt wurden, wird PrusaSlicer die optimale Geschwindigkeit automatisch berechnen, um den Extruderdruck konstant zu halten. Diese experimentelle Einstellung erlaubt Ihnen, die höchste zulässige Druckgeschwindigkeit anzugeben." -#: src/libslic3r/PrintConfig.cpp:1527 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Wenn der Einzug nach dem Werkzeugwechsel kompensiert wurde, wird der Extruder diese zusätzliche Menge an Filament ausgeben." -#: src/libslic3r/PrintConfig.cpp:1519 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Wenn der Einzug nach der Zwischenbewegung kompensiert wurde, wird der Extruder diese zusätzliche Menge an Filament ausgeben. Diese Einstellung wird selten benötigt." -#: src/slic3r/GUI/Tab.cpp:3076 +#: src/slic3r/GUI/Tab.cpp:3247 msgid "WHITE BULLET" msgstr "WEISSER PUNKT" -#: src/slic3r/GUI/Tab.cpp:3365 +#: src/slic3r/GUI/Tab.cpp:3269 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "Das Symbol mit dem WEISSEN PUNKT zeigt eine Nicht-System- (oder nicht standardmäßige) Voreinstellung an." -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "Das Symbol WEISSER PUNKT zeigt an, dass die Einstellungen dieselben sind wie in der zuletzt gespeicherten Voreinstellung für die aktuelle Optionsgruppe." -#: src/slic3r/GUI/Tab.cpp:3126 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "Das Symbol WEISSER PUNKT zeigt an, dass der Wert identisch ist mit demjenigen in der zuletzt gespeicherten Voreinstellung." -#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Breite" -#: src/libslic3r/GCode/PreviewData.cpp:398 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "Breite (mm)" -#: src/libslic3r/PrintConfig.cpp:2389 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "Width from the back sphere center to the front sphere center" msgstr "Abstand von der Mitte der hinteren Kugel bis zur Mitte der vorderen Kugel" -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "Breite des Reinigungsturms" -#: src/libslic3r/PrintConfig.cpp:2761 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Breite der Verbindungsstäbe, die das Objekt und die erzeugte Grundschicht verbinden." -#: src/libslic3r/PrintConfig.cpp:2203 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "Displaybreite" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "wird immer mit %1%%% laufen" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "wird abgeschaltet." -#: src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction." msgstr "Vergrößert oder verringert die geslicten 2D-Polygone entsprechend dem Vorzeichen der Korrektur." -#: src/libslic3r/PrintConfig.cpp:2160 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "Dieses Objekt zum Reinigen verwenden" -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "Das Infill dieses Objekts zum Reinigen verwenden" -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:564 src/libslic3r/PrintConfig.cpp:2202 -#: src/libslic3r/PrintConfig.cpp:2210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 +#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Wischoptionen" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130 -#: src/libslic3r/GCode/PreviewData.cpp:174 +#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Reinigungsturm" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "wipe tower" msgstr "Reinigungsturm" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "Reinigungsturm" -#: src/slic3r/GUI/WipeTowerDialog.cpp:141 +#: src/slic3r/GUI/WipeTowerDialog.cpp:142 msgid "Wipe tower - Purging volume adjustment" msgstr "Reinigungsturm - Anpassung des Reinigungsvolumens" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1490 msgid "Wipe tower parameters" msgstr "Reinigungsturm Parameter" -#: src/libslic3r/PrintConfig.cpp:2144 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "Rotationswinkel des Reinigungsturms" -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "Rotationswinkel des Reinigungsturms bezogen auf die X-Achse." -#: src/libslic3r/PrintConfig.cpp:2092 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "Während Einzug reinigen" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "mit einer Volumenrate von" -#: src/libslic3r/PrintConfig.cpp:1460 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement." msgstr "Bei Bowden-Extrudern kann es ratsam sein, vor der Reinigungsbewegung einen kurzen Einzug auszuführen." -#: src/libslic3r/PrintConfig.cpp:1969 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" msgstr "Mit Umhüllung der Stützen" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:62 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:105 msgid "World coordinates" msgstr "Weltkoordinaten" -#: src/slic3r/GUI/UpdateDialogs.cpp:76 +#: src/slic3r/GUI/UpdateDialogs.cpp:92 msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" msgstr "Möchten Sie dies installieren?\n\nBeachten Sie, dass zuerst eine Momentaufnahme der gesamten Konfiguration erstellt wird. Diese kann dann jederzeit wiederhergestellt werden, falls es ein Problem mit der neuen Version gibt.\n\nAktualisierte Konfigurationssammlungen:" -#: src/libslic3r/Zipper.cpp:95 +#: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "Schreibabruf fehlgeschlagen" -#: src/libslic3r/PrintConfig.cpp:2993 +#: src/libslic3r/PrintConfig.cpp:3367 msgid "Write information about the model to the console." msgstr "Schreibt Informationen über das Modell auf die Konsole." -#: src/slic3r/Utils/Duet.cpp:148 +#: src/slic3r/Utils/Duet.cpp:131 msgid "Wrong password" msgstr "Ungültiges Kennwort" -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "X-Koordinate der linken vorderen Ecke des Reinigungsturms" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" msgstr "XY-Abstand zwischen einem Objekt und seinen Stützen" -#: src/libslic3r/PrintConfig.cpp:1795 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." -msgstr "XY-Abstand zwischen einem Objekt und seinen Stützen. Falls in Prozenten angegeben (z.B. 50%), wird der Abstand von der Breite der Aussenschicht ausgehend berechnet." +msgstr "XY-Abstand zwischen einem Objekt und seinen Stützen. Falls in Prozenten angegeben (z.B. 50%), wird der Abstand von der Breite der Außenkontur ausgehend berechnet." -#: src/libslic3r/PrintConfig.cpp:2174 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" -msgstr "XY-Grössenausgleich" +msgstr "XY-Größenausgleich" -#: src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Y-Koordinate der linken vorderen Ecke des Reinigungsturms" -#: src/slic3r/GUI/Plater.cpp:992 +#: src/slic3r/GUI/Plater.cpp:1167 msgid "Yes" msgstr "Ja" -#: src/libslic3r/PrintConfig.cpp:1252 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "You can put here your personal notes. This text will be added to the G-code header comments." msgstr "Sie können hier Ihre persönlichen Notizen eingeben. Der Text wird dem Header vom G-Code hinzugefügt." -#: src/libslic3r/PrintConfig.cpp:557 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "Sie können Ihre Notizen zum Filament hier eingeben." -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "Sie können Ihre Bemerkungen zum Drucker hier eingeben." -#: src/libslic3r/PrintConfig.cpp:2332 +#: src/libslic3r/PrintConfig.cpp:2570 msgid "You can put your notes regarding the SLA print material here." msgstr "Sie können Ihre Notizen zum SLA Druckmaterial hier eingeben." -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:350 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Sie können einen positiven Wert eingeben, um den Lüfter vollständig für die ersten Schichten auszuschalten, damit er die Haftung nicht beeinträchtigt." -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Sie können alle Konfigurationsoptionen als Variablen in dieser Vorlage benutzen. Zum Beispiel: [layer_height], [fill_density] usw. Sie können auch [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], und [input_filename_base] benutzen." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 msgid "You can't change a type of the last solid part of the object." msgstr "Sie können nicht die Art des letzten soliden Teils des Objektes ändern." -#: src/slic3r/GUI/Plater.cpp:2243 -msgid "You can't load SLA project if there is at least one multi-part object on the bed" -msgstr "Sie können kein SLA-Projekt laden, wenn sich zumindest ein mehrteiliges Objekt auf dem Bett befindet" - -#: src/slic3r/GUI/Plater.cpp:1746 +#: src/slic3r/GUI/Plater.cpp:2374 #, possible-c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Sie können die Objekte aus %s nicht hinzufügen, weil eines oder einige von ihnen mehrteilig ist (sind)" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:565 +#: src/slic3r/GUI/Plater.cpp:2295 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "Sie können kein SLA-Projekt mit einem mehrteiligen Objekt auf das Druckbett laden" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" msgstr "Sie können den nichtgleichmäßigen Skalierungsmodus nicht für mehrere Objekte/Teileauswahlen verwenden" -#: src/slic3r/GUI/ConfigWizard.cpp:1637 +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" -msgstr "Sie müssen mindestens einen Filament für die ausgewählten Drucker auswählen" +msgstr "Sie müssen mindestens ein Filament für die ausgewählten Drucker auswählen" -#: src/slic3r/GUI/ConfigWizard.cpp:1643 +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "Sie müssen mindestens ein Material für die ausgewählten Drucker auswählen" -#: src/slic3r/GUI/GUI_App.cpp:300 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "Möglicherweise müssen Sie Ihren Grafikkartentreiber aktualisieren." -#: src/slic3r/GUI/Preferences.cpp:130 +#: src/slic3r/GUI/Preferences.cpp:176 #, possible-c-format msgid "You need to restart %s to make the changes effective." msgstr "Sie müssen %s neu starten, damit die Änderungen wirksam werden." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 #, possible-c-format msgid "You started your selection with %s Item." msgstr "Sie haben Ihre Auswahl mit %s Elementen begonnen." -#: src/slic3r/GUI/MainFrame.cpp:772 +#: src/slic3r/GUI/DoubleSlider.cpp:1875 +msgid "Your current changes will delete all saved color changes." +msgstr "Ihre aktuellen Änderungen löschen alle gespeicherten Farbwechsel." + +#: src/slic3r/GUI/DoubleSlider.cpp:1896 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "Ihre aktuellen Änderungen löschen alle gespeicherten Extruder-(Werkzeug-) Wechsel." + +#: src/slic3r/GUI/MainFrame.cpp:913 msgid "Your file was repaired." msgstr "Ihre Datei wurde repariert." -#: src/slic3r/GUI/Plater.cpp:1874 +#: src/slic3r/GUI/Plater.cpp:2512 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." -msgstr "Ihr Objekt scheint zu gross zu sein. Es wurde deshalb automatisch verkleinert, um auf Ihre Druckplatte zu passen." +msgstr "Ihr Objekt scheint zu groß zu sein. Es wurde deshalb automatisch verkleinert, um auf Ihre Druckplatte zu passen." -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" msgstr "Z-Abstand" @@ -8134,37 +8922,47 @@ msgstr "Null Höhe der ersten Schicht ist nicht gültig.\n\nDie erste Schichthö msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." msgstr "Eine Nullschichthöhe ist nicht gültig.\n\nDie Schichthöhe wird auf 0,01 zurückgesetzt." -#: src/libslic3r/PrintConfig.cpp:2416 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Zig-Zag" msgstr "Zickzack" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +#: src/slic3r/GUI/Mouse3DController.cpp:326 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +msgid "Zoom" +msgstr "Zoom" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Zoom in" msgstr "Heranzoomen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Zoom out" msgstr "Herauszoomen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Zoom to all objects in scene, if none selected" msgstr "Auf alle Objekte zoomen, falls keines ausgewählt ist" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Zoom to Bed" -msgstr "Zoom aufs Bett" +msgstr "Zoom aufs Druckbett" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "Zoom to selected object\nor all objects in scene, if none selected" +msgstr "Auf ausgewähltes Objekt zoomen\noder alle Objekte in der Szene, wenn keines ausgewählt ist" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 msgid "Zoom to selected object" msgstr "Auf das gewählte Objekt zoomen" -#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733 -#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580 -#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962 -#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463 +#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 +#: src/libslic3r/PrintConfig.cpp:2839 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627 +#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 msgid "°C" msgstr "°C" diff --git a/resources/localization/es/PrusaSlicer.mo b/resources/localization/es/PrusaSlicer.mo index 3f02722948ab6c00c0a103c2d5e412e1990793cd..5ebb71763055708afa05247b8f3170efe461b686 100644 GIT binary patch delta 62380 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 CyA5Rk delta 43814 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" msgstr "&Siguiente >" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "&Abrir proyecto" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "&Pegar" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" msgstr "Pestaña &Base de impresión" -#: src/slic3r/GUI/GUI_App.cpp:665 +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "&Preferencias" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "&Salir" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "&Rehacer" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "&Reparar archivo STL" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "&Guardar proyecto" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "&Seleccionar todo" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "&Deshacer" -#: src/slic3r/GUI/MainFrame.cpp:577 +#: src/slic3r/GUI/MainFrame.cpp:726 msgid "&View" msgstr "&Ver" -#: src/slic3r/GUI/MainFrame.cpp:576 +#: src/slic3r/GUI/MainFrame.cpp:725 msgid "&Window" msgstr "&Ventana" -#: src/slic3r/GUI/ConfigWizard.cpp:574 src/slic3r/GUI/ConfigWizard.cpp:602 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(Todo)" -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(mínimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "(Re)slice" msgstr "(Re)laminar" -#: src/slic3r/GUI/MainFrame.cpp:455 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(Re)Laminar Aho&ra" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 msgid "(Unknown)" msgstr "(Desconocido)" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid ") not found." msgstr ") no encontrado." -#: src/libslic3r/PrintConfig.cpp:1857 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (soluble)" -#: src/libslic3r/PrintConfig.cpp:1858 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0.2 (despegable)" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:3074 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "3D editor view" msgstr "Vista editor 3D" -#: src/libslic3r/PrintConfig.cpp:804 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "Panal de abeja 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:291 msgid "3Dconnexion settings" msgstr "Ajustes 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:3590 +#: src/slic3r/GUI/Plater.cpp:5068 #, possible-c-format msgid "3MF file exported to %s" msgstr "Archivo 3MF exportado a %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1092 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 msgid "< &Back" msgstr "< &Anterior" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:277 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Una expresión booleana que utiliza los valores de configuración de un perfil de impresión activo. Si esta expresión se evalúa como verdadera, este perfil se considera compatible con el perfil de impresión activo." -#: src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:262 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Una expresión booleana utilizando valores de configuración de un perfil existente. Si esta expresión es verdadera, el perfil será considerado compatible con el perfil de impresión activo." -#: src/slic3r/GUI/ConfigWizard.cpp:609 +#: src/slic3r/GUI/ConfigWizard.cpp:1035 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Una buena aproximación es de 160 a 230 °C para PLA y de 215 a 250 °C para ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:623 +#: src/slic3r/GUI/ConfigWizard.cpp:1049 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Una buena aproximación son unos 60 °C para PLA y 110 °C para ABS. Deja el valor a cero si no tienes base calefactable." -#: src/slic3r/GUI/GLCanvas3D.cpp:721 +#: src/slic3r/GUI/GLCanvas3D.cpp:691 msgid "A toolpath outside the print area was detected" msgstr "Se detectó una trayectoria fuera del área de impresión" -#: src/slic3r/GUI/AboutDialog.cpp:35 +#: src/slic3r/GUI/AboutDialog.cpp:199 #, possible-c-format msgid "About %s" msgstr "Acerca de %s" -#: src/libslic3r/GCode/PreviewData.cpp:499 +#: src/slic3r/GUI/GLCanvas3D.cpp:964 #, possible-c-format msgid "above %.2f mm" msgstr "sobre %.2f mm" -#: src/libslic3r/PrintConfig.cpp:1499 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Encima de Z" -#: src/slic3r/GUI/Tab.cpp:1103 +#: src/slic3r/GUI/Tab.cpp:1166 msgid "Acceleration control (advanced)" msgstr "Control de aceleración (avanzado)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73 +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Accuracy" +msgstr "Precisión" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 msgid "Activate" msgstr "Activar" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43 msgid "Active" msgstr "Activo" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/DoubleSlider.cpp:1103 +msgid "active" +msgstr "activo" + +#: src/slic3r/GUI/GLCanvas3D.cpp:272 msgid "Adaptive" msgstr "Adaptativa" -#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237 +#: src/slic3r/GUI/Tab.cpp:243 msgid "Add a new printer" msgstr "Añadir una impresora nueva" -#: src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Add a pad underneath the supported model" msgstr "Añade un pad debajo del modelo compatible" -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Añadir una funda (una sola línea de perímetro) alrededor de la base del soporte. Esto hace el soporte más fiable pero también más difícil de retirar." -#: src/slic3r/GUI/wxExtensions.cpp:3441 +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" +msgstr "Añadir otro código - Ctrl + Click izquierdo" + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" +msgstr "Añadir otro código - Click derecho" + +#: src/slic3r/GUI/DoubleSlider.cpp:1449 msgid "Add color change" msgstr "Añadir cambio de color" -#: src/slic3r/GUI/wxExtensions.cpp:3435 +#: src/slic3r/GUI/DoubleSlider.cpp:1148 msgid "Add color change (%1%) for:" msgstr "Añadir cambio de color (%1%) para:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/DoubleSlider.cpp:959 +msgid "Add color change - Left click" +msgstr "Añadir cambio de color - Click izquierdo" + +#: src/slic3r/GUI/DoubleSlider.cpp:957 +msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" +msgstr "Añadir cambio de color - Click izquierdo para color preddefinido o Mayus + Click izquierdo para selección de color personalizada" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Add color change marker for current layer" msgstr "Añadir marcador de cambio de color para la capa actual" -#: src/slic3r/GUI/wxExtensions.cpp:3447 +#: src/slic3r/GUI/DoubleSlider.cpp:1462 msgid "Add custom G-code" msgstr "Añadir código G personalizado" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:245 msgid "Add detail" msgstr "Añadir detalle" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +msgid "Add drainage hole" +msgstr "Añadir orificio de drenaje" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 +msgid "Add extruder change - Left click" +msgstr "Añadir cambio de extrusor - Click izquierdo" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 msgid "Add extruder to sequence" msgstr "Añadir extrusor a la secuencia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1662 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 msgid "Add Generic Subobject" msgstr "Añadir Subobjeto Genérico" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2584 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2613 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2631 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 msgid "Add Height Range" msgstr "Añadir Rango de Alturas" -#: src/slic3r/GUI/GLCanvas3D.cpp:3463 +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 +#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 msgid "Add instance" msgstr "Añadir instancia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 msgid "Add Instance of the selected object" msgstr "Añadir instancia del objeto seleccionado" @@ -390,112 +437,113 @@ msgstr "Añadir instancia del objeto seleccionado" msgid "Add layer range" msgstr "Añadir rango de capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1950 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 msgid "Add Layers" msgstr "Añadir Capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1067 +#: src/slic3r/GUI/GUI_ObjectList.cpp:52 msgid "Add modifier" msgstr "Añadir modificador" -#: src/libslic3r/PrintConfig.cpp:447 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Añadir más perímetros cuando se necesiten para evitar huecos en las paredes inclinadas. Slic3r sigue añadiendo perímetros hasta que más del 70% del perímetro superior sea soportado." -#: src/slic3r/GUI/Plater.cpp:3516 +#: src/slic3r/GUI/Plater.cpp:3949 msgid "Add one more instance of the selected object" msgstr "Añadir una instancia más del objeto seleccionado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1066 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1082 +#: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "Añadir pieza" -#: src/slic3r/GUI/wxExtensions.cpp:3444 +#: src/slic3r/GUI/DoubleSlider.cpp:1459 msgid "Add pause print" msgstr "Añadir pausa de impresión" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 msgid "Add point" msgstr "Añadir punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Add point to selection" msgstr "Añadir punto a selección" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 msgid "Add settings" msgstr "Añadir ajustes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 msgid "Add Settings Bundle for Height range" msgstr "Añadir Conjunto de Ajustes para Rango de Alturas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1191 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Object" msgstr "Añadir Conjunto de Ajustes para Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1190 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 msgid "Add Settings Bundle for Sub-object" msgstr "Añadir Conjunto de Ajustes para Sub-objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 msgid "Add Settings for Layers" msgstr "Añadir Ajustes para Capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1128 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Object" msgstr "Agregar Ajustes para Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1127 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 msgid "Add Settings for Sub-object" msgstr "Agregar Ajustes para Sub-objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1676 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1922 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 msgid "Add Shape" msgstr "Añadir forma" -#: src/libslic3r/PrintConfig.cpp:382 +#: src/libslic3r/PrintConfig.cpp:409 msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)." msgstr "Añade un relleno completo cerca de las superficies inclinadas para garantizar el ancho vertical solicitado(capas sólidas arriba+abajo)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1069 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:54 msgid "Add support blocker" msgstr "Añadir bloqueo soportes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:53 msgid "Add support enforcer" msgstr "Añadir refuerzo soportes" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:531 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 msgid "Add support point" msgstr "Añadir punto de soporte" -#: src/slic3r/GUI/GLCanvas3D.cpp:3392 +#: src/slic3r/GUI/GLCanvas3D.cpp:4516 msgid "Add..." msgstr "Añadir..." -#: src/slic3r/GUI/PresetBundle.cpp:1683 +#: src/slic3r/GUI/PresetBundle.cpp:1697 msgid "Add/Remove filaments" msgstr "Añadir/Retirar filamentos" -#: src/slic3r/GUI/Preset.cpp:1102 +#: src/slic3r/GUI/Preset.cpp:1151 msgid "Add/Remove materials" msgstr "Añadir/Retirar materiales" -#: src/slic3r/GUI/Tab.cpp:920 +#: src/slic3r/GUI/Preset.cpp:1153 +msgid "Add/Remove printers" +msgstr "Añade/Quita impresoras" + +#: src/slic3r/GUI/Tab.cpp:972 msgid "Additional information:" msgstr "Información adicional:" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:59 msgid "Additional Settings" msgstr "Ajustes adiccionales" -#: src/slic3r/GUI/ConfigWizard.cpp:431 +#: src/slic3r/GUI/ConfigWizard.cpp:790 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Además se realizará una instantánea de toda la configuración antes de aplicar una actualización." @@ -503,54 +551,55 @@ msgstr "Además se realizará una instantánea de toda la configuración antes d msgid "Address" msgstr "Dirección" -#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76 -#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026 -#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139 -#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515 -#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435 -#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 +#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 +#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 +#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 +#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 msgid "Advanced" msgstr "Avanzado" -#: src/slic3r/GUI/ConfigWizard.cpp:786 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Advanced mode" msgstr "Modo avanzado" -#: src/slic3r/GUI/GUI_App.cpp:675 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "Modo vista avanzada" -#: src/slic3r/GUI/FirmwareDialog.cpp:803 +#: src/slic3r/GUI/FirmwareDialog.cpp:841 msgid "Advanced: Output log" msgstr "Avanzado: Registro de salida" -#: src/libslic3r/PrintConfig.cpp:636 +#: src/libslic3r/PrintConfig.cpp:668 msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Después de un cambio de herramienta, la posición exacta del filamento recién cargado dentro de la boquilla puede no ser conocida, y es probable que la presión del filamento aún no sea estable. Antes de purgar el cabezal de impresión en un relleno o en un objeto de sacrificio, Slic3r siempre purgará esta cantidad de material en la torre de limpieza para producir de forma fiable sucesivas rellenos u objetos de sacrificio." -#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031 +#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "Código G tras un cambio de capa" -#: src/libslic3r/PrintConfig.cpp:3009 +#: src/libslic3r/PrintConfig.cpp:3383 msgid "Align the model to the given point." msgstr "Alinear el modelo a un punto dado." -#: src/libslic3r/PrintConfig.cpp:3008 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Align XY" msgstr "Alinear XY" -#: src/libslic3r/PrintConfig.cpp:1561 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "Alineado" -#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3158 msgid "All" msgstr "Todo" -#: src/libslic3r/Print.cpp:1135 +#: src/libslic3r/Print.cpp:1215 msgid "All objects are outside of the print volume." msgstr "Todos los objetos están fuera del volumen de impresión." @@ -558,232 +607,246 @@ msgstr "Todos los objetos están fuera del volumen de impresión." msgid "All objects will be removed, continue ?" msgstr "Todos los objetos serán eliminados, deseas continuar?" -#: src/slic3r/GUI/ConfigWizard.cpp:188 +#: src/slic3r/GUI/Plater.cpp:4684 +msgid "All objects will be removed, continue?" +msgstr "Todos los objetos serán eliminados, deseas continuar?" + +#: src/slic3r/GUI/ConfigWizard.cpp:289 msgid "All standard" msgstr "Todo estandar" -#: src/libslic3r/Zipper.cpp:65 +#: src/libslic3r/Zipper.cpp:62 msgid "allocation failed" msgstr "asignación fallida" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Along X axis" msgstr "A lo largo del eje X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Along Y axis" msgstr "A lo largo del eje Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Along Z axis" msgstr "A lo largo del eje Z" -#: src/slic3r/GUI/ConfigWizard.cpp:122 +#: src/slic3r/GUI/ConfigWizard.cpp:222 msgid "Alternate nozzles:" msgstr "Alternar nozzles:" -#: src/slic3r/GUI/Plater.cpp:3561 +#: src/slic3r/GUI/Plater.cpp:5022 #, possible-c-format msgid "AMF file exported to %s" msgstr "Archivo AMF exportado a %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:725 +#: src/slic3r/GUI/GLCanvas3D.cpp:695 msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" msgstr "Se ha detectado una pieza fuera del área de impresión\nSoluciona el problema actual para continuar el laminado" -#: src/slic3r/GUI/GLCanvas3D.cpp:720 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "An object outside the print area was detected" msgstr "Se ha detectado una pieza fuera del área de impresión" -#: src/slic3r/GUI/Tab.cpp:2781 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "and it has the following unsaved changes:" msgstr "y tiene los siguientes cambios sin guardar:" -#: src/slic3r/GUI/Plater.cpp:2461 +#: src/slic3r/GUI/Plater.cpp:3154 msgid "Another export job is currently running." msgstr "Otro trabajo de exportación está aún en marcha." -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "Cualquier flecha" + +#: src/slic3r/GUI/Tab.cpp:967 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Cualquier modificación debe guardarse como un nuevo preset heredado de este." -#: src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" msgstr "Clave API / Contraseña" -#: src/slic3r/GUI/GUI_App.cpp:671 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Preferencias de la aplicación" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 msgid "Apply changes" msgstr "Aplicar cambios" -#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "segundos aproximadamente" -#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "Acordes de Arquímedes" -#: src/libslic3r/Zipper.cpp:91 +#: src/libslic3r/Zipper.cpp:88 msgid "archive is too large" msgstr "el archivo es demasiado grande" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:2955 +#: src/slic3r/GUI/Tab.cpp:3107 msgid "Are you sure you want to %1% the selected preset?" msgstr "¿Estás seguro de que deseas %1% el preset seleccionado?" -#: src/slic3r/GUI/FirmwareDialog.cpp:862 +#: src/slic3r/GUI/FirmwareDialog.cpp:902 msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" msgstr "¿Estas seguro de cancelar el flaseo del firmware?\n¡Esto podría dejar tu impresora en un estado inusable!" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "Are you sure you want to continue?" +msgstr "¿Estás seguro de que quieres continuar?" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 msgid "Are you sure you want to do it?" msgstr "¿Estás seguro de que quieres hacerlo?" -#: src/libslic3r/PrintConfig.cpp:2258 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "Área de relleno" -#: src/slic3r/GUI/Plater.cpp:609 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Around object" msgstr "Alrededor de objeto" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/Plater.cpp:2738 msgid "Arrange" msgstr "Organiza" -#: src/slic3r/GUI/GLCanvas3D.cpp:3486 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Arrange selection" msgstr "Ordenar selección" -#: src/libslic3r/PrintConfig.cpp:3054 +#: src/libslic3r/PrintConfig.cpp:3428 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Organizar los modelos suministrados en una base y combínarlos en un solo modelo para realizar acciones una vez." -#: src/slic3r/GUI/Plater.cpp:2106 +#: src/slic3r/GUI/Plater.cpp:2797 msgid "Arranging" msgstr "Organizando" -#: src/slic3r/GUI/Plater.cpp:2718 +#: src/slic3r/GUI/Plater.cpp:2825 msgid "Arranging canceled." msgstr "Ordenamiento cancelado." -#: src/slic3r/GUI/Plater.cpp:2144 +#: src/slic3r/GUI/Plater.cpp:2826 msgid "Arranging done." msgstr "Organización terminada." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Arrow Down" msgstr "Flecha hacia abajo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Arrow Left" msgstr "Flecha hacia izquierda" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Arrow Right" msgstr "Flecha hacia derecha" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Arrow Up" msgstr "Flecha hacia arriba" -#: src/slic3r/GUI/GUI_App.cpp:303 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Como solución alternativa, puedes ejecutar PrusaSlicer con un software de gráficos en 3D ejecutando prusaslicer.exe con el parámetro --sw_renderer." -#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743 -#: src/slic3r/GUI/Tab.cpp:2798 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 +#: src/slic3r/GUI/Tab.cpp:2944 msgid "Attention!" msgstr "¡Atención!" -#: src/libslic3r/PrintConfig.cpp:1785 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "Soportes generados automáticamente" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "Piezas auto-centradas" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 msgid "Auto-generate points" msgstr "Auto-generar puntos" -#: src/slic3r/GUI/Plater.cpp:979 +#: src/slic3r/GUI/Plater.cpp:1154 #, possible-c-format msgid "Auto-repaired (%d errors)" msgstr "Reparados automáticamente (%d errores)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:337 #, possible-c-format msgid "Auto-repaired (%d errors):" msgstr "Reparado automáticamente (%d errores):" -#: src/slic3r/GUI/FirmwareDialog.cpp:771 +#: src/slic3r/GUI/FirmwareDialog.cpp:809 msgid "Autodetected" msgstr "Detectado automáticamente" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1338 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 msgid "Autogenerate support points" msgstr "Genera los puntos de apoyo automáticamente" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 msgid "Autogeneration will erase all manually edited points." msgstr "La autogeneración borrará todos los puntos editados manualmente." -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Automatic generation" msgstr "Generación automática" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Automatic updates" msgstr "Actualizaciones automáticas" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "Archivo STL reparado automáticamente" -#: src/slic3r/GUI/Tab.cpp:1110 +#: src/slic3r/GUI/Tab.cpp:1173 msgid "Autospeed (advanced)" msgstr "Velocidad automática (avanzado)" -#: src/libslic3r/PrintConfig.cpp:111 +#: src/libslic3r/PrintConfig.cpp:126 msgid "Avoid crossing perimeters" msgstr "Evita cruzar perímetros" -#: src/slic3r/GUI/Tab.cpp:3081 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "BACK ARROW" msgstr "FLECHA HACIA ATRÁS" -#: src/slic3r/GUI/Tab.cpp:3113 +#: src/slic3r/GUI/Tab.cpp:3274 msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." msgstr "El símbolo de FLECHA ATRÁS indica que los ajustes cambiaron y que no son iguales a los que se guardaron para el grupo de opciones actual.\nHaz clic para devolver esos valores a los últimos guardados." -#: src/slic3r/GUI/Tab.cpp:3127 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." msgstr "La FLECHA ATRÁS indica que el valor ha cambiado y ya no es el mismo que el guardado la última vez.\nHaz clic para restaurar el valor al último ajuste guardado." -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Procesamiento en segundo plano" -#: src/slic3r/GUI/GUI_ObjectList.cpp:242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "backwards edges" msgstr "bordes hacia atrás" -#: src/slic3r/GUI/MainFrame.cpp:152 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "basado en Slic3r" -#: src/slic3r/GUI/Tab.cpp:1484 +#: src/slic3r/GUI/Tab.cpp:1441 msgid "Bed" msgstr "Base" @@ -795,31 +858,31 @@ msgstr "Modelo de base personalizado" msgid "Bed custom texture" msgstr "Textura personalizada de la base" -#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape" msgstr "Forma de la base de impresión" -#: src/libslic3r/PrintConfig.cpp:50 +#: src/libslic3r/PrintConfig.cpp:51 msgid "Bed shape" msgstr "Forma de la base de impresión" -#: src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape and Size" msgstr "Tamaño y forma de la base" -#: src/libslic3r/PrintConfig.cpp:122 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Bed temperature" msgstr "Temperatura de la base" -#: src/libslic3r/PrintConfig.cpp:120 +#: src/libslic3r/PrintConfig.cpp:135 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura de la base calefactable para las capas después de la primera. Ajuste esto a cero para deshabilitar los comandos de control de temperatura de la base calefactable en la salida." -#: src/slic3r/GUI/ConfigWizard.cpp:626 +#: src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "Bed Temperature:" msgstr "Temperatura de la base:" -#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128 +#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 msgid "Before layer change G-code" msgstr "Código G para antes del cambio de capa" @@ -827,98 +890,110 @@ msgstr "Código G para antes del cambio de capa" msgid "Before roll back" msgstr "Antes de volver atrás" -#: src/slic3r/GUI/Plater.cpp:608 +#: src/slic3r/GUI/Plater.cpp:637 msgid "Below object" msgstr "Por debajo del objeto" -#: src/libslic3r/PrintConfig.cpp:1508 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "Por debajo de Z" -#: src/libslic3r/PrintConfig.cpp:139 +#: src/libslic3r/PrintConfig.cpp:154 msgid "Between objects G-code" msgstr "Código G para entre objetos" -#: src/slic3r/GUI/Tab.cpp:1979 +#: src/slic3r/GUI/Tab.cpp:2004 msgid "Between objects G-code (for sequential printing)" msgstr "Código G para entre objetos (para impresión secuencial)" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 msgid "Bottle volume" msgstr "Volumen de la botella" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 msgid "Bottle weight" msgstr "Peso botella" #. TRN To be shown in the main menu View->Bottom -#: src/slic3r/GUI/MainFrame.cpp:524 +#. TRN To be shown in Print Settings "Bottom solid layers" +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 +#: src/libslic3r/PrintConfig.cpp:173 msgid "Bottom" msgstr "Inferior" -#: src/libslic3r/PrintConfig.cpp:409 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "Patrón de relleno inferior" -#: src/libslic3r/PrintConfig.cpp:152 +#: src/slic3r/GUI/PresetHints.cpp:338 +msgid "Bottom is open." +msgstr "La parte inferior está abierta." + +#: src/slic3r/GUI/PresetHints.cpp:332 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "La carcasa inferior es %1% mm más grueso para la altura de capa de %2% mm." + +#: src/libslic3r/PrintConfig.cpp:167 msgid "Bottom solid layers" msgstr "Capas sólidas inferiores" -#: src/slic3r/GUI/MainFrame.cpp:524 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" msgstr "Vista inferior" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1087 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1090 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 msgid "Box" msgstr "Caja" -#: src/libslic3r/PrintConfig.cpp:157 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bridge" msgstr "Puente" -#: src/libslic3r/PrintConfig.cpp:186 +#: src/libslic3r/PrintConfig.cpp:212 msgid "Bridge flow ratio" msgstr "Relación de flujo del puente" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Relleno de puente" -#: src/libslic3r/PrintConfig.cpp:198 +#: src/libslic3r/PrintConfig.cpp:224 msgid "Bridges" msgstr "Puentes" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:203 msgid "Bridges fan speed" msgstr "Velocidad del ventilador para puentes" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:192 msgid "Bridging angle" msgstr "Ángulo de puente" -#: src/libslic3r/PrintConfig.cpp:168 +#: src/libslic3r/PrintConfig.cpp:194 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Anulación de ángulo de puente. Si se deja en cero, el ángulo de puente se calculará automáticamente. De lo contrario, el ángulo proporcionado se usará para todos los puentes. Use 180 ° para ángulo con cero grados." -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "Puente volumétrico" -#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056 +#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "Balsa" -#: src/libslic3r/PrintConfig.cpp:208 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Brim width" msgstr "Ancho de la balsa" -#: src/slic3r/GUI/Tab.cpp:1681 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 +#: src/slic3r/GUI/Tab.cpp:1719 msgid "Browse" msgstr "Buscar" -#: src/libslic3r/Zipper.cpp:85 +#: src/libslic3r/Zipper.cpp:82 msgid "buffer too small" msgstr "buffer demasiado pequeño" @@ -926,461 +1001,514 @@ msgstr "buffer demasiado pequeño" msgid "Buttons And Text Colors Description" msgstr "Descripción de los botones y de los colores del texto" -#: src/slic3r/GUI/PresetHints.cpp:220 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "por el máximo perfil de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:115 +msgid "Camera" +msgstr "Cámara" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 msgid "Camera view" msgstr "Vista de cámara" -#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37 -#: src/slic3r/GUI/ProgressStatusBar.cpp:28 +#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Cancelar" -#: src/slic3r/GUI/PrintHostDialogs.cpp:156 +#: src/slic3r/GUI/PrintHostDialogs.cpp:157 msgid "Cancel selected" msgstr "Cancelar selección" -#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Cancelado" -#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231 +#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Cancelando" -#: src/slic3r/GUI/FirmwareDialog.cpp:866 +#: src/slic3r/GUI/FirmwareDialog.cpp:906 msgid "Cancelling..." msgstr "Cancelando..." -#: src/slic3r/GUI/Tab.cpp:2905 +#: src/libslic3r/Flow.cpp:55 +msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "No se puede calcular el ancho de extrusión para %1%: Variable \"%2%\" no accesible." + +#: src/slic3r/GUI/Tab.cpp:3057 msgid "Cannot overwrite a system profile." msgstr "No se puede sobre-escribir un perfil del sistema." -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:3061 msgid "Cannot overwrite an external profile." msgstr "No puedo sobre-escribir un valor externo." -#: src/libslic3r/SLAPrint.cpp:612 +#: src/libslic3r/SLAPrint.cpp:613 msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "No se puede proceder sin puntos de soporte! Añade puntos de soporte o desactiva la generación de soportes." -#: src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/Tab.cpp:1832 msgid "Capabilities" msgstr "Capacidades" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "Captura una instantánea de configuración" -#: src/libslic3r/PrintConfig.cpp:3035 +#: src/libslic3r/PrintConfig.cpp:3409 msgid "Center" msgstr "Centro" -#: src/libslic3r/PrintConfig.cpp:3036 +#: src/libslic3r/PrintConfig.cpp:3410 msgid "Center the print around the given center." msgstr "Centrar la impresión alrededor del centro dado." -#: src/slic3r/GUI/Tab.cpp:1744 +#: src/slic3r/GUI/Tab.cpp:1726 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Archivos de certificados (*.crt, *.pem)|*.crt;*.pem|Todos|*.*" -#: src/slic3r/GUI/GUI_App.cpp:683 -msgid "Change Application &Language" -msgstr "&Idioma" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:154 msgid "Change camera type (perspective, orthographic)" msgstr "Cambiar tipo de cámara (perspectiva, ortográfica)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1226 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +msgid "Change drainage hole diameter" +msgstr "Cambiar diámetro orificio de drenaje" + +#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 msgid "Change extruder" msgstr "Cambiar extrusor" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:534 msgid "Change Extruder" msgstr "Cambiar Extrusor" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/DoubleSlider.cpp:1113 +msgid "Change extruder (N/A)" +msgstr "Cambiar extrusor (N/A)" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Change Extruders" msgstr "Cambiar Extrusores" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:144 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 #, possible-c-format msgid "Change Option %s" msgstr "Cambiar opción %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3134 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 msgid "Change Part Type" msgstr "Cambiar Tipo de Pieza" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:925 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 msgid "Change point head diameter" msgstr "Cambiar diámetro de la cabeza de punta" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Change the number of instances of the selected object" msgstr "Cambiar número de instancias al objeto seleccionado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1185 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 msgid "Change type" msgstr "Cambiar tipo" -#: src/slic3r/GUI/UpdateDialogs.cpp:56 +#: src/slic3r/GUI/UpdateDialogs.cpp:53 msgid "Changelog && Download" msgstr "Registro de cambios && Descargar" -#: src/slic3r/GUI/GUI_App.cpp:378 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "Cambio de idioma de una aplicación" -#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61 +#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Comprueba si hay actualizaciones de la aplicación" -#: src/slic3r/GUI/BedShapeDialog.cpp:509 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "Comprueba si hay actualizaciones de configuración" + +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "Comprueba si hay actualizaciones" + +#: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Escoge un archivo para importar la textura de la base de impresión (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:621 +#: src/slic3r/GUI/MainFrame.cpp:775 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Elija un archivo para laminar (STL / OBJ / AMF / 3MF / PRUSA):" -#: src/slic3r/GUI/BedShapeDialog.cpp:532 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" msgstr "Escoge un archivo STL para importar el modelo de la base de impresión:" -#: src/slic3r/GUI/BedShapeDialog.cpp:464 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" msgstr "Escoge un archivo STL para importar la forma de la base:" -#: src/slic3r/GUI/GUI_App.cpp:510 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "Selecciona un archivo (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:501 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Escoja uno o mas archivos (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:490 +#: src/slic3r/GUI/ConfigWizard.cpp:896 msgid "Choose the type of firmware used by your printer." msgstr "Selecciona el tipo de firmware que usa tu impresora." -#: src/slic3r/GUI/BedShapeDialog.cpp:84 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "Circular" -#: src/slic3r/GUI/GLCanvas3D.cpp:3701 src/slic3r/GUI/GLCanvas3D.cpp:3734 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 msgid "Click right mouse button to open History" msgstr "Click con botón derecho para abrir Historial" -#: src/slic3r/GUI/GUI_ObjectList.cpp:383 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Click the icon to change the object printable property" msgstr "Click en el icono para cambiar las propiedades del objeto imprimible" -#: src/slic3r/GUI/GUI_ObjectList.cpp:377 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Click the icon to change the object settings" msgstr "Click en el icono para cambiar los ajustes del objeto" -#: src/slic3r/GUI/Plater.cpp:292 +#: src/slic3r/GUI/Plater.cpp:340 msgid "Click to edit preset" msgstr "Clic para cambiar el ajuste inicial" -#: src/libslic3r/PrintConfig.cpp:216 +#: src/libslic3r/PrintConfig.cpp:242 msgid "Clip multi-part objects" msgstr "Enlazaar objetos de varias partes" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 msgid "Clipping of view" msgstr "Recorte de la vista" -#: src/slic3r/GUI/FirmwareDialog.cpp:814 -#: src/slic3r/GUI/PrintHostDialogs.cpp:160 +#: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Cerrar" -#: src/libslic3r/PrintConfig.cpp:550 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +msgid "Closing distance" +msgstr "Distancia de cierre" + +#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 +#: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Color" -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 +#: src/slic3r/GUI/DoubleSlider.cpp:972 +msgid "Color change (\"%1%\")" +msgstr "Cambio de color (\"%1%\")" + +#: src/slic3r/GUI/DoubleSlider.cpp:973 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "Cambio de color (\"%1%\") para el Extrusor %2%" + +#: src/slic3r/GUI/GLCanvas3D.cpp:995 #, possible-c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Cambio de color para Extrusor %d en %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535 -#: src/libslic3r/GCode/PreviewData.cpp:406 +#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Color Print" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:250 msgid "Colorprint height" msgstr "Altura de Colorprint" -#: src/libslic3r/PrintConfig.cpp:942 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "Combinar el relleno cada" -#: src/libslic3r/PrintConfig.cpp:947 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "Combinar el relleno cada n capas" -#: src/slic3r/GUI/UpdateDialogs.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "Comandos" + +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "Comentario:" -#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 msgid "Compatible print profiles" msgstr "Perfiles de impresión compatibles" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:276 msgid "Compatible print profiles condition" msgstr "Condición de perfiles de impresión compatibles" -#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 msgid "Compatible printers" msgstr "Impresoras compatibles" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Compatible printers condition" msgstr "Condición de impresoras compatibles" -#: src/libslic3r/PrintConfig.cpp:268 +#: src/libslic3r/PrintConfig.cpp:294 msgid "Complete individual objects" msgstr "Completar objetos individuales" -#: src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/PrintHostDialogs.cpp:234 msgid "Completed" msgstr "Completado" -#: src/libslic3r/Zipper.cpp:57 +#: src/libslic3r/Zipper.cpp:54 msgid "compression failed" msgstr "compresión fallida" -#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "Concentrico" -#: src/slic3r/GUI/ConfigWizard.cpp:1185 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Assistant" msgstr "&Asistente de configuración" -#: src/slic3r/GUI/ConfigWizard.cpp:1182 +#: src/slic3r/GUI/ConfigWizard.cpp:2116 msgid "Configuration &Wizard" msgstr "&Ayudante de configuración" -#: src/slic3r/GUI/ConfigWizard.cpp:1184 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Assistant" msgstr "Asistente de Configuración" -#: src/libslic3r/PrintConfig.cpp:1251 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "Notas de configuración" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:104 msgid "Configuration Snapshots" msgstr "Instantáneas de la Configuración" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "Actualización de configuración" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 msgid "Configuration update is available" msgstr "Hay disponible una actualización de la Configuración" -#: src/slic3r/GUI/ConfigWizard.cpp:1181 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Configuration update is necessary to install" +msgstr "Es necesario instalar una actualización de configuración." + +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "Actualizaciones de la configuración" + +#: src/slic3r/GUI/ConfigWizard.cpp:2115 msgid "Configuration Wizard" msgstr "Asistente de configuración" -#: src/slic3r/GUI/FirmwareDialog.cpp:863 +#: src/slic3r/GUI/FirmwareDialog.cpp:903 msgid "Confirmation" msgstr "Confirmación" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1929 msgid "Connection failed." msgstr "Conexión fallida." -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/Tab.cpp:3612 msgid "Connection of the support sticks and junctions" msgstr "Conexión de las varillas de soporte y uniones" -#: src/slic3r/Utils/Duet.cpp:51 +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "La conexión a Astrobox funciona correctamente." + +#: src/slic3r/Utils/Duet.cpp:49 msgid "Connection to Duet works correctly." msgstr "La conexión con la Duet funciona correctamente." -#: src/slic3r/Utils/FlashAir.cpp:70 +#: src/slic3r/Utils/FlashAir.cpp:68 msgid "Connection to FlashAir works correctly and upload is enabled." msgstr "La conexión a FlashAir funciona correctamente y la carga está habilitada." -#: src/slic3r/Utils/OctoPrint.cpp:84 +#: src/slic3r/Utils/OctoPrint.cpp:83 msgid "Connection to OctoPrint works correctly." msgstr "La conexión a OctoPrint funciona correctamente." -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1926 msgid "Connection to printer works correctly." msgstr "La conexión con la impresora funciona correctamente." -#: src/slic3r/Utils/OctoPrint.cpp:195 +#: src/slic3r/Utils/OctoPrint.cpp:176 msgid "Connection to Prusa SL1 works correctly." msgstr "La conexión con la Prusa SL1 funciona correctamente." -#: src/libslic3r/PrintConfig.cpp:1823 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Distancia Z de contacto" -#: src/slic3r/GUI/AboutDialog.cpp:96 +#: src/slic3r/GUI/AboutDialog.cpp:261 msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Contribuciones de Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik y muchos otros." -#: src/libslic3r/PrintConfig.cpp:2433 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Controla el tipo de puente entre dos pilares adyacentes. Puede ser zig-zag, cruzado(doble zig-zag) o dinámico que cambiará automáticamente entre los dos primeros dependiendo de la distancia de los dos pilares." -#: src/slic3r/GUI/Tab.cpp:1489 +#: src/slic3r/GUI/Tab.cpp:1446 msgid "Cooling" msgstr "Enfriamiento" -#: src/libslic3r/PrintConfig.cpp:629 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "Los movimientos de enfriamiento se están acelerando gradualmente comenzando a esta velocidad." -#: src/libslic3r/PrintConfig.cpp:648 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Los movimientos de enfriamiento se están acelerando gradualmente hacia esta velocidad." -#: src/slic3r/GUI/Tab.cpp:1510 +#: src/slic3r/GUI/Tab.cpp:1467 msgid "Cooling thresholds" msgstr "Umbrales de enfriamiento" -#: src/libslic3r/PrintConfig.cpp:291 +#: src/libslic3r/PrintConfig.cpp:317 msgid "Cooling tube length" msgstr "Longitud del tubo de enfriamiento" -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:309 msgid "Cooling tube position" msgstr "Posición del tubo de refrigeración" -#: src/slic3r/GUI/Tab.cpp:2878 +#: src/slic3r/GUI/GLCanvas3D.cpp:4554 msgid "Copy" msgstr "Copiar" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "Copiar selección al portapapeles" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" -#: src/slic3r/GUI/SysInfoDialog.cpp:120 +#: src/slic3r/GUI/SysInfoDialog.cpp:154 msgid "Copy to Clipboard" msgstr "Copiar al portapapeles" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Error al copiar el código G temporal al código G de salida" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "La copia del código G tempolar al código G de salida falló. ¿Tal vez la tarjeta SD tiene la escritura bloqueada?" -#: src/slic3r/GUI/AboutDialog.cpp:92 +#: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Copyright" -#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325 +#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 msgid "Correction for expansion" msgstr "Corrección para la expansión" -#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310 +#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 msgid "Corrections" msgstr "Correcciones" -#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056 -#: src/libslic3r/PrintConfig.cpp:717 +#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 msgid "Cost" msgstr "Coste" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Cost (money)" msgstr "Coste (dinero)" -#: src/slic3r/GUI/Plater.cpp:2140 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "¡No se pudieron organizar los objetos modelo! Algunas geometrías pueden ser inválidas." -#: src/slic3r/Utils/Duet.cpp:56 +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "No se pudo conectar con Astrobox" + +#: src/slic3r/Utils/Duet.cpp:54 msgid "Could not connect to Duet" msgstr "No se pudo conectar con la Duet" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Could not connect to FlashAir" msgstr "No puedo conectar con FlashAir" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Could not connect to OctoPrint" msgstr "No puedo conectar con OctoPrint" -#: src/slic3r/Utils/OctoPrint.cpp:200 +#: src/slic3r/Utils/OctoPrint.cpp:181 msgid "Could not connect to Prusa SLA" msgstr "No se pudo conectar con la Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1689 msgid "Could not get a valid Printer Host reference" msgstr "No pude conseguir una referencia válida de gestor de impresora" -#: src/slic3r/Utils/Duet.cpp:151 +#: src/slic3r/Utils/Duet.cpp:134 msgid "Could not get resources to create a new connection" msgstr "No se pudieron obtener recursos para crear una nueva conexión" -#: src/libslic3r/PrintConfig.cpp:1872 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "Cubrir la capa de contacto superior de los soportes con bucles. Desactivado por defecto." -#: src/libslic3r/PrintConfig.cpp:73 +#: src/libslic3r/PrintConfig.cpp:89 msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." msgstr "Las ranuras de menos de dos veces el radio de cierre de huecos se rellenan durante el laminado de la malla triangular. La operación de cierre de huecos puede reducir la resolución de la impresión, por lo tanto es aconsejable mantener ese valor razonablemente bajo." -#: src/libslic3r/Zipper.cpp:61 +#: src/libslic3r/Zipper.cpp:58 msgid "CRC-32 check failed" msgstr "Comprobación con CRC-32 fallida" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "Create pad around object and ignore the support elevation" msgstr "Crear pad alrededor del objeto e ignorar la elevación del soporte" -#: src/libslic3r/PrintConfig.cpp:2460 +#: src/libslic3r/PrintConfig.cpp:2715 msgid "Critical angle" msgstr "Ángulo crítico" -#: src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Cross" msgstr "Cruzado" -#: src/libslic3r/PrintConfig.cpp:800 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "Cúbico" -#: src/slic3r/GUI/wxExtensions.cpp:2413 +#: src/slic3r/GUI/wxExtensions.cpp:704 #, possible-c-format msgid "Current mode is %s" msgstr "El modo actual es %s" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:959 msgid "Current preset is inherited from the default preset." msgstr "El preajuste fue heredado del preajuste predeterminado." -#: src/slic3r/GUI/Tab.cpp:928 +#: src/slic3r/GUI/Tab.cpp:962 #, possible-c-format msgid "Current preset is inherited from:\n\t%s" msgstr "El preajuste fue heredado de:\n%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:45 +#: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Versión actual:" @@ -1388,180 +1516,193 @@ msgstr "Versión actual:" msgid "Cusp (mm)" msgstr "Cúspide (mm)" -#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239 -#: src/libslic3r/GCode/PreviewData.cpp:175 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Personalizado" -#: src/libslic3r/PrintConfig.cpp:96 +#: src/libslic3r/PrintConfig.cpp:112 msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Un archivo de certificado CA personalizado puede ser especificado para conexiones HTTPS OctoPrint, en formato crt/pem. Si se deja en blanco, el repositorio de certificados OS CA será usado." -#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 msgid "Custom G-code" msgstr "Código G personalizado" +#: src/slic3r/GUI/DoubleSlider.cpp:1591 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "Código G personalizado en la capa actual (%1% mm)." + #: src/slic3r/GUI/wxExtensions.cpp:3500 msgid "Custom Gcode on current layer (%1% mm)." msgstr "Gcode personalizado en la capa actual (%1% mm)." -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Impresora customizada" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "Configuración personalizada de impresora" -#: src/slic3r/GUI/ConfigWizard.cpp:377 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "Nombre impresora customizada:" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 msgid "Cut" msgstr "Cortar" -#: src/slic3r/GUI/Plater.cpp:4193 +#: src/slic3r/GUI/Plater.cpp:4801 msgid "Cut by Plane" msgstr "Cortar por el Plano" -#: src/libslic3r/PrintConfig.cpp:3014 +#: src/libslic3r/PrintConfig.cpp:3388 msgid "Cut model at the given Z." msgstr "Cortar modelo a una Z dada." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Cylinder" msgstr "Cilindro" -#: src/slic3r/GUI/MainFrame.cpp:491 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "D&eseleccionar todo" -#: src/libslic3r/PrintConfig.cpp:3115 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Data directory" msgstr "Directorio de datos" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:332 msgid "Deadzone:" msgstr "Zona muerta:" -#: src/libslic3r/Zipper.cpp:55 +#: src/libslic3r/Zipper.cpp:52 msgid "decompression failed or archive is corrupted" msgstr "descompresión fallida o archivo está dañado" -#: src/slic3r/GUI/Plater.cpp:4127 +#: src/slic3r/GUI/Plater.cpp:4735 msgid "Decrease Instances" msgstr "Reducir Instancias" -#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245 -#: src/libslic3r/PrintConfig.cpp:299 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 msgid "Default" msgstr "Por defecto" -#: xs/src/slic3r/GUI/Field.cpp:98 +#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 msgid "default" msgstr "por defecto" -#: src/libslic3r/PrintConfig.cpp:730 +#: src/libslic3r/PrintConfig.cpp:777 msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them." msgstr "Ángulo base predeterminado para orientación de relleno. Se aplicará sombreado cruzado a esto. Los puentes se rellenarán utilizando la mejor dirección que Slic3r pueda detectar, por lo que esta configuración no los afecta." -#: src/libslic3r/PrintConfig.cpp:522 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "Ancho de extrusión por defecto" -#: src/slic3r/GUI/Tab.cpp:937 +#: src/slic3r/GUI/Tab.cpp:989 msgid "default filament profile" msgstr "perfil de filamento por defecto" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:335 msgid "Default filament profile" msgstr "Perfil de filamento por defecto" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:336 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Perfil de filamento por defecto asociado con el perfil de impresora actual. Al seleccionar el perfil de impresora actual se activará este perfil de filamento." -#: src/slic3r/GUI/Tab.cpp:2757 +#: src/slic3r/GUI/Tab.cpp:2903 #, possible-c-format msgid "Default preset (%s)" msgstr "Ajustes por defecto (%s)" -#: src/libslic3r/GCode/PreviewData.cpp:491 +#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 msgid "Default print color" msgstr "Color de impresión predeterminado" -#: src/slic3r/GUI/Tab.cpp:934 +#: src/slic3r/GUI/Tab.cpp:986 msgid "default print profile" msgstr "perfil de impresión por defecto" -#: src/libslic3r/PrintConfig.cpp:316 +#: src/libslic3r/PrintConfig.cpp:342 msgid "Default print profile" msgstr "Perfil de impresión por defecto" -#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341 -#: src/libslic3r/PrintConfig.cpp:2352 +#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 +#: src/libslic3r/PrintConfig.cpp:2594 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Perfil de impresión por defecto asociado con el perfil de impresora actual. Al seleccionar el perfil de impresora actual se activará este perfil de impresión." -#: src/slic3r/GUI/Tab.cpp:951 +#: src/slic3r/GUI/Tab.cpp:1003 msgid "default SLA material profile" msgstr "perfil de material de SLA por defecto" -#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351 +#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 msgid "Default SLA material profile" msgstr "Perfil de material de SLA predeterminado" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:1007 msgid "default SLA print profile" msgstr "perfil de impresión de SLA por defecto" -#: src/slic3r/GUI/Field.cpp:105 +#: src/slic3r/GUI/Field.cpp:131 msgid "default value" msgstr "valor por defecto" -#: src/slic3r/GUI/ConfigWizard.cpp:375 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "Definir un perfil de impresora personalizado" -#: src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Define la profundidad de la cavidad del pad. Establecerer a cero para deshabilitar la cavidad. Ten cuidado al habilitar esta función, ya que algunas resinas pueden producir un efecto de succión extremo dentro de la cavidad, lo que dificulta el despegado de la impresión de la lámina de la cuba." -#: src/slic3r/GUI/GUI_ObjectList.cpp:237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:344 msgid "degenerate facets" msgstr "facetas degeneradas" -#: src/libslic3r/PrintConfig.cpp:608 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "Retardo tras la descarga" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "delete" msgstr "borra" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891 -#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Delete" msgstr "Borra" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "Borrar &todo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Delete All" msgstr "Borrar todo" -#: src/slic3r/GUI/Plater.cpp:3298 +#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 msgid "Delete all" msgstr "Eliminar todo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 msgid "Delete All Instances from Object" msgstr "Eliminar todas las instancias del Objeto" -#: src/slic3r/GUI/wxExtensions.cpp:3465 +#: src/slic3r/GUI/DoubleSlider.cpp:1488 msgid "Delete color change" msgstr "Eliminar cambio de color" @@ -1569,171 +1710,188 @@ msgstr "Eliminar cambio de color" msgid "Delete color change for Extruder %1%" msgstr "Eliminar cambio de color para Extrusor %1%" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 msgid "Delete color change marker for current layer" msgstr "Eliminar marcador de cambio de color para la capa actual" -#: src/slic3r/GUI/wxExtensions.cpp:3467 +#: src/slic3r/GUI/DoubleSlider.cpp:1491 msgid "Delete custom G-code" msgstr "Eliminar código G personalizado" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +msgid "Delete drainage hole" +msgstr "Eliminar orificio de drenaje" + #: src/slic3r/GUI/wxExtensions.cpp:3095 msgid "Delete extruder change to \"%1%\"" msgstr "Borrar cambio de extrusor a \"%1%\"" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1898 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 msgid "Delete Height Range" msgstr "Eliminar Rango de Alturas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1876 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 msgid "Delete Instance" msgstr "Eliminar Instancia" -#: src/slic3r/GUI/Plater.cpp:2592 +#: src/slic3r/GUI/Plater.cpp:2696 msgid "Delete Object" msgstr "Eliminar Objeto" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:100 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 #, possible-c-format msgid "Delete Option %s" msgstr "Eliminar Opción %s" -#: src/slic3r/GUI/wxExtensions.cpp:3466 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Delete pause print" msgstr "Eliminar pausa de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Delete selected" msgstr "Eliminar selección" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 msgid "Delete Selected" msgstr "Eliminar Selección" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2303 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 msgid "Delete Selected Item" msgstr "Eliminar Objeto Seleccionado" -#: src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Plater.cpp:4692 msgid "Delete Selected Objects" msgstr "Eliminar Objetos Seleccionados" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1782 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 msgid "Delete Settings" msgstr "Eliminar Ajustes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1857 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 msgid "Delete Subobject" msgstr "Eliminar Subobjeto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:720 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 msgid "Delete support point" msgstr "Borra punto de apoyo" -#: src/slic3r/GUI/Tab.cpp:131 +#: src/slic3r/GUI/Tab.cpp:136 msgid "Delete this preset" msgstr "Borra este ajuste" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/DoubleSlider.cpp:1001 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "Eliminar marca de verificación - Click izquierdo o presionar tecla \"-\"" + +#: src/slic3r/GUI/DoubleSlider.cpp:1489 +msgid "Delete tool change" +msgstr "Eliminar cambio de herramienta" + +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "Borra todos los objetos" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "Borrar la selección actual" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 +#: src/libslic3r/PrintConfig.cpp:2495 msgid "Density" msgstr "Densidad" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Densidad de relleno interior, expresado en el rango 0% - 100%." -#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584 -#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086 -#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 +#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 msgid "Dependencies" msgstr "Dependencias" -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "Velocidad de deretracción" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "Deseleccionar todo" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Deselect by rectangle" msgstr "Deseleccionar mediante rectángulo" -#: src/slic3r/GUI/MainFrame.cpp:492 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "Deseleccionar todos los objetos" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "Detectar perímetros con puentes" -#: src/libslic3r/PrintConfig.cpp:1988 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)." msgstr "Detecta muros de ancho único (partes donde dos extrusiones no se ajustan y tenemos que colapsarlas en un solo rastro)." -#: src/libslic3r/PrintConfig.cpp:1986 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "Detecta paredes delgadas" -#: src/libslic3r/PrintConfig.cpp:3083 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Detectadas piezas desconectadas en el(los) modelo(s) dado(s) y divídido(s) en objetos separados." -#: src/slic3r/GUI/Plater.cpp:1713 +#: src/slic3r/GUI/Plater.cpp:2352 msgid "Detected advanced data" msgstr "Datos avanzados detectados" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:306 msgid "Device:" msgstr "Dispositivo:" -#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "Diámetro" -#: src/libslic3r/PrintConfig.cpp:2443 +#: src/libslic3r/PrintConfig.cpp:2685 msgid "Diameter in mm of the pillar base" msgstr "Diámetro en mm del pilar de la base" -#: src/libslic3r/PrintConfig.cpp:2399 +#: src/libslic3r/PrintConfig.cpp:2641 msgid "Diameter in mm of the support pillars" msgstr "Diámetro en mm de los pilares de soporte" -#: src/libslic3r/PrintConfig.cpp:2371 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Diameter of the pointing side of the head" msgstr "Diámetro de la parte en punta de la cabeza" -#: src/slic3r/GUI/BedShapeDialog.cpp:89 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." msgstr "Diámetro de la base de impresión. Se supone que el origen (0,0) está ubicado en el centro." -#: src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "Dirección" -#: src/libslic3r/PrintConfig.cpp:323 +#: src/libslic3r/PrintConfig.cpp:349 msgid "Disable fan for the first" msgstr "Desactivar ventilador para la primera" -#: src/libslic3r/PrintConfig.cpp:1280 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Desactiva la retracción cuando la trayectoria de desplazamiento no supera los perímetros de la capa superior (y, por lo tanto, cualquier goteo probablemente será invisible)." -#: src/slic3r/GUI/wxExtensions.cpp:3078 +#: src/slic3r/GUI/DoubleSlider.cpp:925 msgid "Discard all custom changes" msgstr "Descartar todos los cambios personalizados" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 msgid "Discard changes" msgstr "Descartar los cambios" -#: src/slic3r/GUI/Tab.cpp:2784 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 msgid "Discard changes and continue anyway?" msgstr "¿Descartar los cambios y continuar de todos modos?" @@ -1741,96 +1899,112 @@ msgstr "¿Descartar los cambios y continuar de todos modos?" msgid "Displacement (mm)" msgstr "Desplazamiento (mm)" -#: src/slic3r/GUI/Tab.cpp:2041 +#: src/slic3r/GUI/Tab.cpp:2076 msgid "Display" msgstr "Pantalla" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "Altura de la pantalla" -#: src/libslic3r/PrintConfig.cpp:2319 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "Espejo horizontal de la pantalla" -#: src/libslic3r/PrintConfig.cpp:2227 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "Orientación de la pantalla" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "Mostrar la ventana de la cola de carga del host de impresión" -#: src/libslic3r/PrintConfig.cpp:2326 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "Espejo vertical de la pantalla" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "Anchura de la pantalla" -#: src/libslic3r/PrintConfig.cpp:341 +#: src/libslic3r/PrintConfig.cpp:367 msgid "Distance between copies" msgstr "Distancia entre copias" -#: src/libslic3r/PrintConfig.cpp:1610 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Distancia entre falda y objeto(s). Ajuste esto a cero para unir la falda a los objetos y obtener un borde para una mejor adhesión." -#: src/libslic3r/PrintConfig.cpp:2752 +#: src/libslic3r/PrintConfig.cpp:2873 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Distancia entre dos palitos de apoyo entre la pieza y la base generada." -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "Distancia del objeto" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Distancia de la coordenada del código G de 0,0 de la esquina frontal izquierda del rectángulo." -#: src/libslic3r/PrintConfig.cpp:285 +#: src/libslic3r/PrintConfig.cpp:310 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Distancia desde el centro del tubo de enfriado a la punta del extrusor." -#: src/libslic3r/PrintConfig.cpp:1338 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Distancia de la punta del extrusor desde la posición donde el filamento es colocado cuando se descarga. Esto debería coincidir con el valor en el firmware de la impresora." -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:368 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Distancia utilizada para la función de organización automática de la base." -#: src/libslic3r/PrintConfig.cpp:3097 +#: src/libslic3r/PrintConfig.cpp:3471 msgid "Do not fail if a file supplied to --load does not exist." msgstr "No fallar si el archivo suministrado para --load no existe." -#: src/libslic3r/PrintConfig.cpp:3041 +#: src/libslic3r/PrintConfig.cpp:3415 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "No reorganizar los modelos dados antes de fusionar y mantener sus coordenadas XY originales." -#: src/slic3r/GUI/Field.cpp:206 +#: src/slic3r/GUI/Field.cpp:235 #, possible-c-format msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." msgstr "¿Quieres decir %s%% en vez de %s %s?\nEscoge SI si deseas cambiar este valor a %s%%,\no NO si estás seguro que %s %s es el valor correcto." -#: src/slic3r/GUI/GUI_App.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "¿Deseas seleccionar automáticamente filamentos predeterminados?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "¿Deseas seleccionar automáticamente materiales predeterminados?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1893 +msgid "Do you want to delete all saved tool changes?" +msgstr "¿Desea eliminar todos los cambios de herramienta guardados?" + +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "¿Deseas continuar?" +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "Do you want to retry" +msgstr "Quieres volver a intentarlo" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 msgid "Do you want to save your manually edited support points?" msgstr "¿Deseas guardar tus puntos de soporte editados manualmente?" -#: src/libslic3r/PrintConfig.cpp:3040 +#: src/libslic3r/PrintConfig.cpp:3414 msgid "Don't arrange" msgstr "No organizar" -#: src/slic3r/GUI/UpdateDialogs.cpp:55 +#: src/slic3r/GUI/UpdateDialogs.cpp:71 msgid "Don't notify about new releases any more" msgstr "No quiero recibir avisos de nuevas versiones" -#: src/libslic3r/PrintConfig.cpp:333 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Don't support bridges" msgstr "No soportar puentes" @@ -1838,141 +2012,169 @@ msgstr "No soportar puentes" msgid "Downgrade" msgstr "Volver a una versión anterior" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Drag" msgstr "Arrastra" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:340 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:355 +#: src/libslic3r/SLAPrintSteps.cpp:42 +msgid "Drilling holes into model." +msgstr "Taladrando agujeros en el modelo." + +#: src/libslic3r/SLAPrintSteps.cpp:163 +msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." +msgstr "Perforación de agujeros en la malla fallida. Esto generalmente es causado por un modelo roto. Intenta arreglarlo primero." + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:337 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:349 msgid "Drop to bed" msgstr "Colocar en la Cama" -#: src/libslic3r/PrintConfig.cpp:3044 +#: src/libslic3r/PrintConfig.cpp:3418 msgid "Duplicate" msgstr "Duplicar" -#: src/libslic3r/PrintConfig.cpp:3049 +#: src/libslic3r/PrintConfig.cpp:3423 msgid "Duplicate by grid" msgstr "Duplicar por cuadrícula" -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "Durante las otras capas, el ventilador" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2660 msgid "Dynamic" msgstr "Dinámico" -#: src/slic3r/GUI/MainFrame.cpp:708 +#: src/slic3r/GUI/MainFrame.cpp:751 msgid "E&xport" msgstr "E&xportar" -#: src/slic3r/GUI/GUI_ObjectList.cpp:238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:345 msgid "edges fixed" msgstr "esquimas reparadas" -#: src/slic3r/GUI/wxExtensions.cpp:3460 +#: src/slic3r/GUI/DoubleSlider.cpp:1480 msgid "Edit color" msgstr "Editar color" -#: src/slic3r/GUI/wxExtensions.cpp:3462 +#: src/slic3r/GUI/DoubleSlider.cpp:933 +msgid "Edit current color - Right click the colored slider segment" +msgstr "Editar color actual - Clic derecho en el segmento de color deslizante " + +#: src/slic3r/GUI/DoubleSlider.cpp:1482 msgid "Edit custom G-code" msgstr "Editar código G personalizado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2690 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 msgid "Edit Height Range" msgstr "Editar Rango de Alturas" -#: src/slic3r/GUI/wxExtensions.cpp:3461 +#: src/slic3r/GUI/DoubleSlider.cpp:1481 msgid "Edit pause print message" msgstr "Editar mensaje de pausa de impresión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:373 +#: src/slic3r/GUI/DoubleSlider.cpp:1003 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "Editar la marca - Ctrl+ Click izquierdo" + +#: src/slic3r/GUI/DoubleSlider.cpp:1004 +msgid "Edit tick mark - Right click" +msgstr "Editar marca de verificación - Clic derecho" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 msgid "Editing" msgstr "Edición" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:375 msgid "Elephant foot compensation" msgstr "Compensación del pie de elefante" -#: src/libslic3r/SLAPrint.cpp:678 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "Ancho mínimo del pie de elefante" + +#: src/libslic3r/SLAPrint.cpp:625 msgid "Elevation is too low for object. Use the \"Pad around object\" feature to print the object without elevation." msgstr "Elevación demasiado baja para el objeto. Utiliza la característica \"Pad alrededor del objeto\" para imprimir el objeto sin elevación." -#: src/libslic3r/PrintConfig.cpp:1044 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode." msgstr "Emitir M73 P[porcentaje impreso] R[tiempo restante en minutos] en intervalos de 1 minuto en el código G para permitir que el firmware muestre el tiempo restante preciso. A partir de ahora solo el firmware Prusa i3 MK3 reconoce M73. También el firmware i3 MK3 es compatible con M73 Qxx Sxx para el modo silencioso." -#: src/libslic3r/GCode.cpp:628 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "Capas vacías detectadas, la salida no sería imprimible." -#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286 -#: src/libslic3r/PrintConfig.cpp:2099 +#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Habilitar" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:303 msgid "Enable auto cooling" msgstr "Habilitar el enfriamiento automático" -#: src/libslic3r/PrintConfig.cpp:539 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" msgstr "Habilitar ventilador si el tiempo de impresión de la capa está por debajo" -#: src/libslic3r/PrintConfig.cpp:2321 +#: src/libslic3r/PrintConfig.cpp:2899 +msgid "Enable hollowing" +msgstr "Habilitar vaciado" + +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "Activar espejo horizontal de salida de imágenes" -#: src/libslic3r/PrintConfig.cpp:1781 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "Habilite la generación de material de soporte." -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:966 msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." msgstr "Habilita esto para añadir los comentarios al código G, etiquetando movimientos de impresión con el objeto al que pertenecen, lo que es útil para el plugin Octoprint CancelObject. Esta configuración NO es compatible con la configuración de Single Extruder Multi Material y Limpiar en Objeto / Limpiar en Relleno." -#: src/libslic3r/PrintConfig.cpp:881 +#: src/libslic3r/PrintConfig.cpp:929 msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." msgstr "Habilítelo para obtener un archivo de código G comentado, con cada línea explicada por un texto descriptivo. Si imprime desde una tarjeta SD, el peso adicional del archivo podría ralentizar su firmware." -#: src/libslic3r/PrintConfig.cpp:2085 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "Habilitar la función de altura de capa variable" -#: src/libslic3r/PrintConfig.cpp:2328 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "Activar espejo vertical de salida de imágenes" -#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955 -#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "Código G final" -#: src/libslic3r/PrintConfig.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "Forzar soportes para la primera" -#: src/libslic3r/PrintConfig.cpp:1845 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" msgstr "Aplicar soportes para las primeras n capas" -#: src/slic3r/GUI/PrintHostDialogs.cpp:197 -#: src/slic3r/GUI/PrintHostDialogs.cpp:228 +#: src/slic3r/GUI/PrintHostDialogs.cpp:198 +#: src/slic3r/GUI/PrintHostDialogs.cpp:229 msgid "Enqueued" msgstr "En cola" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" msgstr "Asegurar el espesor de la carcasa vertical" -#: src/slic3r/GUI/wxExtensions.cpp:3499 +#: src/slic3r/GUI/DoubleSlider.cpp:1590 msgid "Enter custom G-code used on current layer" msgstr "Ingresa el código G personalizado utilizado en la capa actual" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Enter new name" msgstr "Introduce un nuevo nombre" @@ -1980,262 +2182,292 @@ msgstr "Introduce un nuevo nombre" msgid "Enter short message shown on Printer display during pause print" msgstr "Ingresa el mensaje corto que se muestra en la pantalla de la impresora durante la pausa de impresión" -#: src/slic3r/GUI/ConfigWizard.cpp:622 +#: src/slic3r/GUI/DoubleSlider.cpp:1606 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "Introduce un mensaje corto a mostrar en la pantalla de la impresora cuando la impresión se ponga en pausa" + +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Introduce la temperatura de la base necesaria para que adhiera el filamento a la base calefactable." -#: src/slic3r/GUI/ConfigWizard.cpp:570 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Enter the diameter of your filament." msgstr "Introduce el diámetro de tu filamento." -#: src/slic3r/GUI/ConfigWizard.cpp:557 +#: src/slic3r/GUI/ConfigWizard.cpp:967 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Introduce el diámetro de la boquilla del fusor de tu impresora." -#: src/slic3r/GUI/ConfigWizard.cpp:608 +#: src/slic3r/GUI/DoubleSlider.cpp:1622 +msgid "Enter the height you want to jump to" +msgstr "Introduce la altura a la que deseas saltar" + +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "Enter the temperature needed for extruding your filament." msgstr "Introduce la temperatura necesaria para extruir tu filamento." -#: src/libslic3r/PrintConfig.cpp:718 +#: src/libslic3r/PrintConfig.cpp:761 msgid "Enter your filament cost per kg here. This is only for statistical information." msgstr "Ingrese su coste del filamento por kg aquí. Esto es solo para información estadística." -#: src/libslic3r/PrintConfig.cpp:686 +#: src/libslic3r/PrintConfig.cpp:718 msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement." msgstr "Ingrese su densidad de filamento aquí. Esto es solo para información estadística. Una forma decente es pesar una longitud conocida de filamento y calcular la relación entre la longitud y el volumen. Lo mejor es calcular el volumen directamente a través del desplazamiento." -#: src/libslic3r/PrintConfig.cpp:678 +#: src/libslic3r/PrintConfig.cpp:710 msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Ingrese el diámetro de su fila aquí. Se requiere una buena precisión, por lo tanto, use un calibre y realice múltiples mediciones a lo largo del filamento, luego calcule el promedio." -#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Error" -#: src/slic3r/GUI/FirmwareDialog.cpp:608 +#: src/slic3r/GUI/FirmwareDialog.cpp:645 #, possible-c-format msgid "Error accessing port at %s: %s" msgstr "Error al acceder al puerto en %s: %s" -#: src/slic3r/GUI/Plater.cpp:3593 +#: src/slic3r/GUI/Plater.cpp:3441 +msgid "Error during reload" +msgstr "Error al recargar" + +#: src/slic3r/GUI/Plater.cpp:5073 #, possible-c-format msgid "Error exporting 3MF file %s" msgstr "Error al exportar archivo 3MF %s" -#: src/slic3r/GUI/Plater.cpp:3564 +#: src/slic3r/GUI/Plater.cpp:5025 #, possible-c-format msgid "Error exporting AMF file %s" msgstr "Error exportando archivo AMF %s" -#: src/slic3r/GUI/PrintHostDialogs.cpp:153 +#: src/slic3r/GUI/PrintHostDialogs.cpp:154 msgid "Error Message" msgstr "Mensaje de Error" -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:118 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Error al analizar el archivo de configuración de PrusaSlicer, probablemente está dañado. Intenta eliminar manualmente el archivo para recuperarse del error. Tus perfiles de usuario no se verán afectados." -#: src/slic3r/GUI/PrintHostDialogs.cpp:271 +#: src/slic3r/GUI/PrintHostDialogs.cpp:272 msgid "Error uploading to print host:" msgstr "Error al cargar a la impresora:" -#: src/libslic3r/Zipper.cpp:105 +#: src/libslic3r/Zipper.cpp:102 msgid "Error with zip archive" msgstr "Error con el archivo ZIP" -#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1443 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 msgid "Error!" msgstr "¡Error!" -#: src/slic3r/GUI/BedShapeDialog.cpp:482 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "Error! Modelo inválido" -#: src/slic3r/GUI/FirmwareDialog.cpp:610 +#: src/slic3r/GUI/FirmwareDialog.cpp:647 #, possible-c-format msgid "Error: %s" msgstr "Error: %s" -#: src/slic3r/GUI/Plater.cpp:1503 +#: src/slic3r/GUI/Job.hpp:123 msgid "ERROR: not enough resources to execute a new job." msgstr "ERROR: no hay suficientes recursos para ejecutar el trabajo." -#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028 -#: src/slic3r/GUI/Plater.cpp:1070 +#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 +#: src/slic3r/GUI/Plater.cpp:1255 msgid "Estimated printing time" msgstr "Tiempo estimado de impresión" -#: src/slic3r/GUI/Plater.cpp:424 +#: src/slic3r/GUI/Plater.cpp:499 msgid "Everywhere" msgstr "En todos los sitios" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." msgstr "a excepción de las %1% primeras capas." -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "a excepción de la primera capa." -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1373 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "%1%=%2% mm excesivos para ser imprimible con un nozzle de diámetro de %3% mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 #, possible-c-format msgid "Exit %s" msgstr "Salir %s" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:361 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Opción experimental para evitar que se genere material de soporte debajo de las áreas con puente." -#: src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan." msgstr "Opción experimental para ajustar el flujo para salientes (se usará el flujo del puente), para aplicar la velocidad del puente a ellos y habilitar el ventilador." -#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "Experto" -#: src/slic3r/GUI/ConfigWizard.cpp:787 +#: src/slic3r/GUI/ConfigWizard.cpp:823 msgid "Expert mode" msgstr "Modo experto" -#: src/slic3r/GUI/GUI_App.cpp:676 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "Modo de visualización experto" -#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821 +#: src/slic3r/GUI/Plater.cpp:5555 msgid "Export" msgstr "Exportar" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "Exportar &Configuración" -#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 msgid "Export &G-code" msgstr "Exportar &código G" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Exportar &trayectorias de herramientas como OBJ" -#: src/libslic3r/PrintConfig.cpp:2949 +#: src/libslic3r/PrintConfig.cpp:3323 msgid "Export 3MF" msgstr "Exportar 3MF" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "Exportar todos los preajustes al archivo" -#: src/libslic3r/PrintConfig.cpp:2954 +#: src/libslic3r/PrintConfig.cpp:3328 msgid "Export AMF" msgstr "Exportar AMF" -#: src/slic3r/GUI/Plater.cpp:1932 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Export AMF file:" msgstr "Exportar archivo AMF:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 msgid "Export as STL" msgstr "Exportar como STL" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "Exportar configuración" + +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "Exportar &Conjunto de Ajustes" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "Exportar la configuración actual al archivo" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "Exportar plataforma actual como AMF" -#: src/slic3r/GUI/MainFrame.cpp:362 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "Exportar plataforma actual como código G" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "Exportar plataforma actual como STL" -#: src/slic3r/GUI/MainFrame.cpp:368 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" msgstr "Exportar la plataforma actual como STL incluyendo soportes" -#: src/slic3r/GUI/Plater.cpp:2722 +#: src/slic3r/GUI/Plater.cpp:3673 msgid "Export failed" msgstr "Error al exportar" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733 -#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964 +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "Exportar nombres de ruta completos de las fuentes de los modelos y de piezas a archivos 3mf y amf" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 +#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 msgid "Export G-code" msgstr "Exportar código G" -#: src/libslic3r/PrintConfig.cpp:2931 +#: src/libslic3r/PrintConfig.cpp:3305 msgid "Export OBJ" msgstr "Exportar OBJ" -#: src/slic3r/GUI/Plater.cpp:2531 +#: src/slic3r/GUI/Plater.cpp:2594 msgid "Export OBJ file:" msgstr "Exportar archivo OBJ:" -#: src/slic3r/Utils/FixModelByWin10.cpp:368 +#: src/slic3r/Utils/FixModelByWin10.cpp:369 +#: src/slic3r/Utils/FixModelByWin10.cpp:374 msgid "Export of a temporary 3mf file failed" msgstr "La exportación de un archivo temporal de 3mf falló" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" msgstr "Exportar plataforma como &AMF" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" msgstr "Exportar plataforma como &STL" -#: src/slic3r/GUI/MainFrame.cpp:481 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" msgstr "Exportar plataforma como STL &incluyendo soportes" -#: src/libslic3r/PrintConfig.cpp:2943 +#: src/libslic3r/PrintConfig.cpp:3317 msgid "Export SLA" msgstr "Exportar SLA" -#: src/libslic3r/PrintConfig.cpp:2959 +#: src/slic3r/GUI/Preferences.cpp:73 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "Exportar nombres de ruta completos de las fuentes a 3mf y amf" + +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Export STL" msgstr "Exportar STL" -#: src/slic3r/GUI/Plater.cpp:1925 +#: src/slic3r/GUI/Plater.cpp:2575 msgid "Export STL file:" msgstr "Exportar archivo STL:" -#: src/libslic3r/PrintConfig.cpp:2950 +#: src/libslic3r/PrintConfig.cpp:3324 msgid "Export the model(s) as 3MF." msgstr "Exportar el(los) objeto(s) como 3MF." -#: src/libslic3r/PrintConfig.cpp:2955 +#: src/libslic3r/PrintConfig.cpp:3329 msgid "Export the model(s) as AMF." msgstr "Exportar el(los) objeto(s) como AMF." -#: src/libslic3r/PrintConfig.cpp:2932 +#: src/libslic3r/PrintConfig.cpp:3306 msgid "Export the model(s) as OBJ." msgstr "Exportar el(los) objeto(s) como OBJ." -#: src/libslic3r/PrintConfig.cpp:2960 +#: src/libslic3r/PrintConfig.cpp:3334 msgid "Export the model(s) as STL." msgstr "Exportar el(los) objeto(s) como STL." -#: src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Export the selected object as STL file" msgstr "Exportar el objeto seleccionado como archivo STL" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/Plater.cpp:877 +msgid "Export to SD card / Flash drive" +msgstr "Exportar a tarjeta SD / tarjeta Flash" + +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" msgstr "Exportar trayectorias de herramientas como OBJ" -#: src/libslic3r/Print.cpp:1517 +#: src/libslic3r/Print.cpp:1634 msgid "Exporting G-code" msgstr "Exportando código G" @@ -2248,139 +2480,143 @@ msgstr "Exportando el modelo..." msgid "Exporting source model" msgstr "Exportando el modelo original" -#: src/libslic3r/SLAPrint.cpp:700 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "Tiempo de exposición inicial fuera de los límites del perfil de impresión." -#: src/slic3r/GUI/Tab.cpp:3306 +#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 msgid "Exposure" msgstr "Exposición" -#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311 +#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 msgid "Exposure time" msgstr "Tiempo de exposición" -#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Perímetro externo" -#: src/slic3r/GUI/PresetHints.cpp:153 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" msgstr "perímetros externos" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" msgstr "Perímetros externos" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" msgstr "Perímetros externos primero" -#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "Longitud adicional en el reinicio" -#: src/libslic3r/PrintConfig.cpp:1321 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "Distancia de carga adicional" -#: src/libslic3r/PrintConfig.cpp:445 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "Perímetros adicionales si es necesario" -#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479 -#: src/libslic3r/PrintConfig.cpp:455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extrusor" -#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475 +#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 +#: src/libslic3r/GCode/PreviewData.cpp:445 #, possible-c-format msgid "Extruder %d" msgstr "Extrusor %d" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/DoubleSlider.cpp:978 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "El Extrusor (herramienta) se cambia al Extrusor \"%1%\"" + +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Extruder and Bed Temperatures" msgstr "Temperaturas del Extrusor y de la Base" -#: src/slic3r/GUI/WipeTowerDialog.cpp:226 +#: src/slic3r/GUI/WipeTowerDialog.cpp:255 msgid "Extruder changed to" msgstr "El extrusor cambia a" -#: src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/Tab.cpp:1235 msgid "Extruder clearance (mm)" msgstr "Distancia libre del extrusor (mm)" -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "Color del extrusor" -#: src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "Offset del extrusor" -#: src/libslic3r/PrintConfig.cpp:863 +#: src/libslic3r/PrintConfig.cpp:911 msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file." msgstr "Temperatura del extrusor para la primera capa. Si desea controlar la temperatura manualmente durante la impresión, configúrela en cero para desactivar los comandos de control de temperatura en el archivo de salida." -#: src/libslic3r/PrintConfig.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Temperatura del extrusor para capas después del primera. Ajuste esto a cero para desactivar los comandos de control de temperatura en la salida." -#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72 -#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119 -#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456 -#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340 -#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852 -#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151 -#: src/libslic3r/PrintConfig.cpp:2159 +#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "Extrusores" -#: src/libslic3r/PrintConfig.cpp:507 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "Eje de extrusión" -#: src/libslic3r/PrintConfig.cpp:513 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "Multiplicador de extrusión" -#: src/slic3r/GUI/ConfigWizard.cpp:612 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 msgid "Extrusion Temperature:" msgstr "Temperatura de Extrusión:" -#: src/slic3r/GUI/Tab.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:1207 msgid "Extrusion width" msgstr "Ancho de extrusión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514 -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523 -#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962 -#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "Ancho de Extrusión" -#: src/slic3r/GUI/Plater.cpp:139 +#: src/slic3r/GUI/Plater.cpp:164 msgid "Facets" msgstr "Facetas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "facets added" msgstr "facetas añadidas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:239 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "facets removed" msgstr "facetas retiradas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:241 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets reversed" msgstr "facetas invertidas" -#: src/libslic3r/PrintConfig.cpp:2302 +#: src/libslic3r/PrintConfig.cpp:2508 msgid "Faded layers" msgstr "Capas descoloridas" -#: src/libslic3r/Zipper.cpp:47 +#: src/libslic3r/Zipper.cpp:44 msgid "failed finding central directory" msgstr "búsqueda de directorio central fallida" @@ -2388,181 +2624,181 @@ msgstr "búsqueda de directorio central fallida" msgid "Failed loading the input model." msgstr "No se pudo cargar el modelo de entrada." -#: src/libslic3r/PrintBase.cpp:65 +#: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." msgstr "Error al procesar la plantilla output_filename_format." -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "Ventilador" -#: src/slic3r/GUI/Tab.cpp:1501 +#: src/slic3r/GUI/Tab.cpp:1458 msgid "Fan settings" msgstr "Configuración del ventilador" -#: src/slic3r/GUI/Tab.cpp:1502 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" msgstr "Velocidad del ventilador" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" msgstr "Velocidad Ventilador (%)" -#: src/libslic3r/PrintConfig.cpp:2240 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "Rápida" -#: src/libslic3r/PrintConfig.cpp:2241 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "Inclinación rápida" -#: src/slic3r/GUI/GUI_App.cpp:135 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "Error fatal" -#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/libslic3r/GCode/PreviewData.cpp:394 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Tipo de función" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 msgid "Feature types" msgstr "Tipos de funciones" -#: src/slic3r/GUI/ConfigWizard.cpp:1488 +#: src/slic3r/GUI/ConfigWizard.cpp:1528 msgid "FFF Technology Printers" msgstr "Impresoras de Tecnología FFF" -#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470 -#: src/slic3r/GUI/Tab.cpp:1471 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "Filamento" -#: src/slic3r/GUI/Preset.cpp:1275 +#: src/slic3r/GUI/Preset.cpp:1472 msgid "filament" msgstr "filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Filament and Nozzle Diameters" msgstr "Filamento y diámetros de boquilla" -#: src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/ConfigWizard.cpp:984 msgid "Filament Diameter:" msgstr "Diámetro del filamento:" -#: src/libslic3r/PrintConfig.cpp:620 +#: src/libslic3r/PrintConfig.cpp:651 msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." msgstr "El filamento se enfría al ser movido hacia adelante y hacia atrás en los tubos de enfriamiento. Especifica el número deseado de estos movimientos." -#: src/libslic3r/PrintConfig.cpp:654 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "Tiempo de carga de filamento" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "Notas del filamento" -#: src/slic3r/GUI/Tab.cpp:1502 src/slic3r/GUI/Tab.cpp:1557 +#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 msgid "Filament Overrides" msgstr "Anulaciones de filamentos" -#: src/libslic3r/PrintConfig.cpp:1312 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "Posición de aparcar el filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filament Profiles Selection" msgstr "Selección Perfiles de Filamento" -#: src/slic3r/GUI/Tab.cpp:1516 +#: src/slic3r/GUI/Tab.cpp:1473 msgid "Filament properties" msgstr "Propiedades del filamento" -#: src/slic3r/GUI/Tab.hpp:335 +#: src/slic3r/GUI/Tab.hpp:354 msgid "Filament Settings" msgstr "Configuración del filamento" -#: src/libslic3r/PrintConfig.cpp:694 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "Tipo de filamento" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "Tiempo de descarga del filamento" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 msgid "filaments" msgstr "filamentos" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filaments" msgstr "Filamentos" -#: src/libslic3r/Zipper.cpp:75 +#: src/libslic3r/Zipper.cpp:72 msgid "file close failed" msgstr "cierre del archivo fallido" -#: src/libslic3r/Zipper.cpp:69 +#: src/libslic3r/Zipper.cpp:66 msgid "file create failed" msgstr "creación del archivo fallida" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:793 msgid "File Not Found" msgstr "Archivo no encontrado" -#: src/libslic3r/Zipper.cpp:89 +#: src/libslic3r/Zipper.cpp:86 msgid "file not found" msgstr "archivo no encontrado" -#: src/libslic3r/Zipper.cpp:67 +#: src/libslic3r/Zipper.cpp:64 msgid "file open failed" msgstr "apertura de archivo fallida" -#: src/libslic3r/Zipper.cpp:73 +#: src/libslic3r/Zipper.cpp:70 msgid "file read failed" msgstr "lectura del archivo fallida" -#: src/libslic3r/Zipper.cpp:77 +#: src/libslic3r/Zipper.cpp:74 msgid "file seek failed" msgstr "búsqueda de archivo fallida" -#: src/libslic3r/Zipper.cpp:79 +#: src/libslic3r/Zipper.cpp:76 msgid "file stat failed" msgstr "estadística de archivos fallida" -#: src/libslic3r/Zipper.cpp:39 +#: src/libslic3r/Zipper.cpp:36 msgid "file too large" msgstr "archivo demasiado grande" -#: src/libslic3r/Zipper.cpp:71 +#: src/libslic3r/Zipper.cpp:68 msgid "file write failed" msgstr "escritura del archivo fallida" -#: src/slic3r/GUI/PrintHostDialogs.cpp:152 +#: src/slic3r/GUI/PrintHostDialogs.cpp:153 msgid "Filename" msgstr "Nombre de archivo" -#: src/libslic3r/PrintConfig.cpp:728 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "Ángulo de relleno" -#: src/libslic3r/PrintConfig.cpp:742 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "Densidad de relleno" -#: src/libslic3r/PrintConfig.cpp:779 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "Patrón de relleno" -#: src/libslic3r/PrintConfig.cpp:410 +#: src/libslic3r/PrintConfig.cpp:437 msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells." msgstr "Patrón de relleno para la tapa inferior. Esto sólo afecta a la capa inferior externa visible, y no a las paredes adyacentes." -#: src/libslic3r/PrintConfig.cpp:781 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "Patrón de relleno para el relleno general de baja densidad." -#: src/libslic3r/PrintConfig.cpp:390 +#: src/libslic3r/PrintConfig.cpp:417 msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells." msgstr "Patrón de relleno para el relleno superior. Esto solo afecta a la capa superior visible, y no a sus capas sólidas adyacentes." @@ -2570,88 +2806,88 @@ msgstr "Patrón de relleno para el relleno superior. Esto solo afecta a la capa msgid "Finished" msgstr "Terminado" -#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920 +#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:740 +#: src/slic3r/GUI/FirmwareDialog.cpp:777 msgid "Firmware flasher" msgstr "Flasheador de firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:765 +#: src/slic3r/GUI/FirmwareDialog.cpp:802 msgid "Firmware image:" msgstr "Imagen del firmware:" -#: src/slic3r/GUI/Tab.cpp:2431 +#: src/slic3r/GUI/Tab.cpp:2573 msgid "Firmware Retraction" msgstr "Retracción del firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:486 +#: src/slic3r/GUI/ConfigWizard.cpp:892 msgid "Firmware Type" msgstr "Tipo de Firmware" -#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821 -#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "Primera capa" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "Altura de la primera capa" -#: src/libslic3r/Print.cpp:1328 +#: src/libslic3r/Print.cpp:1418 msgid "First layer height can't be greater than nozzle diameter" msgstr "La altura de primera capa no puede ser mayor que el diametro de la boquilla" -#: src/libslic3r/PrintConfig.cpp:852 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "Velocidad de la primera capa" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "Primera capa volumétrica" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 msgid "Fix through the Netfabb" msgstr "Reparar mediante Netfabb" -#: src/slic3r/GUI/Plater.cpp:3072 +#: src/slic3r/GUI/Plater.cpp:3482 msgid "Fix Throught NetFabb" msgstr "Reparar mediante NetFabb" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" msgstr "Grabar &firmware en la impresora" -#: src/slic3r/GUI/FirmwareDialog.cpp:146 +#: src/slic3r/GUI/FirmwareDialog.cpp:150 msgid "Flash!" msgstr "Flash!" -#: src/slic3r/GUI/FirmwareDialog.cpp:275 +#: src/slic3r/GUI/FirmwareDialog.cpp:284 msgid "Flashing cancelled." msgstr "Flasheo cancelado." -#: src/slic3r/GUI/FirmwareDialog.cpp:192 +#: src/slic3r/GUI/FirmwareDialog.cpp:199 msgid "Flashing failed" msgstr "Falló el flasheo" -#: src/slic3r/GUI/FirmwareDialog.cpp:274 +#: src/slic3r/GUI/FirmwareDialog.cpp:283 msgid "Flashing failed. Please see the avrdude log below." msgstr "Flasheo fallido. Por favor comprueba el log de avrdude." -#: src/slic3r/GUI/FirmwareDialog.cpp:148 +#: src/slic3r/GUI/FirmwareDialog.cpp:152 msgid "Flashing in progress. Please do not disconnect the printer!" msgstr "Flasheo en curso. ¡Por favor no desconecte la impresora!" -#: src/slic3r/GUI/FirmwareDialog.cpp:273 +#: src/slic3r/GUI/FirmwareDialog.cpp:282 msgid "Flashing succeeded!" msgstr "¡Exito al flashear!" -#: src/slic3r/GUI/Tab.cpp:1156 +#: src/slic3r/GUI/Tab.cpp:1220 msgid "Flow" msgstr "Flujo" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" msgstr "se maximiza el flujo de material" @@ -2675,299 +2911,390 @@ msgstr "Para Borrar \"%1%\" código usa el clic del botón izquierdo del ratón\ msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" msgstr "Para Eliminar el cambio de color, usa el botón izquierdo del ratón y haz clic\nPara Editar el color, usa el botón derecho del ratón y haz clic" -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Para más información visite por favor la página de nuestra wiki:" -#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528 +#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 msgid "For support enforcers only" msgstr "Sólo para modificadores de soportes" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3345 +#: src/slic3r/GUI/Tab.cpp:3249 msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." msgstr "para el botón izquierdo: indica un preajuste que no es del sistema (o no predeterminado),\npara el botón derecho: indica que la configuración no se ha modificado." -#: src/slic3r/GUI/ConfigManipulation.cpp:128 +#: src/slic3r/GUI/ConfigManipulation.cpp:136 msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." msgstr "Para que la Torre de Limpieza funcione con los soportes solubles, las capas de soporte\ndeben sincronizarse con las capas de objetos." -#: src/libslic3r/Print.cpp:1302 +#: src/libslic3r/Print.cpp:1392 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Para que la Torre de limpieza funcione con soportes solubles, las capas de soportes necesitan estar sincronizadas con las capas del objeto." -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Force pad around object everywhere" msgstr "Forzar el pad alrededor del objeto en todas partes" -#: src/libslic3r/PrintConfig.cpp:1660 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "Force solid infill for regions having a smaller area than the specified threshold." msgstr "Forzar el relleno sólido para las regiones que tienen un área más pequeña que el umbral especificado." -#: src/libslic3r/PrintConfig.cpp:1023 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." msgstr "Forzar la generación de carcasas sólidas entre materiales / volúmenes adyacentes. Útil para impresiones de múltiples extrusoras con materiales translúcidos o material de soporte soluble manual." -#: src/slic3r/GUI/WipeTowerDialog.cpp:262 +#: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "From" msgstr "Desde" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 msgid "From Object List You can't delete the last solid part from object." msgstr "Desde la Lista de Objetos no puedes eliminar la última parte sólida del objeto." -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "Frontal" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "Vista frontal" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1015 msgid "full profile name" msgstr "nombre completo perfil" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "G-code" msgstr "Código G" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87 +#: src/slic3r/GUI/DoubleSlider.cpp:987 +msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." +msgstr "El código G asociado a esta marca de verificación está en conflicto con el modo de impresión.\nSu edición provocará cambios en los datos del Slider." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 msgid "G-code file exported to %1%" msgstr "Archivo de código G exportado a %1%" -#: src/libslic3r/PrintConfig.cpp:888 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "Tipo de código G" -#: src/libslic3r/PrintConfig.cpp:689 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2496 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870 -#: src/libslic3r/GCode/PreviewData.cpp:170 +#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Relleno" -#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812 -#: src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 +#: src/slic3r/GUI/Tab.cpp:2038 msgid "General" msgstr "General" -#: src/libslic3r/PrintConfig.cpp:1242 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder." msgstr "Generar no menos que el número de bucles de falda requeridos para consumir la cantidad especificada de filamento en la capa inferior. Para máquinas multi-extrusoras, este mínimo se aplica a cada extrusora." -#: src/libslic3r/PrintConfig.cpp:1779 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "Generar material de soporte" -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Generar material de soporte para la cantidad especificada de capas contando desde abajo, independientemente de si el material de soporte normal está habilitado o no e independientemente de cualquier umbral de ángulo. Es útil para obtener una mayor adhesión de los objetos que tienen una huella muy delgada o deficiente en la placa de construcción." -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2604 msgid "Generate supports" msgstr "Generar soportes" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2606 msgid "Generate supports for the models" msgstr "Generar soportes para los modelos" -#: src/libslic3r/Print.cpp:1492 +#: src/libslic3r/Print.cpp:1610 msgid "Generating brim" msgstr "Generando balsa" -#: src/libslic3r/Print.cpp:1524 +#: src/libslic3r/Print.cpp:1638 msgid "Generating G-code" msgstr "Generando G-code" -#: src/libslic3r/SLAPrint.cpp:58 +#: src/libslic3r/SLAPrintSteps.cpp:46 msgid "Generating pad" msgstr "Generando pad" -#: src/libslic3r/PrintObject.cpp:141 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" msgstr "Generando perímetros" -#: src/libslic3r/Print.cpp:1484 +#: src/libslic3r/Print.cpp:1602 msgid "Generating skirt" msgstr "Generando falda" -#: src/libslic3r/PrintObject.cpp:391 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "Generando material de soporte" -#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809 +#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 msgid "Generating support points" msgstr "Generando puntos de soporte" -#: src/libslic3r/SLAPrint.cpp:57 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Generating support tree" msgstr "Generando soporte tipo árbol" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1551 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 msgid "Generic" msgstr "Genérico" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 msgid "Gizmo cut" msgstr "Corte Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Gizmo move" msgstr "Movimiento Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 msgid "Gizmo Place face on bed" msgstr "Gizmo Colocar cara en la base" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Gizmo rotate" msgstr "Rotación Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 msgid "Gizmo scale" msgstr "Escala Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA vaciado" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo SLA support points" msgstr "Puntos de soporte SLA Gizmo" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:641 +#: src/slic3r/GUI/GLCanvas3D.cpp:2945 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 msgid "Gizmo-Move" msgstr "Gizmo-Mover" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:569 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 msgid "Gizmo-Place on Face" msgstr "Gizmo-Colocar en Cara" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:651 +#: src/slic3r/GUI/GLCanvas3D.cpp:3025 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 msgid "Gizmo-Rotate" msgstr "Gizmo-Rotar" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:646 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 msgid "Gizmo-Scale" msgstr "Gizmo-Escalar" -#: src/slic3r/GUI/AboutDialog.cpp:95 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "Gizmos" + +#: src/slic3r/GUI/AboutDialog.cpp:259 msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versión 3" -#: src/slic3r/GUI/ConfigWizard.cpp:571 +#: src/slic3r/GUI/ConfigWizard.cpp:981 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Se necesita buena precisión, así que usa un calibre y realiza varias medidas a lo largo del filamento, luego calcula la media." -#: src/libslic3r/PrintConfig.cpp:797 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "Rejilla" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1846 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 msgid "Group manipulation" msgstr "Manipulación de grupos" -#: src/libslic3r/PrintConfig.cpp:805 +#: src/slic3r/GUI/Preferences.cpp:137 +msgid "GUI" +msgstr "IU" + +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "Giroide" -#: src/slic3r/GUI/Tab.cpp:2775 +#: src/slic3r/GUI/Tab.cpp:2921 msgid "has the following unsaved changes:" msgstr "tiene los siguientes cambios no guardados:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "Diámetro de la cabeza" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "La penetración de la cabeza no debaría ser mayor que el ancho de la cabeza." -#: src/libslic3r/PrintConfig.cpp:822 +#: src/libslic3r/PrintConfig.cpp:869 msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura de base calefactable para la primera capa. Ajuste esto a cero para deshabilitar los comandos de control de temperatura de la cama en la salida." -#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Altura" -#: src/libslic3r/GCode/PreviewData.cpp:396 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "Altura (mm)" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts." msgstr "Altura de la falda expresada en capas. Establezca esto en un valor alto para usar la falda como escudo contra corrientes de aire." -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "Altura de la pantalla" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 msgid "Height range Modifier" msgstr "Modificador Rango de Alturas" -#: src/slic3r/GUI/GLCanvas3D.cpp:3650 src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Height ranges" msgstr "Rango de alturas" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:251 msgid "Heights at which a filament change is to occur." msgstr "Alturas en las que se producirá un cambio de filamento." -#: src/slic3r/GUI/ConfigWizard.cpp:300 +#: src/slic3r/GUI/ConfigWizard.cpp:433 #, possible-c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Hola, bienvenido a %s! Este %s te ayuda con la configuración inicial; sólo unos pocos ajustes y estarás preparado para imprimir." -#: src/libslic3r/PrintConfig.cpp:2976 +#: src/libslic3r/PrintConfig.cpp:3350 msgid "Help" msgstr "Ayuda" -#: src/libslic3r/PrintConfig.cpp:2982 +#: src/libslic3r/PrintConfig.cpp:3356 msgid "Help (FFF options)" msgstr "Ayuda (opciones FFF)" -#: src/libslic3r/PrintConfig.cpp:2987 +#: src/libslic3r/PrintConfig.cpp:3361 msgid "Help (SLA options)" msgstr "Ayuda (opciones SLA)" -#: src/slic3r/GUI/WipeTowerDialog.cpp:225 +#: src/slic3r/GUI/WipeTowerDialog.cpp:254 msgid "Here you can adjust required purging volume (mm³) for any given pair of tools." msgstr "Aquí puedes ajustar el volumende purga requerida (mm³) para cualquier par de herramientas." -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "Alta intensidad en el extrusor durante el cambio de filamento" -#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806 +#: src/slic3r/GUI/GLCanvas3D.cpp:282 +msgid "Higher print quality versus higher print speed." +msgstr "Mayor calidad de impresión contra mayor velocidad de impresión." + +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "Curva de Hilbert" -#: src/slic3r/GUI/Plater.cpp:873 +#: src/slic3r/GUI/Plater.cpp:1039 msgid "Hold Shift to Slice & Export G-code" msgstr "Mantén presionada la tecla Shift para laminar y exportar el código G" -#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "Profundidad del orificio" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "Diámetro del orificio" + +#: src/slic3r/GUI/Plater.cpp:2744 +msgid "Hollow" +msgstr "Vaciado" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" +msgstr "Vaciado y taladrado" + +#: src/libslic3r/PrintConfig.cpp:2901 +msgid "Hollow out a model to have an empty interior" +msgstr "Vaciado de un modelo para tener un interior vacío" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "Vaciar este objeto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 +#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 +#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 +#: src/libslic3r/PrintConfig.cpp:2926 +msgid "Hollowing" +msgstr "Vaciando el interior" + +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Hollowing accuracy" +msgstr "Precisión" + +#: src/slic3r/GUI/Plater.cpp:2910 +msgid "Hollowing cancelled." +msgstr "Vaciado cancelado." + +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Hollowing closing distance" +msgstr "Distancia de cierre" + +#: src/slic3r/GUI/Plater.cpp:2911 +msgid "Hollowing done." +msgstr "Vaciado acabado." + +#: src/slic3r/GUI/Plater.cpp:2913 +msgid "Hollowing failed." +msgstr "Vaciado fallido." + +#: src/libslic3r/PrintConfig.cpp:2928 +msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." +msgstr "El vaciado del interior se hace en dos pasos: primero, se calcula un interior imaginario (un desplazamiento más la distancia de cierre) en la pieza y luego, se hincha hasta alcanzar el desplazamiento especificado. Una distancia de cierre mayor hace que interior sea más redondeado. Si es cero, el interior se parecerá mucho al exterior." + +#: src/libslic3r/SLAPrintSteps.cpp:41 +msgid "Hollowing model" +msgstr "Vaciando modelo" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +msgid "Hollowing parameter change" +msgstr "Cambio del parámetro de vaciar el interior" + +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Hollowing thickness" +msgstr "Espesor de pared" + +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Panal de abeja" -#: src/slic3r/GUI/Tab.cpp:1013 +#: src/slic3r/GUI/Tab.cpp:1066 msgid "Horizontal shells" msgstr "Carcasas horizontales" -#: src/libslic3r/PrintConfig.cpp:209 +#: src/libslic3r/PrintConfig.cpp:235 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Ancho horizontal del borde que se imprimirá alrededor de cada objeto en la primera capa." -#: src/slic3r/GUI/PrintHostDialogs.cpp:151 +#: src/slic3r/GUI/PrintHostDialogs.cpp:152 msgid "Host" msgstr "Equipo" -#: src/libslic3r/PrintConfig.cpp:1267 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "Tipo de host" @@ -2975,749 +3302,810 @@ msgstr "Tipo de host" msgid "Hostname" msgstr "Nombre del equipo" -#: src/libslic3r/PrintConfig.cpp:81 +#: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" msgstr "Nombre de equipo, IP o URL" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:141 msgid "Hover the cursor over buttons to find more information \nor click this button." msgstr "Sitúa el cursos sobre los botones para más información o haz clic en este botón." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2803 msgid "How far should the pad extend around the contained geometry" msgstr "¿Hasta dónde debe extenderse el pad alrededor de la geometría contenida?" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2892 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Cuanto deberían penetrar los conectores pequeños en el modelo del cuerpo." -#: src/libslic3r/PrintConfig.cpp:2380 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "How much the pinhead has to penetrate the model surface" msgstr "Cuánto tiene que penetrar la cabeza del pin en la superficie del modelo" -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/libslic3r/PrintConfig.cpp:2746 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Cuanto deberían los soportes deberían levantar el objeto soportado. Si \"Pad alrededor del objeto\" está activado, este valor será ignorado." -#: src/libslic3r/PrintConfig.cpp:95 +#: src/libslic3r/PrintConfig.cpp:111 msgid "HTTPS CA File" msgstr "Archivo HTTPS CA" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "El archivo HTTPS CA es opcional. Sólo se necesita si vas a usar HTTPS con un certificado auto-firmado." -#: src/slic3r/GUI/Tab.cpp:1773 +#: src/slic3r/GUI/Tab.cpp:1755 #, possible-c-format msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." msgstr "Archivo CA HTTPS:\nEn este sistema,%s usa certificados HTTPS del almacén de certificados o llavero. \nPara usar un archivo CA personalizado, importa tu archivo CA al Almacén de Certificados/Llavero." -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:226 msgid "Icon size in a respect to the default size" msgstr "Tamaño del icono respecto al tamaño original" -#: src/slic3r/GUI/PrintHostDialogs.cpp:148 +#: src/slic3r/GUI/PrintHostDialogs.cpp:149 msgid "ID" msgstr "ID" -#: src/libslic3r/PrintConfig.cpp:1787 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Si se marca, los soportes se generarán automáticamente según el valor del umbral de voladizo. Si no se selecciona, los apoyos se generarán solo dentro de los volúmenes \"Forzar soportes\"." -#: src/slic3r/GUI/ConfigWizard.cpp:413 +#: src/slic3r/GUI/ConfigWizard.cpp:772 #, possible-c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si está activado, %s comprueba si hay nuevas versiones de Slic3r PE en la red. Cuando hay disponible una nueva versión se muestra una notificación al iniciar la aplicación (nunca durante el uso del programa). Esto es sólo un mecanismo de notificación, sin que se realice una instalación automática." -#: src/slic3r/GUI/ConfigWizard.cpp:423 +#: src/slic3r/GUI/ConfigWizard.cpp:782 #, possible-c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Si está activado, %s descargará actualizaciones de los ajustes del sistema mientras lo usamos. Estas actualizaciones se descargan a una ubicación temporal. Cuando hay un nuevo ajuste disponible, este se podrá incorporar y usar cuando la aplicación se vuelva a iniciar." -#: src/libslic3r/PrintConfig.cpp:1774 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." msgstr "Si está habilitado, todos los extrusores de impresión estarán cebados en el borde frontal de la cama de impresión al comienzo de la impresión." -#: src/slic3r/GUI/Preferences.cpp:63 +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "Si está activado, permite que la orden de Recarga desde el disco encuentre y cargue los archivos al invocarla. \nSi no está activado, la orden de Recarga desde el disco te pedirá que selecciones cada archivo en un cuadro de abrir archivo." + +#: src/slic3r/GUI/Preferences.cpp:75 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." +msgstr "Si está activado, permite que la orden de Recarga desde el disco busque y cargue los ficheros cuando se invoque." + +#: src/slic3r/GUI/Preferences.cpp:66 msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si está habilitado, PrusaSlicer buscará las nuevas versiones de sí mismo en línea. Cuando una nueva versión esté disponible, se mostrará una notificación en el siguiente inicio de la aplicación (nunca durante el uso del programa). Esto es solo un mecanismo de notificación, no se realiza instalación automática." -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:84 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Si está activado, Slic3r descargará actualizaciones de los ajustes del sistema mientras lo usamos. Estas actualizaciones se descargan a una ubicación temporal. Cuando hay un nuevo ajuste disponible, este se podrá incorporar y usar cuando la aplicación se vuelva a iniciar." -#: src/slic3r/GUI/Preferences.cpp:105 +#: src/slic3r/GUI/Preferences.cpp:108 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Si está activado, la escena 3D se mostrará en resolución Retina. Si tienes problemas de prestaciones 3D, desactivar esta opción te puede ayudar." -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Si está habilitado, laTorre de Limpieza no se imprimirá en capas sin cambios de herramientas. En capas con cambio de herramienta, el extrusor viajará hacia abajo para imprimir la torre de limpieza. El usuario es responsable de garantizar que no haya colisión con la impresión." -#: src/slic3r/GUI/Preferences.cpp:112 +#: src/slic3r/GUI/Preferences.cpp:131 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "Si está activado, usa la cámara libre. Si no está activado, usa la cámara restringida. " + +#: src/slic3r/GUI/Preferences.cpp:123 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Si está activado, se usará una cámara en perspectiva. Si no está activo, se usará una cámara ortográfica." -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:149 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Si está activado, puedes cambiar el tamaño de la barra de herramientas manualmente." -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "If estimated layer time is below ~%1%s, fan will run at %2%%% and print speed will be reduced so that no less than %3%s are spent on that layer (however, speed will never be reduced below %4%mm/s)." msgstr "Si el tiempo de capa estimado está por debajo de ~%1%s, el ventilador funcionará en %2%%% y la velocidad de impresión se reducirá de modo que no se gaste menos de %3%s en esa capa (sin embargo, la velocidad nunca se reducirá por debajo de %4%mm/s) ." -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "If estimated layer time is greater, but still below ~%1%s, fan will run at a proportionally decreasing speed between %2%%% and %3%%%." msgstr "Si el tiempo estimado de la capa es mayor, pero todavía por debajo de ~%1%s, el ventilador funcionará a una velocidad proporcionalmente menor entre %2%%% y %3%%%." -#: src/libslic3r/PrintConfig.cpp:853 +#: src/libslic3r/PrintConfig.cpp:901 msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds." msgstr "Si se expresa como valor absoluto en mm / s, esta velocidad se aplicará a todos los movimientos de impresión de la primera capa, independientemente de su tipo. Si se expresa como un porcentaje (por ejemplo: 40%), escalará las velocidades predeterminadas." -#: src/libslic3r/PrintConfig.cpp:540 +#: src/libslic3r/PrintConfig.cpp:573 msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds." msgstr "Si el tiempo de impresión de capa se estima por debajo de este número de segundos, el ventilador se habilitará y su velocidad se calculará al interpolar las velocidades mínima y máxima." -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value." msgstr "Si el tiempo de impresión de la capa se estima por debajo de este número de segundos, la velocidad de los movimientos de impresión se reducirá para extender la duración a este valor." -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:567 msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS." msgstr "Si esto está habilitado, el ventilador nunca se desactivará y se mantendrá funcionando al menos a su velocidad mínima. Útil para PLA, no recomendado para ABS." -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "If this is enabled, Slic3r will auto-center objects around the print bed center." msgstr "Si esto está habilitado, Slic3r centrará automáticamente los objetos alrededor del centro de la base de impresión." -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code." msgstr "Si esto está habilitado, Slic3r preprocesará objetos tan pronto como se carguen para ahorrar tiempo al exportar el código G." -#: src/slic3r/GUI/Preferences.cpp:38 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files." msgstr "Si esto está habilitado, Slic3r solicitará el último directorio de salida en lugar del que contiene los archivos de entrada." -#: src/libslic3r/PrintConfig.cpp:1492 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered." msgstr "Si establece esto en un valor positivo, Z se levantará rápidamente cada vez que se active una retracción. Cuando se usan múltiples extrusores , solo se considerará la configuración del primer extrusor." -#: src/libslic3r/PrintConfig.cpp:1501 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers." msgstr "Si establece esto en un valor positivo, la elevación de Z solo tendrá lugar por encima de la Z absoluta especificada. Puede ajustar esta configuración para omitir el levantamiento en las primeras capas." -#: src/libslic3r/PrintConfig.cpp:1510 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers." msgstr "Si configura esto en un valor positivo, la elevación Z solo tendrá lugar por debajo de la Z absoluta especificada. Puede ajustar esta configuración para limitar la elevación a las primeras capas." -#: src/libslic3r/PrintConfig.cpp:1384 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables." msgstr "Si desea procesar el código G de salida a través de scripts personalizados, simplemente haga una lista de sus rutas absolutas aquí. Separe los scripts múltiples con un punto y coma. Los scripts se pasarán por la ruta absoluta al archivo de código G como primer argumento, y pueden acceder a la configuración de configuración de Slic3r leyendo las variables de entorno." -#: src/libslic3r/PrintConfig.cpp:498 +#: src/libslic3r/PrintConfig.cpp:530 msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)." msgstr "Si su firmware no maneja el desplazamiento del extrusor, necesita el código G para tenerlo en cuenta. Esta opción le permite especificar el desplazamiento de cada extrusora con respecto a la primera. Se esperan coordenadas positivas (se restarán de la coordenada XY)." -#: src/libslic3r/PrintConfig.cpp:2068 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Si su firmware requiere valores E relativos, verifique esto, de lo contrario, deje sin marcar. La mayoría de los firmwares usan valores absolutos." -#: src/libslic3r/PrintConfig.cpp:3096 +#: src/libslic3r/PrintConfig.cpp:3470 msgid "Ignore non-existent config files" msgstr "Ignorar archivos de configuración inexistentes" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "Importar &Configuración" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "Importar &Conjunto de Ajustes" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "Importar configuración desde un &proyecto" -#: src/slic3r/GUI/Plater.cpp:4016 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "Importar Configuración desde ini/amf/3mf/gcode" + +#: src/slic3r/GUI/Plater.cpp:4616 msgid "Import Object" msgstr "Importar Objeto" -#: src/slic3r/GUI/Plater.cpp:4020 +#: src/slic3r/GUI/Plater.cpp:4620 msgid "Import Objects" msgstr "Importar Objetos" -#: src/slic3r/Utils/FixModelByWin10.cpp:383 +#: src/slic3r/Utils/FixModelByWin10.cpp:390 msgid "Import of the repaired 3mf file failed" msgstr "La importación del archivo 3mf reparado ha fallado" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importar STL/OBJ/AMF/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:106 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 msgid "Import STL/OBJ/AMF/3MF without config, keep bed" msgstr "Importar STL/OBJ/AMF/3MF sin config,manteniendo contenido base" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2416 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "Importar STL/OBJ/AMF/3MF sin configuración, mantener la base" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 #, possible-c-format msgid "In this mode you can select only other %s Items%s" msgstr "En este modo, solo puede seleccionar otros %s Items %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:132 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "Grupos incompatibles:" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 #, possible-c-format msgid "Incompatible with this %s" msgstr "Incompatible con este %s" -#: src/slic3r/GUI/Plater.cpp:4091 +#: src/slic3r/GUI/Plater.cpp:4700 msgid "Increase Instances" msgstr "Aumentar Instancias" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:269 msgid "Increase/decrease edit area" msgstr "Incrementar/reducir area edición" +#: src/slic3r/GUI/Plater.cpp:2906 +msgid "Indexing hollowed object" +msgstr "Indexando pieza vaciada" + #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3338 +#: src/slic3r/GUI/Tab.cpp:3242 msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." msgstr "indica que se modificaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados) para el grupo de opciones actual.\nHaz clic en el icono CANDADO DESBLOQUEADO para restablecer todos los ajustes del grupo de opciones actual a los valores del sistema (o predeterminados)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3334 +#: src/slic3r/GUI/Tab.cpp:3238 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indica que los ajustes son los mismos que los valores del sistema (o por defecto) para el grupo de opciones actual" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3083 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "indica que los ajustes cambiaron y no son iguales que los ajustes grabados la última vez para el grupo de opciones actual. Haz clic en el símbolo de FLECHA ATRÁS para resetear todos los ajustes del grupo de opciones actual a los grabados la vez anterior." -#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69 -#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439 -#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031 -#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167 -#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729 -#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780 -#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943 -#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659 -#: src/libslic3r/PrintConfig.cpp:1676 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 +#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "Relleno" -#: src/slic3r/GUI/PresetHints.cpp:171 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "relleno" -#: src/libslic3r/PrintConfig.cpp:972 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "Rellenar antes que los perímetros" -#: src/libslic3r/PrintConfig.cpp:953 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "Extrusor para el relleno" -#: src/libslic3r/PrintConfig.cpp:987 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "Superposición de relleno/perímetros" -#: src/libslic3r/Print.cpp:1476 +#: src/libslic3r/Print.cpp:1580 msgid "Infilling layers" msgstr "Rellenando capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2424 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 msgid "Info" msgstr "Info" -#: src/libslic3r/PrintConfig.cpp:1008 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "Hereda el perfil" -#: src/libslic3r/SLAPrint.cpp:707 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "El tiempo de exposición inicial está fuera de los límites del perfil de impresión." -#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318 +#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 msgid "Initial exposure time" msgstr "Tiempo de exposición inicial" -#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296 +#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 msgid "Initial layer height" msgstr "Altura de la capa inicial" -#: src/slic3r/GUI/Field.cpp:155 +#: src/slic3r/GUI/Field.cpp:199 msgid "Input value is out of range" msgstr "El valor introducido está fuera de rango" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "Inspeccionar / activar instantáneas de configuración" -#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 #, possible-c-format msgid "Instance %d" msgstr "Instancia %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1887 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 msgid "Instance manipulation" msgstr "Manipulación de instancias" -#: src/slic3r/GUI/wxExtensions.cpp:358 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 msgid "Instances" msgstr "Instancias" -#: src/slic3r/GUI/GUI_ObjectList.cpp:934 src/slic3r/GUI/GUI_ObjectList.cpp:3346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 msgid "Instances to Separated Objects" msgstr "Instancias para Separar Objetos" -#: src/libslic3r/PrintConfig.cpp:1886 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "Capas de interfaz" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" msgstr "Bucles de interfaz" -#: src/libslic3r/PrintConfig.cpp:1895 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" msgstr "Espaciado de patrón de interfaz" -#: src/libslic3r/PrintConfig.cpp:1022 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "Carcasas de interfaz" -#: src/libslic3r/Zipper.cpp:87 +#: src/libslic3r/Zipper.cpp:84 msgid "internal error" msgstr "error interno" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Relleno interno" -#: src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:3090 msgid "Invalid data" msgstr "Datos inválidos" -#: src/slic3r/GUI/BedShapeDialog.cpp:471 src/slic3r/GUI/BedShapeDialog.cpp:520 -#: src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "Formato inválido de archivo." -#: src/libslic3r/Zipper.cpp:83 +#: src/libslic3r/Zipper.cpp:80 msgid "invalid filename" msgstr "nombre de archivo inválido" -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "Penetración inválida de la cabeza" -#: src/libslic3r/Zipper.cpp:51 +#: src/libslic3r/Zipper.cpp:48 msgid "invalid header or archive is corrupted" msgstr "encabezado inválido o archivo está dañado" -#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173 +#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Entrada numérica no válida." -#: src/libslic3r/Zipper.cpp:81 +#: src/libslic3r/Zipper.cpp:78 msgid "invalid parameter" msgstr "parámetro inválido" -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "Diámetro de la cabeza del pin inválido" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:94 +#: src/slic3r/GUI/AboutDialog.cpp:258 msgid "is licensed under the" msgstr "está licenciado bajo el/los" -#: src/slic3r/GUI/Tab.cpp:2779 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Is necessary to install a configuration update. " +msgstr "Es necesario instalar una actualización de la configuración." + +#: src/slic3r/GUI/Tab.cpp:2925 msgid "is not compatible with print profile" msgstr "no es compatible con el perfil de impresión" -#: src/slic3r/GUI/Tab.cpp:2778 +#: src/slic3r/GUI/Tab.cpp:2924 msgid "is not compatible with printer" msgstr "no es compatible con esta impresora" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "Iso" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "Vista Iso" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:966 msgid "It can't be deleted or modified." msgstr "No puede ser borrado o modificado." -#: src/libslic3r/PrintConfig.cpp:926 +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "It is not allowed to change the file to reload" +msgstr "No está permitido cambiar el archivo a recargar" + +#: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Puede ser beneficioso aumentar la corriente del motor del extrusor durante la secuencia de intercambio de filamentos para permitir velocidades de alimentación de rampa rápidas y superar la resistencia cuando se carga un filamento con una punta de forma fea." -#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Es imposible imprimir objetos de varias piezas con tecnología SLA." -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2225 msgid "Jerk limits" msgstr "Límites del jerk" -#: src/libslic3r/PrintConfig.cpp:1579 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "Jitter" -#: src/libslic3r/PrintConfig.cpp:533 +#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 +#: src/slic3r/GUI/DoubleSlider.cpp:1623 +msgid "Jump to height" +msgstr "Salta a la altura" + +#: src/slic3r/GUI/DoubleSlider.cpp:928 +#, possible-c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "Salta a la altura %s o Fija la secuencia del extrusor para toda la impresión" + +#: src/libslic3r/PrintConfig.cpp:566 msgid "Keep fan always on" msgstr "Mantener el ventilador siempre encendido" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "Mantener la parte inferior" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:309 msgid "Keep min" msgstr "Mantener mínimo" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "Mantener la parte superior" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 msgid "Keyboard Shortcuts" msgstr "Atajos de teclado" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "Atajos de teclado" + +#: src/libslic3r/PrintConfig.cpp:2489 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "Etiquetar objetos" -#: src/libslic3r/PrintConfig.cpp:2234 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "Paisaje" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "Idioma" -#: src/slic3r/GUI/GUI_App.cpp:755 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "Selección de idiomas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1770 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 msgid "Last instance of an object cannot be deleted." msgstr "La última instancia de un objeto no puede ser eliminada." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2994 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 msgid "Layer" msgstr "Capa" -#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55 +#: src/slic3r/GUI/ConfigManipulation.cpp:49 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Altura de la capa" -#: src/libslic3r/Print.cpp:1332 +#: src/libslic3r/Print.cpp:1423 msgid "Layer height can't be greater than nozzle diameter" msgstr "La altura de la capa no puede ser mayor que diámetro de la boquilla" -#: src/slic3r/GUI/Tab.cpp:2260 +#: src/slic3r/GUI/Tab.cpp:2358 msgid "Layer height limits" msgstr "Límites de altura de la capa" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "Layer height:" msgstr "Altura de la capa:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2109 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 msgid "Layer range Settings to modify" msgstr "Ajustes del Rango de capas a modificar" -#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620 -#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844 -#: src/libslic3r/PrintConfig.cpp:1889 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "capas" -#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 +#: src/slic3r/GUI/Tab.cpp:3585 msgid "Layers" msgstr "Capas" -#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 msgid "Layers and perimeters" msgstr "Capas y perímetros" -#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68 -#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56 -#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381 -#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446 -#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026 -#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371 -#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987 -#: src/libslic3r/PrintConfig.cpp:2044 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 +#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "Capas y Perímetros" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "Deslizador de Capas" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 msgid "Layers Slider Shortcuts" msgstr "Atajo rápidos al deslizador de capas" -#. TRN To be shown in Print Settings "Bottom solid layers" -#: rc/libslic3r/PrintConfig.cpp:149 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Bottom" msgstr "Inferior" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/libslic3r/PrintConfig.cpp:2043 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Top" msgstr "Superior" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "Izquierda" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Left click" msgstr "Clic izquierdo" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:242 msgid "Left mouse button:" msgstr "Botón izquierdo del ratón:" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "Vista izquierda" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:259 msgid "Legend" msgstr "Leyenda" -#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "Largo" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:318 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Longitud del tubo de enfriado para limitar el espacio para movimientos de enfriamiento dentro del mismo." #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:124 +#: src/slic3r/GUI/AboutDialog.cpp:129 msgid "License agreements of all following programs (libraries) are part of application license agreement" msgstr "Los acuerdos de licencia de todos los programas (bibliotecas) siguientes forman parte del acuerdo de licencia de la aplicación" -#: src/libslic3r/PrintConfig.cpp:1491 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "Levantar Z" -#: src/libslic3r/PrintConfig.cpp:801 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "Lineal" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1050 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 msgid "Load" msgstr "Cargar" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "Cargar un modelo" -#: src/libslic3r/PrintConfig.cpp:3116 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Cargar y almacenar configuraciones en el directorio dado. Esto es útil para mantener diferentes perfiles o incluir configuraciones desde un almacenamiento de red." -#: src/libslic3r/PrintConfig.cpp:3100 +#: src/libslic3r/PrintConfig.cpp:3474 msgid "Load config file" msgstr "Cargar archivo de configuración" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 msgid "Load Config from .ini/amf/3mf/gcode" msgstr "Cargar configuración desde .ini/amf/3mf/gcode" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 msgid "Load Config from .ini/amf/3mf/gcode and merge" msgstr "Cargar configuración desde .ini/amf/3mf/gcode y fusionar" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Carga Configuración desde ini/amf/3mf/gcode y mezcla" + +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "Cargar configuración desde archivo de proyecto" -#: src/libslic3r/PrintConfig.cpp:3101 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Cargar la configuración desde el archivo especificado. Se puede usar más de una vez para cargar opciones de varios archivos." -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "Cargar archivo de configuración exportado" -#: src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1375 msgid "Load File" msgstr "Cargar Archivo" -#: src/slic3r/GUI/Plater.cpp:1275 +#: src/slic3r/GUI/Plater.cpp:1379 msgid "Load Files" msgstr "Cargar Archivos" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 msgid "Load Part" msgstr "Cargar pieza" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "Cargar preajustes de un paquete" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4588 msgid "Load Project" msgstr "Cargar Proyecto" -#: src/slic3r/GUI/BedShapeDialog.cpp:97 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "Cargar forma desde STL..." -#: src/slic3r/GUI/BedShapeDialog.cpp:181 src/slic3r/GUI/BedShapeDialog.cpp:249 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "Cargar..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:235 +#: src/slic3r/GUI/WipeTowerDialog.cpp:264 msgid "loaded" msgstr "cargado" -#: src/slic3r/GUI/Plater.cpp:1782 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "Loaded" msgstr "Cargado" -#: src/slic3r/GUI/Plater.cpp:1590 +#: src/slic3r/GUI/Plater.cpp:2257 msgid "Loading" msgstr "Carga" -#: src/slic3r/GUI/GUI_App.cpp:407 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "Carga de modo de vista" -#: src/slic3r/GUI/GUI_App.cpp:399 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "Cargando los preajustes actuales" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:378 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Loading repaired model" msgstr "Cargando modelo reparado" -#: src/libslic3r/PrintConfig.cpp:575 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "Velocidad de carga" -#: src/libslic3r/PrintConfig.cpp:583 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "Velocidad de carga al inicio" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:63 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:106 msgid "Local coordinates" msgstr "Coordenadas locales" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:49 msgid "Lock supports under new islands" msgstr "Bloquear soportes bajo nuevas islas" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3236 msgid "LOCKED LOCK" msgstr "CANDADO CERRADO" -#: src/slic3r/GUI/Tab.cpp:3360 +#: src/slic3r/GUI/Tab.cpp:3264 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "El icono de CANDADO BLOQUEADO indica que los ajustes son los mismos que los valores del sistema (por defecto) para el grupo de opciones actual" -#: src/slic3r/GUI/Tab.cpp:3376 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "El icono de CANDADO BLOQUEADO indica que el valor es el mismo que el del sistema (por defecto)" -#: src/libslic3r/PrintConfig.cpp:3119 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Logging level" msgstr "Nivel de registro" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "Bucles (mínimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 msgid "Lower Layer" msgstr "Capa inferior" -#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209 -#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087 -#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110 -#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132 -#: src/libslic3r/PrintConfig.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "Límites de la máquina" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 msgid "Main Shortcuts" msgstr "Atajos principales" -#: src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/Plater.cpp:168 msgid "Manifold" msgstr "Manifold" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:57 msgid "Manual editing" msgstr "Edición manual" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 msgid "Masked SLA file exported to %1%" msgstr "Archivo SLA enmascarado exportado a %1%" -#: src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:754 msgid "Mate&rial Settings Tab" msgstr "Pestaña Ajustes de Mate&rial" -#: src/slic3r/GUI/Tab.cpp:3300 +#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.hpp:391 +#: src/slic3r/GUI/Tab.hpp:415 msgid "Material Settings" msgstr "Configuraciones del material" -#: src/slic3r/GUI/Plater.cpp:140 +#: src/slic3r/GUI/Plater.cpp:165 msgid "Materials" msgstr "Materiales" -#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "Max" -#: src/libslic3r/PrintConfig.cpp:2470 +#: src/libslic3r/PrintConfig.cpp:2725 msgid "Max bridge length" msgstr "Distancia máxima de puentes" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2813 msgid "Max merge distance" msgstr "Distancia máxima de combinación" -#: src/libslic3r/PrintConfig.cpp:2479 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max pillar linking distance" msgstr "Distancia máxima de enlace del pilar" -#: src/libslic3r/PrintConfig.cpp:64 +#: src/libslic3r/PrintConfig.cpp:80 msgid "Max print height" msgstr "Máxima altura de impresión" -#: src/libslic3r/PrintConfig.cpp:1172 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "Velocidad máxima de impresión" @@ -3725,167 +4113,167 @@ msgstr "Velocidad máxima de impresión" msgid "max PrusaSlicer version" msgstr "máxima versión PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:1203 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "Máx. Pendiente volumétrica negativa" -#: src/libslic3r/PrintConfig.cpp:1192 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "Máx. Pendiente volumétrica positiva" -#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "Velocidad volumétrica máxima" -#: src/libslic3r/PrintConfig.cpp:2167 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "Distancia máxima de puentes" -#: src/libslic3r/PrintConfig.cpp:2193 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "Distancia máxima entre soportes en las secciones con relleno ligero." -#: src/libslic3r/PrintConfig.cpp:1099 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "Máxima aceleración E" -#: src/libslic3r/PrintConfig.cpp:1105 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "Máxima aceleración en el eje E" -#: src/libslic3r/PrintConfig.cpp:1102 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "Máxima aceleración en el eje X" -#: src/libslic3r/PrintConfig.cpp:1103 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "Máxima aceleración en el eje Y" -#: src/libslic3r/PrintConfig.cpp:1104 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Máxima aceleración en el eje Z" -#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" msgstr "Aceleración máxima al extruir" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" msgstr "Aceleración máxima con extrusión (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "Aceleración máxima al retraer" -#: src/libslic3r/PrintConfig.cpp:1169 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "Aceleración máxima al retraer (M204 T)" -#: src/libslic3r/PrintConfig.cpp:1096 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "Máxima aceleración X" -#: src/libslic3r/PrintConfig.cpp:1097 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Máxima aceleración Y" -#: src/libslic3r/PrintConfig.cpp:1098 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Máxima aceleración Z" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2218 msgid "Maximum accelerations" msgstr "Aceleraciones máximas" -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 msgid "Maximum exposure time" msgstr "Tiempo de exposición máximo" -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" msgstr "Máximo avance E" -#: src/libslic3r/PrintConfig.cpp:1087 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" msgstr "Máximo avance del eje E" -#: src/libslic3r/PrintConfig.cpp:1084 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" msgstr "Máximo avance en el eje X" -#: src/libslic3r/PrintConfig.cpp:1085 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" msgstr "Máximo avance del eje Y" -#: src/libslic3r/PrintConfig.cpp:1086 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" msgstr "Máximo avance del eje Z" -#: src/libslic3r/PrintConfig.cpp:1078 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" msgstr "Máxima velocidad en X" -#: src/libslic3r/PrintConfig.cpp:1079 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" msgstr "Máxima velocidad en Y" -#: src/libslic3r/PrintConfig.cpp:1080 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" msgstr "Máximo avance en Z" -#: src/slic3r/GUI/Tab.cpp:2165 +#: src/slic3r/GUI/Tab.cpp:2213 msgid "Maximum feedrates" msgstr "Avance máximo" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 msgid "Maximum initial exposure time" msgstr "Tiempo de exposición inicial máximo" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Máximo jerk E" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "Maximo jerk del eje E" -#: src/libslic3r/PrintConfig.cpp:1120 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "Maximo jerk del eje Y" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Maximo jerk del eje Y" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Maximo jerk del eje Z" -#: src/libslic3r/PrintConfig.cpp:1114 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Máximo jerk X" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Máximo jerk Y" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Máximo jerk Z" -#: src/libslic3r/PrintConfig.cpp:566 +#: src/libslic3r/PrintConfig.cpp:598 msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Velocidad volumétrica máxima permitida para este filamento. Limita la velocidad volumétrica máxima de una impresión al mínimo de velocidad volumétrica de impresión y filamento. Establecer en cero para usar sin límite." -#: src/libslic3r/PrintConfig.cpp:3053 +#: src/libslic3r/PrintConfig.cpp:3427 msgid "Merge" msgstr "Combinar" -#: src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "La fusión de puentes o pilares en otros pilares puede aumentar el radio. Cero significa que no hay aumento, uno significa aumento total." -#: src/libslic3r/SLAPrint.cpp:71 +#: src/libslic3r/SLAPrintSteps.cpp:62 msgid "Merging slices and calculating statistics" msgstr "Mezclando rebanadas y calculando estadísticas" @@ -3893,7 +4281,7 @@ msgstr "Mezclando rebanadas y calculando estadísticas" msgid "Mesh repair failed." msgstr "Reparación de la malla fallida." -#: src/slic3r/GUI/wxExtensions.cpp:3514 +#: src/slic3r/GUI/DoubleSlider.cpp:1607 msgid "Message for pause print on current layer (%1% mm)." msgstr "Mensaje para pausa de impresión en la capa actual (%1% mm)." @@ -3901,11 +4289,11 @@ msgstr "Mensaje para pausa de impresión en la capa actual (%1% mm)." msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" msgstr "Los mensajes con una gravedad inferior o igual al nivel de registro se imprimirán. 0:rastreo, 1:depuración, 2:información, 3:advertencia, 4:error, 5:fatal" -#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Min" -#: src/libslic3r/PrintConfig.cpp:1233 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "Velocidad de impresión mínima" @@ -3913,195 +4301,239 @@ msgstr "Velocidad de impresión mínima" msgid "min PrusaSlicer version" msgstr "mínima versión PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:2507 +#: src/libslic3r/PrintConfig.cpp:2763 msgid "Minimal distance of the support points" msgstr "Distancia mínima de los puntos de apoyo" -#: src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "Longitud mínima de filamento extruido" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:54 msgid "Minimal points distance" msgstr "Distancia mínima de puntos" -#: src/libslic3r/PrintConfig.cpp:635 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "Purga mínima en la torre de limpieza" -#: src/libslic3r/PrintConfig.cpp:1442 +#: src/libslic3r/PrintConfig.cpp:177 +msgid "Minimum bottom shell thickness" +msgstr "Espesor mínimo de la tapa inferior" + +#: src/slic3r/GUI/PresetHints.cpp:335 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "El espesor mínimo de la carcasa inferior es %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1512 msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Resolución mínima de detalles, utilizada para simplificar el archivo de entrada para acelerar el trabajo de laminado y reducir el uso de memoria. Los modelos de alta resolución suelen llevar más detalles de los que las impresoras pueden ofrecer. Establézcalo en cero para desactivar cualquier simplificación y usar la resolución completa de la entrada." -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 msgid "Minimum exposure time" msgstr "Tiempo de exposición mínimo" -#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" msgstr "Avance mínimo al extruir" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" msgstr "Avance mínimo al extruir (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2182 +#: src/slic3r/GUI/Tab.cpp:2230 msgid "Minimum feedrates" msgstr "Avances míninos" -#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 +#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 msgid "Minimum initial exposure time" msgstr "Tiempo de exposición inicial mínimo" -#: src/libslic3r/PrintConfig.cpp:1452 +#: src/slic3r/GUI/Tab.cpp:1071 +msgid "Minimum shell thickness" +msgstr "Espesor mínimo de pared" + +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "Espesor mínimo de una carcasa superior / inferior" + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "Espesor mínimo de la carcasa superior" + +#: src/slic3r/GUI/PresetHints.cpp:316 +msgid "Minimum top shell thickness is %1% mm." +msgstr "El espesor mínimo de la carcasa superior es %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "Distancia mínima después de la retracción" -#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" msgstr "Avance mínimo de movimiento" -#: src/libslic3r/PrintConfig.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" msgstr "Velocidad mínima sin extrusión (M205 T)" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Minimum wall thickness of a hollowed model." +msgstr "Mínimo de espesor de la pared de un modelo vaciado." + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum width of features to maintain when doing elephant foot compensation." +msgstr "Ancho mínimo característico para mantener al realizar la compensación de pie de elefante." + +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror" msgstr "Reflejar" -#: src/libslic3r/PrintConfig.cpp:2320 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "Reflejar horizontalmente" -#: src/slic3r/GUI/GLCanvas3D.cpp:1711 +#: src/slic3r/GUI/GLCanvas3D.cpp:2075 msgid "Mirror Object" msgstr "Reflejar objeto" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror the selected object" msgstr "Duplicar el objeto seleccionado" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Mirror the selected object along the X axis" msgstr "Duplicar el objeto seleccionado a lo largo del eje X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Mirror the selected object along the Y axis" msgstr "Duplicar el objeto seleccionado a lo largo del eje Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Mirror the selected object along the Z axis" msgstr "Duplicar el objeto seleccionado a lo largo del eje Z" -#: src/libslic3r/PrintConfig.cpp:2327 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "Reflejar verticalmente" -#: src/slic3r/Utils/OctoPrint.cpp:69 +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 #, possible-c-format msgid "Mismatched type of print host: %s" msgstr "Tipo de host de impresión no coincidente: %s" -#: src/libslic3r/GCode/PreviewData.cpp:176 +#: src/libslic3r/ExtrusionEntity.cpp:323 msgid "Mixed" msgstr "Mezclado" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2482 msgid "ml" msgstr "ml" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118 -#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84 -#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210 -#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293 -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353 -#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484 -#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680 -#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227 -#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263 -#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454 -#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503 -#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521 -#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612 -#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898 -#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125 -#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179 -#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297 -#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381 -#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454 -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483 -#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510 -#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539 -#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 +#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 +#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 +#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 +#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 +#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 +#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 +#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 +#: src/libslic3r/PrintConfig.cpp:2909 msgid "mm" msgstr "mm" -#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" msgstr "mm (cero para deshabilitar)" -#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992 -#: src/libslic3r/PrintConfig.cpp:1797 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mm o %" -#: src/libslic3r/PrintConfig.cpp:201 src/libslic3r/PrintConfig.cpp:577 -#: src/libslic3r/PrintConfig.cpp:585 src/libslic3r/PrintConfig.cpp:594 -#: src/libslic3r/PrintConfig.cpp:602 src/libslic3r/PrintConfig.cpp:629 -#: src/libslic3r/PrintConfig.cpp:648 src/libslic3r/PrintConfig.cpp:874 -#: src/libslic3r/PrintConfig.cpp:1001 src/libslic3r/PrintConfig.cpp:1079 -#: src/libslic3r/PrintConfig.cpp:1099 src/libslic3r/PrintConfig.cpp:1112 -#: src/libslic3r/PrintConfig.cpp:1123 src/libslic3r/PrintConfig.cpp:1176 -#: src/libslic3r/PrintConfig.cpp:1235 src/libslic3r/PrintConfig.cpp:1363 -#: src/libslic3r/PrintConfig.cpp:1537 src/libslic3r/PrintConfig.cpp:1546 -#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:2053 +#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 +#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 +#: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 +#: src/libslic3r/PrintConfig.cpp:1050 src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1181 +#: src/libslic3r/PrintConfig.cpp:1191 src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1300 src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/PrintConfig.cpp:2154 msgid "mm/s" msgstr "mm/s" -#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856 -#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702 -#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s o %" -#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303 -#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936 -#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134 -#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334 +#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:1661 +#: src/libslic3r/PrintConfig.cpp:1730 msgid "mm²" msgstr "mm²" -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" -#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" msgstr "Modo" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" msgstr "modelo" -#: src/slic3r/GUI/BedShapeDialog.cpp:239 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "Modelo" @@ -4109,133 +4541,162 @@ msgstr "Modelo" msgid "Model fixing" msgstr "Reparación de modelos" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model Repair by the Netfabb service" msgstr "Reparación modelo por el servicio Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:406 +#: src/slic3r/Utils/FixModelByWin10.cpp:413 msgid "Model repair canceled" msgstr "Reparación del modelo cancelada" -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model repair failed:" msgstr "Reparación del modelo fallida:" -#: src/slic3r/Utils/FixModelByWin10.cpp:400 +#: src/slic3r/Utils/FixModelByWin10.cpp:407 msgid "Model repair finished" msgstr "Reparación del modelo terminada" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 msgid "Model repaired successfully" msgstr "Modelo reparado exitosamente" -#: src/slic3r/GUI/Preset.cpp:207 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "modificado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Modifier" msgstr "Modificador" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1163 msgid "Modifiers" msgstr "Modificadores" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2503 msgid "money/bottle" msgstr "dinero/botella" -#: src/libslic3r/PrintConfig.cpp:719 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "dinero/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Mouse wheel" msgstr "Rueda del ratón" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:266 msgid "Mouse wheel:" msgstr "Rueda del ratón:" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" msgstr "Mover" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Move clipping plane" msgstr "Mover plano de recorte" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Move current slider thumb Down" msgstr "Mover el control deslizante actual hacia abajo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Move current slider thumb Up" msgstr "Mover el control deslizante actual hacia arriba" -#: src/slic3r/GUI/GLCanvas3D.cpp:2872 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +msgid "Move drainage hole" +msgstr "Mover orificio de drenaje" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3538 msgid "Move Object" msgstr "Mover Objeto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 msgid "Move point" msgstr "Mover punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "Mover la selección 10 mm en dirección X negativa" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "Mover la selección 10 mm en dirección Y negativa" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "Mover la selección 10 mm en dirección X positiva" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "Mover la selección 10 mm en dirección Y positiva" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 msgid "Move support point" msgstr "Mover punto de soporte" -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "Movimiento en el espacio de la cámara" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "Paso de movimiento configurado a 1 mm" + +#: src/libslic3r/PrintConfig.cpp:2201 msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Las impresoras de varios materiales pueden necesitar cebar o purgar extrusoras en los cambios de herramientas. Extruya el exceso de material en la torre de limpieza." -#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769 +#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 msgid "Multi-part object detected" msgstr "Objeto de piezas múltiples detectado" -#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436 +#: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 #, possible-c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Se encontraron múltiples dispositivos %s. Por favor, conecta solo uno a la vez para flashear." -#: src/slic3r/GUI/Tab.cpp:1118 +#: src/slic3r/GUI/Tab.cpp:1181 msgid "Multiple Extruders" msgstr "Múltiples Extrusores" -#: src/slic3r/GUI/Plater.cpp:2414 +#: src/slic3r/GUI/Plater.cpp:2394 msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" msgstr "Se cargaron varios objetos para una impresora de varios materiales.\nEn lugar de considerarlos como objetos múltiples, ¿debería considerar\nestos archivos para formar un solo objeto que tiene varias partes?" -#: src/libslic3r/PrintConfig.cpp:3050 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Multiply copies by creating a grid." msgstr "Multiplicar copias creando una rejilla." -#: src/libslic3r/PrintConfig.cpp:3045 +#: src/libslic3r/PrintConfig.cpp:3419 msgid "Multiply copies by this factor." msgstr "Multiplicar las copias por este factor." -#: src/slic3r/GUI/Field.cpp:139 +#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:176 +#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nombre" -#: src/libslic3r/PrintConfig.cpp:1418 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter." msgstr "Nombre de la variante de impresora. Por ejemplo, las variantes pueden distinguir diferentes diámetros de boquilla." -#: src/libslic3r/PrintConfig.cpp:1412 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "Nombre del fabricante de la impresora." -#: src/libslic3r/PrintConfig.cpp:1009 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "Nombre del perfil desde que éste hereda." -#: src/libslic3r/PrintConfig.cpp:1560 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "Más cercano" @@ -4243,36 +4704,40 @@ msgstr "Más cercano" msgid "Network lookup" msgstr "Búsqueda en la red" -#: src/slic3r/GUI/Plater.cpp:2056 +#: src/slic3r/GUI/Plater.cpp:2135 msgid "New Project" msgstr "Nuevo proyecto" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 +msgid "New project, clear plater" +msgstr "Nuevo proyecto, limpiar plataforma" + +#: src/slic3r/GUI/UpdateDialogs.cpp:38 #, possible-c-format msgid "New version of %s is available" msgstr "Nueva versión de %s disponible" -#: src/slic3r/GUI/UpdateDialogs.cpp:47 +#: src/slic3r/GUI/UpdateDialogs.cpp:45 msgid "New version:" msgstr "Nueva versión:" -#: src/slic3r/GUI/GLCanvas3D.cpp:3750 +#: src/slic3r/GUI/GLCanvas3D.cpp:4722 msgid "Next Redo action: %1%" msgstr "Siguiente acción de Rehacer: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:3718 +#: src/slic3r/GUI/GLCanvas3D.cpp:4690 msgid "Next Undo action: %1%" msgstr "Siguiente acción de Deshacer: %1%" -#: src/libslic3r/PrintConfig.cpp:912 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "Sin extrusión" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:422 msgid "No pad can be generated for this model with the current configuration" msgstr "No se puede generar el pad para este modelo con la configuración actual" -#: src/slic3r/GUI/MainFrame.cpp:635 +#: src/slic3r/GUI/MainFrame.cpp:786 msgid "No previously sliced file." msgstr "Ningún archivo previamente laminado." @@ -4280,160 +4745,175 @@ msgstr "Ningún archivo previamente laminado." msgid "NO RAMMING AT ALL" msgstr "NO EMPUJAR EN ABSOLUTO" -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Sin capas dispersas (EXPERIMENTAL)" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2765 msgid "No support points will be placed closer than this threshold." msgstr "Ningún punto de soporte se colocará más cerca de este umbral." -#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422 -#: src/libslic3r/GCode/PreviewData.cpp:162 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates aviable" +msgstr "No hay actualizaciones disponibles" + +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Ninguno" -#: src/slic3r/GUI/Tab.cpp:2152 +#: src/slic3r/GUI/Tab.cpp:2199 msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1073 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "normal mode" msgstr "modo normal" -#: src/libslic3r/Zipper.cpp:49 +#: src/libslic3r/Zipper.cpp:46 msgid "not a ZIP archive" msgstr "no es un archivo ZIP" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 msgid "Not found: " msgstr "No encontrado:" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/GUI/DoubleSlider.cpp:985 +msgid "Note" +msgstr "Nota" + +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "Aviso: Se necesita la versión 1.1.0 o superior de AstroBox." + +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." msgstr "Nota: Requiere FlashAir con firmware 2.00.02 o posterior y la función de carga activada." -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Nota: Se necesita al menos la versión 1.1.0 de OctoPrint." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Nota: algunos accesos directos funcionan solo en modo de (no)edición." -#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194 -#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577 -#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986 -#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080 -#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329 +#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 +#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 +#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 +#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 +#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 msgid "Notes" msgstr "Notas" -#: src/slic3r/GUI/GUI.cpp:277 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 msgid "Notice" msgstr "Date cuenta" -#: src/slic3r/GUI/ConfigWizard.cpp:118 +#: src/slic3r/GUI/ConfigWizard.cpp:218 msgid "nozzle" msgstr "boquilla" -#: src/libslic3r/PrintConfig.cpp:1261 +#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Diámetro de la boquilla" -#: src/slic3r/GUI/ConfigWizard.cpp:560 +#: src/slic3r/GUI/ConfigWizard.cpp:970 msgid "Nozzle Diameter:" msgstr "Diámetro de la boquilla:" -#: src/libslic3r/PrintConfig.cpp:618 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "Número de movimientos de enfriamiento" -#: src/slic3r/GUI/Tab.cpp:1845 +#: src/slic3r/GUI/Tab.cpp:1837 msgid "Number of extruders of the printer." msgstr "Número de extrusores de la impresora." -#: src/libslic3r/PrintConfig.cpp:1888 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "Number of interface layers to insert between the object(s) and support material." msgstr "Número de capas de interfaz para insertar entre el (los) objeto(s) y el material de soporte." -#: src/libslic3r/PrintConfig.cpp:1627 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely." msgstr "Número de vueltas para la falda Si se establece la opción Longitud Mínima de Extrusión, el número de bucles puede ser mayor que el configurado aquí. Ajuste esto a cero para deshabilitar la falda por completo." -#: src/libslic3r/PrintConfig.cpp:2214 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "Número de píxeles en" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Número de píxeles en X" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Número de píxeles en Y" -#: src/libslic3r/PrintConfig.cpp:151 +#: src/libslic3r/PrintConfig.cpp:166 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Número de capas sólidas para generar en las superficies inferiores." -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." msgstr "Número de capas sólidas para generar en las superficies superior e inferior." -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." msgstr "Número de capas sólidas para generar en las superficies superiores." -#: src/libslic3r/PrintConfig.cpp:2303 +#: src/libslic3r/PrintConfig.cpp:2509 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "El número de capas necesarias para el tiempo de exposición cambie desde el tiempo de exposición inicial hasta el tiempo de exposición" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:243 msgid "Number of tool changes" msgstr "Número de cambios de herramienta" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2744 msgid "Object elevation" msgstr "Elevación del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1858 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 msgid "Object manipulation" msgstr "Manipulación de objetos" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "Nombre del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 msgid "Object or Instance" msgstr "Objeto o instancia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Object reordered" msgstr "Objetos reordenados" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1868 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 msgid "Object Settings to modify" msgstr "Configuraciones de objetos para modificar" -#: src/slic3r/GUI/Plater.cpp:1875 +#: src/slic3r/GUI/Plater.cpp:2513 msgid "Object too large?" msgstr "Objeto demasiado grande?" -#: src/libslic3r/PrintConfig.cpp:2161 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "El objeto se utilizará para purgar el nozzle después de un cambio de herramienta para guardar el material que de lo contrario terminaría en la torre de limpieza y disminuir el tiempo de impresión. Los colores de los objetos se mezclarán como resultado." -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "object(s)" msgstr "objeto(s)" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "objects" msgstr "objetos" -#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "Octagram Spiral" @@ -4441,299 +4921,332 @@ msgstr "Octagram Spiral" msgid "OctoPrint version" msgstr "Versión de OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2419 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 msgid "of a current Object" msgstr "del Objeto actual" -#: src/slic3r/GUI/wxExtensions.cpp:2570 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "Desplazamiento" + +#: src/slic3r/GUI/DoubleSlider.cpp:923 msgid "One layer mode" msgstr "Modo de capa única" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1361 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Uno o más objetos fueron asignados a un extrusor no existente." -#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Solo crear soportes si está en contacto con la plataforma. No crea soporte en la impresión." -#: src/libslic3r/PrintConfig.cpp:978 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "Solo rellenar cuando sea necesario" -#: src/slic3r/GUI/Tab.cpp:2271 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Only lift Z" msgstr "Solo levantar Z" -#: src/libslic3r/PrintConfig.cpp:1500 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "Solo levantar Z mayor que" -#: src/libslic3r/PrintConfig.cpp:1509 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Solo levantar Z menor que" -#: src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "Solo retraer al cruzar perímetros" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1189 msgid "Ooze prevention" msgstr "Prevención de goteo" -#: src/libslic3r/Print.cpp:1193 +#: src/libslic3r/Print.cpp:1262 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "La prevención de goteo actualmente no es compatible con la torre de limpieza activa." -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "Abrir un archivo de proyecto" -#: src/slic3r/GUI/Tab.cpp:1745 +#: src/slic3r/GUI/Tab.cpp:1727 msgid "Open CA certificate file" msgstr "Abrir archivo de certificado CA" -#: src/slic3r/GUI/UpdateDialogs.cpp:63 src/slic3r/GUI/UpdateDialogs.cpp:126 +#: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "Abrir la página del registro de cambios" -#: src/slic3r/GUI/UpdateDialogs.cpp:68 +#: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Abrir página de descarga" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:105 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "Abrir proyecto STL/OBJ/AMF/3MF con configuración, limpiar plataforma" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" msgstr "Abrir el proyecto STL/OBJ/AMF/3MF con config, borrar contenido base" -#: src/slic3r/GUI/MainFrame.cpp:551 +#: src/slic3r/GUI/MainFrame.cpp:695 #, possible-c-format msgid "Open the %s website in your browser" msgstr "Abrir el sitio web de %s en su navegador" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Abrir la página de descarga de los controladores Prusa3D en su navegador" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Open the software releases page in your browser" msgstr "Abre la página de lanzamientos de software en tu navegador" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize orientation" msgstr "Optimizar la orientación" -#: src/slic3r/GUI/Plater.cpp:2643 +#: src/slic3r/GUI/Plater.cpp:2751 msgid "Optimize Rotation" msgstr "Optimizar Rotación" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize the rotation of the object for better print results." msgstr "Optimizar la rotación del objeto para obtener mejores resultados de impresión." -#: src/libslic3r/PrintConfig.cpp:112 +#: src/libslic3r/PrintConfig.cpp:127 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimiza los movimientos de desplazamiento para minimizar el cruce de perímetros. Esto es principalmente útil con extrusores Bowden que sufren goteo. Esta característica ralentiza tanto la impresión como la generación de código G." -#: src/slic3r/GUI/Tab.cpp:1070 +#: src/slic3r/GUI/Tab.cpp:1133 msgid "Options for support material and raft" msgstr "Opciones de material de soporte y balsa" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/DoubleSlider.cpp:960 +msgid "or press \"+\" key" +msgstr "o presiona la tecla \"+\"" + +#: src/slic3r/GUI/Plater.cpp:2876 msgid "Orientation found." msgstr "Orientación encontrada." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2875 msgid "Orientation search canceled." msgstr "Búsqueda de orientación cancelada." -#: src/slic3r/GUI/BedShapeDialog.cpp:79 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "Origen" -#: src/slic3r/GUI/Tab.cpp:1165 +#: src/slic3r/GUI/Tab.cpp:1229 msgid "Other" msgstr "Otro" -#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977 +#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Otras capas" -#: src/slic3r/GUI/ConfigWizard.cpp:438 +#: src/slic3r/GUI/ConfigWizard.cpp:857 msgid "Other Vendors" msgstr "Otras Marcas" -#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 msgid "Output file" msgstr "Archivo de salida" -#: src/libslic3r/PrintConfig.cpp:3104 +#: src/libslic3r/PrintConfig.cpp:3478 msgid "Output File" msgstr "Archivo de salida" -#: src/libslic3r/PrintConfig.cpp:1294 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "Formato de nombre de salida" -#: src/libslic3r/PrintConfig.cpp:2992 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Output Model Info" msgstr "Información del modelo de salida" -#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 msgid "Output options" msgstr "Opciones de salida" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Perímetro de voladizos" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "Umbral de voladizos" -#: src/slic3r/GUI/Tab.cpp:1153 +#: src/slic3r/GUI/Tab.cpp:1217 msgid "Overlap" msgstr "Superposición" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "C&onfiguración de Impresión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520 -#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426 -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523 -#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547 -#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569 +#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 +#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 +#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 +#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 +#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 +#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 +#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 +#: src/libslic3r/PrintConfig.cpp:2890 msgid "Pad" msgstr "Pad" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 +#: src/slic3r/GUI/GUI_ObjectList.cpp:45 msgid "Pad and Support" msgstr "Pad y soportes" -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "Pad around object" msgstr "Pad alrededor del objeto" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2853 msgid "Pad around object everywhere" msgstr "Pad alrededor del objeto en todos lados" -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2802 msgid "Pad brim size" msgstr "Tamaño del borde del pad" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "El tamaño del borde del pad es demasiado pequeño para la configuración actual." -#: src/libslic3r/PrintConfig.cpp:2731 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector penetration" msgstr "Penetración del conector del objeto al Pad" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "Pad object connector stride" msgstr "Paso del conector del objeto al Pad" -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector width" msgstr "Anchura del conector del pad al objeto" -#: src/libslic3r/PrintConfig.cpp:2700 +#: src/libslic3r/PrintConfig.cpp:2860 msgid "Pad object gap" msgstr "Espacio del pad con el objeto" -#: src/libslic3r/PrintConfig.cpp:2532 +#: src/libslic3r/PrintConfig.cpp:2788 msgid "Pad wall height" msgstr "Altura de la pared del pad" -#: src/libslic3r/PrintConfig.cpp:2568 +#: src/libslic3r/PrintConfig.cpp:2835 msgid "Pad wall slope" msgstr "Pendiente de la pared del pad" -#: src/libslic3r/PrintConfig.cpp:2522 +#: src/libslic3r/PrintConfig.cpp:2778 msgid "Pad wall thickness" msgstr "Espesor de la pared del pad" -#: src/slic3r/GUI/Field.cpp:108 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "Page Down" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "Page Up" + +#: src/slic3r/GUI/Field.cpp:134 msgid "parameter name" msgstr "nombre del parámetro" -#: src/slic3r/GUI/Field.cpp:184 +#: src/slic3r/GUI/Field.cpp:238 msgid "Parameter validation" msgstr "Validación de parámetros" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Part" msgstr "Pieza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1881 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 msgid "Part manipulation" msgstr "Manipulación de piezas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 msgid "Part Settings to modify" msgstr "Configuraciones de piezas para modificar" -#: src/slic3r/GUI/GLCanvas3D.cpp:3449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4563 msgid "Paste" msgstr "Pegar" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "Pegar portapapeles" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 msgid "Paste from clipboard" msgstr "Pegar desde el portapapeles" -#: src/slic3r/GUI/Plater.cpp:4772 +#: src/slic3r/GUI/Plater.cpp:5640 msgid "Paste From Clipboard" msgstr "Pegar Desde Portapapeles" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "Patrón" -#: src/libslic3r/PrintConfig.cpp:1805 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "Ángulo del patrón" -#: src/libslic3r/PrintConfig.cpp:1929 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" msgstr "Espaciado entre patrones" -#: src/libslic3r/PrintConfig.cpp:1917 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "Patrón utilizado para generar material de soporte." -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/DoubleSlider.cpp:976 +msgid "Pause print (\"%1%\")" +msgstr "Pausar impresión (\"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 +#: src/slic3r/GUI/GLCanvas3D.cpp:987 msgid "Pause print or custom G-code" msgstr "Pausar impresión o código G personalizado" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "Realizar corte" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163 +#: src/libslic3r/PrintConfig.cpp:2918 +msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." +msgstr "Rendimiento vs precisión de cálculo. Los valores más bajos pueden producir artefactos no deseados." + +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Perímetro" -#: src/libslic3r/PrintConfig.cpp:1339 +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "Extrusor para perímetros" -#: src/slic3r/GUI/PresetHints.cpp:162 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" msgstr "perímetros" -#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348 -#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "Perímetros" -#: src/slic3r/GUI/ConfigWizard.cpp:816 +#: src/slic3r/GUI/ConfigWizard.cpp:861 #, possible-c-format msgid "Pick another vendor supported by %s" msgstr "Elije otro proveedor compatible con% s" @@ -4742,11 +5255,11 @@ msgstr "Elije otro proveedor compatible con% s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Tamaños de imagen para almacenar en un archivo .gcode y .sl1" -#: src/libslic3r/PrintConfig.cpp:2430 +#: src/libslic3r/PrintConfig.cpp:2672 msgid "Pillar widening factor" msgstr "Factor de ensanchamiento del pilar" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "El diámetro de la cabeza del pin debe ser menor que el diámetro del pilar." @@ -4754,40 +5267,48 @@ msgstr "El diámetro de la cabeza del pin debe ser menor que el diámetro del pi msgid "Place bearings in slots and resume" msgstr "Colocar rodamientos en los agujeros y continuar" -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32 +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "Coloca los rodamientos en las ranuras y sigue imprimiendo" + +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "Colocar en la cara" -#: src/slic3r/GUI/MainFrame.cpp:161 +#: src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Plataforma" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 msgid "Plater Shortcuts" msgstr "Atajos para la base" -#: src/slic3r/GUI/GUI.cpp:143 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Por favor comprueba y soluciona tu lista de objetos." -#: src/slic3r/GUI/Tab.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 msgid "Please check your object list before preset changing." msgstr "Por favor comprueba tu lista de objetos antes de cambiar los ajustes iniciales." -#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:286 +#: src/slic3r/GUI/Plater.cpp:3272 +msgid "Please select the file to reload" +msgstr "Por favor selecciona el archivo a volver a cargar" + +#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" msgstr "Porciones del copyright" -#: src/libslic3r/PrintConfig.cpp:2235 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "Retrato" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:215 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:457 msgid "Position" msgstr "Posición" -#: src/slic3r/GUI/Tab.cpp:2265 +#: src/slic3r/GUI/Tab.cpp:2363 msgid "Position (for multi-extruder printers)" msgstr "Posición (para impresoras con múltiples extrusores )" @@ -4795,245 +5316,278 @@ msgstr "Posición (para impresoras con múltiples extrusores )" msgid "Position (mm)" msgstr "Posición (mm)" -#: src/libslic3r/PrintConfig.cpp:1553 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Posición de los puntos de inicio del perímetro." -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "Posición X" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Posición Y" -#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Scripts de postprocesamiento" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "Pre&visualizar" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Preferencias" -#: src/libslic3r/PrintConfig.cpp:1571 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "Dirección preferida de la costura" -#: src/libslic3r/PrintConfig.cpp:1582 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "Dirección preferida de la unión - jitter" -#: src/libslic3r/PrintObject.cpp:251 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "Preparando relleno" -#: src/slic3r/GUI/Tab.cpp:2758 +#: src/slic3r/GUI/Tab.cpp:2904 #, possible-c-format msgid "Preset (%s)" msgstr "Ajuste inicial (%s)" -#: src/slic3r/GUI/Tab.cpp:3031 -msgid "Preset with name \"%1%\" already exist." +#: src/slic3r/GUI/Tab.cpp:3066 +msgid "Preset with name \"%1%\" already exists." msgstr "Ya existe un preset con el nombre \"% 1%\"." -#: src/slic3r/GUI/Tab.cpp:2994 +#: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" msgstr "PresetName||%1% - Copiar" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" msgstr "Presiona para activar el rectángulo de deselección \no para escalar o rotar los objetos seleccionados \nen torno a su propio centro" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "Presionar para activar el rectángulo de deselección " + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Presiona para activar la escala de una dirección en la escala Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 #, no-c-format msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" msgstr "Presiona para activar el rectángulo de selección\n o para ajustar un 5% en la escala Gizmo\n o para ajustar un 1 mm en el movimiento Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "Presionar para activar el rectángulo de selección" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" +msgstr "Presionar para escalar (en escalar Gizmo) o rotar(en rotar Gizmo)\nobjetos seleccionados alrededor de su propio centro" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Press to scale selection to fit print volume\nin Gizmo scale" msgstr "Presiona para escalar la selección para cuadrar en el volumen de impresión\nen escala Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 msgid "Press to select multiple object or move multiple object with mouse" msgstr "Presiona para seleccionar objetos múltiples o mover objetos múltiples con el ratón" -#: src/slic3r/GUI/Tab.cpp:2288 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with mouse" +msgstr "Presiona para seleccionar objetos múltiples\no mover objetos múltiples con el ratón" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with a mouse" +msgstr "Presiona para seleccionar objetos múltiples\no mover objetos múltiples con el ratón" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" +msgstr "Presiona para ajustar un 5% en escala Gizmo\no para ajustar cada 1mm en mover Gizmo" + +#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 msgid "Preview" msgstr "Previsualización" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "Vista preliminar del modelo con su interior vaciado y taladrado" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 msgid "Preview Shortcuts" msgstr "Vista previa de accesos rápidos" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid "Previously sliced file (" msgstr "Archivo anterior laminado (" -#: src/libslic3r/PrintConfig.cpp:1773 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "Cebar todos los extrusores de impresión" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 msgid "print" msgstr "imprimir" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "Cola de subida al &host de impresión" -#: src/libslic3r/PrintConfig.cpp:439 +#: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Imprimir perímetros de contorno desde el más externo hasta el más interno en lugar del orden inverso predeterminado." -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Print Diameters" msgstr "Diámetros de impresión" -#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074 +#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 msgid "Print Host upload" msgstr "Subida al host de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -#: src/slic3r/GUI/PrintHostDialogs.cpp:135 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Cola de subida al host de impresión" -#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405 +#: src/slic3r/GUI/DoubleSlider.cpp:941 +msgid "Print mode" +msgstr "Modo de impresión" + +#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 msgid "Print Settings" msgstr "Configuración de Impresión" -#: src/slic3r/GUI/Plater.cpp:681 +#: src/slic3r/GUI/Plater.cpp:812 msgid "Print settings" msgstr "Configuración de impresión" -#: src/slic3r/GUI/Tab.cpp:1520 +#: src/slic3r/GUI/Tab.cpp:1480 msgid "Print speed override" msgstr "Anular la velocidad de impresión" -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Imprimir z" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "Configura&ción de Impresión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1438 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Printable" msgstr "Imprimible" -#: src/slic3r/GUI/Plater.cpp:685 +#: src/slic3r/GUI/Plater.cpp:816 msgid "Printer" msgstr "Impresora" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 msgid "printer" msgstr "impresora" -#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "Corrección absoluta de la impresora" -#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283 +#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 msgid "Printer gamma correction" msgstr "Corrección gamma de la impresora" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/Tab.cpp:978 msgid "printer model" msgstr "modelo de impresora" -#: src/libslic3r/PrintConfig.cpp:1402 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "Notas de la impresora" -#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267 -#: src/libslic3r/PrintConfig.cpp:2268 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "Corrección de escala de la impresora" -#: src/slic3r/GUI/Tab.hpp:368 +#: src/slic3r/GUI/Tab.hpp:390 msgid "Printer Settings" msgstr "Configuración de la Impresora" -#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43 +#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44 msgid "Printer technology" msgstr "Tecnología de la impresora" -#: src/libslic3r/PrintConfig.cpp:1396 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "Tipo de impresora" -#: src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "Modelo de impresora" -#: src/libslic3r/PrintConfig.cpp:1411 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "Fabricante de la impresora" -#: src/libslic3r/Print.cpp:1294 +#: src/libslic3r/Print.cpp:1384 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Imprimir con múltiples extrusoras de diferentes diámetros de boquilla. Si el soporte debe imprimirse con la extrusora actual (support_material_extruder == 0 o support_material_interface_extruder == 0), todas las boquillas deben ser del mismo diámetro." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:715 +#: src/slic3r/GUI/MainFrame.cpp:851 #, possible-c-format msgid "Processing %s" msgstr "Procesando %s" -#: src/slic3r/GUI/Plater.cpp:2287 +#: src/slic3r/GUI/Plater.cpp:2267 #, possible-c-format msgid "Processing input file %s" msgstr "Procesando el archivo de entrada %s" -#: src/libslic3r/PrintObject.cpp:110 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "Procesando malla triangulada" -#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585 -#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087 -#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 +#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 +#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 msgid "Profile dependencies" msgstr "Dependencias de perfil" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "Perfil:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:149 +#: src/slic3r/GUI/PrintHostDialogs.cpp:150 msgid "Progress" msgstr "Progreso" -#: src/slic3r/GUI/FirmwareDialog.cpp:779 +#: src/slic3r/GUI/FirmwareDialog.cpp:817 msgid "Progress:" msgstr "Progreso:" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Prusa 3D &Drivers" msgstr "&Controladores de Prusa 3D" -#: src/slic3r/GUI/ConfigWizard.cpp:1109 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa FFF Technology Printers" msgstr "Impresoras Prusa de tecnología FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:1112 +#: src/slic3r/GUI/ConfigWizard.cpp:2001 msgid "Prusa MSLA Technology Printers" msgstr "Impresoras Prusa de tecnología MSLA" -#: src/slic3r/GUI/AboutDialog.cpp:255 +#: src/slic3r/GUI/AboutDialog.cpp:260 msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap community." msgstr "PrusaSlicer está basado en Slic3r de Alessandro Ranellucci y la comunidad RepRap." -#: src/slic3r/GUI/GUI_App.cpp:297 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 #, possible-c-format msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." msgstr "PrusaSlicer requiere el controlador de gráficos OpenGL 2.0 para que funcione correctamente, \nmientras que la versión %s OpenGL, renderizado %s, vendedor %s fue detectada." @@ -5042,211 +5596,253 @@ msgstr "PrusaSlicer requiere el controlador de gráficos OpenGL 2.0 para que fun msgid "PrusaSlicer version" msgstr "Versión PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:771 +#: src/slic3r/GUI/ConfigWizard.cpp:816 msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." msgstr "Las interfaces de usuario de PrusaSlicer tiene tres variantes:\nSimple, avanzado y experto.\nEl modo Simple muestra solo las configuraciones usadas con más frecuencia relevantes para la impresión 3D normal. Los otros dos ofrecen ajustes progresivamente más sofisticados, son adecuados para usuarios avanzados y expertos, respectivamente." -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "La purga después del cambio de herramientas se realizará dentro de los rellenos de este objeto. Esto reduce la cantidad de desperdicio, pero puede resultar en un tiempo de impresión más largo debido a movimientos de viaje adicionales." -#: src/slic3r/GUI/Plater.cpp:456 +#: src/slic3r/GUI/Plater.cpp:541 msgid "Purging volumes" msgstr "Volúmenes de purga" -#: src/libslic3r/PrintConfig.cpp:2106 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "Volumen de purga - volumen de carga/descarga" -#: src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "Volúmenes de purga - matriz" -#: src/slic3r/GUI/Tab.cpp:1019 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "Calidad" + +#: src/slic3r/GUI/Tab.cpp:1082 msgid "Quality (slower slicing)" msgstr "Calidad (laminado más lento)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1145 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1377 +#: src/slic3r/GUI/GLCanvas3D.cpp:278 +msgid "Quality / Speed" +msgstr "Calidad / Velocidad" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 #, possible-c-format msgid "Quick Add Settings (%s)" msgstr "Añadir ajustes rápidos (%s)" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "Laminado rápido" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "Laminado rápido y Guardar como" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 #, possible-c-format msgid "Quit %s" msgstr "Cerrar %s" -#: src/libslic3r/PrintConfig.cpp:479 +#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Radio" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1129 msgid "Raft" msgstr "Balsa" -#: src/libslic3r/PrintConfig.cpp:1431 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" msgstr "Capas de balsa" -#: src/slic3r/GUI/WipeTowerDialog.cpp:14 +#: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "Configuración de empuje" -#: src/slic3r/GUI/WipeTowerDialog.cpp:40 +#: src/slic3r/GUI/WipeTowerDialog.cpp:41 msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." msgstr "El empuje señala la extrusión rápida justo antes de un cambio de filamento en una impresora MM de un sólo extrusor. Su propósito es asegurar una forma adecuada para el extremo de filamento que se va a descargar, para que no haya problemas al insertar uno nuevo y para que se pueda volver a insertar este más tarde. Esta fase es importante y diferentes materiales puede precisar diferentes velocidades para obtener la forma correcta. Por este motivo, las velocidades extrusión durante el empuje son ajustables.\n\nEste es un ajuste para expertos, ajustarlo incorrectamente podrá producir atascos, que la rueda del extrusor arañe el filamento, etc." -#: src/slic3r/GUI/WipeTowerDialog.cpp:90 +#: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" msgstr "Espaciado de la linea de empuje" -#: src/slic3r/GUI/WipeTowerDialog.cpp:88 +#: src/slic3r/GUI/WipeTowerDialog.cpp:89 msgid "Ramming line width" msgstr "Ancho de la linea de empuje" -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "Parámetros de empuje" -#: src/slic3r/GUI/Tab.cpp:1545 +#: src/slic3r/GUI/Tab.cpp:1507 msgid "Ramming settings" msgstr "Ajustes de empuje" -#: src/libslic3r/PrintConfig.cpp:1559 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "Aleatorio" -#: src/slic3r/GUI/wxExtensions.cpp:486 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 msgid "Range" msgstr "Rango" -#: src/libslic3r/SLAPrint.cpp:72 +#: src/libslic3r/SLAPrintSteps.cpp:63 msgid "Rasterizing layers" msgstr "Rastrerizando capas" -#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "Re&cargar desde el disco" + +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "Reconfigurar" -#: src/slic3r/GUI/FirmwareDialog.cpp:783 +#: src/slic3r/GUI/FirmwareDialog.cpp:821 msgid "Ready" msgstr "Listo" -#: src/slic3r/GUI/Plater.cpp:2406 +#: src/slic3r/GUI/Plater.cpp:3099 msgid "Ready to slice" msgstr "Preparado para laminar" -#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "Trasera" -#: src/slic3r/GUI/MainFrame.cpp:526 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "Vista trasera" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "Proyectos recientes" -#: src/slic3r/GUI/PresetHints.cpp:262 +#: src/slic3r/GUI/PresetHints.cpp:263 #, possible-c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Espesor de pared delgada del objeto recomendado para una altura de capa %.2f y" +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." +msgstr "Espesor de pared delgada del objeto recomendada: No disponible debido al ancho de extrusión excesivamente pequeño." + #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." msgstr "Grosor recomendado de la pared del objeto recomendado: no disponible debido a la altura de capa no válida." -#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "Recreando" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "Rectangular" -#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796 -#: src/libslic3r/PrintConfig.cpp:1922 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "Rectilíneo" -#: src/libslic3r/PrintConfig.cpp:1923 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "Rejilla rectilínea" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3639 -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Rehacer" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Rehacer %1$d Acción" msgstr[1] "Rehacer %1$d Acciones" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Redo History" msgstr "Rehacer Historia" -#: src/slic3r/GUI/Tab.cpp:1037 +#: src/slic3r/GUI/Tab.cpp:1100 msgid "Reducing printing time" msgstr "Reduciendo el tiempo de impresión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3461 +msgid "Reload all from disk" +msgstr "Recargar todo desde el disco" + +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 +#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 msgid "Reload from disk" msgstr "Recargar desde el disco" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3328 +msgid "Reload from: " +msgstr "Recargar desde:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "Recargar la base desde el disco" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "Cargar la base del disco" + +#: src/slic3r/GUI/Plater.cpp:3972 msgid "Reload the selected object from disk" msgstr "Recargar el objeto seleccionado del disco" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3715 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 msgid "Reload the selected volumes from disk" msgstr "Vuelve a cargar los volúmenes seleccionados desde el disco" -#: src/slic3r/GUI/Preferences.cpp:36 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "Recordar el directorio de salida" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "remove" msgstr "eliminar" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Remove" msgstr "Eliminar" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "Elimina todos los huecos" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:51 msgid "Remove all points" msgstr "Eliminar todos los puntos" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:251 msgid "Remove detail" msgstr "Retirar detalle" +#: src/slic3r/GUI/Plater.cpp:876 +msgid "Remove device" +msgstr "Eliminar dispositivo" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 msgid "Remove extruder from sequence" msgstr "Retirar extrusor de la secuencia" -#: src/slic3r/GUI/GLCanvas3D.cpp:3475 +#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 msgid "Remove instance" msgstr "Retirar una copia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 msgid "Remove Instance of the selected object" msgstr "Retirar instancia del objeto seleccionado" @@ -5254,76 +5850,80 @@ msgstr "Retirar instancia del objeto seleccionado" msgid "Remove layer range" msgstr "Retirar rango de capas" -#: src/slic3r/GUI/Plater.cpp:3518 +#: src/slic3r/GUI/Plater.cpp:3951 msgid "Remove one instance of the selected object" msgstr "Eliminar una instancia del objeto seleccionado" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "Eliminar parámetro" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Remove point" msgstr "Retirar punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Remove point from selection" msgstr "Retirar punto de selección" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "Elimina huecos seleccionados" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 msgid "Remove selected points" msgstr "Eliminar puntos seleccionados" -#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 msgid "Remove the selected object" msgstr "Eliminar el objeto seleccionado" -#: src/slic3r/GUI/ConfigWizard.cpp:305 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Eliminar perfiles de usuario - instalar desde cero (se realizará una instantánea con anterioridad)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1200 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 msgid "Rename" msgstr "Renombrar" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Object" msgstr "Renombrar Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Sub-object" msgstr "Renombrar Sub-Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Renaming" msgstr "Renombrar" -#: src/libslic3r/PrintConfig.cpp:3125 +#: src/libslic3r/PrintConfig.cpp:3500 msgid "Render with a software renderer" msgstr "Renderizar con un software renderizador" -#: src/libslic3r/PrintConfig.cpp:3126 +#: src/libslic3r/PrintConfig.cpp:3501 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Render con un software de renderizado. El procesador de software MESA incluido se carga en lugar del controlador OpenGL predeterminado." -#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058 +#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 msgid "Repair" msgstr "Reparar" -#: src/slic3r/Utils/FixModelByWin10.cpp:387 +#: src/slic3r/Utils/FixModelByWin10.cpp:394 msgid "Repaired 3MF file contains more than one object" msgstr "El archivo 3MF reparado contiene más de un objeto" -#: src/slic3r/Utils/FixModelByWin10.cpp:391 +#: src/slic3r/Utils/FixModelByWin10.cpp:398 msgid "Repaired 3MF file contains more than one volume" msgstr "El archivo 3MF reparado contiene más de un volumen" -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:392 msgid "Repaired 3MF file does not contain any object" msgstr "El archivo 3MF reparado no contiene ningún objeto" -#: src/slic3r/Utils/FixModelByWin10.cpp:389 +#: src/slic3r/Utils/FixModelByWin10.cpp:396 msgid "Repaired 3MF file does not contain any volume" msgstr "El archivo 3MF reparado no contiene ningún volumen" @@ -5331,176 +5931,189 @@ msgstr "El archivo 3MF reparado no contiene ningún volumen" msgid "Repairing model by the Netfabb service" msgstr "Reparar el modelo mediante el servicio de Netfabb" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "Repetir el último laminado rápido" -#: src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "Repetir el último laminado rápido" -#: src/slic3r/GUI/Tab.cpp:3032 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Replace?" msgstr "¿Reemplazar?" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Report an I&ssue" msgstr "I&nformar de un problema" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 #, possible-c-format msgid "Report an issue on %s" msgstr "Reportar un problema a %s" -#: src/slic3r/Utils/PresetUpdater.cpp:590 +#: src/slic3r/Utils/PresetUpdater.cpp:713 #, possible-c-format msgid "requires max. %s" msgstr "requiere max. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:588 +#: src/slic3r/Utils/PresetUpdater.cpp:710 #, possible-c-format msgid "requires min. %s" msgstr "requiere min. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:583 +#: src/slic3r/Utils/PresetUpdater.cpp:705 #, possible-c-format msgid "requires min. %s and max. %s" msgstr "requiere un min. %s y un max. %s" -#: src/slic3r/GUI/FirmwareDialog.cpp:772 +#: src/slic3r/GUI/FirmwareDialog.cpp:810 msgid "Rescan" msgstr "Rescanear" -#: src/slic3r/GUI/Tab.cpp:1879 +#: src/slic3r/GUI/Tab.cpp:1904 msgid "Rescan serial ports" msgstr "Vuelver a examinar los puertos serie" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:318 msgid "Reset" msgstr "Reset" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 msgid "Reset clipping plane" msgstr "Restablecer plano de recorte" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 msgid "Reset direction" msgstr "Restablecer dirección" -#: src/slic3r/GUI/Plater.cpp:2603 +#: src/slic3r/GUI/Plater.cpp:2707 msgid "Reset Project" msgstr "Reiniciar Proyecto" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:303 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Reiniciar rotación" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:328 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 msgid "Reset Rotation" msgstr "Reiniciar rotación" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:285 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:290 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:397 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:399 msgid "Reset scale" msgstr "Reiniciar escala" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:257 msgid "Reset to base" msgstr "Reiniciar a la base" -#: src/slic3r/GUI/Tab.cpp:2584 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Reset to Filament Color" msgstr "Reiniciar Filament Color" -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "Resolución" -#: src/libslic3r/PrintConfig.cpp:1459 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "Retracta cantidad antes de limpiar" -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" msgstr "Retraer en el cambio de capa" -#: src/slic3r/GUI/Tab.cpp:2268 +#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 +#: src/slic3r/GUI/Tab.cpp:2366 msgid "Retraction" msgstr "Retracción" -#: src/libslic3r/PrintConfig.cpp:1453 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "Retraction is not triggered when travel moves are shorter than this length." msgstr "La retracción no se activa cuando los movimientos de desplazamiento son más cortos que esta longitud." -#: src/libslic3r/PrintConfig.cpp:1474 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "Longitud de retracción" -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "Longitud de retracción (cambio de herramienta)" -#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "Velocidad de retracción" -#: src/slic3r/GUI/Tab.cpp:2284 +#: src/slic3r/GUI/Tab.cpp:2382 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retracción cuando la herramienta está desactivada (configuraciones avanzadas para configuraciones de extrusores múltiples )" -#: src/slic3r/GUI/GUI_Preview.cpp:244 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Retractions" msgstr "Retracciones" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "Derecha" -#: src/slic3r/GUI/GUI_ObjectList.cpp:381 +#: src/slic3r/GUI/GUI_ObjectList.cpp:400 msgid "Right button click the icon to change the object printable property" msgstr "Clic con el botón derecho en el icono para cambiar la propiedad imprimible del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Right button click the icon to change the object settings" msgstr "Clic del botón derecho en el ícono para cambiar los ajustes del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:250 +#: src/slic3r/GUI/GUI_ObjectList.cpp:357 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Clic del botón derecho en el ícono para arreglar el STL a través de Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Right click" msgstr "Click derecho" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Right mouse button:" msgstr "Botón derecho del ratón:" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "Vista derecha" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253 -#: src/libslic3r/PrintConfig.cpp:3062 +#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 +#: src/libslic3r/PrintConfig.cpp:3436 msgid "Rotate" msgstr "Girar" -#: src/libslic3r/PrintConfig.cpp:3067 +#: src/libslic3r/PrintConfig.cpp:3441 msgid "Rotate around X" msgstr "Rotar alrededor del eje X" -#: src/libslic3r/PrintConfig.cpp:3072 +#: src/libslic3r/PrintConfig.cpp:3446 msgid "Rotate around Y" msgstr "Rotar alrededor del eje Y" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "Poner patas arriba" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "Gira la selección 45 grados en sentido antihorario" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "Gira la selección 45 grados en sentido horario" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:321 +#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotación" @@ -5508,118 +6121,124 @@ msgstr "Rotación" msgid "Rotation (deg)" msgstr "Rotación (grados)" -#: src/libslic3r/PrintConfig.cpp:3068 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Rotation angle around the X axis in degrees." msgstr "Ángulo de rotación alrededor del eje X en grados." -#: src/libslic3r/PrintConfig.cpp:3073 +#: src/libslic3r/PrintConfig.cpp:3447 msgid "Rotation angle around the Y axis in degrees." msgstr "Ángulo de rotación alrededor del eje Y en grados." -#: src/libslic3r/PrintConfig.cpp:3063 +#: src/libslic3r/PrintConfig.cpp:3437 msgid "Rotation angle around the Z axis in degrees." msgstr "Ángulo de rotación alrededor del eje Z en grados." -#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658 +#: src/slic3r/GUI/GUI_App.cpp:797 #, possible-c-format msgid "Run %s" msgstr "Ejecutar %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 msgid "Running post-processing scripts" msgstr "Ejecutando scripts de post-procesamiento" -#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81 -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612 -#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671 -#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252 -#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319 +#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 +#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 +#: src/libslic3r/PrintConfig.cpp:2557 msgid "s" msgstr "$" -#: src/slic3r/GUI/MainFrame.cpp:466 src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end G-code" msgstr "E&nviar código G" -#: src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end to print" msgstr "E&nviar para imprimir" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3401 #, possible-c-format msgid "Save %s as:" msgstr "Guardar %s como:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:828 #, possible-c-format msgid "Save %s file as:" msgstr "Guardar archivo %s como:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 msgid "Save changes?" msgstr "¿Guardar cambios?" -#: src/libslic3r/PrintConfig.cpp:2997 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Save config file" msgstr "Guardar archivo de configuración" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:927 msgid "Save configuration as:" msgstr "Guardar la configuración como:" -#: src/libslic3r/PrintConfig.cpp:2998 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Save configuration to the specified file." msgstr "Guarda la configuración al archivo especificado." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:133 +#: src/slic3r/GUI/Tab.cpp:135 #, possible-c-format msgid "Save current %s" msgstr "Guardar lo actual %s" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "Guardar el proyecto actual como" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "Guardar archivo de proyecto actual como" -#: src/slic3r/GUI/Plater.cpp:1938 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Save file as:" msgstr "Guardar archivo como:" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save G-code file as:" msgstr "Guardar archivo Código G como:" -#: src/slic3r/GUI/MainFrame.cpp:757 +#: src/slic3r/GUI/MainFrame.cpp:901 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Guardar archivo OBJ (menos propenso a errores de coordinación que STL) como:" -#: src/slic3r/GUI/Tab.hpp:417 +#: src/slic3r/GUI/Tab.hpp:442 msgid "Save preset" msgstr "Guardar ajuste inicial" -#: src/slic3r/GUI/MainFrame.cpp:843 +#: src/slic3r/GUI/MainFrame.cpp:982 msgid "Save presets bundle as:" msgstr "Guarde el conjunto de ajustes iniciales como:" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "Guardar proyecto &como" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Save project (3MF)" -msgstr "Guardar proyecto (3MF)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "Guardar proyecto (3mf)" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "Guarda el proyecto como (3mf)" + +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save SL1 file as:" msgstr "Guardar archivo SL1 como:" -#: src/slic3r/GUI/MainFrame.cpp:692 +#: src/slic3r/GUI/MainFrame.cpp:840 msgid "Save zip file as:" msgstr "Guardar archivo zip como:" @@ -5629,10 +6248,11 @@ msgstr "Guardar archivo zip como:" msgid "Saving mesh into the 3MF container failed." msgstr "Error al guardar la malla en el contenedor 3MF." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254 -#: src/libslic3r/PrintConfig.cpp:3077 +#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Scale" msgstr "Escalar" @@ -5640,47 +6260,51 @@ msgstr "Escalar" msgid "Scale (%)" msgstr "Escalar (%)" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Factores de escala" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "Scale selection to fit print volume\nin Gizmo scale" +msgstr "Redimensiona para ajustar el volumen de impresión\nen escala Gizmo" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale the selected object to fit the print volume" msgstr "Escala los objetos seleccionados para ajustarse al volumen de impresión" -#: src/libslic3r/PrintConfig.cpp:3086 +#: src/libslic3r/PrintConfig.cpp:3460 msgid "Scale to Fit" msgstr "Escalar para Adaptarse" -#: src/slic3r/GUI/Selection.cpp:947 +#: src/slic3r/GUI/Selection.cpp:939 msgid "Scale To Fit" msgstr "Escalar para Adaptarse" -#: src/libslic3r/PrintConfig.cpp:3087 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Scale to fit the given volume." msgstr "Escalar para ajustarse al volumen dado." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale to print volume" msgstr "Escalar al volumen de impresión" -#: src/libslic3r/PrintConfig.cpp:3078 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Scaling factor or percentage." msgstr "Factor de escalado o porcentaje." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Subida planificada a `%1%`. Mira Ventana -> Sube a la cola del gestor de impresión" -#: src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "Posición de la costura" -#: src/libslic3r/PrintConfig.cpp:1572 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "Dirección de la costura" -#: src/libslic3r/PrintConfig.cpp:1581 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "Dirección preferida de unión jitter" @@ -5688,115 +6312,119 @@ msgstr "Dirección preferida de unión jitter" msgid "Searching for devices" msgstr "Buscando dispositivos" -#: src/slic3r/GUI/Plater.cpp:2190 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Searching for optimal orientation" msgstr "Buscando la orientación óptima" -#: src/slic3r/GUI/GUI_App.cpp:1100 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Seleccione un archivo gcode:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 -msgid "Select All objects" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" msgstr "Seleccionar todos los objetos" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 msgid "Select all points" msgstr "Seleccionar todos los puntos" -#: src/slic3r/GUI/ConfigWizard.cpp:1089 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "Select all standard printers" msgstr "Selecciona todas las impresoras estándar" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 msgid "Select by rectangle" msgstr "Seleccionar mediante rectángulo" -#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870 +#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 msgid "Select configuration to load:" msgstr "Seleccione la configuración para cargar:" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:82 msgid "Select coordinate space, in which the transformation will be performed." msgstr "Escoge el espacio de coordenadas en el que se realizará la transformación." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2834 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 msgid "Select extruder number for selected objects and/or parts" msgstr "Selecciona el número de extrusor para los objetos y/o piezas seleccionados" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2847 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 msgid "Select extruder number:" msgstr "Selecciona el número de extrusores:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 msgid "Select Filament Settings Tab" msgstr "Seleccionar pestaña de configuración de filamento" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1251 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 msgid "Select new extruder for the object/part" msgstr "Selecciona el nuevo extrusor para el objeto/pieza" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "Select Plater Tab" msgstr "Seleccionar pestaña de la Base de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Select Print Settings Tab" msgstr "Seleccione la pestaña Configuración de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Select Printer Settings Tab" msgstr "Selecciona pestaña de ajustes de impresora" -#: src/slic3r/GUI/GUI_ObjectList.cpp:917 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 msgid "Select showing settings" msgstr "Seleccionar los ajustes mostrados" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "Seleccione el idioma" -#: src/slic3r/GUI/Tab.cpp:57 +#: src/slic3r/GUI/Tab.cpp:59 msgid "Select the print profiles this profile is compatible with." msgstr "Seleccione los perfiles de impresión con las que este perfil es compatible." -#: src/slic3r/GUI/Tab.cpp:51 +#: src/slic3r/GUI/Tab.cpp:53 msgid "Select the printers this profile is compatible with." msgstr "Seleccione las impresoras con las que este perfil es compatible." -#: src/slic3r/GUI/MainFrame.cpp:744 +#: src/slic3r/GUI/MainFrame.cpp:891 msgid "Select the STL file to repair:" msgstr "Seleccione el archivo STL para reparar:" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:241 msgid "Select toolbar icon size in respect to the default one." msgstr "Selecciona el tamaño del icono de la barra de herramientas con respecto al predeterminado." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2545 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Select type of part" msgstr "Selecciona el tipo de pieza" -#: src/slic3r/GUI/Plater.cpp:606 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Select what kind of pad do you need" msgstr "Selecciona que tipo de pad necesitas" -#: src/slic3r/GUI/Plater.cpp:421 +#: src/slic3r/GUI/Plater.cpp:495 msgid "Select what kind of support do you need" msgstr "Selecciona qué clase de soporte necesitas" +#: src/slic3r/GUI/DoubleSlider.cpp:1890 +msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" +msgstr "Escoge SI si deseas borrar todos los cambios de herramienta,\nNO si deseas que los cambios de herramienta sean cambios de color,\no CANCELAR para no hacer cambios" + #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" msgstr "Selección-Añadir" -#: src/slic3r/GUI/Selection.cpp:384 +#: src/slic3r/GUI/Selection.cpp:376 msgid "Selection-Add All" msgstr "Selección-Añadir todos" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 msgid "Selection-Add from list" msgstr "Selección-Añadir de la lista" -#: src/slic3r/GUI/GLCanvas3D.cpp:5623 +#: src/slic3r/GUI/GLCanvas3D.cpp:6659 msgid "Selection-Add from rectangle" msgstr "Selección-Añadir del rectángulo" @@ -5812,15 +6440,15 @@ msgstr "Selección-Añadir Objeto" msgid "Selection-Remove" msgstr "Selección-Retirar" -#: src/slic3r/GUI/Selection.cpp:410 +#: src/slic3r/GUI/Selection.cpp:402 msgid "Selection-Remove All" msgstr "Selección-Retirar todo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 msgid "Selection-Remove from list" msgstr "Selección-Retirar de la lista" -#: src/slic3r/GUI/GLCanvas3D.cpp:5642 +#: src/slic3r/GUI/GLCanvas3D.cpp:6678 msgid "Selection-Remove from rectangle" msgstr "Selección-Retirar del rectángulo" @@ -5832,11 +6460,11 @@ msgstr "Selección-Retirar Instancia" msgid "Selection-Remove Object" msgstr "Selección-Retirar Objeto" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "Seleccionar todos los objetos" -#: src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:5556 msgid "Send G-code" msgstr "Enviar código G" @@ -5844,27 +6472,31 @@ msgstr "Enviar código G" msgid "Send G-Code to printer host" msgstr "Enviar el código G al host de impresión" -#: src/slic3r/GUI/MainFrame.cpp:466 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "Enviar para imprimir la plataforma actual como código G" -#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 msgid "Send to printer" msgstr "Enviar a la impresora" -#: src/slic3r/GUI/Tab.cpp:1169 +#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +msgid "Seq." +msgstr "Sec." + +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Sequential printing" msgstr "Impresión secuencial" -#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591 +#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Puerto serial" -#: src/libslic3r/PrintConfig.cpp:1599 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "Velocidad del puerto serial" -#: src/slic3r/GUI/FirmwareDialog.cpp:769 +#: src/slic3r/GUI/FirmwareDialog.cpp:807 msgid "Serial port:" msgstr "Puerto serie:" @@ -5872,17 +6504,17 @@ msgstr "Puerto serie:" msgid "Service name" msgstr "Nombre del servicio" -#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025 -#: src/slic3r/GUI/Tab.cpp:3008 +#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 +#: src/slic3r/GUI/Tab.cpp:3160 msgid "Set" msgstr "Ajuste" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1192 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Object" msgstr "Establecer como Objeto Separado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Objects" msgstr "Establecer como Objetos Separados" @@ -5890,7 +6522,7 @@ msgstr "Establecer como Objetos Separados" msgid "Set extruder change for every" msgstr "Establecer cambio de extrusor para cada" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2833 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 msgid "Set extruder for selected items" msgstr "Establecer el extrusor para elementos seleccionados" @@ -5898,6 +6530,10 @@ msgstr "Establecer el extrusor para elementos seleccionados" msgid "Set extruder sequence" msgstr "Establecer secuencia extrusor" +#: src/slic3r/GUI/DoubleSlider.cpp:1504 +msgid "Set extruder sequence for the entire print" +msgstr "Fija la secuencia del extrusor para toda la impresión" + #: src/slic3r/GUI/wxExtensions.cpp:3080 msgid "Set extruder sequence for whole print" msgstr "Establecer la secuencia del extrusor para la impresión completa" @@ -5906,667 +6542,695 @@ msgstr "Establecer la secuencia del extrusor para la impresión completa" msgid "Set extruder(tool) sequence" msgstr "Establecer secuencia extrusor(herramienta)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Set lower thumb to current slider thumb" msgstr "Coloca el pulgar inferior en el control deslizante actual" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:245 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:297 msgid "Set Mirror" msgstr "Establecer Reflejo" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Set number of instances" msgstr "Establecer número de instancias" -#: src/slic3r/GUI/Plater.cpp:4163 +#: src/slic3r/GUI/Plater.cpp:4771 #, possible-c-format msgid "Set numbers of copies to %d" msgstr "Establecer el número de copias a %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:746 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" msgstr "Establecer Orientación" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:715 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:750 msgid "Set Position" msgstr "Establecer Posición" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Establecer Imprimible" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" msgstr "Establecer Instancia imprimible" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:811 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:846 msgid "Set Scale" msgstr "Establecer Escala" -#: src/libslic3r/PrintConfig.cpp:2228 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Establece la orientación real de la pantalla LCD dentro de la impresora SLA. El modo retrato cambiará el significado de los parámetros de ancho y alto de la pantalla y las imágenes de salida girarán 90 grados." -#: src/slic3r/GUI/ConfigWizard.cpp:527 +#: src/slic3r/GUI/ConfigWizard.cpp:933 msgid "Set the shape of your printer's bed." msgstr "Define la forma de la base de impresión de tu impresora." -#: src/libslic3r/PrintConfig.cpp:524 +#: src/libslic3r/PrintConfig.cpp:556 msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height." msgstr "Ajuste este valor distinto de cero para permitir un ancho de extrusión manual. Si se deja a cero, Slic3r obtiene anchuras de extrusión del diámetro de la boquilla (consulte la información sobre herramientas para conocer el ancho de extrusión, el ancho de extrusión de relleno, etc.). Si se expresa como porcentaje (por ejemplo: 230%), se computará sobre la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:417 +#: src/libslic3r/PrintConfig.cpp:448 msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height." msgstr "Ajuste este valor distinto de cero para establecer un ancho de extrusión manual para perímetros externos. Si se deja en cero, se usará el ancho de extrusión por defecto si se establece, de lo contrario se usará 1.125 x diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, 200%), se computará sobre la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:831 +#: src/libslic3r/PrintConfig.cpp:878 msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width." msgstr "Ajuste este valor distinto de cero para establecer un ancho de extrusión manual para la primera capa. Puede usar esto para forzar extrusiones más gordas para una mejor adhesión. Si se expresa como porcentaje (por ejemplo, 120%), se calculará sobre la altura de la primera capa. Si se establece en cero, usará el ancho de extrusión predeterminado." -#: src/libslic3r/PrintConfig.cpp:1689 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ajuste este valor distinto de cero para establecer un ancho de extrusión manual para el relleno de superficies sólidas. Si se deja en cero, se usará el ancho de extrusión por defecto si se establece, de lo contrario se usará 1.125 x diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, 90%), se calculará sobre la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:2019 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ajuste este valor distinto de cero para establecer un ancho de extrusión manual para el relleno de las superficies superiores. Es posible que desee utilizar extrusiones más delgadas para llenar todas las regiones estrechas y obtener un acabado más suave. Si se deja en cero, se usará el ancho de extrusión por defecto si se establece, de lo contrario se usará el diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, 90%), se calculará sobre la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ajuste este valor distinto de cero para establecer un ancho de extrusión manual para relleno. Si se deja en cero, se usará el ancho de extrusión por defecto si se establece, de lo contrario se usará 1.125 x diámetro de la boquilla. Es posible que desee extrusiones más gordas para acelerar el relleno y fortalecer sus partes. Si se expresa como porcentaje (por ejemplo, 90%), se calculará sobre la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:1350 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height." msgstr "Ajuste este valor distinto de cero para establecer un ancho de extrusión manual para los perímetros. Es posible que desee utilizar extrusiones más delgadas para obtener superficies más precisas. Si se deja en cero, se usará el ancho de extrusión por defecto si se establece, de lo contrario se usará 1.125 x diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, 200%), se calculará sobre la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ajuste este valor distinto de cero para establecer un ancho de extrusión manual para el material de soporte. Si se deja en cero, se usará el ancho de extrusión por defecto si se establece, de lo contrario se usará el diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, 90%), se calculará sobre la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:480 +#: src/libslic3r/PrintConfig.cpp:512 msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater." msgstr "Ajuste este parámetro según el radio de espacio libre alrededor de su extrusor. Si el extrusor no está centrado, elija el valor más grande para seguridad. Esta configuración se utiliza para verificar colisiones y mostrar la vista previa gráfica en la bandeja." -#: src/libslic3r/PrintConfig.cpp:65 +#: src/libslic3r/PrintConfig.cpp:81 msgid "Set this to the maximum height that can be reached by your extruder while printing." msgstr "Ajusta este valor a la altura máxima que puede alcanzar el extrusor mientras imprime." -#: src/libslic3r/PrintConfig.cpp:469 +#: src/libslic3r/PrintConfig.cpp:501 msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Ajuste este valor según la distancia vertical entre la punta de la boquilla y (generalmente) las barras X del carro. En otras palabras, esta es la altura del cilindro de holgura alrededor de su extrusor, y representa la profundidad máxima que el extrusor puede asomar antes de colisionar con otros objetos impresos." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Establecer No imprimible" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" msgstr "Establecer Instancia No Imprimible" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Set upper thumb to current slider thumb" msgstr "Coloca el pulgar superior en el control deslizante actual" -#: src/slic3r/GUI/BedShapeDialog.cpp:143 +#: src/libslic3r/PrintConfig.cpp:3494 +msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." +msgstr "Ajusta el nivel de avisos: 0:fallo, 1:error, 2:peligro, 3:info, 4:depuración, 5:traza\nPor ejemplo. loglevel=2 registrará mensajes de fallo, error y peligro." + +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Ajustes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Settings for height range" msgstr "Ajustes para rango de alturas" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "¿Debo ajustar esa configuración para los soportes?" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "¿Debo ajustar esa configuración para habilitar el modo Vaso Espiral?" -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "¿Debo ajustar esa configuración para habilitar la Torre de Limpieza?" -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "¿Debo cambiar al patrón de relleno rectilíneo?" -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "¿Debo sincronizar las capas de soporte para habilitar la Torre de Limpieza?" -#: src/slic3r/GUI/BedShapeDialog.cpp:60 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 msgid "Shape" msgstr "Aspecto" -#: src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/GUI_Preview.cpp:258 msgid "Shells" msgstr "Carcasas" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:254 msgid "Shift + Left mouse button:" msgstr "Mayús + botón izquierdo del ratón:" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:260 msgid "Shift + Right mouse button:" msgstr "Mayús + botón derecho del ratón:" -#: src/slic3r/GUI/GUI_Preview.cpp:221 +#: src/slic3r/GUI/GUI_Preview.cpp:233 msgid "Show" msgstr "Mostrar" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show &Configuration Folder" msgstr "Mostrar carpeta &Configuración" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show &labels" +msgstr "Muestra &etiquetas" + +#: src/slic3r/GUI/MainFrame.cpp:707 msgid "Show about dialog" msgstr "Mostrar Acerca de" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show advanced settings" msgstr "Mostrar ajustes avanzados" -#: src/slic3r/GUI/PrintHostDialogs.cpp:158 +#: src/slic3r/GUI/PrintHostDialogs.cpp:159 msgid "Show error message" msgstr "Muestra mensaje de error" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "Show incompatible print and filament presets" msgstr "Mostrar impresiones incompatibles y ajustes iniciales de filamentos" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Show keyboard shortcuts list" msgstr "Muestra lista de atajos de teclado" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show object/instance labels in 3D scene" +msgstr "Muestra etiquetas de pieza/repetición en vista 3D" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show simplified settings" msgstr "Muestra los ajustes simplificados" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "Muestra soportes" + +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show system information" msgstr "Mostrar la información del sistema" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "Muestra la vista de edición 3D" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "Muestra la vista 3D preliminar de las rebanadas" -#: src/slic3r/GUI/MainFrame.cpp:480 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "Mostrar los ajustes de filamento" -#: src/libslic3r/PrintConfig.cpp:2983 +#: src/libslic3r/PrintConfig.cpp:3357 msgid "Show the full list of print/G-code configuration options." msgstr "Muestra la lista completa de opciones de configuración de impresión/G-code." -#: src/libslic3r/PrintConfig.cpp:2988 +#: src/libslic3r/PrintConfig.cpp:3362 msgid "Show the full list of SLA print configuration options." msgstr "Muestra la lista completa de opciones de configuración de impresión SLA." -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:710 msgid "Show the list of the keyboard shortcuts" msgstr "Mostrar la lista de los atajos de teclado" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" msgstr "Mostrar la base" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "Mostrar los ajustes de impresión" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "Mostrar la configuración de la impresora" -#: src/libslic3r/PrintConfig.cpp:2977 +#: src/libslic3r/PrintConfig.cpp:3351 msgid "Show this help." msgstr "Mostrar esta ayuda." -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show user configuration folder (datadir)" msgstr "Mostrar carpeta de configuración de usuario (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 msgid "Show/Hide (L)egend" msgstr "Mostrar/Ocultar (L)eyenda" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Mostrar/Ocultar cuadro de ajustes dispositivos 3Dconnexion" -#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "Muestra/Oculta Leyenda" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Show/Hide object/instance labels" +msgstr "Muestra/Oculta etiquetas de pieza/repetición" + +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "Sencillo" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Simple mode" msgstr "Modo Simple" -#: src/slic3r/GUI/GUI_App.cpp:674 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "Modo de visualización sencillo" -#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239 +#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 msgid "Single extruder MM setup" msgstr "Ajuste para MM con un solo extrusor" -#: src/libslic3r/PrintConfig.cpp:1767 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" msgstr "Extrusor único de múltiples materiales" -#: src/slic3r/GUI/Tab.cpp:2023 +#: src/slic3r/GUI/Tab.cpp:1865 msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" msgstr "Multi Material en extrusor único seleccionado,\ny todos los extrusores deben tener el mismo diámetro.\n¿Deseas cambiar el diámetro de todos los extrusores al valor del diámetro del nozzle del primer extrusor?" -#: src/slic3r/GUI/Tab.cpp:2240 +#: src/slic3r/GUI/Tab.cpp:2303 msgid "Single extruder multimaterial parameters" msgstr "Parámetros multimaterial para un sólo extrusor" -#: src/slic3r/GUI/BedShapeDialog.cpp:72 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137 -#: src/slic3r/GUI/Tab.cpp:2257 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 +#: src/slic3r/GUI/Tab.cpp:2320 msgid "Size" msgstr "Tamaño" -#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014 +#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 msgid "Size and coordinates" msgstr "Tamaño y coordenadas" -#: src/slic3r/GUI/BedShapeDialog.cpp:73 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." msgstr "Tamaño en X e Y de la placa rectangular." -#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050 -#: src/libslic3r/GCode/PreviewData.cpp:171 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Falda" -#: src/slic3r/GUI/Tab.cpp:1049 +#: src/slic3r/GUI/Tab.cpp:1112 msgid "Skirt and brim" msgstr "Falda y balsa" -#: src/libslic3r/PrintConfig.cpp:1617 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "Altura de la falda" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "Vueltas de la falda" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 msgid "SLA gizmo keyboard shortcuts" msgstr "SLA gizmo atajos de teclado" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1150 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 msgid "SLA gizmo turned off" msgstr "Gizmo SLA apagado" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1115 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 msgid "SLA gizmo turned on" msgstr "Gizmo SLA encendido" -#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277 +#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 msgid "SLA material" msgstr "Material SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Material Profiles Selection" msgstr "Selección Perfiles de Material SLA" -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 msgid "SLA material type" msgstr "Tipo Material SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Materials" msgstr "Materiales SLA" -#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276 +#: src/slic3r/GUI/Preset.cpp:1473 msgid "SLA print" msgstr "Impresión SLA" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2569 msgid "SLA print material notes" msgstr "Notas del material de impresión de SLA" -#: src/slic3r/GUI/Plater.cpp:690 +#: src/slic3r/GUI/Plater.cpp:814 msgid "SLA print settings" msgstr "Ajustes de impresión SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 msgid "SLA Support Points" msgstr "Puntos de soporte SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:722 +#: src/slic3r/GUI/GLCanvas3D.cpp:692 msgid "SLA supports outside the print area were detected" msgstr "Se detectaron soportes SLA fuera del área de impresión" -#: src/slic3r/GUI/ConfigWizard.cpp:1493 +#: src/slic3r/GUI/ConfigWizard.cpp:1533 msgid "SLA Technology Printers" msgstr "Impresoras de tecnología SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Slab" msgstr "Rebanada" -#: src/libslic3r/PrintConfig.cpp:1268 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host." msgstr "Slic3r puede subir archivos de código G a un host de impresión. Este campo debe contener el tipo de host." -#: src/libslic3r/PrintConfig.cpp:89 +#: src/libslic3r/PrintConfig.cpp:105 msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." msgstr "Slic3r puede subir archivos de código G a un host de impresión. Este campo debe contener la clave API o la contraseña requerida para la autenticación." -#: src/libslic3r/PrintConfig.cpp:82 +#: src/libslic3r/PrintConfig.cpp:98 msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance." msgstr "Slic3r puede subir archivos G-code a un host de impresión. Este campo debería contener el nombre de equipo, dirección IP o el URL de la instancia del host." -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r no escalará la velocidad por debajo de esta velocidad." -#: src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Slice" msgstr "Laminar" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "Laminar un archivo en un código G" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "Laminar un archivo en un código G, guárdar como" -#: src/libslic3r/PrintConfig.cpp:71 +#: src/libslic3r/PrintConfig.cpp:87 msgid "Slice gap closing radius" msgstr "Radio de cierre de los huecos al laminar" -#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3618 +#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5140 msgid "Slice now" msgstr "Laminar ahora" -#: src/libslic3r/PrintConfig.cpp:2944 +#: src/libslic3r/PrintConfig.cpp:3318 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Laminar el modelo y exportar las capas de impresión de SLA como PNG." -#: src/libslic3r/PrintConfig.cpp:2965 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Slice the model and export toolpaths as G-code." msgstr "Laminar el modelo y exportar las trayectorias como código G." -#: src/libslic3r/PrintConfig.cpp:2971 +#: src/libslic3r/PrintConfig.cpp:3345 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Laminar el modelo como FFF o SLA basado en el valor de configuración de printer_technology." -#: src/slic3r/GUI/Plater.cpp:193 +#: src/slic3r/GUI/Plater.cpp:218 msgid "Sliced Info" msgstr "Información del laminado" -#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159 -#: src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3647 msgid "Slicing" msgstr "Rebanando" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 msgid "Slicing complete" msgstr "Laminado terminado" -#: src/libslic3r/SLAPrint.cpp:1459 +#: src/libslic3r/SLAPrint.cpp:760 msgid "Slicing done" msgstr "Laminado terminado" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:876 msgid "Slicing Done!" msgstr "¡Laminado realizado!" -#: src/libslic3r/SLAPrint.cpp:759 +#: src/libslic3r/SLAPrintSteps.cpp:209 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "El laminado se ha tenido que parar debido a un error interno: Índice de laminado inconsistente." -#: src/libslic3r/SLAPrint.cpp:55 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Slicing model" msgstr "Rebanando modelo" -#: src/libslic3r/SLAPrint.cpp:59 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing supports" msgstr "Soportes para el laminado" -#: src/libslic3r/PrintConfig.cpp:2249 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "Lenta" -#: src/libslic3r/PrintConfig.cpp:1635 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "Disminuya la velocidad si el tiempo de impresión de la capa está por debajo" -#: src/libslic3r/PrintConfig.cpp:2250 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "Inclinación lenta" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" msgstr "Perímetros pequeños" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:293 msgid "Smooth" msgstr "Suave" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:263 msgid "Smoothing" msgstr "Suavizado" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "Nombre de la instantánea" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Software &Releases" msgstr "&Lanzamientos de Software" -#: src/slic3r/GUI/PresetHints.cpp:181 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "relleno sólido" -#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687 -#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Relleno sólido" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "Relleno sólido cada" -#: src/libslic3r/PrintConfig.cpp:1667 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "Extrusor para el relleno sólido" -#: src/libslic3r/PrintConfig.cpp:1658 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" msgstr "Área del umbral de relleno sólido" -#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Capas sólidas" -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "Material soluble" -#: src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." msgstr "El material soluble se usa muy probablemente para un soporte soluble." -#: src/libslic3r/PrintConfig.cpp:914 +#: src/libslic3r/PrintConfig.cpp:937 msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Algunos comandos de códigos G/M, incluidos el control de temperatura y otros, no son universales. Configura esta opción en el firmware de tu impresora para obtener una salida compatible. El tipo \"Sin extrusión\" evita que PrusaSlicer exporte ningún valor de extrusión." +#: src/slic3r/GUI/GLCanvas3D.cpp:693 +msgid "Some objects are not visible" +msgstr "Algunas piezas no son visibles" + #: src/slic3r/GUI/GLCanvas3D.cpp:721 msgid "Some objects are not visible when editing supports" msgstr "Algunos objetos no son visibles cuando al editar soportes" -#: src/libslic3r/Print.cpp:1162 +#: src/libslic3r/Print.cpp:1222 msgid "Some objects are too close; your extruder will collide with them." msgstr "Algunos objetos están demasiado cerca; el extrusor colisionará con ellos." -#: src/libslic3r/Print.cpp:1177 +#: src/libslic3r/Print.cpp:1224 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Algunos objetos son demasiado altos y no se pueden imprimir sin que colisione el extrusor." -#: src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2815 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Algunos objetos pueden llevarse bien con unas pocas pads más pequeñas en lugar de una sola grande. Este parámetro define a qué distancia debe estar el centro de dos pads más pequeñas. Si están más cerca, se fusionarán en una sola pad." -#: src/libslic3r/PrintConfig.cpp:2086 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default." msgstr "Algunas impresoras o configuraciones de impresora pueden tener dificultades para imprimir con una altura de capa variable. Habilitado por defecto." -#: src/libslic3r/PrintConfig.cpp:1897 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." msgstr "Espaciado entre líneas de interfaz. Establezca cero para obtener una interfaz sólida." -#: src/libslic3r/PrintConfig.cpp:1931 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." msgstr "Espaciado entre las líneas de material de soporte." -#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512 -#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084 -#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598 -#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698 -#: src/libslic3r/PrintConfig.cpp:2029 +#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 +#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "Velocidad" -#: src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "Velocidad (baudios) del puerto USB / serie para la conexión de la impresora." -#: src/libslic3r/GCode/PreviewData.cpp:400 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "Velocidad (mm/s)" -#: src/libslic3r/PrintConfig.cpp:872 +#: src/libslic3r/PrintConfig.cpp:920 msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Velocidad para llenar pequeños espacios usando movimientos cortos de zigzag. Mantenga esto razonablemente bajo para evitar demasiados problemas de vibración y sacudidas. Establezca cero para desactivar el llenado de huecos." -#: src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Tab.cpp:1160 msgid "Speed for non-print moves" msgstr "Velocidad para movimientos sin impresión" -#: src/libslic3r/PrintConfig.cpp:1362 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Velocidad para perímetros (contornos, también conocidos como conchas verticales). Establecer a cero para auto." -#: src/slic3r/GUI/Tab.cpp:1085 +#: src/slic3r/GUI/Tab.cpp:1148 msgid "Speed for print moves" msgstr "Velocidad para movimientos de impresión" -#: src/libslic3r/PrintConfig.cpp:200 +#: src/libslic3r/PrintConfig.cpp:226 msgid "Speed for printing bridges." msgstr "Velocidad para imprimir puentes." -#: src/libslic3r/PrintConfig.cpp:1699 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto." msgstr "Velocidad para imprimir regiones sólidas (superior / inferior / conchas horizontales internas). Esto se puede expresar como un porcentaje (por ejemplo: 80%) sobre la velocidad de relleno predeterminada anterior. Establecer a cero para auto." -#: src/libslic3r/PrintConfig.cpp:1906 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed." msgstr "Velocidad para imprimir capas de interfaz de material de soporte. Si se expresa como porcentaje (por ejemplo, 50%), se calculará sobre la velocidad del material de soporte." -#: src/libslic3r/PrintConfig.cpp:1940 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." msgstr "Velocidad para imprimir material de soporte." -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." msgstr "Velocidad para imprimir el relleno interno. Establecer a cero para auto." -#: src/libslic3r/PrintConfig.cpp:2030 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto." msgstr "Velocidad para imprimir capas sólidas superiores (solo se aplica a las capas externas superiores y no a sus capas sólidas internas). Es posible que desee reducir la velocidad para obtener un acabado de superficie más agradable. Esto se puede expresar como un porcentaje (por ejemplo: 80%) sobre la velocidad de relleno sólido anterior. Establecer a cero para auto." -#: src/libslic3r/PrintConfig.cpp:2052 +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "Velocidad para movimientos (saltos entre puntos de extrusión distantes)." -#: src/libslic3r/PrintConfig.cpp:627 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "Velocidad del primer movimiento de enfriamiento" -#: src/libslic3r/PrintConfig.cpp:646 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "Velocidad del último movimiento de enfriamiento" -#: src/libslic3r/PrintConfig.cpp:585 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "Velocidad utilizada al inicio de la fase de carga." -#: src/libslic3r/PrintConfig.cpp:577 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "Velocidad empleada para cargar el filamento en la torre de limpieza." -#: src/libslic3r/PrintConfig.cpp:593 +#: src/libslic3r/PrintConfig.cpp:624 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Velocidad empleada para descargar el filamento en la torre de limpieza (no afecta a la fase inicial de la descarga, sólo después de empujar)." -#: src/libslic3r/PrintConfig.cpp:602 +#: src/libslic3r/PrintConfig.cpp:633 msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Velocidad utilizada para descargar la punta del filamento inmediatamente después del ramming." -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Speed:" msgstr "Velocidad:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Sphere" msgstr "Esfera" -#: src/libslic3r/PrintConfig.cpp:1717 +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "Modo vaso" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "Modo Vaso Espiral" -#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988 -#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082 +#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 msgid "Split" msgstr "Dividir" -#: src/slic3r/GUI/Plater.cpp:2971 +#: src/slic3r/GUI/Plater.cpp:4028 msgid "Split the selected object" msgstr "Dividir el objeto seleccionado" -#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988 +#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 msgid "Split the selected object into individual objects" msgstr "Dividir el objeto seleccionado en objetos individuales" -#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008 +#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 msgid "Split the selected object into individual sub-parts" msgstr "Dividir el objeto seleccionado en subpartes individuales" -#: src/slic3r/GUI/GLCanvas3D.cpp:3490 +#: src/slic3r/GUI/GLCanvas3D.cpp:4599 msgid "Split to objects" msgstr "Partir en varias piezas" -#: src/slic3r/GUI/Plater.cpp:2796 +#: src/slic3r/GUI/Plater.cpp:2965 msgid "Split to Objects" msgstr "Partir en Varias Piezas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1110 +#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "Separar en piezas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1904 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 msgid "Split to Parts" msgstr "Separar en Piezas" @@ -6574,11 +7238,11 @@ msgstr "Separar en Piezas" msgid "Standard" msgstr "Estándar" -#: src/libslic3r/PrintConfig.cpp:799 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "Estrellas" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "Empezar un nuevo proyecto" @@ -6586,12 +7250,12 @@ msgstr "Empezar un nuevo proyecto" msgid "Start at height" msgstr "Comenzar en altura" -#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949 -#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Comenzar el código G" -#: src/slic3r/GUI/MainFrame.cpp:403 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "Comenzar un nuevo proceso de laminado" @@ -6599,23 +7263,23 @@ msgstr "Comenzar un nuevo proceso de laminado" msgid "Start printing after upload" msgstr "Empezar a imprimir después de subir" -#: src/slic3r/GUI/PrintHostDialogs.cpp:150 +#: src/slic3r/GUI/PrintHostDialogs.cpp:151 msgid "Status" msgstr "Estado" -#: src/slic3r/GUI/FirmwareDialog.cpp:782 +#: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Status:" msgstr "Estado:" -#: src/slic3r/GUI/Tab.cpp:2158 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Stealth" msgstr "Silencio" -#: src/slic3r/GUI/Plater.cpp:1084 +#: src/slic3r/GUI/Plater.cpp:1267 msgid "stealth mode" msgstr "modo silencioso" -#: src/slic3r/GUI/Plater.cpp:3545 +#: src/slic3r/GUI/Plater.cpp:5001 #, possible-c-format msgid "STL file exported to %s" msgstr "Archivo STL exportado a %s" @@ -6624,736 +7288,803 @@ msgstr "Archivo STL exportado a %s" msgid "Stop at height" msgstr "Parar en altura" -#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 msgid "Success!" msgstr "¡Éxito!" -#: src/slic3r/GUI/PresetHints.cpp:200 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "soporte" -#: src/libslic3r/PrintConfig.cpp:2441 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Support base diameter" msgstr "Diámetro de la base del soporte" -#: src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2693 msgid "Support base height" msgstr "Altura de la base del soporte" -#: src/libslic3r/PrintConfig.cpp:2566 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base safety distance" msgstr "Distancia de seguridad de la base de soportes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Blocker" msgstr "Bloqueo de soporte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Enforcer" msgstr "Refuerzo de soporte" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "Generador de Soportes" -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3593 msgid "Support head" msgstr "Cabeza del soporte" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2611 msgid "Support head front diameter" msgstr "Diámetro del frontal de la cabeza del soporte" -#: src/libslic3r/PrintConfig.cpp:2378 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head penetration" msgstr "Penetración de la cabeza del soporte" -#: src/libslic3r/PrintConfig.cpp:2387 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head width" msgstr "Ancho de la cabeza del soporte" -#: src/slic3r/GUI/PresetHints.cpp:210 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "interfaz de soporte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70 -#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236 -#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060 -#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432 -#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786 -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806 -#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887 -#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905 -#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930 -#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939 -#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956 -#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" msgstr "Material de soporte" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904 -#: src/libslic3r/GCode/PreviewData.cpp:173 +#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Interfaz del material de soporte" -#: src/libslic3r/PrintConfig.cpp:1957 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)." msgstr "El material de soporte no se generará para voladizos cuyo ángulo de inclinación (90 ° = vertical) esté por encima del umbral dado. En otras palabras, este valor representa la pendiente más horizontal (medida desde el plano horizontal) que puede imprimir sin material de soporte. Ajuste a cero para la detección automática (recomendado)." -#: src/libslic3r/PrintConfig.cpp:1877 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" msgstr "Extrusor para el material de soporte o balsa" -#: src/libslic3r/PrintConfig.cpp:1851 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" msgstr "Extrusor para el material de soporte/falda/balsa" -#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815 -#: src/libslic3r/PrintConfig.cpp:2423 +#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2665 msgid "Support on build plate only" msgstr "Soporte en la base solamente" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:991 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 msgid "Support parameter change" msgstr "Cambio de parámetros de soporte" -#: src/slic3r/GUI/Tab.cpp:3406 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support pillar" msgstr "Pilares de soporte" -#: src/libslic3r/PrintConfig.cpp:2407 +#: src/libslic3r/PrintConfig.cpp:2649 msgid "Support pillar connection mode" msgstr "Modo de conexión de los pilares de soporte" -#: src/libslic3r/PrintConfig.cpp:2397 +#: src/libslic3r/PrintConfig.cpp:2639 msgid "Support pillar diameter" msgstr "Diámetro de los puntos de soporte" -#: src/libslic3r/PrintConfig.cpp:2499 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "Support points density" msgstr "Densidad de los puntos de soporte" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 msgid "Support points edit" msgstr "Edición de puntos de soporte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519 -#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397 -#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363 -#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379 -#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398 -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431 -#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490 -#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508 +#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 +#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 +#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 +#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 +#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 +#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 +#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 +#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 +#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 +#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Supports" msgstr "Soportes" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "supports and pad" msgstr "soportes y pad" -#: src/libslic3r/PrintConfig.cpp:1043 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "Compatible con tiempos restantes" -#: src/libslic3r/PrintConfig.cpp:1053 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "Soporta modo silencioso" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 +#: src/slic3r/GUI/ConfigManipulation.cpp:159 msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" msgstr "Los soportes funcionan mejor si la siguiente característica está habilitada:\n- Detectar perímetros con puentes" -#: src/slic3r/GUI/Preferences.cpp:76 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets" msgstr "Suprima los ajustes iniciales \"- predeterminado -\"" -#: src/slic3r/GUI/Preferences.cpp:78 +#: src/slic3r/GUI/Preferences.cpp:91 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Suprima los ajustes iniciales \"- predeterminado -\" en las selecciones Imprimir / Filamento / Impresora una vez que haya otros ajustes preestablecidos disponibles." -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/DoubleSlider.cpp:1112 +msgid "Switch code to Change extruder" +msgstr "Cambiar código para cambiar extrusor" + +#: src/slic3r/GUI/DoubleSlider.cpp:1147 +msgid "Switch code to Color change (%1%) for:" +msgstr "Código para cambiar de color (%1%) para: " + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 msgid "Switch to 3D" msgstr "Cambiar a 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 msgid "Switch to editing mode" msgstr "Cambiar al modo edición" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 msgid "Switch to Preview" msgstr "Cambiar a Previsualización" -#: src/slic3r/GUI/wxExtensions.cpp:2412 +#: src/slic3r/GUI/wxExtensions.cpp:703 #, possible-c-format msgid "Switch to the %s mode" msgstr "Cambiar al modo %s" -#: src/slic3r/GUI/GUI_App.cpp:752 +#: src/slic3r/GUI/GUI_App.cpp:882 msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." msgstr "Cambiar el idioma necesita reiniciar la aplicación.\nPerderás todo el contenido situado en la base." -#: src/slic3r/GUI/WipeTowerDialog.cpp:327 +#: src/slic3r/GUI/WipeTowerDialog.cpp:365 msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" msgstr "¡Cambiar a los ajustes sencillos descartará los cambios realizados en el modo avanzado!\n\n¿Quiere continuar?" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1016 msgid "symbolic profile name" msgstr "nombre perfil simbólico" -#: src/libslic3r/PrintConfig.cpp:1949 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive." msgstr "Sincronizar las capas de soporte con las capas de impresión del objeto. Esto es útil con impresoras de múltiples materiales, donde el cambio de el extrusor es costoso." -#: src/libslic3r/PrintConfig.cpp:1947 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "Sincronizar con capas las del objeto" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "System &Info" msgstr "&Información del Sistema" -#: src/slic3r/GUI/SysInfoDialog.cpp:44 +#: src/slic3r/GUI/SysInfoDialog.cpp:78 msgid "System Information" msgstr "Información del sistema" -#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970 -#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067 -#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553 +#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 +#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 +#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "Ajustes del sistema" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" msgstr "Tomar una &Captura de la configuración" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Haciendo una instantánea de la configuración" -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatura" -#: src/libslic3r/PrintConfig.cpp:1727 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped." msgstr "Diferencia de temperatura que se aplicará cuando un extrusor no esté activo. ACtiva una falda \"de sacrificio\" de altura completa en la que las boquillas se limpian periódicamente." -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "Variación de temperatura" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Temperatures" msgstr "Temperaturas" -#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 msgid "Test" msgstr "Test" -#: src/slic3r/GUI/BedShapeDialog.cpp:171 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "Textura" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." -msgstr "Se supone que el patrón de relleno %1% no funciona a una densidad del 100%%." +msgstr "Se supone que el patrón de relleno %1% no funciona a una densidad del 100%." -#: src/slic3r/GUI/FirmwareDialog.cpp:530 +#: src/slic3r/GUI/FirmwareDialog.cpp:548 #, possible-c-format msgid "The %s device could not have been found" msgstr "El dispositivo %s no se pudo encontrar" -#: src/slic3r/GUI/FirmwareDialog.cpp:417 +#: src/slic3r/GUI/FirmwareDialog.cpp:436 #, possible-c-format msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." msgstr "No se encontró el dispositivo %s. \nSi el dispositivo está conectado, presione el botón Reset al lado del conector USB ..." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." msgstr "El objeto que está manipulando está inclinado (los ángulos de rotación no son múltiplos de 90º). El escalado no uniforme de objetos inclinados sólo es posible en sistema de coordenadas Mundo, una vez que la rotación se ha aplicado a las coordenadas del objeto." -#: src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2717 msgid "The default angle for connecting support sticks and junctions." msgstr "El ángulo por defecto para la conexión de sticks y uniones de soporte." -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:631 msgid "The endings of the support pillars will be deployed on the gap between the object and the pad. 'Support base safety distance' has to be greater than the 'Pad object gap' parameter to avoid this." msgstr "Las terminaciones de los pilares de soporte se desplegarán en el espacio entre el objeto y el pad. La 'distancia de seguridad de la base de soporte' debe ser mayor que el parámetro 'Distancia entre objetos de relleno' para evitar esto." -#: src/libslic3r/PrintConfig.cpp:457 +#: src/libslic3r/PrintConfig.cpp:489 msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders." msgstr "La extrusora que se usa (a menos que se especifiquen configuraciones de extrusión más específicas). Este valor anula los extrusores de perímetro y relleno, pero no los extrusores de soporte." -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "El extrusor que se usa cuando se imprime relleno." -#: src/libslic3r/PrintConfig.cpp:1341 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "El extrusor que se usa al imprimir perímetros y borde. El primer extrusor es 1." -#: src/libslic3r/PrintConfig.cpp:1669 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." msgstr "El extrusor que se usa al imprimir relleno sólido." -#: src/libslic3r/PrintConfig.cpp:1879 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too." msgstr "La extrusora que se usa al imprimir la interfaz de material de soporte (1+, 0 para usar la extrusora actual para minimizar los cambios de herramientas). Esto también afecta a la balsa." -#: src/libslic3r/PrintConfig.cpp:1853 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)." msgstr "El extrusor que se usa al imprimir material de soporte, balsa y falda (1+, 0 para usar la extrusora actual para minimizar los cambios de herramientas)." -#: src/libslic3r/PrintConfig.cpp:695 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "El tipo de material de filamento para uso en códigos G personalizados." -#: src/libslic3r/PrintConfig.cpp:3105 +#: src/libslic3r/PrintConfig.cpp:3479 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "El archivo donde se escribirá el resultado (si no se especifica, se basará en en archivo de entrada)." -#: src/libslic3r/PrintConfig.cpp:1054 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "El firmware soporta el modo silencioso" -#: src/libslic3r/PrintConfig.cpp:351 +#: src/libslic3r/PrintConfig.cpp:377 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "La primera capa se contraerá en el plano XY por el valor configurado para compensar el aplatamiento de la 1ª capa, también conocido como efecto Pie de Elefante." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2726 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 msgid "the following characters are not allowed:" msgstr "los siguientes caracteres no están permitidos:" -#: src/slic3r/GUI/Tab.cpp:3311 +#: src/slic3r/GUI/Tab.cpp:3445 msgid "the following suffix is not allowed:" msgstr "el siguiente sufijo no está permitido:" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "El espacio entre la parte de debajo del objeto y el pad generado en el modo de cero elevación." -#: src/libslic3r/PrintConfig.cpp:2453 +#: src/libslic3r/PrintConfig.cpp:2695 msgid "The height of the pillar base cone" msgstr "La altura del cono de la base de un pilar" -#: src/libslic3r/PrintConfig.cpp:2481 +#: src/slic3r/GUI/DoubleSlider.cpp:1895 +msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." +msgstr "La información del último cambio de color se guardó para impresión con múltiples extrusores mediante cambios de herramienta para toda la impresión." + +#: src/slic3r/GUI/DoubleSlider.cpp:1889 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "La información del último cambio de color se guardó para la impresión multi-extrusor." + +#: src/slic3r/GUI/DoubleSlider.cpp:1873 +msgid "The last color change data was saved for a multiple extruder printer profile." +msgstr "La última información de cambio de color se guardó para un perfil de impresora con múltiples extrusores." + +#: src/slic3r/GUI/DoubleSlider.cpp:1872 +msgid "The last color change data was saved for a single extruder printer profile." +msgstr "La información del último cambio de color se guardó para la impresión con un solo extrusor." + +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." +msgstr "La información del último cambio de color se ha guardado para impresión con un solo extrusor." + +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "La distancia máxima entre dos pilares par que se unan entre si. Un valor cero prohibirá el encadenamiento de pilares." -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/libslic3r/PrintConfig.cpp:2727 msgid "The max length of a bridge" msgstr "La longitud máxima de un puente" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2705 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "La distancia mínima del modelo a la base de pilares en mm. Tiene sentido en el modo de cero elevación donde hay un hueco de acuerdo a cuando este parámetro se introduce entre el modelo y el pad." -#: src/libslic3r/PrintConfig.cpp:2176 +#: src/libslic3r/PrintConfig.cpp:175 +msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." +msgstr "El número de capas sólidas en la base se incrementa por encima de bottom_solid_layers si es necesario para asegurar un espesor mínimo en la pared de inferior." + +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." +msgstr "El número de capas sólidas en la parte superior se incrementa sobre top_solid_layers si es necesario para satisfacer la altura mínima de la tapa superior. Esto es útil para prevenir el efecto de achatado cuando se imprime con altura de capa variable." + +#: src/libslic3r/PrintConfig.cpp:2277 msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes." msgstr "El objeto se crecerá / reducirá en el plano XY por el valor configurado (negativo = hacia adentro, positivo = hacia afuera). Esto podría ser útil para ajustar el tamaño de los orificios." -#: src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "The object will be raised by this number of layers, and support material will be generated under it." msgstr "El objeto será elevado por este número de capas y se generará material de soporte debajo de él." -#: src/libslic3r/PrintConfig.cpp:2259 +#: src/libslic3r/PrintConfig.cpp:2424 msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" msgstr "El porcentaje del área de la cama. \nSi el área de impresión excede el valor especificado, \nentonces se utilizará una inclinación lenta, de lo contrario - una inclinación rápida" -#: src/slic3r/GUI/GUI_App.cpp:831 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "Los presets en las siguientes pestañas fueron modificados" -#: src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "La impresora multiplexa los filamentos en un solo fusor." -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Format/3mf.cpp:1630 msgid "The selected 3mf file has been saved with a newer version of %1% and is not compatible." msgstr "El archivo 3mf seleccionado se ha guardado con una versión más reciente de %1% y no es compatible." -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "The selected amf file has been saved with a newer version of %1% and is not compatible." msgstr "El archivo amf seleccionado se ha guardado con una versión más reciente de %1% y no es compatible." -#: src/slic3r/GUI/BedShapeDialog.cpp:342 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "El archivo seleccionado no contiene geometría." -#: src/slic3r/GUI/BedShapeDialog.cpp:346 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "The selected file contains several disjoint areas. This is not supported." msgstr "El archivo seleccionado contiene varias áreas disjuntas. Esto no es compatible." -#: src/slic3r/GUI/Plater.cpp:2271 +#: src/slic3r/GUI/Plater.cpp:2954 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "El objeto seleccionado no se puede dividir porque contiene más de un volumen / material." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 msgid "The selected object couldn't be split because it contains only one part." msgstr "El objeto seleccionado no se pudo dividir porque contiene solo una parte." -#: src/slic3r/GUI/MainFrame.cpp:410 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "El proyecto seleccionado no está diponible" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." +msgstr "La impresión secuencial está activada.\nEs imposible incluir G-code personalizado para piezas que se imprimen secuencialmente.\nEste código no se procesará durante la generación del G-code." + +#: src/libslic3r/PrintConfig.cpp:2837 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "La pendiente de la pared del pad en relación con el plano de la cama. 90 grados significa paredes rectas." -#: src/libslic3r/PrintConfig.cpp:1544 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used." msgstr "La velocidad de carga de un filamento en la extrusora después de la retracción (solo se aplica al motor del extrusor). Si se deja a cero, se usa la velocidad de retracción." -#: src/libslic3r/PrintConfig.cpp:1536 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "La velocidad para las retracciones (solo se aplica al motor del extrusor)." +#: src/slic3r/GUI/ConfigManipulation.cpp:81 +#, no-c-format +msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" +msgstr "El modo Vaso Espiral necesita:\n-un perímetro\n-cero capas de tapa superior\n-0% densidad de relleno\n-sin soportes\n-Comprueba que está activado el espesor de pared vertical\n-Desactiva la detección de paredes finas" + #: src/slic3r/GUI/ConfigManipulation.cpp:75 #, no-c-format msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" msgstr "El modo Vaso Espiral requiere:\n- un perímetro\n- sin capas superiores sólidas\n- 0% densidad de relleno\n- sin material de soporte\n- sin ensure_vertical_shell_thickness" -#: src/libslic3r/Print.cpp:1187 +#: src/libslic3r/Print.cpp:1233 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "La opción Vaso en espiral solo puede ser usada cuando se imprime un solo objeto." -#: src/libslic3r/Print.cpp:1189 +#: src/libslic3r/Print.cpp:1240 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "La opción Vaso en espiral solo puede ser usada al imprimir objetos de un solo material." -#: src/slic3r/GUI/Tab.cpp:2900 +#: src/slic3r/GUI/Tab.cpp:3052 msgid "The supplied name is empty. It can't be saved." msgstr "El nombre proporcionado está vacío. No se puede guardar." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3449 msgid "The supplied name is not available." msgstr "El nombre proporcionado no está disponible." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2725 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278 -#: src/slic3r/GUI/Tab.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:3444 msgid "The supplied name is not valid;" msgstr "El nombre proporcionado no es válido;" -#: src/libslic3r/Print.cpp:1268 +#: src/libslic3r/Print.cpp:1218 msgid "The supplied settings will cause an empty print." msgstr "Los ajustes proporcionados causarán una impresión vacía." -#: src/libslic3r/PrintConfig.cpp:2524 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "The thickness of the pad and its optional cavity walls." msgstr "El grosor de las pads y sus paredes de cavidad opcionales." -#: src/libslic3r/PrintConfig.cpp:1825 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "La distancia vertical entre el objeto y la interfaz del material de soporte. Establecer esto en 0 también evitará que Slic3r use el flujo y la velocidad del puente para la primera capa de los objetos." -#: src/slic3r/GUI/Tab.cpp:2429 +#: src/slic3r/GUI/Tab.cpp:2571 msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" msgstr "La opción Limpiar no está disponible cuando se usa el modo Retracción de firmware. ¿Lo inhabilito para habilitar la Retracción de firmware?" -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "La Torre de Limpieza actualmente no es compatible con E volumétrico (use_volumetric_e=0)." -#: src/slic3r/GUI/ConfigManipulation.cpp:107 +#: src/slic3r/GUI/ConfigManipulation.cpp:115 msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "La Torre de Limpieza actualmente admite los soportes no solubles solo si están impresos con el extrusor actual sin activar un cambio de herramienta. \n(tanto support_material_extruder como support_material_interface_extruder deben configurarse en 0)." -#: src/libslic3r/Print.cpp:1306 +#: src/libslic3r/Print.cpp:1396 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "La Torre de Limpieza actualmente admite los soportes no solubles solo si están impresos con el extrusor actual sin activar un cambio de herramienta. (Tanto support_material_extruder como support_material_interface_extruder deben configurarse en 0)." -#: src/libslic3r/Print.cpp:1200 +#: src/libslic3r/Print.cpp:1266 +msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." +msgstr "La Torre de Limpieza no se permite ahora para impresiones secuenciales multimaterial." + +#: src/libslic3r/Print.cpp:1258 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Actualmente, La Torre de Limpieza solo es compatible con los tipos de código G de Marlin, RepRap/Sprinter y Repetier." -#: src/libslic3r/Print.cpp:1202 +#: src/libslic3r/Print.cpp:1260 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "En la actualidad, Wipe Tower solo es compatible con el direccionamiento relativo del extrusor (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1225 +#: src/libslic3r/Print.cpp:1289 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "La torre de limpieza sólo se permite para varios objetos si se imprimen sobre un número igual de capas de balsa" -#: src/libslic3r/Print.cpp:1227 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "La torre de limpieza sólo es compatible con varios objetos si se imprimen con la misma support_material_contact_distance" -#: src/libslic3r/Print.cpp:1229 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "La torre de limpieza sólo es compatible con varios objetos si se cortan por igual." -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1287 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "La torre de limpieza sólo es compatible con varios objetos si tienen alturas de capas iguales" -#: src/libslic3r/Print.cpp:1155 +#: src/libslic3r/Print.cpp:1253 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "La torre de limpieza solo es compatible si todos los extrusores tienen el mismo diámetro del nozzle y usan filamento del mismo diámetro." -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1335 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "La Torre de Limpieza solo es compatible si todos los objetos tienen la misma altura de capa variable" -#: src/slic3r/GUI/UpdateDialogs.cpp:127 +#: src/libslic3r/SLAPrintSteps.cpp:596 +msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." +msgstr "Hay objetos no imprimibles. Intenta ajustar la configuración de soportes para que los objetos se puedan imprimir." + +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." +msgstr "Hay un cambio de color para el extrusor que no se ha usado antes. \nComprueba tus ajustes para evitar cambios de color innecesarios." + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." +msgstr "Hay un cambio de color para el extrusor que no será usado hasta el final del trabajo de impresión. Este código no será procesado durante la generación del G-code." + +#: src/slic3r/GUI/DoubleSlider.cpp:993 +msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." +msgstr "Hay un cambio de extrusor establecido en el mismo extrusor.\nEste código no se procesará durante la generación del código G." + +#: src/slic3r/GUI/UpdateDialogs.cpp:225 #, possible-c-format msgid "This %s version: %s" msgstr "Esta %s versión: %s" -#: src/libslic3r/PrintConfig.cpp:140 +#: src/libslic3r/PrintConfig.cpp:155 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Este código se inserta entre los objetos cuando se utiliza la impresión secuencial. Por defecto, el extrusor y la temperatura de la cama se reinician utilizando un comando de no espera; sin embargo, si se detectan M104, M109, M140 o M190 en este código personalizado, Slic3r no agregará comandos de temperatura. Tenga en cuenta que puede usar variables de marcador de posición para todas las configuraciones de Slic3r, por lo que puede poner un comando \"M109 S [first_layer_temperature]\" donde lo desee." -#: src/libslic3r/PrintConfig.cpp:1032 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Este código personalizado se inserta en cada cambio de capa, justo después del movimiento Z y antes de que el extrusor se mueva al primer punto de capa. Tenga en cuenta que puede usar variables de marcador de posición para todos los ajustes de Slic3r, así como [layer_num] y [layer_z]." -#: src/libslic3r/PrintConfig.cpp:129 +#: src/libslic3r/PrintConfig.cpp:144 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Este código personalizado se inserta en cada cambio de capa, justo antes del movimiento Z. Tenga en cuenta que puede usar variables de marcador de posición para todos los ajustes de Slic3r, así como [layer_num] y [layer_z]." -#: src/libslic3r/PrintConfig.cpp:2057 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "This custom code is inserted before every toolchange. Placeholder variables for all PrusaSlicer settings as well as {previous_extruder} and {next_extruder} can be used. When a tool-changing command which changes to the correct extruder is included (such as T{next_extruder}), PrusaSlicer will emit no other such command. It is therefore possible to script custom behaviour both before and after the toolchange." msgstr "Este código personalizado se inserta antes de cada cambio de herramienta. Se pueden utilizar variables de marcador de posición para todas las configuraciones de PrusaSlicer, así como {previous_extruder} y {next_extruder}. Cuando se incluye un comando de cambio de herramienta que cambia al extrusor correcto (como T{next_extruder}), PrusaSlicer no emitirá ningún otro comando. Por lo tanto, es posible escribir un comportamiento personalizado antes y después del cambio de herramienta." -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:396 msgid "This end procedure is inserted at the end of the output file, before the printer end gcode (and before any toolchange from this filament in case of multimaterial printers). Note that you can use placeholder variables for all PrusaSlicer settings. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Este procedimiento final se inserta al final del archivo de salida, antes del código G final de la impresora (y antes de cualquier cambio de herramienta desde este filamento en el caso de impresoras multimateriales). Ten en cuenta que puede usar variables de marcador de posición para todas las configuraciones de PrusaSlicer. Si tienes varios extrusores, el código G se procesa en orden de extrusor." -#: src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:386 msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all PrusaSlicer settings." msgstr "Este procedimiento final se inserta al final del archivo de salida. Ten en cuenta que puedes usar variables de marcador de posición para todas las configuraciones de PrusaSlicer." -#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds." msgstr "Esta configuración experimental se usa para limitar la velocidad de cambio en la velocidad de extrusión. Un valor de 1,8 mm³ / s² asegura que se cambia la velocidad de extrusión de 1,8 mm³ / s (ancho de extrusión de 0,45 mm, altura de extrusión de 0,2 mm, avance de 20 mm / s) a 5,4 mm³ / s (avance de 60 mm / s) durará al menos 2 segundos." -#: src/libslic3r/PrintConfig.cpp:1183 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports." msgstr "Esta configuración experimental se usa para establecer la velocidad volumétrica máxima que admite el extrusor." -#: src/libslic3r/PrintConfig.cpp:2061 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." msgstr "Esta configuración experimental utiliza comandos G10 y G11 para que el firmware maneje la retracción. Esto solo se admite en Marlin reciente." -#: src/libslic3r/PrintConfig.cpp:2075 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Este ajuste experimental utiliza como salida del E valores en milímetros cúbicos en lugar de milímetros lineales. Si su firmware aún no conoce el (los) diámetro (s) del filamento, puede poner comandos como 'M200 D [filament_diameter_0] T0' en su código G inicial para activar el modo volumétrico y usar el diámetro del filamento asociado al filamento seleccionado. en Slic3r. Esto solo se admite en Marlin reciente." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2848 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 msgid "This extruder will be set for selected items" msgstr "Este extrusor se aplicará a los objetos seleccionados" -#: src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Este factor afecta la cantidad de plástico para formar puentes. Puede disminuirlo ligeramente para extraer los extruidos y evitar el combado, aunque la configuración predeterminada suele ser buena y debe experimentar con la refrigeración (usar un ventilador) antes de ajustar esto." -#: src/libslic3r/PrintConfig.cpp:514 +#: src/libslic3r/PrintConfig.cpp:546 msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Este factor cambia la cantidad de flujo proporcionalmente. Es posible que necesite ajustar esta configuración para obtener un buen acabado superficial y corregir el ancho de una sola pared. Los valores usuales están entre 0.9 y 1.1. Si cree que necesita cambiar esto más, verifique el diámetro del filamento y los pasos del E en el firmware." -#: src/libslic3r/PrintConfig.cpp:178 +#: src/libslic3r/PrintConfig.cpp:204 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "La velocidad de este ventilador se aplica durante todos los puentes y voladizos." -#: src/libslic3r/PrintConfig.cpp:944 +#: src/libslic3r/PrintConfig.cpp:992 msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy." msgstr "Esta característica permite combinar el relleno y acelerar la impresión mediante la extrusión de capas de relleno más gruesas a la vez que se preservan los finos perímetros y, por lo tanto, la precisión." -#: src/libslic3r/PrintConfig.cpp:1677 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height." msgstr "Esta característica permite forzar una capa sólida en cada número de capas. Cero para deshabilitar. Puede establecer esto en cualquier valor (por ejemplo, 9999); Slic3r seleccionará automáticamente la cantidad máxima posible de capas para combinar según el diámetro de la boquilla y la altura de la capa." -#: src/libslic3r/PrintConfig.cpp:1718 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Esta función aumentará Z gradualmente mientras imprime un objeto de pared simple para eliminar cualquier costura visible. Esta opción requiere un perímetro único, sin relleno, sin capas sólidas superiores y sin material de soporte. Todavía puede establecer cualquier cantidad de capas sólidas inferiores, así como bucles de falda / balsa. No funcionará al imprimir más de un objeto." -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2351 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Este archivo no puede ser cargado en un modo sencillo. ¿Quieres cambiar al modo experto?" -#: src/slic3r/GUI/Plater.cpp:2361 +#: src/slic3r/GUI/Plater.cpp:2341 msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" msgstr "Este archivo contiene varios objetos posicionados en múltiples alturas. En lugar de considerarlos como objetos múltiples, ¿debería considerar\n este archivo como un único objeto que tiene varias partes?" -#: src/slic3r/GUI/FirmwareDialog.cpp:313 +#: src/slic3r/GUI/FirmwareDialog.cpp:332 #, possible-c-format msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." msgstr "Este archivo hex del firmware no se corresponde con el modelo de impresora. El archivo hex está preparado para: %s\nEsta Impresora: %s\n\n¿Quieres continuar y grabar este archivo hex de todos modos?\nPor favor continúa solo si estás seguro de que es lo correcto." -#: src/libslic3r/PrintConfig.cpp:278 +#: src/libslic3r/PrintConfig.cpp:304 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Este indicador habilita la lógica de enfriamiento automático que ajusta la velocidad de impresión y la velocidad del ventilador según el tiempo de impresión de la capa." -#: src/slic3r/GUI/Plater.cpp:448 +#: src/slic3r/GUI/Plater.cpp:533 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Esta opción activa la balsa que se imprimirá alrededor del objeto en la primera capa." -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "Esta bandera impone una retractación cada vez que se realiza un movimiento Z." -#: src/libslic3r/PrintConfig.cpp:2093 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Esta bandera moverá la boquilla mientras se retrae para minimizar la posible mancha en los extrusores con fugas." -#: src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a default preset." msgstr "Este es un preajuste preestablecido." -#: src/libslic3r/PrintConfig.cpp:2501 +#: src/libslic3r/PrintConfig.cpp:2757 msgid "This is a relative measure of support points density." msgstr "Esta es una medida relativa de la densidad de los puntos de soporte." -#: src/slic3r/GUI/Tab.cpp:2528 +#: src/slic3r/GUI/Tab.cpp:2334 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Esta es una impresora multimaterial de extrusor único, los diámetros de todas los extrusores se establecerán según el nuevo valor. ¿Quieres proceder?" -#: src/slic3r/GUI/Tab.cpp:923 +#: src/slic3r/GUI/Tab.cpp:957 msgid "This is a system preset." msgstr "Este es un preajuste del sistema." -#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." msgstr "Esto solo se usa en la interfaz de Slic3r como ayuda visual." -#: src/libslic3r/PrintConfig.cpp:300 +#: src/libslic3r/PrintConfig.cpp:326 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Esta es la aceleración después de que se usen los valores de aceleración específicos de cada función (perímetro / relleno). Establezca cero para evitar restablecer la aceleración." -#: src/libslic3r/PrintConfig.cpp:158 +#: src/libslic3r/PrintConfig.cpp:184 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "Esta es la aceleración que su impresora usará para los puentes. Establezca cero para deshabilitar el control de aceleración para puentes." -#: src/libslic3r/PrintConfig.cpp:813 +#: src/libslic3r/PrintConfig.cpp:860 msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer." msgstr "Esta es la aceleración que su impresora usará para la primera capa. Establezca cero para deshabilitar el control de aceleración para la primera capa." -#: src/libslic3r/PrintConfig.cpp:934 +#: src/libslic3r/PrintConfig.cpp:982 msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill." msgstr "Esta es la aceleración que su impresora usará para el relleno. Establezca cero para deshabilitar el control de aceleración para el relleno." -#: src/libslic3r/PrintConfig.cpp:1331 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters." msgstr "Esta es la aceleración que su impresora usará para los perímetros. Un valor alto como 9000 generalmente da buenos resultados si su hardware está a la altura del trabajo. Establezca cero para deshabilitar el control de aceleración para los perímetros." -#: src/libslic3r/PrintConfig.cpp:1262 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "Este es el diámetro de la boquilla de su extrusor (por ejemplo: 0.5, 0.35, etc.)" -#: src/libslic3r/PrintConfig.cpp:1162 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter." msgstr "Esta es la altura más alta imprimible de capa para este extrusor, que se utiliza para cubrir la altura de la capa variable y la altura de la capa de soporte. La altura máxima recomendada de la capa es del 75% del ancho de extrusión para lograr una adhesión razonable entre capas. Si se establece en 0, la altura de la capa se limita al 75% del diámetro de la boquilla." -#: src/libslic3r/PrintConfig.cpp:1225 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm." msgstr "Esta es la altura más baja de la capa imprimible para este extrusor y limita la resolución para la altura de la capa variable. Los valores típicos están entre 0.05 mm y 0.1 mm." -#: src/libslic3r/GCode.cpp:630 +#: src/libslic3r/GCode.cpp:639 msgid "This is usually caused by negligibly small extrusions or by a faulty model. Try to repair the model or change its orientation on the bed." msgstr "Esto generalmente es causado por extrusiones insignificantemente pequeñas o por un modelo defectuoso. Intenta reparar el modelo o cambia su orientación en la cama." -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools." msgstr "Esta matriz detalla los volúmenes (en milímetros cúbicos) necesarios para purgar el nuevo filamento en la torre de limpieza para cualquier par de filamentos." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 msgid "This operation is irreversible.\nDo you want to proceed?" msgstr "Esta operación es irreversible. \n¿Deseas continuar?" -#: src/libslic3r/PrintConfig.cpp:1372 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." msgstr "Esta opción establece la cantidad de perímetros que se generarán para cada capa. Tenga en cuenta que Slic3r puede aumentar este número automáticamente cuando detecta superficies inclinadas que se benefician de un mayor número de perímetros si la opción Perímetros adicionales está habilitada." -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures." msgstr "Esta opción reducirá la temperatura de las extrusoras inactivas para evitar el goteo. Permitirá una falda alta automáticamente y moverá los extrusores fuera de dicha falda cuando cambie la temperatura." -#: src/libslic3r/PrintConfig.cpp:980 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved." msgstr "Esta opción limitará el relleno a las áreas realmente necesarias para soportar techos (actuará como material de soporte interno). Si está habilitado, ralentiza la generación del código G debido a las múltiples comprobaciones involucradas." -#: src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "This option will switch the print order of perimeters and infill, making the latter first." msgstr "Esta opción cambiará el orden de impresión de los perímetros y el relleno, haciendo que el último sea el primero." -#: src/libslic3r/PrintConfig.cpp:427 +#: src/libslic3r/PrintConfig.cpp:459 msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Esta configuración independiente afectará la velocidad de los perímetros externos (los visibles). Si se expresa como porcentaje (por ejemplo: 80%), se calculará en la configuración de velocidad de perímetros anterior. Establecer a cero para auto." -#: src/libslic3r/PrintConfig.cpp:1648 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Esta configuración por separado afectará la velocidad de los perímetros con un radio <= 6,5 mm (generalmente agujeros). Si se expresa como porcentaje (por ejemplo: 80%), se calculará en la configuración de velocidad de perímetros anterior. Establecer a cero para auto." -#: src/libslic3r/PrintConfig.cpp:989 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width." msgstr "Esta configuración aplica una superposición adicional entre relleno y perímetros para una mejor unión. Teóricamente, esto no debería ser necesario, pero la reacción puede causar huecos. Si se expresa como porcentaje (ejemplo: 15%), se calcula sobre el ancho de extrusión del perímetro." -#: src/libslic3r/PrintConfig.cpp:57 +#: src/libslic3r/PrintConfig.cpp:73 msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print." msgstr "Esta configuración controla la altura (y, por tanto, el número total) de las láminas / capas. Las capas más delgadas brindan una mayor precisión pero requieren más tiempo para imprimir." -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "Esta configuración representa la velocidad máxima de su ventilador." -#: src/libslic3r/PrintConfig.cpp:1216 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "Este ajuste representa el PWM mínimo que el ventilador necesita para funcionar." -#: src/libslic3r/PrintConfig.cpp:1801 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "This start procedure is inserted at the beginning, after any printer start gcode (and after any toolchange to this filament in case of multi-material printers). This is used to override settings for a specific filament. If PrusaSlicer detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Este procedimiento de inicio se inserta al principio, después de que cualquier impresora inicie un código G(y después de cualquier cambio de herramienta a este filamento en el caso de impresoras de materiales múltiples). Esto se utiliza para anular la configuración de un filamento específico. Si PrusaSlicer detecta un M104, M109, M140 o M190 en tus códigos personalizados, dichos comandos no se agregarán automáticamente, por lo que puede personalizar el orden de los comandos de calentamiento y otras acciones personalizadas. Ten en cuenta que puedes usar variables de marcador de posición para todas las configuraciones de PrusaSlicer, por lo que puedes colocar un comando \"M109 S [first_layer_temperature]\" donde lo desees. Si tienes varias extrusorrs, el código G se procesa en el orden del extrusor." -#: src/libslic3r/PrintConfig.cpp:1786 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If PrusaSlicer detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Este procedimiento de inicio se inserta al principio, después de que la bse ha alcanzado la temperatura objetivo y el extrusor acaba de comenzar a calentar, y antes de que el extrusor haya terminado de calentar. Si PrusaSlicer detecta un M104 o M190 en tus códigos personalizados, dichos comandos no se agregarán automáticamente, por lo que se puede personalizar el orden de los comandos de calentamiento y otras acciones personalizadas. Ten en cuenta que puedes usar variables de marcador de posición para todas las configuraciones de PrusaSlicer, por lo que puedes colocar un comando \"M109 S [first_layer_temperature]\" donde lo desees." -#: src/libslic3r/PrintConfig.cpp:664 +#: src/libslic3r/PrintConfig.cpp:695 msgid "This string is edited by RammingDialog and contains ramming specific parameters." msgstr "Esta cadena se modifica con el Diálogo de Empuje y contiene parámetros específicos de empuje." -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." msgstr "Este valor será añadido (o eliminado) de todas las coordenadas Z en el G-code de salida. Se usa para compensar una mala posición del final de carrera Z: por ejemplo, si tu interruptor deja la boquilla a 0.3mm de la base de impresión, ajustalo a -0.3 (o arregla tu interruptor)." -#: src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." msgstr "Este vector guarda los volúmenes necesarios para cambiar desde/hasta cada herramienta usada en la torre de limpieza. Estos valores se emplean para simplificar la creación de los volúmenes totales de purga más abajo." -#: src/slic3r/GUI/UpdateDialogs.cpp:155 +#: src/slic3r/GUI/UpdateDialogs.cpp:216 #, possible-c-format msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." msgstr "Esta versión de %s no es compatible con los grupos de configuraciones instaladas. Esto sucede probablemente por ejecutar una versión de %s después de haber usado una más reciente.\n\nPuedes salir de %s e intentarlo de nuevo con una versión más reciente, o puedes volver a ejecutar la configuración inicial. Al hacerlo se creará una copia de respaldo de la configuración existente antes de instalar la nueva compatible con esta versión de %s." -#: src/libslic3r/PrintConfig.cpp:2284 +#: src/libslic3r/PrintConfig.cpp:2449 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Esto aplicará una corrección gamma a los polígonos 2D rasterizados. Un valor gamma de cero significa que el umbral se encuentra en el medio. Este comportamiento elimina el antialiasing sin perder agujeros en los polígonos." -#: src/libslic3r/PrintConfig.cpp:1994 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "Núcleos" -#: src/libslic3r/PrintConfig.cpp:1995 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Núcleos usados para tareas multi-recurso. Número óptimo de núcleos es ligeramente sobre el numero de núcleos/procesadores disponibles." -#: src/slic3r/GUI/Tab.cpp:2052 +#: src/slic3r/GUI/Tab.cpp:2091 msgid "Tilt" msgstr "Inclinación" -#: src/slic3r/GUI/Tab.cpp:2053 +#: src/slic3r/GUI/Tab.cpp:2092 msgid "Tilt time" msgstr "Tiempo de inclinación" @@ -7361,27 +8092,35 @@ msgstr "Tiempo de inclinación" msgid "Time" msgstr "Tiempo" -#: src/libslic3r/PrintConfig.cpp:655 +#: src/libslic3r/PrintConfig.cpp:687 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Tiempo para que el firmware de la impresora (o la Unidad Multi Material 2.0) cargue un filamento durante un cambio de herramienta (al ejecutar el código T). Este tiempo se añade al tiempo total de impresión mediante el estimador de tiempo del código G." -#: src/libslic3r/PrintConfig.cpp:670 +#: src/libslic3r/PrintConfig.cpp:702 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Tiempo para que el firmware de la impresora (o la Unidad Multi Material 2.0) descargue un filamento durante un cambio de herramienta (al ejecutar el código T). Este tiempo se añade al tiempo total de impresión mediante el estimador de tiempo del código G." -#: src/libslic3r/PrintConfig.cpp:2242 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "Tiempo de la inclinación rápida" -#: src/libslic3r/PrintConfig.cpp:2251 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "Tiempo de la inclinación lenta" -#: src/libslic3r/PrintConfig.cpp:610 +#: src/libslic3r/PrintConfig.cpp:641 msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Tiempo de espera después de que se ha descargado el filamento. Puede ayudar para conseguir cambios de herramienta fiables con materiales flexibles que pueden necesitar más tiempo para encogerse a su tamaño original." -#: src/slic3r/GUI/Tab.cpp:916 +#: src/slic3r/GUI/DoubleSlider.cpp:962 +msgid "To add another code use Ctrl + Left click" +msgstr "Para añadir otro código usa Ctrl + Click izquierdo" + +#: src/slic3r/GUI/DoubleSlider.cpp:963 +msgid "To add another code use Right click" +msgstr "Para añadir otro código usa Click derecho" + +#: src/slic3r/GUI/Tab.cpp:968 msgid "To do that please specify a new name for the preset." msgstr "Para hacerlo por favor especifique un nuevo nombre para esos ajustes." @@ -7389,129 +8128,151 @@ msgstr "Para hacerlo por favor especifique un nuevo nombre para esos ajustes." msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" msgstr "A excepción de la manipulación redundante de herramientas,\nLos cambios de color para los extrusores no utilizados se eliminaron" -#: src/slic3r/GUI/Plater.cpp:2966 +#: src/slic3r/GUI/Plater.cpp:4023 msgid "To objects" msgstr "A los objetos" -#: src/slic3r/GUI/Plater.cpp:2968 +#: src/slic3r/GUI/Plater.cpp:4025 msgid "To parts" msgstr "A las piezas" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:212 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 #, possible-c-format msgid "Toggle %c axis mirroring" msgstr "Activar reflejo del eje %c" -#: src/libslic3r/Zipper.cpp:37 +#: src/libslic3r/Zipper.cpp:34 msgid "too many files" msgstr "demasiados archivos" -#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315 -#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404 +#: src/libslic3r/SLAPrintSteps.cpp:154 +msgid "Too much overlapping holes." +msgstr "Demasiados agujeros superpuestos." + +#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 +#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 +#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Herramienta" -#: src/slic3r/GUI/WipeTowerDialog.cpp:240 +#: src/slic3r/GUI/WipeTowerDialog.cpp:276 msgid "Tool #" msgstr "Herramienta nº" -#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006 +#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "Código G de cambio de herramienta" -#: src/slic3r/GUI/Tab.cpp:1530 +#: src/slic3r/GUI/Tab.cpp:1493 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parámetros del cambio de herramienta para impresoras de un único extrusor MM" #. TRN To be shown in the main menu View->Top -#: src/slic3r/GUI/MainFrame.cpp:522 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "Superior" -#: src/libslic3r/PrintConfig.cpp:388 +#: src/slic3r/GUI/PresetHints.cpp:300 +msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "Sugerencia de grosor de la carcasa superior / inferior: no disponible debido a una altura de capa inválida." + +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "Patrón de relleno superior" -#: src/slic3r/GUI/PresetHints.cpp:189 +#: src/slic3r/GUI/PresetHints.cpp:319 +msgid "Top is open." +msgstr "La parte superior está abierta." + +#: src/slic3r/GUI/PresetHints.cpp:313 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "La tapa superior es de %1% mm de espesor con una altura de capa de %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" msgstr "relleno sólido superior" -#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017 -#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Relleno sólido superior" -#: src/libslic3r/PrintConfig.cpp:2046 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" msgstr "Capas solidas superiores" -#: src/slic3r/GUI/MainFrame.cpp:522 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "Vista superior" -#: src/slic3r/GUI/WipeTowerDialog.cpp:247 +#: src/slic3r/GUI/WipeTowerDialog.cpp:285 msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded." msgstr "El volumen total de purga se calcula sumando dos valors más abajo, dependiendo de qué filamentos se carguen/descarguen." -#: src/slic3r/GUI/WipeTowerDialog.cpp:84 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 msgid "Total rammed volume" msgstr "Volumen total empujado" -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 +#: src/slic3r/GUI/WipeTowerDialog.cpp:83 msgid "Total ramming time" msgstr "Tiempo de empuje total" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:516 msgid "Translate" msgstr "Traducir" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Translación" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051 +#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Recorrido" -#: src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "Triángulos" -#: src/libslic3r/PrintConfig.cpp:3059 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Intenta reparar cualquier malla no múltiple (esta opción se agrega implícitamente cada vez que necesitamos laminar el modelo para realizar la acción solicitada)." -#: src/libslic3r/PrintConfig.cpp:1397 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "Tipo de impresora." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2549 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Type:" msgstr "Tipo:" -#: src/libslic3r/Zipper.cpp:35 +#: src/slic3r/GUI/Plater.cpp:3436 +msgid "Unable to reload:" +msgstr "Incapaz de recargar:" + +#: src/libslic3r/Zipper.cpp:32 msgid "undefined error" msgstr "error no definido" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3609 -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Deshacer" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Deshacer %1$d Acción" msgstr[1] "Deshacer %1$d Acciones" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Undo History" msgstr "Deshacer Historia" -#: src/libslic3r/Zipper.cpp:59 +#: src/libslic3r/Zipper.cpp:56 msgid "unexpected decompressed size" msgstr "tamaño de descompresión inesperado" @@ -7519,96 +8280,102 @@ msgstr "tamaño de descompresión inesperado" msgid "Unknown" msgstr "Desconocido" -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 msgid "Unknown error occured" msgstr "Ha ocurrido un error desconocido" -#: src/slic3r/GUI/WipeTowerDialog.cpp:234 +#: src/slic3r/GUI/WipeTowerDialog.cpp:263 msgid "unloaded" msgstr "descargado" -#: src/libslic3r/PrintConfig.cpp:591 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "Velocidad de descarga" -#: src/libslic3r/PrintConfig.cpp:600 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "Velocidad de descarga al inicio" -#: src/slic3r/GUI/Tab.cpp:3069 +#: src/slic3r/GUI/Tab.cpp:3240 msgid "UNLOCKED LOCK" msgstr "CANDADO ABIERTO" -#: src/slic3r/GUI/Tab.cpp:3362 +#: src/slic3r/GUI/Tab.cpp:3266 msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." msgstr "El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados) para el grupo de opciones actual.\nHaz clic para restablecer todas las configuraciones para el grupo de opciones actual a los valores del sistema (o predeterminados)." -#: src/slic3r/GUI/Tab.cpp:3377 +#: src/slic3r/GUI/Tab.cpp:3281 msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." msgstr "El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados).\nHaz clic para reiniciar el valor actual a los del sistema (o predeterminados)" -#: src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Unretractions" msgstr "Desretracciones" -#: src/slic3r/GUI/Tab.cpp:2785 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "Unsaved Changes" msgstr "Cambios no guardados" -#: src/slic3r/GUI/GUI_App.cpp:790 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "Ajustes iniciales no guardados" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 msgid "Unselect gizmo / Clear selection" msgstr "Deseleccionar gizmo / eliminar selección" -#: src/libslic3r/Zipper.cpp:63 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "Deseleccionar gizmo o borrar selección" + +#: src/libslic3r/Zipper.cpp:60 msgid "unsupported central directory size" msgstr "tamaño del directorio central no compatible" -#: src/libslic3r/Zipper.cpp:43 +#: src/libslic3r/Zipper.cpp:40 msgid "unsupported encryption" msgstr "encriptación no compatible" -#: src/libslic3r/Zipper.cpp:45 +#: src/libslic3r/Zipper.cpp:42 msgid "unsupported feature" msgstr "característica no compatible" -#: src/libslic3r/Zipper.cpp:41 +#: src/libslic3r/Zipper.cpp:38 msgid "unsupported method" msgstr "método no compatible" -#: src/libslic3r/Zipper.cpp:53 +#: src/libslic3r/Zipper.cpp:50 msgid "unsupported multidisk archive" msgstr "archivo multidisk no compatible" -#: src/slic3r/GUI/GUI_App.cpp:305 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "Versión de OpenGL no soportada" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 msgid "Unsupported selection" msgstr "Selección no soportada" -#: src/libslic3r/GCode/PreviewData.cpp:495 +#: src/slic3r/GUI/GLCanvas3D.cpp:960 #, possible-c-format msgid "up to %.2f mm" msgstr "hasta %.2f mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/UpdateDialogs.cpp:38 msgid "Update available" msgstr "Actualización disponible" -#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 msgid "Update built-in Presets automatically" msgstr "Actualiza los ajustes de fábrica automáticamente" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Updates" msgstr "Actualizaciones" -#: src/slic3r/GUI/ConfigWizard.cpp:426 +#: src/slic3r/GUI/ConfigWizard.cpp:785 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Las actualizaciones nunca se realizan sin el consentimiento del usuario y nunca sobre-escriben ajustes personalizados del usuario." @@ -7616,11 +8383,11 @@ msgstr "Las actualizaciones nunca se realizan sin el consentimiento del usuario msgid "Upgrade" msgstr "Actualización" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" msgstr "Cargar una imagen de firmware a una impresora basada en Arduino" -#: src/slic3r/Utils/FlashAir.cpp:60 +#: src/slic3r/Utils/FlashAir.cpp:58 msgid "Upload not enabled on FlashAir card." msgstr "Subida no activada a tarjeta FlashAir." @@ -7628,32 +8395,32 @@ msgstr "Subida no activada a tarjeta FlashAir." msgid "Upload to Printer Host with the following filename:" msgstr "Cargar el host de impresión con el siguiente nombre de archivo:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:229 +#: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "Subiendo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 msgid "Upper Layer" msgstr "Capa superior" -#: src/slic3r/GUI/Tab.cpp:1873 +#: src/slic3r/GUI/Tab.cpp:1898 msgid "USB/Serial connection" msgstr "Conexión USB/Serial" -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "Puerto USB/serial para la conexión con la impresora." -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 +#: src/slic3r/GUI/DoubleSlider.cpp:1115 msgid "Use another extruder" msgstr "Usar otro extrusor" -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:147 msgid "Use custom size for toolbar icons" msgstr "Usar tamaño personalizado para los iconos de la barra de herramientas" -#: src/libslic3r/PrintConfig.cpp:2060 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "Usar la retracción del firmware" @@ -7661,51 +8428,59 @@ msgstr "Usar la retracción del firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Use barras diagonales ( / ) como separadores de directorios si fuese necesario." -#: src/libslic3r/PrintConfig.cpp:2515 +#: src/slic3r/GUI/Preferences.cpp:129 +msgid "Use free camera" +msgstr "Usar la cámara libre" + +#: src/libslic3r/PrintConfig.cpp:2771 msgid "Use pad" msgstr "Usar pad" -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "Use perspective camera" msgstr "Usar cámara en perspectiva" -#: src/libslic3r/PrintConfig.cpp:2067 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "Usar las distancias relativas en E" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "Use Retina resolution for the 3D scene" msgstr "Usa la resolución de Retina para la escena 3D" -#: src/libslic3r/PrintConfig.cpp:508 +#: src/libslic3r/PrintConfig.cpp:540 msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)." msgstr "Utiliza esta opción para ajustar la letra asociada al extrusor de tu impresora (normalmente se usa E pero otras usan A)." -#: src/libslic3r/PrintConfig.cpp:1807 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "Use this setting to rotate the support material pattern on the horizontal plane." msgstr "Use esta configuración para rotar el patrón de material de soporte en el plano horizontal." -#: src/libslic3r/PrintConfig.cpp:2074 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "Usar E volumétrico" -#: src/slic3r/GUI/Plater.cpp:214 +#: src/slic3r/GUI/DoubleSlider.cpp:1139 +msgid "used" +msgstr "usado" + +#: src/slic3r/GUI/Plater.cpp:239 msgid "Used Filament (g)" msgstr "Filamento usado (g)" -#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041 +#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 msgid "Used Filament (m)" msgstr "Filamento usado (m)" -#: src/slic3r/GUI/Plater.cpp:213 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Filament (mm³)" msgstr "Filamento usado (mm³)" -#: src/slic3r/GUI/Plater.cpp:1015 +#: src/slic3r/GUI/Plater.cpp:1188 msgid "Used Material (ml)" msgstr "Material usado (ml)" -#: src/slic3r/GUI/Plater.cpp:215 +#: src/slic3r/GUI/Plater.cpp:240 msgid "Used Material (unit)" msgstr "Material usado (unidades)" @@ -7713,117 +8488,117 @@ msgstr "Material usado (unidades)" msgid "User" msgstr "Usuario" -#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071 -#: src/slic3r/GUI/PresetBundle.cpp:1558 +#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 +#: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "Ajustes de usuario" -#: src/libslic3r/Zipper.cpp:93 +#: src/libslic3r/Zipper.cpp:90 msgid "validation failed" msgstr "validación fallida" -#: src/slic3r/GUI/ButtonsDescription.cpp:41 +#: src/slic3r/GUI/ButtonsDescription.cpp:36 msgid "Value is the same as the system value" msgstr "El valor es el mismo que el del sistema" -#: src/slic3r/GUI/ButtonsDescription.cpp:58 +#: src/slic3r/GUI/ButtonsDescription.cpp:53 msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "El valor ha cambiado y ya no es igual al valor del sistema o al último valor guardado" -#: src/slic3r/GUI/Tab.cpp:2151 +#: src/slic3r/GUI/Tab.cpp:2198 msgid "Values in this column are for Normal mode" msgstr "Los valores en esta columna son para el modo Normal" -#: src/slic3r/GUI/Tab.cpp:2157 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Stealth mode" msgstr "Los valores en esta columna son para el modo Silencioso" -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 msgid "Variable layer height" msgstr "Altura de capa variable" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1713 msgid "Variable layer height - Adaptive" msgstr "Altura de capa variable - Adaptativa" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:604 msgid "Variable layer height - Manual edit" msgstr "Altura de capa variable - Edicción manual" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1705 msgid "Variable layer height - Reset" msgstr "Altura de capa variable - Reiniciar" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1721 msgid "Variable layer height - Smooth all" msgstr "Altura de capa variable - Suavizar todo" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "variants" msgstr "variantes" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 msgid "vendor" msgstr "fabricante" -#: src/slic3r/GUI/ConfigWizard.cpp:536 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "Vendedor:" -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "Código G detallado" -#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "Versión" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 msgid "version" msgstr "versión" -#: src/slic3r/GUI/Tab.cpp:1002 +#: src/slic3r/GUI/Tab.cpp:1055 msgid "Vertical shells" msgstr "Carcasas verticales" -#: src/slic3r/GUI/GUI_Preview.cpp:209 +#: src/slic3r/GUI/GUI_Preview.cpp:220 msgid "View" msgstr "Vista" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:814 msgid "View mode" msgstr "Modo de vista" -#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867 -#: src/libslic3r/SLAPrint.cpp:915 +#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 +#: src/libslic3r/SLAPrintSteps.cpp:430 msgid "Visualizing supports" msgstr "Visualizar soportes" -#: src/slic3r/GUI/Plater.cpp:138 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Volume" msgstr "Volumen" -#: src/slic3r/GUI/WipeTowerDialog.cpp:248 +#: src/slic3r/GUI/WipeTowerDialog.cpp:286 msgid "Volume to purge (mm³) when the filament is being" msgstr "Volumen a purgar (mm³) cuando el filamento está siendo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Volumes in Object reordered" msgstr "Volúmenes en Objetos reordenados" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "Volumétrico" -#: src/slic3r/GUI/Tab.cpp:1800 +#: src/slic3r/GUI/Tab.cpp:1593 msgid "Volumetric flow hints not available" msgstr "Sugerencias de flujo volumétrico no disponibles" -#: src/slic3r/GUI/GUI_Preview.cpp:216 +#: src/slic3r/GUI/GUI_Preview.cpp:228 msgid "Volumetric flow rate" msgstr "Tasa de caudal volumétrico" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "Tasa de flujo volumétrico (mm³/seg)" @@ -7831,298 +8606,311 @@ msgstr "Tasa de flujo volumétrico (mm³/seg)" msgid "Volumetric speed" msgstr "Velocidad volumétrica" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283 -#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328 +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Wall thickness" +msgstr "Espesor de pared" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 +#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Peligro" -#: src/slic3r/GUI/ConfigWizard.cpp:294 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "Bienvenido" -#: src/slic3r/GUI/ConfigWizard.cpp:296 +#: src/slic3r/GUI/ConfigWizard.cpp:427 #, possible-c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Bienvenido al %s Asistente de Configuración" -#: src/slic3r/GUI/ConfigWizard.cpp:298 +#: src/slic3r/GUI/ConfigWizard.cpp:429 #, possible-c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Bienvenido al %s Ayudante de Configuración" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:99 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Cuando está marcada, los ajustes preestablecidos de impresión y filamento se muestran en el editor de ajustes preestablecidos, incluso si están marcados como incompatibles con la impresora activa" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "al imprimir" -#: src/libslic3r/PrintConfig.cpp:217 +#: src/libslic3r/PrintConfig.cpp:243 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Al imprimir objetos multi-material, esta configuración hará que slic3r recorte las partes del objeto superpuestas una por la otra (la 2da parte será recortada por la 1ra, la 3ra parte será recortada por la 1ra y 2da, etc.)." -#: src/libslic3r/PrintConfig.cpp:269 +#: src/libslic3r/PrintConfig.cpp:295 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Al imprimir múltiples objetos o copias, esta característica completará cada objeto antes de pasar al siguiente (y comenzará desde la capa inferior). Esta función es útil para evitar el riesgo de impresiones arruinadas. Slic3r debería advertirte y evitar las colisiones del extrusor, pero ten cuidado." -#: src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:891 msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height." msgstr "Al imprimir con alturas de capa muy bajas, es posible que desee imprimir una capa inferior más gruesa para mejorar la adhesión y la tolerancia de las placas de construcción no perfectas. Esto se puede expresar como un valor absoluto o como un porcentaje (por ejemplo: 150%) sobre la altura de capa predeterminada." -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Cuando se desencadena la retracción antes de cambiar la herramienta, el filamento se retira en la cantidad especificada (la longitud se mide en el filamento sin procesar, antes de que entre en el extrusor)." -#: src/libslic3r/PrintConfig.cpp:1475 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Cuando se activa la retracción, el filamento se retira en la cantidad especificada (la longitud se mide en el filamento sin procesar, antes de que entre en el extrusor)." -#: src/libslic3r/PrintConfig.cpp:1347 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." msgstr "Cuando se establece en cero, la distancia que el filamento se mueve desde la posición de estacionamiento durante la carga es exactamente la misma que se usó durante la descarga. Cuando es positivo, se carga más lejos, si es negativo, el movimiento de carga es más corto que el de descarga." -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow." msgstr "Al establecer otras configuraciones de velocidad en 0, Slic3r calculará automáticamente la velocidad óptima para mantener constante la presión en el extrusor. Esta configuración experimental se utiliza para establecer la velocidad de impresión más alta que desea permitir." -#: src/libslic3r/PrintConfig.cpp:1527 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Cuando la retracción se compensa después de cambiar la herramienta, el extrusor empujará esta cantidad adicional de filamento." -#: src/libslic3r/PrintConfig.cpp:1519 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Cuando la retracción se compensa después de un movimiento, el extrusor necesitará introducir más filamento. Este ajuste raramente se necesita." -#: src/slic3r/GUI/Tab.cpp:3076 +#: src/slic3r/GUI/Tab.cpp:3247 msgid "WHITE BULLET" msgstr "VIÑETA BLANCA" -#: src/slic3r/GUI/Tab.cpp:3365 +#: src/slic3r/GUI/Tab.cpp:3269 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "El icono de VIÑETA BLANCA un ajuste no del sistema (o no por defecto)" -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "El símbolo de VIÑETA BLANCA indica que los ajustes son los mismos que los de la última vez que salvaste los ajustes para el grupo de opciones actual." -#: src/slic3r/GUI/Tab.cpp:3126 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "El símbolo de VIÑETA BLANCA indica que los valores son los mismos que los de los ajustes guardados la última vez." -#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Ancho" -#: src/libslic3r/GCode/PreviewData.cpp:398 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "Ancho (mm)" -#: src/libslic3r/PrintConfig.cpp:2389 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "Width from the back sphere center to the front sphere center" msgstr "Ancho desde el centro de la esfera trasera al centro de la esfera delantera" -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "Ancho de la torre de limpieza" -#: src/libslic3r/PrintConfig.cpp:2761 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Ancho de los palitos de apoyo que conectan la pieza y la base generada." -#: src/libslic3r/PrintConfig.cpp:2203 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "Ancho de la pantalla" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "siempre funcionará al %1%%%" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "será apagada." -#: src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction." msgstr "Aumentará o reducirá los polígonos 2D laminados de acuerdo con el signo de la corrección." -#: src/libslic3r/PrintConfig.cpp:2160 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "Limpiar en el objeto" -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "Limpiar en el relleno del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:564 src/libslic3r/PrintConfig.cpp:2202 -#: src/libslic3r/PrintConfig.cpp:2210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 +#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Opciones de limpieza" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130 -#: src/libslic3r/GCode/PreviewData.cpp:174 +#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Torre de limpieza" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "wipe tower" msgstr "torre de limpieza" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "Torre de limpieza" -#: src/slic3r/GUI/WipeTowerDialog.cpp:141 +#: src/slic3r/GUI/WipeTowerDialog.cpp:142 msgid "Wipe tower - Purging volume adjustment" msgstr "Torre de limpieza - Ajuste del volumen de purga" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1490 msgid "Wipe tower parameters" msgstr "Parámetros de la torre de limpieza" -#: src/libslic3r/PrintConfig.cpp:2144 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "Ángulo de rotación de la torre de limpieza" -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "Ángulo de rotación de la torre de limpieza con respecto al eje X." -#: src/libslic3r/PrintConfig.cpp:2092 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "Limpiar mientras se retrae" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "con una tasa volumétrica" -#: src/libslic3r/PrintConfig.cpp:1460 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement." msgstr "Con extrusores bowden, puede ser recomendable realizar una retracción rápida antes de realizar el movimiento de limpiar." -#: src/libslic3r/PrintConfig.cpp:1969 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" msgstr "Con protección alrededor del soporte" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:62 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:105 msgid "World coordinates" msgstr "Coordenadas mundiales" -#: src/slic3r/GUI/UpdateDialogs.cpp:76 +#: src/slic3r/GUI/UpdateDialogs.cpp:92 msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" msgstr "¿Te gustaría instalarlo?\n\nTen en cuenta que primero se creará una instantánea de la configuración. Así que se puede recuperar en cualquier momento en caso de que hubiera algún problema con la nueva versión.\nUpdated configuration bundles:" -#: src/libslic3r/Zipper.cpp:95 +#: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "fallo write calledback" -#: src/libslic3r/PrintConfig.cpp:2993 +#: src/libslic3r/PrintConfig.cpp:3367 msgid "Write information about the model to the console." msgstr "Escribir información sobre el modelo en la consola." -#: src/slic3r/Utils/Duet.cpp:148 +#: src/slic3r/Utils/Duet.cpp:131 msgid "Wrong password" msgstr "Contraseña incorrecta" -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "Coordenada X de la esquina frontal izquierda de la torre de limpieza" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" msgstr "Separación XY entre un objeto y su soporte" -#: src/libslic3r/PrintConfig.cpp:1795 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." msgstr "Separación XY entre un objeto y su soporte. Si se expresa como porcentaje (por ejemplo 50%), se calculará sobre el ancho del perímetro externo." -#: src/libslic3r/PrintConfig.cpp:2174 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" msgstr "Compensación de tamaño XY" -#: src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordenada Y de la esquina delantera izquierda de la torre de limpieza" -#: src/slic3r/GUI/Plater.cpp:992 +#: src/slic3r/GUI/Plater.cpp:1167 msgid "Yes" msgstr "Sí" -#: src/libslic3r/PrintConfig.cpp:1252 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "You can put here your personal notes. This text will be added to the G-code header comments." msgstr "Puede poner sus notas personales aquí. Este texto se añadirá al código G como comentarios." -#: src/libslic3r/PrintConfig.cpp:557 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "Puede poner sus notas con respecto al filamento aquí." -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "Puede poner sus notas con respecto a la impresora aquí." -#: src/libslic3r/PrintConfig.cpp:2332 +#: src/libslic3r/PrintConfig.cpp:2570 msgid "You can put your notes regarding the SLA print material here." msgstr "Puede poner tus notas sobre el material de impresión de SLA aquí." -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:350 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Puedes configurarlo como un valor positivo para desactivar el ventilador durante todas las capas iniciales, de manera que no empeora la adhesión." -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Puedes usar todas las opciones de configuración como las variables dentro de esta muestra. Por ejemplo [layer_height], [fill_density] etc.También puedes usar [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 msgid "You can't change a type of the last solid part of the object." msgstr "No puede cambiar un tipo de la última parte sólida del objeto." -#: src/slic3r/GUI/Plater.cpp:2243 -msgid "You can't load SLA project if there is at least one multi-part object on the bed" -msgstr "No puede cargar el proyecto SLA si hay al menos un objeto de varias partes en la base" - -#: src/slic3r/GUI/Plater.cpp:1746 +#: src/slic3r/GUI/Plater.cpp:2374 #, possible-c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "No puede agregar el(los) objeto(s) desde % s porque uno o algunos de ellos son de varias piezas" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:565 +#: src/slic3r/GUI/Plater.cpp:2295 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "No puedes cargar un proyecto SLA con varias piezas en la base" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" msgstr "No puedes usar el modo de escala no uniforme para la selección de múltiples objetos/partes" -#: src/slic3r/GUI/ConfigWizard.cpp:1637 +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" msgstr "Debes seleccionar al menos un filamento para las impresoras seleccionadas" -#: src/slic3r/GUI/ConfigWizard.cpp:1643 +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "Debes seleccionar al menos un material para las impresoras seleccionadas" -#: src/slic3r/GUI/GUI_App.cpp:300 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "Puede que necesites actualizar tu tarjeta de gráficos." -#: src/slic3r/GUI/Preferences.cpp:130 +#: src/slic3r/GUI/Preferences.cpp:176 #, possible-c-format msgid "You need to restart %s to make the changes effective." msgstr "Es necesario reiniciar %s para hacer los cambios efectivos." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 #, possible-c-format msgid "You started your selection with %s Item." msgstr "Has empezado la selección con %s Items." -#: src/slic3r/GUI/MainFrame.cpp:772 +#: src/slic3r/GUI/DoubleSlider.cpp:1875 +msgid "Your current changes will delete all saved color changes." +msgstr "Tus nuevos cambios borrarán todos los cambios de color." + +#: src/slic3r/GUI/DoubleSlider.cpp:1896 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "Tus cambios actuales eliminarán todos los cambios guardados del extrusor (herramienta)." + +#: src/slic3r/GUI/MainFrame.cpp:913 msgid "Your file was repaired." msgstr "Tu fichero fue reparado." -#: src/slic3r/GUI/Plater.cpp:1874 +#: src/slic3r/GUI/Plater.cpp:2512 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Tu pieza parece demasiado grande, así que se ha escalado automáticamente para que pueda caber en la base de impresión." -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" msgstr "Ajuste en altura Z" @@ -8134,37 +8922,47 @@ msgstr "Cero como la altura de la primera capa no es válido.\n\nLa altura de l msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." msgstr "Cero como la altura de capa no es válido.\n\nLa altura de capa se restablecerá a 0.01." -#: src/libslic3r/PrintConfig.cpp:2416 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +#: src/slic3r/GUI/Mouse3DController.cpp:326 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +msgid "Zoom" +msgstr "Zoom" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Zoom in" msgstr "Aumentar zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Zoom out" msgstr "Reducir zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Zoom to all objects in scene, if none selected" msgstr "Zoom a todos los objetos en la escena, si ninguno es seleccionado" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Zoom to Bed" msgstr "Zoom a la Cama" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "Zoom to selected object\nor all objects in scene, if none selected" +msgstr "Zoom a objetos seleccionados\no a todos los objetos en escena, si no se seleccionó ninguno" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 msgid "Zoom to selected object" msgstr "Zoom al objeto seleccionado" -#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733 -#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580 -#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962 -#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463 +#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 +#: src/libslic3r/PrintConfig.cpp:2839 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627 +#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 msgid "°C" msgstr "°C" diff --git a/resources/localization/fr/PrusaSlicer.mo b/resources/localization/fr/PrusaSlicer.mo index f43e20ddbf69c826b3f6b128991b514cab852643..282c98e38b79fc9c4ed04447c44be330fa30da93 100644 GIT binary patch delta 63304 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

SWf)t*pL(2AZ5>DE@^{pzq3(QxMyut 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 P%JwP<6nFn^;g|m(8-q>v delta 44309 zcmZtP1(emsI;8MJ}OL2FKyIXO0iaV6z{NJC<@I5@g z^W>cLHI|vlNOJeG(CcGk?7bY#y%j6W6o+F$c*jYMDGNAGwn&bXv5!(6=k-Fzsfuqf z0T%z$aeUYiqhVvDxYH3wVIM4rVHP<~dMt)2*8w|We~gJQF`47Ij@?kXy2(# zKo_<~UC`4O7-AiTYGAyLPeTpq9E^yotXr&mQ4JnP)pr?V;C=Mtdz=3eT~!ozrQ^iL z*ccDfp&BfL+p!Gp#xScKrz9T0`WR_7(}k^2*G)xD!5Y+5?L*ab9E0$jO@E6Tp)ac$ ze-#W^<2Z3JGODM^Fa?HSB&>-ku?Z%{;g}p3qZ&SHy@OgCA5kL{d#zb)Nii+)tT+QA64hqhmiCAA>A-X9i}(0_)A4w?UQbit5M^ z)S4QLs%H_l#q}9FPcpFUzf-n~G zv=|jbQBzz7JF1))pel;9*({bMs5?uBX|N*d4tiLJSSMKLpc-C* znQ#|2z-Oo_D6_?J%3>Gf23%(s0rl`A>cab&4L@K@OuN-Ap7E%mT#G8d4b{;js1ZAZ zt?@3ZT)Dr@NYy}1MQhZQ_O=ei$lCwo31|_{!qK?M7Rb8I3~?x`foiBBY=H@|4<^LP zs1aF|*>igy{+B4ni<47Q(Dp6E)N$tW!{n z@=uJ6D=-kZSdXJRdJ9$V9_r4Ypz8U8YA+%W6Q#%8&G<(nkb(pjq!WUw@F9l5 zfvPal9!U`X9qRfXs16K5JvYWwA z1yL0?!gSaY^Wg+cj3-bHJw^@XM{C4=CY}&8lb!)pt}bfm+o0CQFjU8PxCG)5ID*=K zH!%tN_A{>-gjui}X2c=Zb*Kt&VmAC}O@F{F=K84Z)&g_kIMnrrP>b&^#zQy!LDS

gY7o?%9k9a5tvFE2t^@iYgc5kl7uXQBzYEnHtxr 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 1);\n" -"X-Generator: Poedit 2.2.1\n" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" +"X-Generator: PhraseApp (phraseapp.com)\n" -#: src/slic3r/GUI/MainFrame.cpp:61 +#: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Pensez à vérifier les mises à jour sur http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:727 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid " was successfully sliced." msgstr " a été découpé avec succès." -#: src/libslic3r/PrintConfig.cpp:179 src/libslic3r/PrintConfig.cpp:745 -#: src/libslic3r/PrintConfig.cpp:1154 src/libslic3r/PrintConfig.cpp:1217 -#: src/libslic3r/PrintConfig.cpp:1462 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2502 +#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 +#: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2758 msgid "%" msgstr "%" -#: src/libslic3r/GCode/PreviewData.cpp:504 -#, c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:968 +#, possible-c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:2958 +#: src/slic3r/GUI/Tab.cpp:3110 msgid "%1% Preset" msgstr "%1% Préréglage" -#: src/slic3r/GUI/Plater.cpp:3831 +#: src/slic3r/GUI/Plater.cpp:4413 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "L'imprimante %1% était active au moment où l'instantané cible Annuler / Refaire a été pris. Basculer vers l'imprimante %1% requiert de recharger les préréglages de %1%." -#: src/libslic3r/Print.cpp:1282 +#: src/libslic3r/Print.cpp:1370 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm est trop bas pour être imprimable avec une hauteur de couche de %3% mm" -#: src/slic3r/GUI/PresetHints.cpp:228 -#, c-format +#: src/slic3r/GUI/PresetHints.cpp:229 +#, possible-c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s à une vitesse de filament de %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:974 -#, c-format +#: src/slic3r/GUI/Plater.cpp:1149 +#, possible-c-format msgid "%d (%d shells)" msgstr "%d (%d coques)" -#: src/slic3r/GUI/Plater.cpp:982 -#, c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, possible-c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d faces invalides, %d arrêtes corrigées, %d faces retirées, %d faces ajoutées, %d faces inversées, %d arrêtes à l'envers" -#: src/slic3r/GUI/PresetHints.cpp:268 -#, c-format +#: src/slic3r/GUI/PresetHints.cpp:269 +#, possible-c-format msgid "%d lines: %.2f mm" msgstr "%d lignes : %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:894 -#, c-format +#: src/slic3r/GUI/MainFrame.cpp:1029 +#, possible-c-format msgid "%d presets successfully imported." msgstr "%d préréglages importés avec succès." -#: src/slic3r/GUI/MainFrame.cpp:550 -#, c-format +#: src/slic3r/GUI/MainFrame.cpp:694 +#, possible-c-format msgid "%s &Website" msgstr "Site &Web de %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:113 -#, c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:211 +#, possible-c-format msgid "%s configuration is incompatible" msgstr "La configuration de %s n'est pas compatible" -#: src/slic3r/GUI/Field.cpp:136 -#, c-format +#: src/slic3r/GUI/Field.cpp:170 +#, possible-c-format msgid "%s doesn't support percentage" msgstr "%s ne supporte pas un pourcentage" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, c-format +#, possible-c-format msgid "%s error" msgstr "Erreur %s" -#: src/slic3r/GUI/ConfigWizard.cpp:336 -#, c-format +#: src/slic3r/GUI/ConfigWizard.cpp:481 +#, possible-c-format msgid "%s Family" msgstr "%s Famille" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, c-format +#, possible-c-format msgid "%s has encountered an error" msgstr "%s a rencontré une erreur" -#: src/slic3r/GUI/GUI_App.cpp:132 -#, c-format -msgid "" -"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" -"\n" -"The application will now terminate." -msgstr "" -"%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela peut également être un bug et nous aimerions que vous le signaliez.\n" -"\n" -"L'application va maintenant fermer." +#: src/slic3r/GUI/GUI_App.cpp:138 +#, possible-c-format +msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." +msgstr "%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela peut également être un bug et nous aimerions que vous le signaliez.\n\nL'application va maintenant fermer." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:155 -#, c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 +#, possible-c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela peut également être un bug et nous aimerions que vous le signaliez." -#: src/slic3r/GUI/UpdateDialogs.cpp:112 -#, c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:308 +#, possible-c-format +msgid "%s has no configuration updates aviable." +msgstr "%s n'a aucune mise à jour de configuration disponible." + +#: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 +#, possible-c-format msgid "%s incompatibility" msgstr "Incompatibilité de %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:172 -#, c-format -msgid "" -"%s now uses an updated configuration structure.\n" -"\n" -"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" -"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" -"\n" -"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." -msgstr "" -"%s utilise à présent une structure de configuration mise à jour.\n" -"\n" -"Il existe à présent des \"préréglages Système\", qui intègrent les réglages par défaut pour les différentes imprimantes. Ces préréglages Système ne peuvent pas être modifiés, mais les utilisateurs peuvent désormais créer leurs propres préréglages héritant des paramètres de l'un des préréglages Système.\n" -"Un tel préréglage peut ainsi hériter d'une valeur particulière de son parent ou la remplacer par une valeur personnalisée.\n" -"\n" -"Veuillez utiliser les %s qui suivent pour paramétrer les nouveaux réglages et éventuellement accepter les mises à jour de réglage automatiques." +#: src/slic3r/GUI/UpdateDialogs.cpp:270 +#, possible-c-format +msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +msgstr "%s utilise à présent une structure de configuration mise à jour.\n\nIl existe à présent des \"préréglages Système\", qui intègrent les réglages par défaut pour les différentes imprimantes. Ces préréglages Système ne peuvent pas être modifiés, mais les utilisateurs peuvent désormais créer leurs propres préréglages héritant des paramètres de l'un des préréglages Système.\nUn tel préréglage peut ainsi hériter d'une valeur particulière de son parent ou la remplacer par une valeur personnalisée.\n\nVeuillez utiliser les %s qui suivent pour paramétrer les nouveaux réglages et éventuellement accepter les mises à jour de réglage automatiques." -#: src/slic3r/GUI/GUI_App.cpp:681 -#, c-format +#: src/slic3r/GUI/GUI_App.cpp:820 +#, possible-c-format msgid "%s View Mode" msgstr "Mode de Vue de %s" -#: src/slic3r/GUI/MainFrame.cpp:563 -#, c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#, possible-c-format +msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" +msgstr "%s va maintenant démarrer les mises à jour. Sinon, il ne pourra pas démarrer.\n\nNotez qu'un instantané complet de la configuration sera créé en premier. Il peut ensuite être restauré à tout moment en cas de problème avec la nouvelle version.\n\nLots de configuration mis à jour :" + +#: src/slic3r/GUI/MainFrame.cpp:707 +#, possible-c-format msgid "&About %s" msgstr "&Au sujet de %s" -#: src/slic3r/GUI/GUI_App.cpp:769 +#: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" msgstr "&Configuration" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" msgstr "Instantanés de &Configuration" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" msgstr "&Copier" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" msgstr "&Supprimer la sélection" -#: src/slic3r/GUI/MainFrame.cpp:575 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&Edit" msgstr "&Editer" -#: src/slic3r/GUI/MainFrame.cpp:377 +#: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "&Exporter" -#: src/slic3r/GUI/MainFrame.cpp:480 src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 msgid "&Filament Settings Tab" msgstr "Onglet des Réglages du &Filament" -#: src/slic3r/GUI/MainFrame.cpp:574 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&File" msgstr "&Fichier" -#: src/slic3r/GUI/ConfigWizard.cpp:1094 +#: src/slic3r/GUI/ConfigWizard.cpp:1984 msgid "&Finish" msgstr "&Fin" -#: src/slic3r/GUI/MainFrame.cpp:580 +#: src/slic3r/GUI/MainFrame.cpp:729 msgid "&Help" msgstr "&Aide" -#: src/slic3r/GUI/MainFrame.cpp:359 +#: src/slic3r/GUI/MainFrame.cpp:474 msgid "&Import" msgstr "&Importer" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/GUI_App.cpp:822 +msgid "&Language" +msgstr "&Langue" + +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "&Nouveau Projet" -#: src/slic3r/GUI/ConfigWizard.cpp:1093 +#: src/slic3r/GUI/ConfigWizard.cpp:1983 msgid "&Next >" msgstr "&Suivant >" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "&Ouvrir Projet" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "&Coller" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" msgstr "Onglet du &Plateau" -#: src/slic3r/GUI/GUI_App.cpp:665 +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "&Préférences" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "&Quitter" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "&Refaire" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "&Réparer le fichier STL" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "&Sauvegarder Projet" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "Tout &Sélectionner" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "Ann&uler" -#: src/slic3r/GUI/MainFrame.cpp:577 +#: src/slic3r/GUI/MainFrame.cpp:726 msgid "&View" msgstr "&Vue" -#: src/slic3r/GUI/MainFrame.cpp:576 +#: src/slic3r/GUI/MainFrame.cpp:725 msgid "&Window" msgstr "&Fenêtre" -#: src/slic3r/GUI/ConfigWizard.cpp:574 src/slic3r/GUI/ConfigWizard.cpp:602 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(Tout)" -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "(Re)slice" msgstr "(Re)découper" -#: src/slic3r/GUI/MainFrame.cpp:455 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(Re)Découper Maintenant" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 msgid "(Unknown)" msgstr "(Inconnu)" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid ") not found." msgstr ") non trouvé." -#: src/libslic3r/PrintConfig.cpp:1857 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (soluble)" -#: src/libslic3r/PrintConfig.cpp:1858 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0.2 (détachable)" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:3074 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "3D editor view" msgstr "Vue d'éditeur 3D" -#: src/libslic3r/PrintConfig.cpp:804 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "Nid d'abeille 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:291 msgid "3Dconnexion settings" msgstr "Paramètres 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:3590 -#, c-format +#: src/slic3r/GUI/Plater.cpp:5068 +#, possible-c-format msgid "3MF file exported to %s" msgstr "Fichier 3MF exporté vers %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1092 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 msgid "< &Back" msgstr "< &Précédent" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:277 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Une expression booléenne utilisant les valeurs de configuration d'un profil d'imprimante actif. Si cette expression est évaluée comme vraie, ce profil est considéré comme compatible avec le profil d'imprimante actif." -#: src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:262 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Une expression booléenne utilisant les valeurs de configuration d'un profil d'imprimante actif. Si cette expression est évaluée comme vraie, ce profil est considéré comme compatible avec le profil d'imprimante actif." -#: src/slic3r/GUI/ConfigWizard.cpp:609 +#: src/slic3r/GUI/ConfigWizard.cpp:1035 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "La règle générale est 160 à 230 °C pour le PLA et 215 à 250 °C pour l'ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:623 +#: src/slic3r/GUI/ConfigWizard.cpp:1049 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "La règle générale est 60 °C pour le PLA et 110 °C pour l'ABS. Laissez à zéro si vous n'avez pas de lit chauffant." -#: src/slic3r/GUI/GLCanvas3D.cpp:721 +#: src/slic3r/GUI/GLCanvas3D.cpp:691 msgid "A toolpath outside the print area was detected" msgstr "Parcours détecté en dehors de la zone d'impression" -#: src/slic3r/GUI/AboutDialog.cpp:35 -#, c-format +#: src/slic3r/GUI/AboutDialog.cpp:199 +#, possible-c-format msgid "About %s" msgstr "Au sujet de %s" -#: src/libslic3r/GCode/PreviewData.cpp:499 -#, c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:964 +#, possible-c-format msgid "above %.2f mm" msgstr "au dessus de %.2f mm" -#: src/libslic3r/PrintConfig.cpp:1499 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Au-delà de Z" -#: src/slic3r/GUI/Tab.cpp:1103 +#: src/slic3r/GUI/Tab.cpp:1166 msgid "Acceleration control (advanced)" msgstr "Contrôle de l'accélération (avancé)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73 +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Accuracy" +msgstr "Précision" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 msgid "Activate" msgstr "Activer" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43 msgid "Active" msgstr "Actif" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/DoubleSlider.cpp:1103 +msgid "active" +msgstr "actif" + +#: src/slic3r/GUI/GLCanvas3D.cpp:272 msgid "Adaptive" msgstr "Adaptatif" -#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237 +#: src/slic3r/GUI/Tab.cpp:243 msgid "Add a new printer" msgstr "Ajouter une nouvelle imprimante" -#: src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Add a pad underneath the supported model" msgstr "Ajouter une base sous le modèle supporté" -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Ajouter une enveloppe (une ligne unique de périmètre) autour de la base du support. Ceci rend le support plus fiable, mais aussi plus difficile à retirer." -#: src/slic3r/GUI/wxExtensions.cpp:3441 +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" +msgstr "Ajouter un autre code - Ctr + Clic gauche" + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" +msgstr "Ajouter un autre code - Clic droit" + +#: src/slic3r/GUI/DoubleSlider.cpp:1449 msgid "Add color change" msgstr "Ajouter un changement de couleur" -#: src/slic3r/GUI/wxExtensions.cpp:3435 +#: src/slic3r/GUI/DoubleSlider.cpp:1148 msgid "Add color change (%1%) for:" msgstr "Ajouter le changement de couleur (%1%) pour :" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/DoubleSlider.cpp:959 +msgid "Add color change - Left click" +msgstr "Ajouter un changement de couleur - Clic gauche" + +#: src/slic3r/GUI/DoubleSlider.cpp:957 +msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" +msgstr "Ajouter un changement de couleur - Clic gauche pour la couleur prédéfinie ou Maj + Clic gauche pour la sélection d'une couleur personnalisée" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Add color change marker for current layer" msgstr "Ajouter un repère de changement de couleur pour la couche en cours" -#: src/slic3r/GUI/wxExtensions.cpp:3447 +#: src/slic3r/GUI/DoubleSlider.cpp:1462 msgid "Add custom G-code" msgstr "Ajouter un G-code personnalisé" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:245 msgid "Add detail" msgstr "Ajouter des détails" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +msgid "Add drainage hole" +msgstr "Ajouter un trou de drainage" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 +msgid "Add extruder change - Left click" +msgstr "Ajouter un changement d'extrudeur - Clic gauche" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 msgid "Add extruder to sequence" msgstr "Ajouter l'extrudeur à la séquence" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1662 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 msgid "Add Generic Subobject" msgstr "Ajouter un Sous-objet Générique" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2584 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2613 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2631 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 msgid "Add Height Range" msgstr "Ajouter une Zone de Hauteur" -#: src/slic3r/GUI/GLCanvas3D.cpp:3463 +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 +#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 msgid "Add instance" msgstr "Ajouter l'instance" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 msgid "Add Instance of the selected object" msgstr "Ajouter une Instance à l'objet sélectionné" @@ -413,112 +437,113 @@ msgstr "Ajouter une Instance à l'objet sélectionné" msgid "Add layer range" msgstr "Ajouter une zone de couche" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1950 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 msgid "Add Layers" msgstr "Ajouter des couches" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1067 +#: src/slic3r/GUI/GUI_ObjectList.cpp:52 msgid "Add modifier" msgstr "Ajouter un modificateur" -#: src/libslic3r/PrintConfig.cpp:447 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Ajouter plus de périmètres si nécessaire pour éviter des trous dans les parois inclinées. Slic3r ajoute des périmètres, jusqu'à ce que plus de 70% de la boucle immédiatement au-dessus soit supportée." -#: src/slic3r/GUI/Plater.cpp:3516 +#: src/slic3r/GUI/Plater.cpp:3949 msgid "Add one more instance of the selected object" msgstr "Ajouter une instance supplémentaire de l'objet sélectionné" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1066 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1082 +#: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "Ajouter une pièce" -#: src/slic3r/GUI/wxExtensions.cpp:3444 +#: src/slic3r/GUI/DoubleSlider.cpp:1459 msgid "Add pause print" msgstr "Ajouter une pause d'impression" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 msgid "Add point" msgstr "Ajouter un point" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Add point to selection" msgstr "Ajouter un point à la sélection" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 msgid "Add settings" msgstr "Ajouter des réglages" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 msgid "Add Settings Bundle for Height range" msgstr "Ajouter une Combinaison de Réglages pour la zone de Hauteur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1191 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Object" msgstr "Ajouter une Combinaison de Réglages pour l'Objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1190 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 msgid "Add Settings Bundle for Sub-object" msgstr "Ajouter une Combinaison de Réglages pour le Sous-objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 msgid "Add Settings for Layers" msgstr "Ajouter des Réglages pour les Couches" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1128 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Object" msgstr "Ajouter des Réglages pour un Objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1127 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 msgid "Add Settings for Sub-object" msgstr "Ajouter des Réglages pour un Sous-objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1676 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1922 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 msgid "Add Shape" msgstr "Ajouter une Forme" -#: src/libslic3r/PrintConfig.cpp:382 +#: src/libslic3r/PrintConfig.cpp:409 msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)." msgstr "Ajouter un remplissage plein à proximité des surfaces inclinées pour garantir une épaisseur de coque verticale (couches solides supérieures+inférieures)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1069 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:54 msgid "Add support blocker" msgstr "Ajouter un bloqueur de support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:53 msgid "Add support enforcer" msgstr "Ajouter un générateur de supports" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:531 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 msgid "Add support point" msgstr "Ajouter un point de support" -#: src/slic3r/GUI/GLCanvas3D.cpp:3392 +#: src/slic3r/GUI/GLCanvas3D.cpp:4516 msgid "Add..." msgstr "Ajouter..." -#: src/slic3r/GUI/PresetBundle.cpp:1683 +#: src/slic3r/GUI/PresetBundle.cpp:1697 msgid "Add/Remove filaments" msgstr "Ajouter/Enlever des filaments" -#: src/slic3r/GUI/Preset.cpp:1102 +#: src/slic3r/GUI/Preset.cpp:1151 msgid "Add/Remove materials" msgstr "Ajouter/Enlever des matériaux" -#: src/slic3r/GUI/Tab.cpp:920 +#: src/slic3r/GUI/Preset.cpp:1153 +msgid "Add/Remove printers" +msgstr "Ajouter/Supprimer des imprimantes" + +#: src/slic3r/GUI/Tab.cpp:972 msgid "Additional information:" msgstr "Informations complémentaires :" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:59 msgid "Additional Settings" msgstr "Réglages Additionnels" -#: src/slic3r/GUI/ConfigWizard.cpp:431 +#: src/slic3r/GUI/ConfigWizard.cpp:790 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "De plus, un instantané de sauvegarde de l'ensemble de la configuration est créé avant qu'une mise à jour ne soit appliquée." @@ -526,54 +551,55 @@ msgstr "De plus, un instantané de sauvegarde de l'ensemble de la configuration msgid "Address" msgstr "Adresse" -#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76 -#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026 -#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139 -#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515 -#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435 -#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 +#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 +#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 +#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 +#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 msgid "Advanced" msgstr "Avancé" -#: src/slic3r/GUI/ConfigWizard.cpp:786 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Advanced mode" msgstr "Mode avancé" -#: src/slic3r/GUI/GUI_App.cpp:675 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "Vue en Mode Avancé" -#: src/slic3r/GUI/FirmwareDialog.cpp:803 +#: src/slic3r/GUI/FirmwareDialog.cpp:841 msgid "Advanced: Output log" msgstr "Avancé : journal de Sortie" -#: src/libslic3r/PrintConfig.cpp:636 +#: src/libslic3r/PrintConfig.cpp:668 msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Après un changement d'outil, la position exacte dans la buse du filament qui vient d'être chargé peut ne pas être connue, et la pression du filament n'est probablement pas encore stable. Avant de purger la tête d'impression dans un remplissage ou un objet sacrificiel, Slic3r va toujours utiliser cette quantité de matériau dans la tour de nettoyage pour produire un remplissage successif ou des extrusions d'objet sacrificiel de façon fiable." -#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031 +#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-Code après changement de couche" -#: src/libslic3r/PrintConfig.cpp:3009 +#: src/libslic3r/PrintConfig.cpp:3383 msgid "Align the model to the given point." msgstr "Aligner le modèle sur le point défini." -#: src/libslic3r/PrintConfig.cpp:3008 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Align XY" msgstr "Aligner XY" -#: src/libslic3r/PrintConfig.cpp:1561 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "Aligné" -#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3158 msgid "All" msgstr "Tous" -#: src/libslic3r/Print.cpp:1135 +#: src/libslic3r/Print.cpp:1215 msgid "All objects are outside of the print volume." msgstr "Tous les objets sont en dehors du volume d'impression." @@ -581,248 +607,246 @@ msgstr "Tous les objets sont en dehors du volume d'impression." msgid "All objects will be removed, continue ?" msgstr "Tous les objets seront supprimés, continuer?" -#: src/slic3r/GUI/ConfigWizard.cpp:188 +#: src/slic3r/GUI/Plater.cpp:4684 +msgid "All objects will be removed, continue?" +msgstr "Tous les objets seront supprimés, continuer ?" + +#: src/slic3r/GUI/ConfigWizard.cpp:289 msgid "All standard" msgstr "Tout en standard" -#: src/libslic3r/Zipper.cpp:65 +#: src/libslic3r/Zipper.cpp:62 msgid "allocation failed" msgstr "échec de l'allocation" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Along X axis" msgstr "Le long de l'axe X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Along Y axis" msgstr "Le long de l'axe Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Along Z axis" msgstr "Le long de l'axe Z" -#: src/slic3r/GUI/ConfigWizard.cpp:122 +#: src/slic3r/GUI/ConfigWizard.cpp:222 msgid "Alternate nozzles:" msgstr "Buses alternatives :" -#: src/slic3r/GUI/Plater.cpp:3561 -#, c-format +#: src/slic3r/GUI/Plater.cpp:5022 +#, possible-c-format msgid "AMF file exported to %s" msgstr "Fichier AMF exporté vers %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:725 -msgid "" -"An object outside the print area was detected\n" -"Resolve the current problem to continue slicing" -msgstr "" -"Objet détecté en dehors de la zone d'impression\n" -"Résolvez ce problème pour poursuivre le processus de découpage" +#: src/slic3r/GUI/GLCanvas3D.cpp:695 +msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" +msgstr "Objet détecté en dehors de la zone d'impression\nRésolvez ce problème pour poursuivre le processus de découpage" -#: src/slic3r/GUI/GLCanvas3D.cpp:720 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "An object outside the print area was detected" msgstr "Objet détecté en dehors de la zone d'impression" -#: src/slic3r/GUI/Tab.cpp:2781 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "and it has the following unsaved changes:" msgstr "et il y a les changements non sauvegardés suivants :" -#: src/slic3r/GUI/Plater.cpp:2461 +#: src/slic3r/GUI/Plater.cpp:3154 msgid "Another export job is currently running." msgstr "Une autre tâche d'export est actuellement en cours." -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "N'importe quelle flèche" + +#: src/slic3r/GUI/Tab.cpp:967 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Toute modification doit être enregistrée comme un nouveau préréglage hérité de celui-ci." -#: src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" msgstr "Clé API / Mot de Passe" -#: src/slic3r/GUI/GUI_App.cpp:671 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Préférences de l'application" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 msgid "Apply changes" msgstr "Appliquer les modifications" -#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "secondes approximatives" -#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "Accords archimédiens" -#: src/libslic3r/Zipper.cpp:91 +#: src/libslic3r/Zipper.cpp:88 msgid "archive is too large" msgstr "l'archive est trop volumineuse" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:2955 +#: src/slic3r/GUI/Tab.cpp:3107 msgid "Are you sure you want to %1% the selected preset?" msgstr "Êtes-vous sûr de vouloir %1% le préréglage sélectionné ?" -#: src/slic3r/GUI/FirmwareDialog.cpp:862 -msgid "" -"Are you sure you want to cancel firmware flashing?\n" -"This could leave your printer in an unusable state!" -msgstr "" -"Êtes-vous certain de vouloir annuler le processus de flash du firmware ?\n" -"Cela pourrait rendre votre imprimante inutilisable !" +#: src/slic3r/GUI/FirmwareDialog.cpp:902 +msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" +msgstr "Êtes-vous certain de vouloir annuler le processus de flash du firmware ?\nCela pourrait rendre votre imprimante inutilisable !" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "Are you sure you want to continue?" +msgstr "Êtes-vous sûr de vouloir continuer ?" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 msgid "Are you sure you want to do it?" msgstr "Êtes-vous certain de vouloir le faire ?" -#: src/libslic3r/PrintConfig.cpp:2258 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "Remplissage de zone" -#: src/slic3r/GUI/Plater.cpp:609 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Around object" msgstr "Autour de l'objet" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/Plater.cpp:2738 msgid "Arrange" msgstr "Agencer" -#: src/slic3r/GUI/GLCanvas3D.cpp:3486 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Arrange selection" msgstr "Agencer la sélection" -#: src/libslic3r/PrintConfig.cpp:3054 +#: src/libslic3r/PrintConfig.cpp:3428 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Agencer les modèles fournis sur un plateau et les fusionner en un seul modèle afin de ne réaliser les actions qu'une seule fois." -#: src/slic3r/GUI/Plater.cpp:2106 +#: src/slic3r/GUI/Plater.cpp:2797 msgid "Arranging" msgstr "Agencement en cours" -#: src/slic3r/GUI/Plater.cpp:2718 +#: src/slic3r/GUI/Plater.cpp:2825 msgid "Arranging canceled." msgstr "Agencement annulé." -#: src/slic3r/GUI/Plater.cpp:2144 +#: src/slic3r/GUI/Plater.cpp:2826 msgid "Arranging done." msgstr "Agencement terminé." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Arrow Down" msgstr "Flèche Bas" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Arrow Left" msgstr "Flèche Gauche" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Arrow Right" msgstr "Flèche Droite" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Arrow Up" msgstr "Flèche Haut" -#: src/slic3r/GUI/GUI_App.cpp:303 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Une solution consiste à lancer PrusaSlicer avec des graphismes 3D rendus par un logiciel en lançant prusa-slicer.exe avec le paramètre --sw_renderer." -#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743 -#: src/slic3r/GUI/Tab.cpp:2798 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 +#: src/slic3r/GUI/Tab.cpp:2944 msgid "Attention!" msgstr "Attention !" -#: src/libslic3r/PrintConfig.cpp:1785 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "Supports générés automatiquement" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "Centrer automatiquement les pièces" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 msgid "Auto-generate points" msgstr "Générer automatiquement les points" -#: src/slic3r/GUI/Plater.cpp:979 -#, c-format +#: src/slic3r/GUI/Plater.cpp:1154 +#, possible-c-format msgid "Auto-repaired (%d errors)" msgstr "Réparé automatiquement (%d erreurs)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 -#, c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:337 +#, possible-c-format msgid "Auto-repaired (%d errors):" msgstr "Réparé automatiquement (%d erreurs):" -#: src/slic3r/GUI/FirmwareDialog.cpp:771 +#: src/slic3r/GUI/FirmwareDialog.cpp:809 msgid "Autodetected" msgstr "Autodétecté" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1338 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 msgid "Autogenerate support points" msgstr "Autogénérer les points de support" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 msgid "Autogeneration will erase all manually edited points." msgstr "L'autogénération va effacer tous les points édités manuellement." -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Automatic generation" msgstr "Génération automatique" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Automatic updates" msgstr "Mises à jour automatiques" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "Réparer automatiquement un fichier STL" -#: src/slic3r/GUI/Tab.cpp:1110 +#: src/slic3r/GUI/Tab.cpp:1173 msgid "Autospeed (advanced)" msgstr "Vitesse automatique (avancé)" -#: src/libslic3r/PrintConfig.cpp:111 +#: src/libslic3r/PrintConfig.cpp:126 msgid "Avoid crossing perimeters" msgstr "Éviter de traverser les périmètres" -#: src/slic3r/GUI/Tab.cpp:3081 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "BACK ARROW" msgstr "FLÈCHE ARRIÈRE" -#: src/slic3r/GUI/Tab.cpp:3113 -msgid "" -"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" -"Click to reset all settings for the current option group to the last saved preset." -msgstr "" -"L'icône FLÈCHE ARRIÈRE indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\n" -"Cliquez pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." +#: src/slic3r/GUI/Tab.cpp:3274 +msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." +msgstr "L'icône FLÈCHE ARRIÈRE indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\nCliquez pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." -#: src/slic3r/GUI/Tab.cpp:3127 -msgid "" -"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" -"Click to reset current value to the last saved preset." -msgstr "" -"L'icône FLÈCHE ARRIÈRE indique que la valeur a été changée et qu'elle n'est pas identique au dernier préréglage enregistré.\n" -"Cliquez pour restaurer la valeur à celle du dernier préréglage enregistré." +#: src/slic3r/GUI/Tab.cpp:3288 +msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." +msgstr "L'icône FLÈCHE ARRIÈRE indique que la valeur a été changée et qu'elle n'est pas identique au dernier préréglage enregistré.\nCliquez pour restaurer la valeur à celle du dernier préréglage enregistré." -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Tâche en arrière plan" -#: src/slic3r/GUI/GUI_ObjectList.cpp:242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "backwards edges" msgstr "arrêtes à l'envers" -#: src/slic3r/GUI/MainFrame.cpp:152 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "basé sur Slic3r" -#: src/slic3r/GUI/Tab.cpp:1484 +#: src/slic3r/GUI/Tab.cpp:1441 msgid "Bed" msgstr "Plateau" @@ -834,31 +858,31 @@ msgstr "Modèle personnalisé de lit" msgid "Bed custom texture" msgstr "Texture du plateau personnalisée" -#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape" msgstr "Forme du plateau" -#: src/libslic3r/PrintConfig.cpp:50 +#: src/libslic3r/PrintConfig.cpp:51 msgid "Bed shape" msgstr "Forme du plateau" -#: src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape and Size" msgstr "Forme du Plateau et Taille" -#: src/libslic3r/PrintConfig.cpp:122 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Bed temperature" msgstr "Température du plateau" -#: src/libslic3r/PrintConfig.cpp:120 +#: src/libslic3r/PrintConfig.cpp:135 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Température du plateau pour les couches après la première. Mettez ceci à zéro pour désactiver les commandes de contrôle de température du plateau dans la sortie." -#: src/slic3r/GUI/ConfigWizard.cpp:626 +#: src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "Bed Temperature:" msgstr "Température du Plateau :" -#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128 +#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 msgid "Before layer change G-code" msgstr "G-Code avant changement de couche" @@ -866,98 +890,110 @@ msgstr "G-Code avant changement de couche" msgid "Before roll back" msgstr "Avant le retour en arrière" -#: src/slic3r/GUI/Plater.cpp:608 +#: src/slic3r/GUI/Plater.cpp:637 msgid "Below object" msgstr "Sous l'objet" -#: src/libslic3r/PrintConfig.cpp:1508 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "En-deçà de Z" -#: src/libslic3r/PrintConfig.cpp:139 +#: src/libslic3r/PrintConfig.cpp:154 msgid "Between objects G-code" msgstr "Entre le G-code des objets" -#: src/slic3r/GUI/Tab.cpp:1979 +#: src/slic3r/GUI/Tab.cpp:2004 msgid "Between objects G-code (for sequential printing)" msgstr "Entre le G-code des objets (pour une impression séquentielle)" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 msgid "Bottle volume" msgstr "Volume de la bouteille" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 msgid "Bottle weight" msgstr "Poids de la bouteille" #. TRN To be shown in the main menu View->Bottom -#: src/slic3r/GUI/MainFrame.cpp:524 +#. TRN To be shown in Print Settings "Bottom solid layers" +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 +#: src/libslic3r/PrintConfig.cpp:173 msgid "Bottom" msgstr "Dessous" -#: src/libslic3r/PrintConfig.cpp:409 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "Motif de remplissage du dessous" -#: src/libslic3r/PrintConfig.cpp:152 +#: src/slic3r/GUI/PresetHints.cpp:338 +msgid "Bottom is open." +msgstr "Le fond est ouvert." + +#: src/slic3r/GUI/PresetHints.cpp:332 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "La coque inférieure a une épaisseur de %1% mm pour une hauteur de couche %2% mm." + +#: src/libslic3r/PrintConfig.cpp:167 msgid "Bottom solid layers" msgstr "Couches solides inférieures" -#: src/slic3r/GUI/MainFrame.cpp:524 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" msgstr "Vue du Dessous" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1087 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1090 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 msgid "Box" msgstr "Case" -#: src/libslic3r/PrintConfig.cpp:157 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bridge" msgstr "Pont" -#: src/libslic3r/PrintConfig.cpp:186 +#: src/libslic3r/PrintConfig.cpp:212 msgid "Bridge flow ratio" msgstr "Ratio de flux pour les ponts" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Remplissage du pont" -#: src/libslic3r/PrintConfig.cpp:198 +#: src/libslic3r/PrintConfig.cpp:224 msgid "Bridges" msgstr "Ponts" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:203 msgid "Bridges fan speed" msgstr "Vitesse du ventilateur pour les ponts" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:192 msgid "Bridging angle" msgstr "Angle du pont" -#: src/libslic3r/PrintConfig.cpp:168 +#: src/libslic3r/PrintConfig.cpp:194 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Contournement de l'angle du pont. Si laissé à zéro, l'angle du pont sera calculé automatiquement. Sinon, l'angle fourni sera utilisé pour tous les ponts. Utilisez 180° pour un angle nul." -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "Volumétrie des ponts" -#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056 +#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "Bordure" -#: src/libslic3r/PrintConfig.cpp:208 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Brim width" msgstr "Largeur de la bordure" -#: src/slic3r/GUI/Tab.cpp:1681 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 +#: src/slic3r/GUI/Tab.cpp:1719 msgid "Browse" msgstr "Parcourir" -#: src/libslic3r/Zipper.cpp:85 +#: src/libslic3r/Zipper.cpp:82 msgid "buffer too small" msgstr "buffer trop petit" @@ -965,465 +1001,514 @@ msgstr "buffer trop petit" msgid "Buttons And Text Colors Description" msgstr "Description des Boutons et des Couleurs de Texte" -#: src/slic3r/GUI/PresetHints.cpp:220 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "par le maximum du profil de l'imprimante" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:115 +msgid "Camera" +msgstr "Caméra" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 msgid "Camera view" msgstr "Vue caméra" -#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37 -#: src/slic3r/GUI/ProgressStatusBar.cpp:28 +#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Annuler" -#: src/slic3r/GUI/PrintHostDialogs.cpp:156 +#: src/slic3r/GUI/PrintHostDialogs.cpp:157 msgid "Cancel selected" msgstr "Annuler la sélection" -#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Annulé" -#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231 +#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Annulation" -#: src/slic3r/GUI/FirmwareDialog.cpp:866 +#: src/slic3r/GUI/FirmwareDialog.cpp:906 msgid "Cancelling..." msgstr "Annulation..." -#: src/slic3r/GUI/Tab.cpp:2905 +#: src/libslic3r/Flow.cpp:55 +msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "Impossible de calculer la largeur d'extrusion pour %1% : la variable \"%2%\" n'est pas accessible." + +#: src/slic3r/GUI/Tab.cpp:3057 msgid "Cannot overwrite a system profile." msgstr "Impossible d'écraser un profil système." -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:3061 msgid "Cannot overwrite an external profile." msgstr "Impossible d'écraser un profil externe." -#: src/libslic3r/SLAPrint.cpp:612 +#: src/libslic3r/SLAPrint.cpp:613 msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Il n'est pas possible de continuer sans ajouter des points de support ! Ajoutez des points de support ou désactivez la génération de support." -#: src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/Tab.cpp:1832 msgid "Capabilities" msgstr "Fonctionnalités" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "Capturer un instantané de la configuration" -#: src/libslic3r/PrintConfig.cpp:3035 +#: src/libslic3r/PrintConfig.cpp:3409 msgid "Center" msgstr "Centrer" -#: src/libslic3r/PrintConfig.cpp:3036 +#: src/libslic3r/PrintConfig.cpp:3410 msgid "Center the print around the given center." msgstr "Centrer l'impression autour d'un point donné." -#: src/slic3r/GUI/Tab.cpp:1744 +#: src/slic3r/GUI/Tab.cpp:1726 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Fichiers de certificat (*.crt, *.pem)|*.crt;*.pem|Tous les fichiers|*.*" -#: src/slic3r/GUI/GUI_App.cpp:683 -msgid "Change Application &Language" -msgstr "&Langue" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:154 msgid "Change camera type (perspective, orthographic)" msgstr "Changer le type d'appareil photo (perspective, orthographique)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1226 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +msgid "Change drainage hole diameter" +msgstr "Changer le diamètre du trou de drainage" + +#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 msgid "Change extruder" msgstr "Changer l'extrudeur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:534 msgid "Change Extruder" msgstr "Changer d'Extrudeur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/DoubleSlider.cpp:1113 +msgid "Change extruder (N/A)" +msgstr "Changer l'extrudeur (N/A)" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Change Extruders" msgstr "Changer les Extrudeurs" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:144 -#, c-format +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#, possible-c-format msgid "Change Option %s" msgstr "Modifier l'Option %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3134 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 msgid "Change Part Type" msgstr "Changer le Type de Partie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:925 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 msgid "Change point head diameter" msgstr "Changer le diamètre de la tête de la pointe" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Change the number of instances of the selected object" msgstr "Modifie le nombre d'instances de l'objet sélectionné" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1185 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 msgid "Change type" msgstr "Changer le type" -#: src/slic3r/GUI/UpdateDialogs.cpp:56 +#: src/slic3r/GUI/UpdateDialogs.cpp:53 msgid "Changelog && Download" msgstr "Téléchargement du Journal des Modifications" -#: src/slic3r/GUI/GUI_App.cpp:378 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "Changer la langue d'une application" -#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61 +#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Vérifier les mises à jour de l'application" -#: src/slic3r/GUI/BedShapeDialog.cpp:509 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "Vérifier les mises à jour de configuration" + +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "Vérifier les mises à jour" + +#: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Choisir un fichier à partir duquel importer la texture du plateau (PNG/SVG) :" -#: src/slic3r/GUI/MainFrame.cpp:621 +#: src/slic3r/GUI/MainFrame.cpp:775 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Choisir un fichier à découper (STL/OBJ/AMF/3MF/PRUSA) :" -#: src/slic3r/GUI/BedShapeDialog.cpp:532 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" msgstr "Choisissez un fichier STL à partir duquel importer le modèle de lit :" -#: src/slic3r/GUI/BedShapeDialog.cpp:464 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" msgstr "Choisissez un fichier STL à partir duquel importer la forme du plateau :" -#: src/slic3r/GUI/GUI_App.cpp:510 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "Choisir un fichier (3MF/AMF) :" -#: src/slic3r/GUI/GUI_App.cpp:501 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Choisir un ou plusieurs fichiers (STL/OBJ/AMF/3MF/PRUSA) :" -#: src/slic3r/GUI/ConfigWizard.cpp:490 +#: src/slic3r/GUI/ConfigWizard.cpp:896 msgid "Choose the type of firmware used by your printer." msgstr "Choisissez le type de firmware utilisé par votre imprimante." -#: src/slic3r/GUI/BedShapeDialog.cpp:84 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "Circulaire" -#: src/slic3r/GUI/GLCanvas3D.cpp:3701 src/slic3r/GUI/GLCanvas3D.cpp:3734 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 msgid "Click right mouse button to open History" msgstr "Faites un clic droit sur la souris pour ouvrir l'Historique" -#: src/slic3r/GUI/GUI_ObjectList.cpp:383 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Click the icon to change the object printable property" msgstr "Cliquez sur l'icône pour changer les propriétés imprimables de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:377 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Click the icon to change the object settings" msgstr "Cliquez sur l'icône pour modifier les réglages de l'objet" -#: src/slic3r/GUI/Plater.cpp:292 +#: src/slic3r/GUI/Plater.cpp:340 msgid "Click to edit preset" msgstr "Cliquez pour éditer le préréglage" -#: src/libslic3r/PrintConfig.cpp:216 +#: src/libslic3r/PrintConfig.cpp:242 msgid "Clip multi-part objects" msgstr "Dissocier les objets multi-pièces" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 msgid "Clipping of view" msgstr "Le plan de découpage" -#: src/slic3r/GUI/FirmwareDialog.cpp:814 -#: src/slic3r/GUI/PrintHostDialogs.cpp:160 +#: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Fermer" -#: src/libslic3r/PrintConfig.cpp:550 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +msgid "Closing distance" +msgstr "Distance de fermeture" + +#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 +#: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Couleur" -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 -#, c-format +#: src/slic3r/GUI/DoubleSlider.cpp:972 +msgid "Color change (\"%1%\")" +msgstr "Changement de couleur (\"%1%\")" + +#: src/slic3r/GUI/DoubleSlider.cpp:973 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "Changement de couleur (\"%1%\") pour l'extrudeur %2%" + +#: src/slic3r/GUI/GLCanvas3D.cpp:995 +#, possible-c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Changement de couleur pour l'Extrudeur %d à %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535 -#: src/libslic3r/GCode/PreviewData.cpp:406 +#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Couleur d'Impression" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:250 msgid "Colorprint height" msgstr "Hauteur du Colorprint" -#: src/libslic3r/PrintConfig.cpp:942 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "Combiner le remplissage toutes les" -#: src/libslic3r/PrintConfig.cpp:947 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "Combiner le remplissage toutes les n couches" -#: src/slic3r/GUI/UpdateDialogs.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "Commandes" + +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "Commentaire :" -#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 msgid "Compatible print profiles" msgstr "Profils d'impression compatibles" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:276 msgid "Compatible print profiles condition" msgstr "Condition des profils d'impression compatibles" -#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 msgid "Compatible printers" msgstr "Imprimantes compatibles" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Compatible printers condition" msgstr "Condition de compatibilité des imprimantes" -#: src/libslic3r/PrintConfig.cpp:268 +#: src/libslic3r/PrintConfig.cpp:294 msgid "Complete individual objects" msgstr "Compléter les objets individuels" -#: src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/PrintHostDialogs.cpp:234 msgid "Completed" msgstr "Terminé" -#: src/libslic3r/Zipper.cpp:57 +#: src/libslic3r/Zipper.cpp:54 msgid "compression failed" msgstr "échec de la compression" -#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "Concentrique" -#: src/slic3r/GUI/ConfigWizard.cpp:1185 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Assistant" msgstr "&Assistant de Configuration" -#: src/slic3r/GUI/ConfigWizard.cpp:1182 +#: src/slic3r/GUI/ConfigWizard.cpp:2116 msgid "Configuration &Wizard" msgstr "&Assistant de Configuration" -#: src/slic3r/GUI/ConfigWizard.cpp:1184 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Assistant" msgstr "Assistant de Configuration" -#: src/libslic3r/PrintConfig.cpp:1251 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "Notes de configuration" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:104 msgid "Configuration Snapshots" msgstr "Instantanés de Configuration capturés" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "Mise à jour de la configuration" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 msgid "Configuration update is available" msgstr "Une mise à jour de la configuration est disponible" -#: src/slic3r/GUI/ConfigWizard.cpp:1181 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Configuration update is necessary to install" +msgstr "Une mise à jour de la configuration est nécessaire pour l'installation." + +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "Mises à jour de la configuration" + +#: src/slic3r/GUI/ConfigWizard.cpp:2115 msgid "Configuration Wizard" msgstr "Assistant de Configuration" -#: src/slic3r/GUI/FirmwareDialog.cpp:863 +#: src/slic3r/GUI/FirmwareDialog.cpp:903 msgid "Confirmation" msgstr "Confirmation" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1929 msgid "Connection failed." msgstr "La connexion a échoué." -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/Tab.cpp:3612 msgid "Connection of the support sticks and junctions" msgstr "Connexion des tiges de support et jonctions" -#: src/slic3r/Utils/Duet.cpp:51 +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "La connexion à AstroBox fonctionne correctement." + +#: src/slic3r/Utils/Duet.cpp:49 msgid "Connection to Duet works correctly." msgstr "La connexion avec Duet fonctionne correctement." -#: src/slic3r/Utils/FlashAir.cpp:70 +#: src/slic3r/Utils/FlashAir.cpp:68 msgid "Connection to FlashAir works correctly and upload is enabled." msgstr "La connexion à FlashAir fonctionne correctement et le téléchargement est activé." -#: src/slic3r/Utils/OctoPrint.cpp:84 +#: src/slic3r/Utils/OctoPrint.cpp:83 msgid "Connection to OctoPrint works correctly." msgstr "La connexion avec OctoPrint fonctionne correctement." -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1926 msgid "Connection to printer works correctly." msgstr "La connexion avec l'imprimante fonctionne correctement." -#: src/slic3r/Utils/OctoPrint.cpp:195 +#: src/slic3r/Utils/OctoPrint.cpp:176 msgid "Connection to Prusa SL1 works correctly." msgstr "La connexion avec Prusa SL1 fonctionne correctement." -#: src/libslic3r/PrintConfig.cpp:1823 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Distance de contact Z" -#: src/slic3r/GUI/AboutDialog.cpp:96 +#: src/slic3r/GUI/AboutDialog.cpp:261 msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Contributions par Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik et de nombreux autres personnes." -#: src/libslic3r/PrintConfig.cpp:2433 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Contrôle le type de pont entre deux piliers voisins. Peut-être en zig-zag, en croisement (double zig-zag) ou dynamique auquel cas il alternera automatiquement entre les deux premiers en fonction de la distance entre les deux piliers." -#: src/slic3r/GUI/Tab.cpp:1489 +#: src/slic3r/GUI/Tab.cpp:1446 msgid "Cooling" msgstr "Refroidissement" -#: src/libslic3r/PrintConfig.cpp:629 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "Les mouvements de refroidissement accélèrent progressivement à partir de cette vitesse." -#: src/libslic3r/PrintConfig.cpp:648 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Les mouvements de refroidissement accélèrent progressivement jusqu'à cette vitesse." -#: src/slic3r/GUI/Tab.cpp:1510 +#: src/slic3r/GUI/Tab.cpp:1467 msgid "Cooling thresholds" msgstr "Seuils de refroidissement" -#: src/libslic3r/PrintConfig.cpp:291 +#: src/libslic3r/PrintConfig.cpp:317 msgid "Cooling tube length" msgstr "Longueur du tube de refroidissement" -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:309 msgid "Cooling tube position" msgstr "Position du tube de refroidissement" -#: src/slic3r/GUI/Tab.cpp:2878 +#: src/slic3r/GUI/GLCanvas3D.cpp:4554 msgid "Copy" msgstr "Copier" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "Copier la sélection dans le presse-papier" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" -#: src/slic3r/GUI/SysInfoDialog.cpp:120 +#: src/slic3r/GUI/SysInfoDialog.cpp:154 msgid "Copy to Clipboard" msgstr "Copier dans le Presse-Papier" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "La copie du G-code provisoire dans le G-code final a échoué" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "La copie du G-code provisoire dans le G-code final a échoué. Peut-être que la carte SD est protégée en écriture ?" -#: src/slic3r/GUI/AboutDialog.cpp:92 +#: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Droits d'auteur" -#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325 +#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 msgid "Correction for expansion" msgstr "Correction avant expansion" -#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310 +#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 msgid "Corrections" msgstr "Corrections" -#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056 -#: src/libslic3r/PrintConfig.cpp:717 +#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 msgid "Cost" msgstr "Coût" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Cost (money)" msgstr "Coût (argent)" -#: src/slic3r/GUI/Plater.cpp:2140 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Impossible d'agencer les objets du modèle ! Certaines géométries sont peut-être non-valides." -#: src/slic3r/Utils/Duet.cpp:56 +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "Impossible de se connecter à AstroBox" + +#: src/slic3r/Utils/Duet.cpp:54 msgid "Could not connect to Duet" msgstr "Impossible de se connecter à Duet" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Could not connect to FlashAir" msgstr "Impossible de se connecter à FlashAir" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Could not connect to OctoPrint" msgstr "Impossible de se connecter à OctoPrint" -#: src/slic3r/Utils/OctoPrint.cpp:200 +#: src/slic3r/Utils/OctoPrint.cpp:181 msgid "Could not connect to Prusa SLA" msgstr "Impossible de se connecter à Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1689 msgid "Could not get a valid Printer Host reference" msgstr "Impossible d'obtenir une référence d'Hôte d'Imprimante valide" -#: src/slic3r/Utils/Duet.cpp:151 +#: src/slic3r/Utils/Duet.cpp:134 msgid "Could not get resources to create a new connection" msgstr "Impossible d'obtenir les ressources pour créer une nouvelle connexion" -#: src/libslic3r/PrintConfig.cpp:1872 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "Recouvrir la couche de contact supérieure des supports avec des boucles. Désactivé par défaut." -#: src/libslic3r/PrintConfig.cpp:73 +#: src/libslic3r/PrintConfig.cpp:89 msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." msgstr "Les fentes d'une taille inférieure à 2x le rayon de fermeture de l'espacement sont remplies au cours du tranchage par maillage triangulaire. L'opération de fermeture de l'espacement peut réduire la résolution de l'impression finale, aussi est-il conseillé de conserver une valeur relativement basse." -#: src/libslic3r/Zipper.cpp:61 +#: src/libslic3r/Zipper.cpp:58 msgid "CRC-32 check failed" msgstr "Échec du test CRC-32" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "Create pad around object and ignore the support elevation" msgstr "Créer un socle autour de l'objet et ignorer l'élévation du support" -#: src/libslic3r/PrintConfig.cpp:2460 +#: src/libslic3r/PrintConfig.cpp:2715 msgid "Critical angle" msgstr "Angle critique" -#: src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Cross" msgstr "Croiser" -#: src/libslic3r/PrintConfig.cpp:800 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "Cubique" -#: src/slic3r/GUI/wxExtensions.cpp:2413 -#, c-format +#: src/slic3r/GUI/wxExtensions.cpp:704 +#, possible-c-format msgid "Current mode is %s" msgstr "Le mode actuel est %s" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:959 msgid "Current preset is inherited from the default preset." msgstr "Le préréglage actuel est hérité du préréglage par défaut." -#: src/slic3r/GUI/Tab.cpp:928 -#, c-format -msgid "" -"Current preset is inherited from:\n" -"\t%s" -msgstr "" -"Le préréglage actuel est hérité de :\n" -"%s" +#: src/slic3r/GUI/Tab.cpp:962 +#, possible-c-format +msgid "Current preset is inherited from:\n\t%s" +msgstr "Le préréglage actuel est hérité de :\n%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:45 +#: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Version actuelle :" @@ -1431,180 +1516,193 @@ msgstr "Version actuelle :" msgid "Cusp (mm)" msgstr "Pointe (mm)" -#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239 -#: src/libslic3r/GCode/PreviewData.cpp:175 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Personnalisé" -#: src/libslic3r/PrintConfig.cpp:96 +#: src/libslic3r/PrintConfig.cpp:112 msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Un fichier de certificat CA personnalisé peut être spécifié pour les connexions HTTPS OctoPrint, au format crt / pem. Si ce champ est vide, le certificat par défaut OS CA certificate repository est utilisé." -#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 msgid "Custom G-code" msgstr "G-code personnalisé" +#: src/slic3r/GUI/DoubleSlider.cpp:1591 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "G-code personnalisé sur la couche actuelle actuel (%1% mm)." + #: src/slic3r/GUI/wxExtensions.cpp:3500 msgid "Custom Gcode on current layer (%1% mm)." msgstr "G-code personnalisé sur la couche en cours (%1% mm)." -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Imprimante Personnalisée" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "Configuration d'une Imprimante Personnalisée" -#: src/slic3r/GUI/ConfigWizard.cpp:377 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "Nom de profil personnalisé :" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 msgid "Cut" msgstr "Couper" -#: src/slic3r/GUI/Plater.cpp:4193 +#: src/slic3r/GUI/Plater.cpp:4801 msgid "Cut by Plane" msgstr "Couper selon un Plan" -#: src/libslic3r/PrintConfig.cpp:3014 +#: src/libslic3r/PrintConfig.cpp:3388 msgid "Cut model at the given Z." msgstr "Couper le modèle au Z donné." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Cylinder" msgstr "Cylindre" -#: src/slic3r/GUI/MainFrame.cpp:491 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "Tout désél&ectionner" -#: src/libslic3r/PrintConfig.cpp:3115 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Data directory" msgstr "Répertoire de données" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:332 msgid "Deadzone:" msgstr "Zone morte :" -#: src/libslic3r/Zipper.cpp:55 +#: src/libslic3r/Zipper.cpp:52 msgid "decompression failed or archive is corrupted" msgstr "la décompression a échoué ou l'archive est corrompue" -#: src/slic3r/GUI/Plater.cpp:4127 +#: src/slic3r/GUI/Plater.cpp:4735 msgid "Decrease Instances" msgstr "Diminuer les Instances" -#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245 -#: src/libslic3r/PrintConfig.cpp:299 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 msgid "Default" msgstr "Défaut" -#: xs/src/slic3r/GUI/Field.cpp:98 +#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 msgid "default" msgstr "défaut" -#: src/libslic3r/PrintConfig.cpp:730 +#: src/libslic3r/PrintConfig.cpp:777 msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them." msgstr "Angle de base par défaut pour l'orientation du remplissage. Des croisements seront appliqués à cette valeur. Les ponts seront remplis avec la meilleure direction que Slic3r peut détecter, ce réglage ne les affecteront donc pas." -#: src/libslic3r/PrintConfig.cpp:522 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "Largeur d'extrusion par défaut" -#: src/slic3r/GUI/Tab.cpp:937 +#: src/slic3r/GUI/Tab.cpp:989 msgid "default filament profile" msgstr "profil du filament par défaut" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:335 msgid "Default filament profile" msgstr "Profil de filament par défaut" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:336 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Profil de filament par défaut associé au profil d'imprimante courant. En sélectionnant le profil d'imprimante courant, ce profil de filament sera activé." -#: src/slic3r/GUI/Tab.cpp:2757 -#, c-format +#: src/slic3r/GUI/Tab.cpp:2903 +#, possible-c-format msgid "Default preset (%s)" msgstr "Préréglage par défaut (%s)" -#: src/libslic3r/GCode/PreviewData.cpp:491 +#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 msgid "Default print color" msgstr "Couleur d'impression par défaut" -#: src/slic3r/GUI/Tab.cpp:934 +#: src/slic3r/GUI/Tab.cpp:986 msgid "default print profile" msgstr "profil d'impression par défaut" -#: src/libslic3r/PrintConfig.cpp:316 +#: src/libslic3r/PrintConfig.cpp:342 msgid "Default print profile" msgstr "Profil de filament par défaut" -#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341 -#: src/libslic3r/PrintConfig.cpp:2352 +#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 +#: src/libslic3r/PrintConfig.cpp:2594 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Profil de filament par défaut associé au profil d'imprimante courant. En sélectionnant le profil d'imprimante courant, ce profil de filament sera activé." -#: src/slic3r/GUI/Tab.cpp:951 +#: src/slic3r/GUI/Tab.cpp:1003 msgid "default SLA material profile" msgstr "profil par défaut du matériau SLA" -#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351 +#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 msgid "Default SLA material profile" msgstr "Profil par défaut du matériau SLA" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:1007 msgid "default SLA print profile" msgstr "profil d'impression SLA par défaut" -#: src/slic3r/GUI/Field.cpp:105 +#: src/slic3r/GUI/Field.cpp:131 msgid "default value" msgstr "valeur par défaut" -#: src/slic3r/GUI/ConfigWizard.cpp:375 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "Définissez un profil d'imprimante personnalisée" -#: src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Définit la profondeur de la cavité du socle. Réglez sur zéro pour désactiver la cavité. Faites bien attention lorsque vous activez cette fonctionnalité, car certaines résines génèrent un effet de succion extrême dans la cavité, et il est alors difficile de retirer l'impression de la feuille de la cuve." -#: src/slic3r/GUI/GUI_ObjectList.cpp:237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:344 msgid "degenerate facets" msgstr "faces défectueuses" -#: src/libslic3r/PrintConfig.cpp:608 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "Délai après le déchargement" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "delete" msgstr "supprimer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891 -#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Delete" msgstr "Supprimer" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "Tout eff&acer" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Delete All" msgstr "Tout Supprimer" -#: src/slic3r/GUI/Plater.cpp:3298 +#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 msgid "Delete all" msgstr "Tout Supprimer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 msgid "Delete All Instances from Object" msgstr "Supprimer Toutes les Instances depuis l'Objet" -#: src/slic3r/GUI/wxExtensions.cpp:3465 +#: src/slic3r/GUI/DoubleSlider.cpp:1488 msgid "Delete color change" msgstr "Supprimer le changement de couleur" @@ -1612,171 +1710,188 @@ msgstr "Supprimer le changement de couleur" msgid "Delete color change for Extruder %1%" msgstr "Supprimer le changement de couleur pour l'Extrudeur %1%" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 msgid "Delete color change marker for current layer" msgstr "Retirer le repère de changement de couleur pour la couche en cours" -#: src/slic3r/GUI/wxExtensions.cpp:3467 +#: src/slic3r/GUI/DoubleSlider.cpp:1491 msgid "Delete custom G-code" msgstr "Supprimer le G-code personnalisé" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +msgid "Delete drainage hole" +msgstr "Supprimer le trou de drainage" + #: src/slic3r/GUI/wxExtensions.cpp:3095 msgid "Delete extruder change to \"%1%\"" msgstr "Effacer le changement d'extrudeur vers \"%1%\"" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1898 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 msgid "Delete Height Range" msgstr "Supprimer la Zone de Hauteur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1876 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 msgid "Delete Instance" msgstr "Supprimer l'Instance" -#: src/slic3r/GUI/Plater.cpp:2592 +#: src/slic3r/GUI/Plater.cpp:2696 msgid "Delete Object" msgstr "Supprimer l'Objet" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:100 -#, c-format +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 +#, possible-c-format msgid "Delete Option %s" msgstr "Supprimer l'Option %s" -#: src/slic3r/GUI/wxExtensions.cpp:3466 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Delete pause print" msgstr "Supprimer la pause d'impression" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Delete selected" msgstr "Supprimer la sélection" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 msgid "Delete Selected" msgstr "Supprimer la Sélection" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2303 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 msgid "Delete Selected Item" msgstr "Supprimer l'Item Sélectionné" -#: src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Plater.cpp:4692 msgid "Delete Selected Objects" msgstr "Supprimer les Objets Sélectionnés" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1782 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 msgid "Delete Settings" msgstr "Supprimer les Réglages" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1857 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 msgid "Delete Subobject" msgstr "Supprimer le sous-objet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:720 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 msgid "Delete support point" msgstr "Supprimer un point de support" -#: src/slic3r/GUI/Tab.cpp:131 +#: src/slic3r/GUI/Tab.cpp:136 msgid "Delete this preset" msgstr "Supprimer ce préréglage" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/DoubleSlider.cpp:1001 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "Supprimer la coche - Faites un clic gauche ou appuyez sur la touche \"-\"" + +#: src/slic3r/GUI/DoubleSlider.cpp:1489 +msgid "Delete tool change" +msgstr "Supprimer le changement d'outil" + +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "Supprimer tous les objets" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "Supprime la sélection en cours" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 +#: src/libslic3r/PrintConfig.cpp:2495 msgid "Density" msgstr "Densité" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Densité du remplissage interne, exprimée en pourcentage de 0% à 100%." -#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584 -#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086 -#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 +#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 msgid "Dependencies" msgstr "Dépendances" -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "Vitesse de réinsertion" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "Désélectionner tout" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Deselect by rectangle" msgstr "Désélectionner par rectangle" -#: src/slic3r/GUI/MainFrame.cpp:492 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "Désélectionner tous les objets" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "Détecter les périmètres faisant des ponts" -#: src/libslic3r/PrintConfig.cpp:1988 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)." msgstr "Détecter les parois de largeur unique (où deux extrusions côte à côte ne rentrent pas et doivent êtres fusionnées en un seul trait)." -#: src/libslic3r/PrintConfig.cpp:1986 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "Détecter les parois fines" -#: src/libslic3r/PrintConfig.cpp:3083 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Détecter les parties non-connectées sur un modèle donné (ou plusieurs) et les scinder en objets séparés." -#: src/slic3r/GUI/Plater.cpp:1713 +#: src/slic3r/GUI/Plater.cpp:2352 msgid "Detected advanced data" msgstr "Données avancées détectées" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:306 msgid "Device:" msgstr "Appareil :" -#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "Diamètre" -#: src/libslic3r/PrintConfig.cpp:2443 +#: src/libslic3r/PrintConfig.cpp:2685 msgid "Diameter in mm of the pillar base" msgstr "Diamètre en mm de la base du pilier" -#: src/libslic3r/PrintConfig.cpp:2399 +#: src/libslic3r/PrintConfig.cpp:2641 msgid "Diameter in mm of the support pillars" msgstr "Diamètre en mm des piliers de support" -#: src/libslic3r/PrintConfig.cpp:2371 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Diameter of the pointing side of the head" msgstr "Diamètre du côté de pointage de la tête" -#: src/slic3r/GUI/BedShapeDialog.cpp:89 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." msgstr "Diamètre du plateau d'impression. Il est supposé que l'origine (0,0) est située au centre." -#: src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "Direction" -#: src/libslic3r/PrintConfig.cpp:323 +#: src/libslic3r/PrintConfig.cpp:349 msgid "Disable fan for the first" msgstr "Désactiver le ventilateur pour le(s) première(s)" -#: src/libslic3r/PrintConfig.cpp:1280 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Désactiver la rétraction lorsque le chemin de déplacement ne franchit pas les périmètres des couches supérieures (et donc les coulures seront probablement invisibles)." -#: src/slic3r/GUI/wxExtensions.cpp:3078 +#: src/slic3r/GUI/DoubleSlider.cpp:925 msgid "Discard all custom changes" msgstr "Éliminer toutes les modifications personnalisées" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 msgid "Discard changes" msgstr "Annuler les modifications" -#: src/slic3r/GUI/Tab.cpp:2784 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 msgid "Discard changes and continue anyway?" msgstr "Annuler les changements et continuer malgré tout ?" @@ -1784,102 +1899,112 @@ msgstr "Annuler les changements et continuer malgré tout ?" msgid "Displacement (mm)" msgstr "Déplacement (mm)" -#: src/slic3r/GUI/Tab.cpp:2041 +#: src/slic3r/GUI/Tab.cpp:2076 msgid "Display" msgstr "Afficher" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "Hauteur de l'affichage" -#: src/libslic3r/PrintConfig.cpp:2319 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "Afficher la symétrie horizontale" -#: src/libslic3r/PrintConfig.cpp:2227 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "Orientation de l'affichage" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "Afficher la fenêtre de la File d'Attente de Téléchargement de l'Hôte d'Impression" -#: src/libslic3r/PrintConfig.cpp:2326 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "Afficher la symétrie verticale" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "Largeur de l'affichage" -#: src/libslic3r/PrintConfig.cpp:341 +#: src/libslic3r/PrintConfig.cpp:367 msgid "Distance between copies" msgstr "Distance entre les copies" -#: src/libslic3r/PrintConfig.cpp:1610 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Distance entre le ou les objet(s) et la jupe. Mettez zéro pour attacher la jupe a(ux) objet(s) et obtenir une bordure pour une meilleure adhésion." -#: src/libslic3r/PrintConfig.cpp:2752 +#: src/libslic3r/PrintConfig.cpp:2873 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "La distance entre deux bâtonnets de connexion qui connectent l'objet et le socle généré." -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "Distance de l'objet" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Distance des coordonnées 0,0 du G-code depuis le coin avant gauche du rectangle." -#: src/libslic3r/PrintConfig.cpp:285 +#: src/libslic3r/PrintConfig.cpp:310 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Distance entre le point central du tube de refroidissement et la pointe de l'extrudeur." -#: src/libslic3r/PrintConfig.cpp:1338 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Distance entre la pointe de l'extrudeur et la position où le filament est positionné en attente lorsqu'il est déchargé. Cela doit correspondre à la valeur dans le firmware de l'imprimante." -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:368 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Distance utilisée par la fonction d'agencement automatique du plateau." -#: src/libslic3r/PrintConfig.cpp:3097 +#: src/libslic3r/PrintConfig.cpp:3471 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Ne pas obtenir d'échec si un fichier fourni pour --télécharger n'existe pas." -#: src/libslic3r/PrintConfig.cpp:3041 +#: src/libslic3r/PrintConfig.cpp:3415 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Ne pas ré-agencer les modèles donnés avant la fusion et conserver leurs coordonnées XY originales." -#: src/slic3r/GUI/Field.cpp:206 -#, c-format -msgid "" -"Do you mean %s%% instead of %s %s?\n" -"Select YES if you want to change this value to %s%%, \n" -"or NO if you are sure that %s %s is a correct value." -msgstr "" -"Voulez vous dire %s%% au lieu de %s%s ?\n" -"Sélectionnez OUI si vous voulez changer cette valeur pour %s%%,\n" -"ou NON si vous êtes certain que %s%s est une valeur correcte." +#: src/slic3r/GUI/Field.cpp:235 +#, possible-c-format +msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." +msgstr "Voulez vous dire %s%% au lieu de %s%s ?\nSélectionnez OUI si vous voulez changer cette valeur pour %s%%,\nou NON si vous êtes certain que %s%s est une valeur correcte." -#: src/slic3r/GUI/GUI_App.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "Voulez-vous sélectionner automatiquement les filaments par défaut ?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "Voulez-vous sélectionner automatiquement les matériaux par défaut ?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1893 +msgid "Do you want to delete all saved tool changes?" +msgstr "Voulez-vous supprimer tous les changements d'outils enregistrés ?" + +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "Voulez-vous poursuivre?" +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "Do you want to retry" +msgstr "Voulez-vous réessayer" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 msgid "Do you want to save your manually edited support points?" msgstr "Voulez-vous sauvegarder vos points de support édités manuellement ?" -#: src/libslic3r/PrintConfig.cpp:3040 +#: src/libslic3r/PrintConfig.cpp:3414 msgid "Don't arrange" msgstr "Ne pas agencer" -#: src/slic3r/GUI/UpdateDialogs.cpp:55 +#: src/slic3r/GUI/UpdateDialogs.cpp:71 msgid "Don't notify about new releases any more" msgstr "Ne plus me notifier au sujet des nouvelles publications" -#: src/libslic3r/PrintConfig.cpp:333 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Don't support bridges" msgstr "Ne pas supporter les ponts" @@ -1887,141 +2012,169 @@ msgstr "Ne pas supporter les ponts" msgid "Downgrade" msgstr "Rétrograder" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Drag" msgstr "Faites glisser" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:340 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:355 +#: src/libslic3r/SLAPrintSteps.cpp:42 +msgid "Drilling holes into model." +msgstr "Perçage de trous dans le modèle." + +#: src/libslic3r/SLAPrintSteps.cpp:163 +msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." +msgstr "Le perçage des trous dans le maillage a échoué. Cela est généralement dû à un modèle cassé. Essayez de le réparer en premier." + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:337 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:349 msgid "Drop to bed" msgstr "Déposer sur le lit" -#: src/libslic3r/PrintConfig.cpp:3044 +#: src/libslic3r/PrintConfig.cpp:3418 msgid "Duplicate" msgstr "Dupliquer" -#: src/libslic3r/PrintConfig.cpp:3049 +#: src/libslic3r/PrintConfig.cpp:3423 msgid "Duplicate by grid" msgstr "Dupliquer par grille" -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "Pendant les autres couches, le ventilateur" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2660 msgid "Dynamic" msgstr "Dynamique" -#: src/slic3r/GUI/MainFrame.cpp:708 +#: src/slic3r/GUI/MainFrame.cpp:751 msgid "E&xport" msgstr "E&xporter" -#: src/slic3r/GUI/GUI_ObjectList.cpp:238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:345 msgid "edges fixed" msgstr "arrêtes corrigées" -#: src/slic3r/GUI/wxExtensions.cpp:3460 +#: src/slic3r/GUI/DoubleSlider.cpp:1480 msgid "Edit color" msgstr "Éditer la couleur" -#: src/slic3r/GUI/wxExtensions.cpp:3462 +#: src/slic3r/GUI/DoubleSlider.cpp:933 +msgid "Edit current color - Right click the colored slider segment" +msgstr "Modifier la couleur actuelle - Cliquez avec le bouton droit sur le segment de curseur de couleur" + +#: src/slic3r/GUI/DoubleSlider.cpp:1482 msgid "Edit custom G-code" msgstr "Éditer un G-code personnalisé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2690 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 msgid "Edit Height Range" msgstr "Éditer la Zone de Hauteur" -#: src/slic3r/GUI/wxExtensions.cpp:3461 +#: src/slic3r/GUI/DoubleSlider.cpp:1481 msgid "Edit pause print message" msgstr "Modifier le message de pause d'impression" -#: src/slic3r/GUI/GUI_ObjectList.cpp:373 +#: src/slic3r/GUI/DoubleSlider.cpp:1003 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "Modifier la coche - Ctrl + Clic gauche" + +#: src/slic3r/GUI/DoubleSlider.cpp:1004 +msgid "Edit tick mark - Right click" +msgstr "Modifier la coche - Clic droit" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 msgid "Editing" msgstr "Édition" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:375 msgid "Elephant foot compensation" msgstr "Compensation de l'effet patte d'éléphant" -#: src/libslic3r/SLAPrint.cpp:678 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "Largeur minimum du pied d'éléphant" + +#: src/libslic3r/SLAPrint.cpp:625 msgid "Elevation is too low for object. Use the \"Pad around object\" feature to print the object without elevation." msgstr "L'Élévation est trop basse pour cet objet. utilisez la fonction \"Socle autour de l'objet\" pour imprimer l'objet sans élévation." -#: src/libslic3r/PrintConfig.cpp:1044 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode." msgstr "Émet M73 P[pourcentage imprimé] R[temps restant en minutes] à 1 minute d'intervalle dans le G-code afin que le firmware puisse indiquer précisément le temps restant. Jusqu'à présent seul le firmware Prusa i3 MK3 reconnait M73. Par ailleurs le firmware i3 MK3 supporte M73 Qxx Sxx pour le mode silencieux." -#: src/libslic3r/GCode.cpp:628 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "Couches vides détectées, la sortie ne serait pas imprimable." -#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286 -#: src/libslic3r/PrintConfig.cpp:2099 +#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Activer" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:303 msgid "Enable auto cooling" msgstr "Activer le refroidissement automatique" -#: src/libslic3r/PrintConfig.cpp:539 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" msgstr "Activer le ventilateur si le temps d'impression de la couche est inférieur à" -#: src/libslic3r/PrintConfig.cpp:2321 +#: src/libslic3r/PrintConfig.cpp:2899 +msgid "Enable hollowing" +msgstr "Activer l'évidement" + +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "Active la symétrie horizontale des images de sortie" -#: src/libslic3r/PrintConfig.cpp:1781 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "Activer la génération des supports." -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:966 msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." msgstr "Activez cette option pour ajouter des commentaires dans le G-code afin d'identifier les mouvements d'impression avec l'objet concerné. Cela est utile pour le plugin Octoprint CancelObject. Ce paramètre n'est PAS compatible avec la configuration mono-extrudeur multi-matériaux ni avec la configuration Nettoyer dans l'objet ou Nettoyer dans le remplissage." -#: src/libslic3r/PrintConfig.cpp:881 +#: src/libslic3r/PrintConfig.cpp:929 msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." msgstr "Activez ceci pour obtenir un fichier G-code commenté, avec chaque ligne expliquée par un texte descriptif. Si vous imprimez depuis une carte SD, le poids supplémentaire du fichier pourrait ralentir le firmware de votre imprimante." -#: src/libslic3r/PrintConfig.cpp:2085 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "Activer la fonction de hauteur de couche variable" -#: src/libslic3r/PrintConfig.cpp:2328 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "Activer la symétrie verticale des images de sortie" -#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955 -#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "G-code de fin" -#: src/libslic3r/PrintConfig.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "Forcer les supports sur le(s) première(s)" -#: src/libslic3r/PrintConfig.cpp:1845 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" msgstr "Forcer le support pour les n premières couches" -#: src/slic3r/GUI/PrintHostDialogs.cpp:197 -#: src/slic3r/GUI/PrintHostDialogs.cpp:228 +#: src/slic3r/GUI/PrintHostDialogs.cpp:198 +#: src/slic3r/GUI/PrintHostDialogs.cpp:229 msgid "Enqueued" msgstr "Placé dans la file d'attente" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" msgstr "S'assurer de l'épaisseur de la coque verticale" -#: src/slic3r/GUI/wxExtensions.cpp:3499 +#: src/slic3r/GUI/DoubleSlider.cpp:1590 msgid "Enter custom G-code used on current layer" msgstr "Entrez le G-code personnalisé utilisé sur la couche actuelle" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Enter new name" msgstr "Entrer de nouveaux noms" @@ -2029,262 +2182,292 @@ msgstr "Entrer de nouveaux noms" msgid "Enter short message shown on Printer display during pause print" msgstr "Entrez le message court qui apparait sur l'affichage de l'imprimante pendant la pause d'impression" -#: src/slic3r/GUI/ConfigWizard.cpp:622 +#: src/slic3r/GUI/DoubleSlider.cpp:1606 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "Entrez un court message affiché sur l'écran de l'imprimante lorsqu'une impression est mise en pause" + +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Entrez la température du lit nécessaire pour que votre filament colle à votre lit chauffant." -#: src/slic3r/GUI/ConfigWizard.cpp:570 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Enter the diameter of your filament." msgstr "Entrez le diamètre de votre filament." -#: src/slic3r/GUI/ConfigWizard.cpp:557 +#: src/slic3r/GUI/ConfigWizard.cpp:967 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Entrez le diamètre de la buse de la tête d'impression de votre imprimante." -#: src/slic3r/GUI/ConfigWizard.cpp:608 +#: src/slic3r/GUI/DoubleSlider.cpp:1622 +msgid "Enter the height you want to jump to" +msgstr "Entrez la hauteur à laquelle vous souhaitez sauter" + +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "Enter the temperature needed for extruding your filament." msgstr "Entrez la température nécessaire pour extruder votre filament." -#: src/libslic3r/PrintConfig.cpp:718 +#: src/libslic3r/PrintConfig.cpp:761 msgid "Enter your filament cost per kg here. This is only for statistical information." msgstr "Entrez le coût par Kg de votre filament. Ceci est uniquement pour l'information statistique." -#: src/libslic3r/PrintConfig.cpp:686 +#: src/libslic3r/PrintConfig.cpp:718 msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement." msgstr "Entrez ici la densité de votre filament. Ceci est uniquement pour des informations statistiques. Un bon moyen d'obtenir cette valeur est de peser un morceau de filament d'une longueur connue et de calculer le rapport de sa longueur par son poids. Le mieux est de calculer le volume directement par déplacement." -#: src/libslic3r/PrintConfig.cpp:678 +#: src/libslic3r/PrintConfig.cpp:710 msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Entrez le diamètre de votre filament ici. Une bonne précision est requise, utilisez un pied à coulisse et calculez la moyenne de plusieurs mesures le long du filament." -#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Erreur" -#: src/slic3r/GUI/FirmwareDialog.cpp:608 -#, c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:645 +#, possible-c-format msgid "Error accessing port at %s: %s" msgstr "Erreur d'accès au port sur %s : %s" -#: src/slic3r/GUI/Plater.cpp:3593 -#, c-format +#: src/slic3r/GUI/Plater.cpp:3441 +msgid "Error during reload" +msgstr "Erreur lors du rechargement" + +#: src/slic3r/GUI/Plater.cpp:5073 +#, possible-c-format msgid "Error exporting 3MF file %s" msgstr "Erreur d'export du fichier 3MF %s" -#: src/slic3r/GUI/Plater.cpp:3564 -#, c-format +#: src/slic3r/GUI/Plater.cpp:5025 +#, possible-c-format msgid "Error exporting AMF file %s" msgstr "Erreur d'export du fichier AMF %s" -#: src/slic3r/GUI/PrintHostDialogs.cpp:153 +#: src/slic3r/GUI/PrintHostDialogs.cpp:154 msgid "Error Message" msgstr "Message d'erreur" -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:118 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Erreur d'analyse du fichier config PrusaSlicer, il est probablement corrompu. Essayez de supprimer manuellement le fichier pour récupérer après cette erreur. Vos profils d'utilisateurs ne seront pas affectés." -#: src/slic3r/GUI/PrintHostDialogs.cpp:271 +#: src/slic3r/GUI/PrintHostDialogs.cpp:272 msgid "Error uploading to print host:" msgstr "Erreur lors du téléchargement vers l'hôte d'impression :" -#: src/libslic3r/Zipper.cpp:105 +#: src/libslic3r/Zipper.cpp:102 msgid "Error with zip archive" msgstr "Erreur liée à l'archive zip" -#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1443 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 msgid "Error!" msgstr "Erreur!" -#: src/slic3r/GUI/BedShapeDialog.cpp:482 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "Erreur ! Modèle invalide" -#: src/slic3r/GUI/FirmwareDialog.cpp:610 -#, c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:647 +#, possible-c-format msgid "Error: %s" msgstr "Erreur : %s" -#: src/slic3r/GUI/Plater.cpp:1503 +#: src/slic3r/GUI/Job.hpp:123 msgid "ERROR: not enough resources to execute a new job." msgstr "ERREUR : il n'y a pas assez de ressources pour exécuter une nouvelle tâche." -#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028 -#: src/slic3r/GUI/Plater.cpp:1070 +#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 +#: src/slic3r/GUI/Plater.cpp:1255 msgid "Estimated printing time" msgstr "Temps d'impression estimé" -#: src/slic3r/GUI/Plater.cpp:424 +#: src/slic3r/GUI/Plater.cpp:499 msgid "Everywhere" msgstr "Partout" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." msgstr "sauf pour les %1% première couches." -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "sauf pour la première couche." -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1373 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Dépasse de %1%=%2% mm pour être imprimable avec une buse de diamètre %3% mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -#, c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 +#, possible-c-format msgid "Exit %s" msgstr "Sortir de %s" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:361 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Option expérimentale pour empêcher la génération de support sous les ponts." -#: src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan." msgstr "Option expérimentale qui ajuste le flux pour les surplombs (le flux pour les ponts sera utilisé), leur applique la vitesse pour les ponts et active le ventilateur." -#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/ConfigWizard.cpp:787 +#: src/slic3r/GUI/ConfigWizard.cpp:823 msgid "Expert mode" msgstr "Mode expert" -#: src/slic3r/GUI/GUI_App.cpp:676 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "Mode de Vue Expert" -#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821 +#: src/slic3r/GUI/Plater.cpp:5555 msgid "Export" msgstr "Exporter" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "Exporter la &Configuration" -#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 msgid "Export &G-code" msgstr "Exporter le &G-code" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Exporter les parcours en tant que OBJ" -#: src/libslic3r/PrintConfig.cpp:2949 +#: src/libslic3r/PrintConfig.cpp:3323 msgid "Export 3MF" msgstr "Exporter 3MF" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "Exporter tous les préréglage vers un fichier" -#: src/libslic3r/PrintConfig.cpp:2954 +#: src/libslic3r/PrintConfig.cpp:3328 msgid "Export AMF" msgstr "Exporter AMF" -#: src/slic3r/GUI/Plater.cpp:1932 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Export AMF file:" msgstr "Exporter le fichier AMF :" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 msgid "Export as STL" msgstr "Exporter en tant que STL" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "Exporter la configuration" + +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "Exporter le &Lot de Configuration" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "Exporter la configuration actuelle vers un fichier" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "Exporter le plateau courant en AMF" -#: src/slic3r/GUI/MainFrame.cpp:362 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "Exporter le plateau courant en G-code" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "Exporter le plateau courant en STL" -#: src/slic3r/GUI/MainFrame.cpp:368 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" msgstr "Exporter le contenu du plateau en STL, supports inclus" -#: src/slic3r/GUI/Plater.cpp:2722 +#: src/slic3r/GUI/Plater.cpp:3673 msgid "Export failed" msgstr "L'export a échoué" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733 -#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964 +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "Exportez les chemins d'accès complets des modèles et des sources de pièces dans des fichiers 3mf et amf" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 +#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 msgid "Export G-code" msgstr "Exporter le G-code" -#: src/libslic3r/PrintConfig.cpp:2931 +#: src/libslic3r/PrintConfig.cpp:3305 msgid "Export OBJ" msgstr "Exporter OBJ" -#: src/slic3r/GUI/Plater.cpp:2531 +#: src/slic3r/GUI/Plater.cpp:2594 msgid "Export OBJ file:" msgstr "Exporter le fichier OBJ :" -#: src/slic3r/Utils/FixModelByWin10.cpp:368 +#: src/slic3r/Utils/FixModelByWin10.cpp:369 +#: src/slic3r/Utils/FixModelByWin10.cpp:374 msgid "Export of a temporary 3mf file failed" msgstr "Exporter un fichier temporaire 3mf qui a échoué" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" msgstr "Exporter le plateau en tant que &AMF" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" msgstr "Exporter le plateau en tant que &STL" -#: src/slic3r/GUI/MainFrame.cpp:481 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" msgstr "Exporter le plateau en STL en &incluant les supports" -#: src/libslic3r/PrintConfig.cpp:2943 +#: src/libslic3r/PrintConfig.cpp:3317 msgid "Export SLA" msgstr "Exporter SLA" -#: src/libslic3r/PrintConfig.cpp:2959 +#: src/slic3r/GUI/Preferences.cpp:73 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "Exporter les noms de chemins complets des sources vers 3mf et amf" + +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Export STL" msgstr "Exporter STL" -#: src/slic3r/GUI/Plater.cpp:1925 +#: src/slic3r/GUI/Plater.cpp:2575 msgid "Export STL file:" msgstr "Exporter le fichier STL :" -#: src/libslic3r/PrintConfig.cpp:2950 +#: src/libslic3r/PrintConfig.cpp:3324 msgid "Export the model(s) as 3MF." msgstr "Exporter le(s) modèle(s) en tant que 3MF." -#: src/libslic3r/PrintConfig.cpp:2955 +#: src/libslic3r/PrintConfig.cpp:3329 msgid "Export the model(s) as AMF." msgstr "Exporter le(s) modèle(s) en tant que AMF." -#: src/libslic3r/PrintConfig.cpp:2932 +#: src/libslic3r/PrintConfig.cpp:3306 msgid "Export the model(s) as OBJ." msgstr "Exporter le(s) modèle(s) en tant que OBJ." -#: src/libslic3r/PrintConfig.cpp:2960 +#: src/libslic3r/PrintConfig.cpp:3334 msgid "Export the model(s) as STL." msgstr "Exporter le(s) modèle(s) en tant que STL." -#: src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Export the selected object as STL file" msgstr "Exporter l'objet sélectionné en tant que fichier STL" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/Plater.cpp:877 +msgid "Export to SD card / Flash drive" +msgstr "Exporter vers une carte SD / une clé USB" + +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" msgstr "Exporter le parcours en tant que OBJ" -#: src/libslic3r/Print.cpp:1517 +#: src/libslic3r/Print.cpp:1634 msgid "Exporting G-code" msgstr "Exportation du G-code" @@ -2297,139 +2480,143 @@ msgstr "Exportation du modèle ..." msgid "Exporting source model" msgstr "Exportation du modèle source" -#: src/libslic3r/SLAPrint.cpp:700 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "Le temps d'exposition dépasse les limites du profil d'imprimante." -#: src/slic3r/GUI/Tab.cpp:3306 +#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 msgid "Exposure" msgstr "Exposition" -#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311 +#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 msgid "Exposure time" msgstr "Temps d'exposition" -#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Périmètre externe" -#: src/slic3r/GUI/PresetHints.cpp:153 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" msgstr "périmètres externes" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" msgstr "Périmètres externes" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" msgstr "Périmètres externes en premier" -#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "Longueur supplémentaire à la reprise" -#: src/libslic3r/PrintConfig.cpp:1321 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "Distance de chargement supplémentaire" -#: src/libslic3r/PrintConfig.cpp:445 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "Périmètres supplémentaires si nécessaire" -#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479 -#: src/libslic3r/PrintConfig.cpp:455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extrudeur" -#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475 -#, c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 +#: src/libslic3r/GCode/PreviewData.cpp:445 +#, possible-c-format msgid "Extruder %d" msgstr "Extrudeur %d" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/DoubleSlider.cpp:978 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "L'extrudeur (outil) est remplacée par l'extrudeur \"%1%\"" + +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Extruder and Bed Temperatures" msgstr "Températures de l'Extrudeur et du Lit" -#: src/slic3r/GUI/WipeTowerDialog.cpp:226 +#: src/slic3r/GUI/WipeTowerDialog.cpp:255 msgid "Extruder changed to" msgstr "Extrudeur changé à" -#: src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/Tab.cpp:1235 msgid "Extruder clearance (mm)" msgstr "Dégagement de l'extrudeur (mm)" -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "Couleur de l'extrudeur" -#: src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "Décalage de l'extrudeur" -#: src/libslic3r/PrintConfig.cpp:863 +#: src/libslic3r/PrintConfig.cpp:911 msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file." msgstr "Température de l’extrudeur pour la première couche. Si vous voulez contrôler manuellement la température au cours de l’impression, mettez à zéro pour désactiver les commandes de contrôle de température dans le fichier de sortie." -#: src/libslic3r/PrintConfig.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Température de l'extrudeur pour les couches après la première. Mettez zéro pour désactiver les commandes de contrôle de la température dans le fichier de sortie." -#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72 -#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119 -#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456 -#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340 -#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852 -#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151 -#: src/libslic3r/PrintConfig.cpp:2159 +#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "Extrudeurs" -#: src/libslic3r/PrintConfig.cpp:507 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "Axe d'extrusion" -#: src/libslic3r/PrintConfig.cpp:513 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "Multiplicateur d'extrusion" -#: src/slic3r/GUI/ConfigWizard.cpp:612 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 msgid "Extrusion Temperature:" msgstr "Température d'Extrusion :" -#: src/slic3r/GUI/Tab.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:1207 msgid "Extrusion width" msgstr "Largeur d'extrusion" -#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514 -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523 -#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962 -#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "Largeur d'Extrusion" -#: src/slic3r/GUI/Plater.cpp:139 +#: src/slic3r/GUI/Plater.cpp:164 msgid "Facets" msgstr "Faces" -#: src/slic3r/GUI/GUI_ObjectList.cpp:240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "facets added" msgstr "faces ajoutées" -#: src/slic3r/GUI/GUI_ObjectList.cpp:239 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "facets removed" msgstr "faces supprimées" -#: src/slic3r/GUI/GUI_ObjectList.cpp:241 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets reversed" msgstr "faces inversées" -#: src/libslic3r/PrintConfig.cpp:2302 +#: src/libslic3r/PrintConfig.cpp:2508 msgid "Faded layers" msgstr "Couches estompées" -#: src/libslic3r/Zipper.cpp:47 +#: src/libslic3r/Zipper.cpp:44 msgid "failed finding central directory" msgstr "impossible de trouver le répertoire central" @@ -2437,181 +2624,181 @@ msgstr "impossible de trouver le répertoire central" msgid "Failed loading the input model." msgstr "Échec du chargement du modèle d'entrée." -#: src/libslic3r/PrintBase.cpp:65 +#: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." msgstr "Échec du traitement du modèle output_filename_format." -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "Ventilateur" -#: src/slic3r/GUI/Tab.cpp:1501 +#: src/slic3r/GUI/Tab.cpp:1458 msgid "Fan settings" msgstr "Réglages du ventilateur" -#: src/slic3r/GUI/Tab.cpp:1502 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" msgstr "Vitesse du ventilateur" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" msgstr "Vitesse du ventilateur (%)" -#: src/libslic3r/PrintConfig.cpp:2240 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "Rapide" -#: src/libslic3r/PrintConfig.cpp:2241 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "Inclinaison rapide" -#: src/slic3r/GUI/GUI_App.cpp:135 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "Erreur fatale" -#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/libslic3r/GCode/PreviewData.cpp:394 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Type de fonctionnalité" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 msgid "Feature types" msgstr "Types de fonctionnalité" -#: src/slic3r/GUI/ConfigWizard.cpp:1488 +#: src/slic3r/GUI/ConfigWizard.cpp:1528 msgid "FFF Technology Printers" msgstr "Imprimantes Technologie FFF" -#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470 -#: src/slic3r/GUI/Tab.cpp:1471 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1275 +#: src/slic3r/GUI/Preset.cpp:1472 msgid "filament" msgstr "filament" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Filament and Nozzle Diameters" msgstr "Diamètres du Filament et de la Buse" -#: src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/ConfigWizard.cpp:984 msgid "Filament Diameter:" msgstr "Diamètre du Filament :" -#: src/libslic3r/PrintConfig.cpp:620 +#: src/libslic3r/PrintConfig.cpp:651 msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." msgstr "Le filament est refroidi en étant déplacé d'avant en arrière dans les tubes de refroidissement. Spécifiez le nombre souhaité de ces mouvements." -#: src/libslic3r/PrintConfig.cpp:654 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "Temps de chargement du filament" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "Notes du filament" -#: src/slic3r/GUI/Tab.cpp:1502 src/slic3r/GUI/Tab.cpp:1557 +#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 msgid "Filament Overrides" msgstr "Annulations de Filament" -#: src/libslic3r/PrintConfig.cpp:1312 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "Position d'attente du filament" -#: src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filament Profiles Selection" msgstr "Sélection des Profils de Filament" -#: src/slic3r/GUI/Tab.cpp:1516 +#: src/slic3r/GUI/Tab.cpp:1473 msgid "Filament properties" msgstr "Propriétés du filament" -#: src/slic3r/GUI/Tab.hpp:335 +#: src/slic3r/GUI/Tab.hpp:354 msgid "Filament Settings" msgstr "Réglages du filament" -#: src/libslic3r/PrintConfig.cpp:694 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "Type de filament" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "Temps de déchargement du filament" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 msgid "filaments" msgstr "filaments" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filaments" msgstr "Filaments" -#: src/libslic3r/Zipper.cpp:75 +#: src/libslic3r/Zipper.cpp:72 msgid "file close failed" msgstr "échec de la fermeture du fichier" -#: src/libslic3r/Zipper.cpp:69 +#: src/libslic3r/Zipper.cpp:66 msgid "file create failed" msgstr "échec de création du fichier" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:793 msgid "File Not Found" msgstr "Fichier non trouvé" -#: src/libslic3r/Zipper.cpp:89 +#: src/libslic3r/Zipper.cpp:86 msgid "file not found" msgstr "fichier non trouvé" -#: src/libslic3r/Zipper.cpp:67 +#: src/libslic3r/Zipper.cpp:64 msgid "file open failed" msgstr "échec de l'ouverture du fichier" -#: src/libslic3r/Zipper.cpp:73 +#: src/libslic3r/Zipper.cpp:70 msgid "file read failed" msgstr "échec de lecture du fichier" -#: src/libslic3r/Zipper.cpp:77 +#: src/libslic3r/Zipper.cpp:74 msgid "file seek failed" msgstr "impossible de trouver le fichier" -#: src/libslic3r/Zipper.cpp:79 +#: src/libslic3r/Zipper.cpp:76 msgid "file stat failed" msgstr "impossible d'établir des statistiques pour ce fichier" -#: src/libslic3r/Zipper.cpp:39 +#: src/libslic3r/Zipper.cpp:36 msgid "file too large" msgstr "fichier trop volumineux" -#: src/libslic3r/Zipper.cpp:71 +#: src/libslic3r/Zipper.cpp:68 msgid "file write failed" msgstr "échec d'écriture du fichier" -#: src/slic3r/GUI/PrintHostDialogs.cpp:152 +#: src/slic3r/GUI/PrintHostDialogs.cpp:153 msgid "Filename" msgstr "Nom de fichier" -#: src/libslic3r/PrintConfig.cpp:728 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "Angle du remplissage" -#: src/libslic3r/PrintConfig.cpp:742 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "Densité de remplissage" -#: src/libslic3r/PrintConfig.cpp:779 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "Motif de remplissage" -#: src/libslic3r/PrintConfig.cpp:410 +#: src/libslic3r/PrintConfig.cpp:437 msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells." msgstr "Motif pour les remplissages pour le remplissage du bas. Ceci affecte seulement la couche externe visible en bas, et non les coques solides adjacentes." -#: src/libslic3r/PrintConfig.cpp:781 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "Motif pour les remplissages de faible densité." -#: src/libslic3r/PrintConfig.cpp:390 +#: src/libslic3r/PrintConfig.cpp:417 msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells." msgstr "Motif pour les remplissages pour le remplissage du haut. Ceci affecte seulement la couche externe visible en haut, et non les coques solides adjacentes." @@ -2619,88 +2806,88 @@ msgstr "Motif pour les remplissages pour le remplissage du haut. Ceci affecte se msgid "Finished" msgstr "Terminé" -#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920 +#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:740 +#: src/slic3r/GUI/FirmwareDialog.cpp:777 msgid "Firmware flasher" msgstr "Outil de flash du firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:765 +#: src/slic3r/GUI/FirmwareDialog.cpp:802 msgid "Firmware image:" msgstr "Image du firmware :" -#: src/slic3r/GUI/Tab.cpp:2431 +#: src/slic3r/GUI/Tab.cpp:2573 msgid "Firmware Retraction" msgstr "Rétraction du Firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:486 +#: src/slic3r/GUI/ConfigWizard.cpp:892 msgid "Firmware Type" msgstr "Type de Firmware" -#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821 -#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "Première couche" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "Hauteur de la première couche" -#: src/libslic3r/Print.cpp:1328 +#: src/libslic3r/Print.cpp:1418 msgid "First layer height can't be greater than nozzle diameter" msgstr "La hauteur de la première couche ne peut pas être supérieure au diamètre de la buse" -#: src/libslic3r/PrintConfig.cpp:852 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "Vitesse de la première couche" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "Volume de la première couche" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 msgid "Fix through the Netfabb" msgstr "Corriger avec Netfabb" -#: src/slic3r/GUI/Plater.cpp:3072 +#: src/slic3r/GUI/Plater.cpp:3482 msgid "Fix Throught NetFabb" msgstr "Corriger Avec NetFabb" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" msgstr "Flasher le &firmware de l'imprimante" -#: src/slic3r/GUI/FirmwareDialog.cpp:146 +#: src/slic3r/GUI/FirmwareDialog.cpp:150 msgid "Flash!" msgstr "Flash !" -#: src/slic3r/GUI/FirmwareDialog.cpp:275 +#: src/slic3r/GUI/FirmwareDialog.cpp:284 msgid "Flashing cancelled." msgstr "Processus de flash annulé." -#: src/slic3r/GUI/FirmwareDialog.cpp:192 +#: src/slic3r/GUI/FirmwareDialog.cpp:199 msgid "Flashing failed" msgstr "Échec du processus de flash" -#: src/slic3r/GUI/FirmwareDialog.cpp:274 +#: src/slic3r/GUI/FirmwareDialog.cpp:283 msgid "Flashing failed. Please see the avrdude log below." msgstr "Le processus de flash a échoué. Veuillez consulter le journal avrdude ci-dessous." -#: src/slic3r/GUI/FirmwareDialog.cpp:148 +#: src/slic3r/GUI/FirmwareDialog.cpp:152 msgid "Flashing in progress. Please do not disconnect the printer!" msgstr "Processus de flash en cours. Veuillez ne pas déconnecter l'imprimante !" -#: src/slic3r/GUI/FirmwareDialog.cpp:273 +#: src/slic3r/GUI/FirmwareDialog.cpp:282 msgid "Flashing succeeded!" msgstr "Flash effectué avec succès !" -#: src/slic3r/GUI/Tab.cpp:1156 +#: src/slic3r/GUI/Tab.cpp:1220 msgid "Flow" msgstr "Flux" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" msgstr "le débit est maximisé" @@ -2717,324 +2904,397 @@ msgid "For add color change use left mouse button click" msgstr "Pour ajouter un changement de couleur faites un clic gauche avec la souris" #: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "" -"For Delete \"%1%\" code use left mouse button click\n" -"For Edit \"%1%\" code use right mouse button click" -msgstr "" -"Pour Supprimer le code \"%1%\" utilisez le clic gauche de la souris\n" -"Pour Modifier le code \"%1%\" utilisez le clic droit de la souris" +msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" +msgstr "Pour Supprimer le code \"%1%\" utilisez le clic gauche de la souris\nPour Modifier le code \"%1%\" utilisez le clic droit de la souris" #: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "" -"For Delete color change use left mouse button click\n" -"For Edit color use right mouse button click" -msgstr "" -"Pour Supprimer le changement de couleur utiliser le clic gauche de la souris\n" -"Pour Modifier la couleur utiliser le clic droit de la souris" +msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" +msgstr "Pour Supprimer le changement de couleur utiliser le clic gauche de la souris\nPour Modifier la couleur utiliser le clic droit de la souris" -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Pour plus d'informations, merci de visiter notre page wiki :" -#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528 +#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 msgid "For support enforcers only" msgstr "Seulement pour les générateur de supports" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3345 -msgid "" -"for the left button: \tindicates a non-system (or non-default) preset,\n" -"for the right button: \tindicates that the settings hasn't been modified." -msgstr "" -"pour le bouton gauche : indique un préréglage non-système (ou non par défaut),\n" -"pour le bouton droit : indique que le réglage n'a pas été modifié." +#: src/slic3r/GUI/Tab.cpp:3249 +msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." +msgstr "pour le bouton gauche : indique un préréglage non-système (ou non par défaut),\npour le bouton droit : indique que le réglage n'a pas été modifié." -#: src/slic3r/GUI/ConfigManipulation.cpp:128 -msgid "" -"For the Wipe Tower to work with the soluble supports, the support layers\n" -"need to be synchronized with the object layers." -msgstr "" -"Pour que la tour de nettoyage fonctionne avec les supports solubles, les couches du support\n" -"doivent être synchronisées avec les couches d'objets." +#: src/slic3r/GUI/ConfigManipulation.cpp:136 +msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." +msgstr "Pour que la tour de nettoyage fonctionne avec les supports solubles, les couches du support\ndoivent être synchronisées avec les couches d'objets." -#: src/libslic3r/Print.cpp:1302 +#: src/libslic3r/Print.cpp:1392 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." -msgstr "" -"Pour que la Tour de Nettoyage fonctionne avec des supports solubles, les couches de support\n" -"doivent être synchronisées avec les couches de l'objet." +msgstr "Pour que la Tour de Nettoyage fonctionne avec des supports solubles, les couches de support\ndoivent être synchronisées avec les couches de l'objet." -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Force pad around object everywhere" msgstr "Forcer le socle partout autour de l'objet" -#: src/libslic3r/PrintConfig.cpp:1660 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "Force solid infill for regions having a smaller area than the specified threshold." msgstr "Forcer un remplissage solide pour les zones ayant une surface plus petite que la valeur indiquée." -#: src/libslic3r/PrintConfig.cpp:1023 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." msgstr "Force la génération de coques solides entre des volumes/matériaux adjacents. Utile pour des impressions multi-extrudeurs avec des matériaux translucides ou avec un support manuel soluble." -#: src/slic3r/GUI/WipeTowerDialog.cpp:262 +#: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "From" msgstr "De" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 msgid "From Object List You can't delete the last solid part from object." msgstr "Depuis la Liste d'Objet Vous ne pouvez pas supprimer la dernière partie solide de l'objet." -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "Avant" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "Vue Avant" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1015 msgid "full profile name" msgstr "nom de profil complet" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87 +#: src/slic3r/GUI/DoubleSlider.cpp:987 +msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." +msgstr "Le G-code associé à cette coche est en conflit avec le mode d'impression.\nLe modifier entraînera des modifications des données du curseur." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 msgid "G-code file exported to %1%" msgstr "Fichier G-code exporté vers %1%" -#: src/libslic3r/PrintConfig.cpp:888 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "Version du G-code" -#: src/libslic3r/PrintConfig.cpp:689 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2496 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870 -#: src/libslic3r/GCode/PreviewData.cpp:170 +#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Remplissage des trous" -#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812 -#: src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 +#: src/slic3r/GUI/Tab.cpp:2038 msgid "General" msgstr "Général" -#: src/libslic3r/PrintConfig.cpp:1242 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder." msgstr "Nombre minimum de contours à générer afin de consommer la quantité de filament spécifiée sur la couche inférieure. Pour les machines multi-extrudeurs, ce minimum s'applique à chaque extrudeur." -#: src/libslic3r/PrintConfig.cpp:1779 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "Générer des supports" -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Générer des supports pour le nombre de couches spécifié à partir du bas, que les supports normaux soient activés ou non et sans tenir compte de seuils d'inclinaison. Ceci est utile pour obtenir une meilleure adhésion pour des objets ayant une surface de contact très fine ou limitée sur le plateau." -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2604 msgid "Generate supports" msgstr "Générer des supports" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2606 msgid "Generate supports for the models" msgstr "Générer des supports pour les modèles" -#: src/libslic3r/Print.cpp:1492 +#: src/libslic3r/Print.cpp:1610 msgid "Generating brim" msgstr "Génération de la bordure" -#: src/libslic3r/Print.cpp:1524 +#: src/libslic3r/Print.cpp:1638 msgid "Generating G-code" msgstr "Génération du G-code" -#: src/libslic3r/SLAPrint.cpp:58 +#: src/libslic3r/SLAPrintSteps.cpp:46 msgid "Generating pad" msgstr "Génération du socle" -#: src/libslic3r/PrintObject.cpp:141 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" msgstr "Génération des périmètres" -#: src/libslic3r/Print.cpp:1484 +#: src/libslic3r/Print.cpp:1602 msgid "Generating skirt" msgstr "Génération de la jupe" -#: src/libslic3r/PrintObject.cpp:391 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "Génération des supports" -#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809 +#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 msgid "Generating support points" msgstr "Génération des points de support" -#: src/libslic3r/SLAPrint.cpp:57 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Generating support tree" msgstr "Génération de l'arbre de support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1551 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 msgid "Generic" msgstr "Générique" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 msgid "Gizmo cut" msgstr "Couper le Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Gizmo move" msgstr "Déplacer le Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 msgid "Gizmo Place face on bed" msgstr "Emplacement du Gizmo face au lit" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Gizmo rotate" msgstr "Pivoter le Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 msgid "Gizmo scale" msgstr "Échelle du Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA évidé" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo SLA support points" msgstr "Points de support SLA du Gizmo" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:641 +#: src/slic3r/GUI/GLCanvas3D.cpp:2945 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 msgid "Gizmo-Move" msgstr "Gizmo-Déplacement" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:569 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 msgid "Gizmo-Place on Face" msgstr "Gizmo-Positionner sur la surface" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:651 +#: src/slic3r/GUI/GLCanvas3D.cpp:3025 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 msgid "Gizmo-Rotate" msgstr "Gizmo-Rotation" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:646 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 msgid "Gizmo-Scale" msgstr "Gizmo-Échelle" -#: src/slic3r/GUI/AboutDialog.cpp:95 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "Gizmos" + +#: src/slic3r/GUI/AboutDialog.cpp:259 msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero Licence Publique Générale, version 3" -#: src/slic3r/GUI/ConfigWizard.cpp:571 +#: src/slic3r/GUI/ConfigWizard.cpp:981 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Une bonne précision est requise, utilisez un pied à coulisse et calculez la moyenne de plusieurs mesures le long du filament." -#: src/libslic3r/PrintConfig.cpp:797 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "Grille" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1846 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 msgid "Group manipulation" msgstr "Manipulation d'un groupe" -#: src/libslic3r/PrintConfig.cpp:805 +#: src/slic3r/GUI/Preferences.cpp:137 +msgid "GUI" +msgstr "GUI" + +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "Gyroïde" -#: src/slic3r/GUI/Tab.cpp:2775 +#: src/slic3r/GUI/Tab.cpp:2921 msgid "has the following unsaved changes:" msgstr "a les changements suivants non-enregistrés :" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "Diamètre de la tête" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "La pénétration de la tête ne doit pas être supérieure à la largeur de la tête." -#: src/libslic3r/PrintConfig.cpp:822 +#: src/libslic3r/PrintConfig.cpp:869 msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Température du plateau chauffant pour la première couche. Mettez ceci à zéro pour désactiver les commandes de contrôle de température du plateau dans la sortie." -#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Hauteur" -#: src/libslic3r/GCode/PreviewData.cpp:396 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "Hauteur (mm)" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts." msgstr "Hauteur de la jupe exprimée en couches. Mettez une valeur élevée pour utiliser la jupe comme un bouclier contre les flux d'airs." -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "Hauteur de l'affichage" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 msgid "Height range Modifier" msgstr "Modificateur de la zone de hauteur" -#: src/slic3r/GUI/GLCanvas3D.cpp:3650 src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Height ranges" msgstr "Zones de hauteur" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:251 msgid "Heights at which a filament change is to occur." msgstr "Hauteurs auxquelles le changement de filament doit se produire." -#: src/slic3r/GUI/ConfigWizard.cpp:300 -#, c-format +#: src/slic3r/GUI/ConfigWizard.cpp:433 +#, possible-c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Bonjour, bienvenu dans %s ! Ce %s vous aide à la configuration initiale ; juste quelques paramètres et vous serez prêt à imprimer." -#: src/libslic3r/PrintConfig.cpp:2976 +#: src/libslic3r/PrintConfig.cpp:3350 msgid "Help" msgstr "Aide" -#: src/libslic3r/PrintConfig.cpp:2982 +#: src/libslic3r/PrintConfig.cpp:3356 msgid "Help (FFF options)" msgstr "Aide (options FFF)" -#: src/libslic3r/PrintConfig.cpp:2987 +#: src/libslic3r/PrintConfig.cpp:3361 msgid "Help (SLA options)" msgstr "Aide (options SLA)" -#: src/slic3r/GUI/WipeTowerDialog.cpp:225 +#: src/slic3r/GUI/WipeTowerDialog.cpp:254 msgid "Here you can adjust required purging volume (mm³) for any given pair of tools." msgstr "Ici vous pouvez ajuster le volume de purge nécessaire (mm³) pour une paire d'outils donnée." -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "Courant de l'extrudeur élevé lors du changement de filament" -#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806 +#: src/slic3r/GUI/GLCanvas3D.cpp:282 +msgid "Higher print quality versus higher print speed." +msgstr "Meilleure qualité d'impression par rapport à une vitesse d'impression plus élevée." + +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "Courbe de Hilbert" -#: src/slic3r/GUI/Plater.cpp:873 +#: src/slic3r/GUI/Plater.cpp:1039 msgid "Hold Shift to Slice & Export G-code" msgstr "Maintenez la touche Majuscule pour Trancher et Exporter le G-code" -#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "Profondeur du trou" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "Diamètre du trou" + +#: src/slic3r/GUI/Plater.cpp:2744 +msgid "Hollow" +msgstr "Évider" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" +msgstr "Évider et percer" + +#: src/libslic3r/PrintConfig.cpp:2901 +msgid "Hollow out a model to have an empty interior" +msgstr "Évider un modèle pour avoir un intérieur vide" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "Évider cet objet" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 +#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 +#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 +#: src/libslic3r/PrintConfig.cpp:2926 +msgid "Hollowing" +msgstr "Évidement" + +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Hollowing accuracy" +msgstr "Précision" + +#: src/slic3r/GUI/Plater.cpp:2910 +msgid "Hollowing cancelled." +msgstr "Évidement annulé." + +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Hollowing closing distance" +msgstr "Distance de fermeture" + +#: src/slic3r/GUI/Plater.cpp:2911 +msgid "Hollowing done." +msgstr "Évidement terminé." + +#: src/slic3r/GUI/Plater.cpp:2913 +msgid "Hollowing failed." +msgstr "L'évidement a échoué." + +#: src/libslic3r/PrintConfig.cpp:2928 +msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." +msgstr "L'Évidement se fait en deux temps : tout d'abord, un intérieur fictif est calculé plus profondément (décalage plus distance de fermeture) dans l'objet puis il est ré-augmenté jusqu'au décalage spécifié. Une distance de fermeture plus importante rend l'intérieur plus rond. À zéro, l'intérieur sera très semblable à l'extérieur." + +#: src/libslic3r/SLAPrintSteps.cpp:41 +msgid "Hollowing model" +msgstr "Évidement du modèle" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +msgid "Hollowing parameter change" +msgstr "Modification des paramètres d'évidement" + +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Hollowing thickness" +msgstr "Épaisseur de la paroi" + +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Nid d'abeille" -#: src/slic3r/GUI/Tab.cpp:1013 +#: src/slic3r/GUI/Tab.cpp:1066 msgid "Horizontal shells" msgstr "Coques horizontales" -#: src/libslic3r/PrintConfig.cpp:209 +#: src/libslic3r/PrintConfig.cpp:235 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Largeur horizontale de la bordure qui sera imprimée autour de chaque objet sur la première couche." -#: src/slic3r/GUI/PrintHostDialogs.cpp:151 +#: src/slic3r/GUI/PrintHostDialogs.cpp:152 msgid "Host" msgstr "L'Hôte" -#: src/libslic3r/PrintConfig.cpp:1267 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "Type d'hôte" @@ -3042,768 +3302,810 @@ msgstr "Type d'hôte" msgid "Hostname" msgstr "Nom d'hôte" -#: src/libslic3r/PrintConfig.cpp:81 +#: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" msgstr "Nom d'hôte, IP ou URL" -#: src/slic3r/GUI/Tab.cpp:136 -msgid "" -"Hover the cursor over buttons to find more information \n" -"or click this button." -msgstr "" -"Passez le curseur au dessus des boutons pour obtenir plus d'informations\n" -"ou cliquez sur ce bouton." +#: src/slic3r/GUI/Tab.cpp:141 +msgid "Hover the cursor over buttons to find more information \nor click this button." +msgstr "Passez le curseur au dessus des boutons pour obtenir plus d'informations\nou cliquez sur ce bouton." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2803 msgid "How far should the pad extend around the contained geometry" msgstr "Jusqu'où le socle doit-il s'étendre autour de la géométrie contenue" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2892 msgid "How much should the tiny connectors penetrate into the model body." msgstr "À quelle profondeur les petits connecteurs doivent-ils pénétrer dans le corps du modèle." -#: src/libslic3r/PrintConfig.cpp:2380 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "How much the pinhead has to penetrate the model surface" msgstr "Niveau de pénétration de l'épingle dans la surface du modèle" -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/libslic3r/PrintConfig.cpp:2746 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "A quel point les supports devraient soutenir l'objet supporté. Si la fonction \"Socle autour de l'objet\" est activée, cette valeur est ignorée." -#: src/libslic3r/PrintConfig.cpp:95 +#: src/libslic3r/PrintConfig.cpp:111 msgid "HTTPS CA File" msgstr "HTTPS CA Fichier" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "Le fichier HTTPS CA est optionnel. Il est uniquement requis si vous utilisez le HTTPS avec un certificat auto-signé." -#: src/slic3r/GUI/Tab.cpp:1773 -#, c-format -msgid "" -"HTTPS CA File:\n" -" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" -" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "" -"Fichier HTTPS CA :\n" -"\tDans ce système, %s utilise des certificats HTTPS issus du système Magasin de Certificats ou Trousseau.\n" -"\tPour utiliser un fichier CA personnalisé, veuillez importer votre fichier CA dans le Magasin de Certificats / Trousseau." +#: src/slic3r/GUI/Tab.cpp:1755 +#, possible-c-format +msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "Fichier HTTPS CA :\n\tDans ce système, %s utilise des certificats HTTPS issus du système Magasin de Certificats ou Trousseau.\n\tPour utiliser un fichier CA personnalisé, veuillez importer votre fichier CA dans le Magasin de Certificats / Trousseau." -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:226 msgid "Icon size in a respect to the default size" msgstr "Taille de l'icône par rapport à la taille par défaut" -#: src/slic3r/GUI/PrintHostDialogs.cpp:148 +#: src/slic3r/GUI/PrintHostDialogs.cpp:149 msgid "ID" msgstr "ID" -#: src/libslic3r/PrintConfig.cpp:1787 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Si cette case est cochée, les supports seront générés automatiquement en fonction de la valeur seuil de surplomb. Si cette case n'est pas cochée, les supports seront générés uniquement dans les volumes \"Générateur de supports\"." -#: src/slic3r/GUI/ConfigWizard.cpp:413 -#, c-format +#: src/slic3r/GUI/ConfigWizard.cpp:772 +#, possible-c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si activé, %s vérifie en ligne l'existence de nouvelles versions de Slic3r PE. Lorsqu'une nouvelle version est disponible, une notification est affichée au démarrage suivant de l'application (jamais pendant l'utilisation du programme). Ceci est uniquement un mécanisme de notification, aucune installation automatique n'est faite." -#: src/slic3r/GUI/ConfigWizard.cpp:423 -#, c-format +#: src/slic3r/GUI/ConfigWizard.cpp:782 +#, possible-c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Si activé, %s télécharge les mises à jours des préréglages système intégrés en arrière-plan. Ces mises à jour sont téléchargées dans un répertoire temporaire séparé. Lorsqu'une nouvelle version de préréglages est disponible, elle est proposée au démarrage de l'application." -#: src/libslic3r/PrintConfig.cpp:1774 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." msgstr "Si ceci est activé, tous les extrudeurs qui impriment seront positionnés sur la bordure avant du lit d'impression au début de l'impression." -#: src/slic3r/GUI/Preferences.cpp:63 +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "Si activé, permet à la commande Recharger à partir du disque de rechercher et de charger automatiquement les fichiers lorsqu'elle est invoquée.\nSi non activée, la commande Recharger à partir du disque demandera de sélectionner chaque fichier à l'aide d'une boîte de dialogue d'ouverture de fichier." + +#: src/slic3r/GUI/Preferences.cpp:75 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." +msgstr "Si activé, permet à la commande Recharger à partir du disque de rechercher et de charger automatiquement les fichiers lorsqu'elle est invoquée." + +#: src/slic3r/GUI/Preferences.cpp:66 msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si activé, PrusaSlicer vérifie l'existence de ses nouvelles versions en ligne . Lorsqu'une nouvelle version est disponible, une notification est affichée au prochain démarrage de l'application (jamais pendant l'utilisation du programme). Ceci est uniquement un mécanisme de notification, aucune installation automatique n'est faite." -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:84 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Si activé, Slic3r télécharge les mises à jours des préréglages système intégrés en arrière-plan. Ces mises à jour sont téléchargées dans un répertoire temporaire séparé. Lorsqu'une nouvelle version de préréglages est disponible, elle est proposée au démarrage de l'application." -#: src/slic3r/GUI/Preferences.cpp:105 +#: src/slic3r/GUI/Preferences.cpp:108 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Si ceci est activé, la scène 3D sera affichée avec la résolution Retina. Si vous rencontrez des problèmes de performance 3D, le fait de désactiver cette option vous aidera peut-être." -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Si elle est activée, la tour de nettoyage ne sera pas imprimée sur des couches sans changement d'outil. Sur les couches avec un changement d'outil, l'extrudeur se déplacera vers le bas pour imprimer la tour de nettoyage. C'est à l'utilisateur de s'assurer qu'il n'y a pas de collision avec l'impression." -#: src/slic3r/GUI/Preferences.cpp:112 +#: src/slic3r/GUI/Preferences.cpp:131 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "Si activé, utilise la caméra libre. Si non activé, utilise la caméra contrainte." + +#: src/slic3r/GUI/Preferences.cpp:123 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Si activé, utilise la l'appareil photo en perspective. Si n'est pas activé, utilise l'appareil photo en vue orthographique." -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:149 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Si activé, vous pouvez changer la taille des icônes de la barre d'outils manuellement." -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "If estimated layer time is below ~%1%s, fan will run at %2%%% and print speed will be reduced so that no less than %3%s are spent on that layer (however, speed will never be reduced below %4%mm/s)." msgstr "Si le temps de couche estimé est inférieur à ~%1%s, le ventilateur tournera à %2%%% et la vitesse d'impression sera réduite pour qu'au moins %3%s soient passées sur cette couche (cependant, la vitesse ne sera jamais réduite en-dessous de %4%mm/s)." -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "If estimated layer time is greater, but still below ~%1%s, fan will run at a proportionally decreasing speed between %2%%% and %3%%%." msgstr "Si le temps estimé pour la couche est supérieur, mais cependant inférieur à ~%1%s, le ventilateur tournera à une vitesse proportionnellement décroissante entre %2%%% et %3%%%." -#: src/libslic3r/PrintConfig.cpp:853 +#: src/libslic3r/PrintConfig.cpp:901 msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds." msgstr "Si exprimée avec une valeur absolue en mm/s, cette vitesse sera appliquée à tous les déplacements d'impression de la première couche, quel que soit leur type. Si exprimée comme un pourcentage (par exemple 40%), cela modulera la vitesse par défaut." -#: src/libslic3r/PrintConfig.cpp:540 +#: src/libslic3r/PrintConfig.cpp:573 msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds." msgstr "Si le temps d'impression estimé de la couche est inférieur à ce nombre de secondes, le ventilateur sera activé et sa vitesse calculée par interpolation des vitesses minimum et maximum." -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value." msgstr "Si le temps d'impression estimé de la couche est inférieur à ce nombre de secondes, la vitesse des déplacements d'impression sera réduite afin d'atteindre cette valeur." -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:567 msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS." msgstr "Si ceci est activé, le ventilateur ne sera jamais désactivé et sera maintenu au moins à sa vitesse minimum. Utile pour le PLA, mais risqué pour l'ABS." -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "If this is enabled, Slic3r will auto-center objects around the print bed center." msgstr "Si ceci est activé, Slic3r centrera automatique les objets autour du centre du plateau d'impression." -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code." msgstr "Si ceci est activé, Slic3r va pré-calculer les objets dès qu'ils sont chargés pour gagner du temps lors de l'export du G-code." -#: src/slic3r/GUI/Preferences.cpp:38 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files." msgstr "Si ceci est activé, Slic3r affichera le dernier répertoire de sortie au lieu de celui contenant les fichiers d'entrée." -#: src/libslic3r/PrintConfig.cpp:1492 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered." msgstr "Si vous indiquez une valeur positive, l'axe Z est rapidement élevé à chaque rétraction. Lorsque vous utilisez plusieurs extrudeurs, seul le réglage du premier extrudeur sera pris en compte." -#: src/libslic3r/PrintConfig.cpp:1501 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers." msgstr "Si vous indiquez une valeur positive, le levage de l'axe Z ne sera déclenché qu'à partir de la valeur absolue indiquée pour l'axe Z. Vous pouvez modifier ce réglage pour éviter le levage de l'axe Z sur les premières couches." -#: src/libslic3r/PrintConfig.cpp:1510 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers." msgstr "Si vous indiquez une valeur positive, le levage de l'axe Z ne sera déclenché que jusqu'à la valeur absolue indiquée pour l'axe Z. Vous pouvez modifier ce réglage pour limiter le levage de l'axe Z aux premières couches." -#: src/libslic3r/PrintConfig.cpp:1384 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables." msgstr "Si vous voulez traiter le G-code de sortie à l'aide de scripts personnalisés, listez simplement leurs chemins absolus ici. Séparez les divers scripts avec un point virgule. Les scripts vont recevoir en premier argument le chemin absolu du fichier G-code, et ils peuvent accéder aux réglages de configuration de Slic3r en lisant des variables d'environnement." -#: src/libslic3r/PrintConfig.cpp:498 +#: src/libslic3r/PrintConfig.cpp:530 msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)." msgstr "Si le firmware de votre imprimante ne gère pas le décalage de l'extrudeur, c'est au G-code d'en tenir compte. Cette option vous permet de spécifier le décalage de chaque extrudeur par rapport au premier. Des valeurs positives sont attendues (elles seront soustraites des coordonnées XY)." -#: src/libslic3r/PrintConfig.cpp:2068 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Si votre firmware requiert des valeurs relatives pour E, cochez cette case, sinon laissez-la décochée. La plupart des firmwares utilisent des valeurs absolues." -#: src/libslic3r/PrintConfig.cpp:3096 +#: src/libslic3r/PrintConfig.cpp:3470 msgid "Ignore non-existent config files" msgstr "Ignorer les fichiers de configuration non-existants" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "Importer la &Configuration" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "Importer le &Lot de Configuration" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "Importer la Configuration depuis le &projet" -#: src/slic3r/GUI/Plater.cpp:4016 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "Importer une Configuration depuis ini/amf/3mf/gcode" + +#: src/slic3r/GUI/Plater.cpp:4616 msgid "Import Object" msgstr "Importer l'Objet" -#: src/slic3r/GUI/Plater.cpp:4020 +#: src/slic3r/GUI/Plater.cpp:4620 msgid "Import Objects" msgstr "Importer les Objets" -#: src/slic3r/Utils/FixModelByWin10.cpp:383 +#: src/slic3r/Utils/FixModelByWin10.cpp:390 msgid "Import of the repaired 3mf file failed" msgstr "Échec de l'import du fichier 3mf réparé" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importer STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:106 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 msgid "Import STL/OBJ/AMF/3MF without config, keep bed" msgstr "Importer STL/OBJ/AMF/3MF sans la configuration, garder le lit" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2416 -#, c-format +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "Importer un STL/OBJ/AMF/3MF sans configuration, conserver le plateau" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 +#, possible-c-format msgid "In this mode you can select only other %s Items%s" msgstr "Dans ce mode vous ne pouvez sélectionner que d'autres %s Items %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:132 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "Lots incompatibles :" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70 -#, c-format +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +#, possible-c-format msgid "Incompatible with this %s" msgstr "Incompatible avec ce %s" -#: src/slic3r/GUI/Plater.cpp:4091 +#: src/slic3r/GUI/Plater.cpp:4700 msgid "Increase Instances" msgstr "Augmenter les Instances" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:269 msgid "Increase/decrease edit area" msgstr "Augmenter/diminuer la zone d'édition" +#: src/slic3r/GUI/Plater.cpp:2906 +msgid "Indexing hollowed object" +msgstr "Indexation de l'objet évidé" + #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3338 -msgid "" -"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" -"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "" -"indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\n" -"\n" -"Cliquez sur l'icône CADENAS OUVERT pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." +#: src/slic3r/GUI/Tab.cpp:3242 +msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\n\nCliquez sur l'icône CADENAS OUVERT pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3334 +#: src/slic3r/GUI/Tab.cpp:3238 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indique que les paramètres sont les mêmes que les valeurs système (ou par défaut) pour le groupe d'options en cours" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3083 -msgid "" -"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" -"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." -msgstr "" -"indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\n" -"Cliquez sur l'icône FLÈCHE ARRIÈRE pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." +#: src/slic3r/GUI/Tab.cpp:3254 +msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +msgstr "indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\nCliquez sur l'icône FLÈCHE ARRIÈRE pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." -#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69 -#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439 -#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031 -#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167 -#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729 -#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780 -#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943 -#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659 -#: src/libslic3r/PrintConfig.cpp:1676 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 +#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "Remplissage" -#: src/slic3r/GUI/PresetHints.cpp:171 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "remplissage" -#: src/libslic3r/PrintConfig.cpp:972 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "Remplissage avant les périmètres" -#: src/libslic3r/PrintConfig.cpp:953 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "Extrudeur pour le remplissage" -#: src/libslic3r/PrintConfig.cpp:987 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "Chevauchement remplissage/périmètres" -#: src/libslic3r/Print.cpp:1476 +#: src/libslic3r/Print.cpp:1580 msgid "Infilling layers" msgstr "Remplissage des couches" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2424 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 msgid "Info" msgstr "Info" -#: src/libslic3r/PrintConfig.cpp:1008 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "Hérite du profil" -#: src/libslic3r/SLAPrint.cpp:707 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "Le temps d'exposition initial est en dehors des limites du profil d'imprimante." -#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318 +#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 msgid "Initial exposure time" msgstr "Temps d'exposition initial" -#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296 +#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 msgid "Initial layer height" msgstr "Hauteur de couche initiale" -#: src/slic3r/GUI/Field.cpp:155 +#: src/slic3r/GUI/Field.cpp:199 msgid "Input value is out of range" msgstr "La valeur entrée est hors plage" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "Inspecter / activer les instantanés de configuration" -#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474 -#, c-format +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 +#, possible-c-format msgid "Instance %d" msgstr "Instance %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1887 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 msgid "Instance manipulation" msgstr "Manipulation d'instance" -#: src/slic3r/GUI/wxExtensions.cpp:358 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 msgid "Instances" msgstr "Instances" -#: src/slic3r/GUI/GUI_ObjectList.cpp:934 src/slic3r/GUI/GUI_ObjectList.cpp:3346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 msgid "Instances to Separated Objects" msgstr "Instances vers les Objets Séparés" -#: src/libslic3r/PrintConfig.cpp:1886 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "Couches d'interface" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" msgstr "Boucles d'interface" -#: src/libslic3r/PrintConfig.cpp:1895 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" msgstr "Espacement du motif d'interface" -#: src/libslic3r/PrintConfig.cpp:1022 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "Coques d'interface" -#: src/libslic3r/Zipper.cpp:87 +#: src/libslic3r/Zipper.cpp:84 msgid "internal error" msgstr "erreur interne" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Remplissage interne" -#: src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:3090 msgid "Invalid data" msgstr "Donnée non valide" -#: src/slic3r/GUI/BedShapeDialog.cpp:471 src/slic3r/GUI/BedShapeDialog.cpp:520 -#: src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "Format de fichier non valide." -#: src/libslic3r/Zipper.cpp:83 +#: src/libslic3r/Zipper.cpp:80 msgid "invalid filename" msgstr "nom de fichier non valide" -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "Pénétration de Tête invalide" -#: src/libslic3r/Zipper.cpp:51 +#: src/libslic3r/Zipper.cpp:48 msgid "invalid header or archive is corrupted" msgstr "entête non valide ou archive corrompue" -#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173 +#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Entrée numérique non valide." -#: src/libslic3r/Zipper.cpp:81 +#: src/libslic3r/Zipper.cpp:78 msgid "invalid parameter" msgstr "paramètre non valide" -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "Diamètre de tête d'épingle non valide" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:94 +#: src/slic3r/GUI/AboutDialog.cpp:258 msgid "is licensed under the" msgstr "est sous licence" -#: src/slic3r/GUI/Tab.cpp:2779 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Is necessary to install a configuration update. " +msgstr "Il est nécessaire d'installer une mise à niveau de configuration." + +#: src/slic3r/GUI/Tab.cpp:2925 msgid "is not compatible with print profile" msgstr "n'est pas compatible avec le profil d'impression" -#: src/slic3r/GUI/Tab.cpp:2778 +#: src/slic3r/GUI/Tab.cpp:2924 msgid "is not compatible with printer" msgstr "n'est pas compatible avec l'imprimante" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "Isométrique" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "Vue Isométrique" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:966 msgid "It can't be deleted or modified." msgstr "Il ne peut être supprimé ou modifié." -#: src/libslic3r/PrintConfig.cpp:926 +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "It is not allowed to change the file to reload" +msgstr "Il n'est pas autorisé de modifier le fichier à recharger" + +#: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Il peut être intéressant d'augmenter le courant du moteur de l'extrudeur pendant la séquence d'échange de filament pour permettre un débit d'expulsion rapide et pour compenser la résistance lors du chargement d'un filament avec une pointe mal taillée." -#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Il est impossible d'imprimer un (des) objet(s) en plusieurs parties avec la technologie SLA." -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2225 msgid "Jerk limits" msgstr "Limites de mouvements brusques" -#: src/libslic3r/PrintConfig.cpp:1579 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "Gigue" -#: src/libslic3r/PrintConfig.cpp:533 +#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 +#: src/slic3r/GUI/DoubleSlider.cpp:1623 +msgid "Jump to height" +msgstr "Sauter à la hauteur" + +#: src/slic3r/GUI/DoubleSlider.cpp:928 +#, possible-c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "Sauter à la hauteur %s ou Définir la séquence d'extrusion pour toute l'impression" + +#: src/libslic3r/PrintConfig.cpp:566 msgid "Keep fan always on" msgstr "Garder le ventilateur toujours actif" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "Garder la partie du bas" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:309 msgid "Keep min" msgstr "Garder au minimum" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "Garder la partie du haut" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 msgid "Keyboard Shortcuts" msgstr "Raccourcis Clavier" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "Raccourcis clavier" + +#: src/libslic3r/PrintConfig.cpp:2489 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "Marquer les objets" -#: src/libslic3r/PrintConfig.cpp:2234 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "Paysage" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "Langue" -#: src/slic3r/GUI/GUI_App.cpp:755 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "Sélection de la langue" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1770 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 msgid "Last instance of an object cannot be deleted." msgstr "La dernière instance d'un objet ne peut être supprimée." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2994 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 msgid "Layer" msgstr "Couche" -#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55 +#: src/slic3r/GUI/ConfigManipulation.cpp:49 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Hauteur de couche" -#: src/libslic3r/Print.cpp:1332 +#: src/libslic3r/Print.cpp:1423 msgid "Layer height can't be greater than nozzle diameter" msgstr "La hauteur de couche ne peut pas être supérieure au diamètre de la buse" -#: src/slic3r/GUI/Tab.cpp:2260 +#: src/slic3r/GUI/Tab.cpp:2358 msgid "Layer height limits" msgstr "Limites de hauteur de couche" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "Layer height:" msgstr "Hauteur de couche :" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2109 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 msgid "Layer range Settings to modify" msgstr "Réglages de zone de Couche à modifier" -#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620 -#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844 -#: src/libslic3r/PrintConfig.cpp:1889 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "couches" -#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 +#: src/slic3r/GUI/Tab.cpp:3585 msgid "Layers" msgstr "Couches" -#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 msgid "Layers and perimeters" msgstr "Couches et périmètres" -#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68 -#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56 -#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381 -#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446 -#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026 -#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371 -#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987 -#: src/libslic3r/PrintConfig.cpp:2044 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 +#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "Couches et Périmètres" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "Barre de défilement des couches" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 msgid "Layers Slider Shortcuts" msgstr "Raccourcis du Curseur de Couches" -#. TRN To be shown in Print Settings "Bottom solid layers" -#: rc/libslic3r/PrintConfig.cpp:149 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Bottom" msgstr "Du bas" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/libslic3r/PrintConfig.cpp:2043 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Top" msgstr "Du haut" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "Gauche" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Left click" msgstr "Clic gauche" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:242 msgid "Left mouse button:" msgstr "Bouton gauche de souris :" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "Vue Gauche" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:259 msgid "Legend" msgstr "Légende" -#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "Longueur" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:318 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Longueur du tube de refroidissement pour limiter l'espace pour les déplacements de refroidissement à l'intérieur de celui-ci." #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:124 +#: src/slic3r/GUI/AboutDialog.cpp:129 msgid "License agreements of all following programs (libraries) are part of application license agreement" msgstr "Les contrats de licence de tous les programmes suivants (bibliothèques) font partie de la mise en oeuvre du contrat de licence" -#: src/libslic3r/PrintConfig.cpp:1491 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "Levage de l'axe Z" -#: src/libslic3r/PrintConfig.cpp:801 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "Ligne" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1050 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 msgid "Load" msgstr "Charger" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "Charger un modèle" -#: src/libslic3r/PrintConfig.cpp:3116 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Charger et stocker les réglages dans le répertoire donné. Ceci est utile pour conserver différents profils ou inclure des configurations depuis un stockage réseau." -#: src/libslic3r/PrintConfig.cpp:3100 +#: src/libslic3r/PrintConfig.cpp:3474 msgid "Load config file" msgstr "Charger le fichier de configuration" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 msgid "Load Config from .ini/amf/3mf/gcode" msgstr "Charger la Configuration depuis .ini/amf/3mf/gcode" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 msgid "Load Config from .ini/amf/3mf/gcode and merge" msgstr "Charger la Configuration depuis .ini/amf/3mf/gcode et fusionner" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Charger une configuration à partir d'un ini/amf/3mf/gcode et fusionner" + +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "Charger la configuration depuis le fichier du projet" -#: src/libslic3r/PrintConfig.cpp:3101 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Charger la configuration depuis le fichier spécifié. Ceci peut être utilisé plusieurs fois afin de charger des options depuis plusieurs fichiers." -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "Charger le fichier de configuration exporté" -#: src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1375 msgid "Load File" msgstr "Charger le Fichier" -#: src/slic3r/GUI/Plater.cpp:1275 +#: src/slic3r/GUI/Plater.cpp:1379 msgid "Load Files" msgstr "Charger les Fichiers" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 msgid "Load Part" msgstr "Charger une Partie" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "Charger les préréglages à partir d'un lot" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4588 msgid "Load Project" msgstr "Charger le Projet" -#: src/slic3r/GUI/BedShapeDialog.cpp:97 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "Charger une forme depuis un STL..." -#: src/slic3r/GUI/BedShapeDialog.cpp:181 src/slic3r/GUI/BedShapeDialog.cpp:249 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "Charger..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:235 +#: src/slic3r/GUI/WipeTowerDialog.cpp:264 msgid "loaded" msgstr "chargé" -#: src/slic3r/GUI/Plater.cpp:1782 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "Loaded" msgstr "Chargé" -#: src/slic3r/GUI/Plater.cpp:1590 +#: src/slic3r/GUI/Plater.cpp:2257 msgid "Loading" msgstr "Chargement" -#: src/slic3r/GUI/GUI_App.cpp:407 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "Chargement d'un mode de vue" -#: src/slic3r/GUI/GUI_App.cpp:399 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "Chargement de préréglages actuels" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:378 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Loading repaired model" msgstr "Chargement du modèle réparé" -#: src/libslic3r/PrintConfig.cpp:575 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "Vitesse de chargement" -#: src/libslic3r/PrintConfig.cpp:583 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "Vitesse de chargement au départ" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:63 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:106 msgid "Local coordinates" msgstr "Coordonnées locaux" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:49 msgid "Lock supports under new islands" msgstr "Verrouiller les supports sous de nouveaux îlots" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3236 msgid "LOCKED LOCK" msgstr "VERROU VERROUILLE" -#: src/slic3r/GUI/Tab.cpp:3360 +#: src/slic3r/GUI/Tab.cpp:3264 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "L'icône VERROU VERROUILLE indique que les réglages sont les mêmes que les valeurs système (ou par défaut) pour le groupe d'options actuel" -#: src/slic3r/GUI/Tab.cpp:3376 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "L'icône VERROU VERROUILLÉ indique que la valeur est la même que la valeur système (ou par défaut)." -#: src/libslic3r/PrintConfig.cpp:3119 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Logging level" msgstr "Niveau d'enregistrement" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "Boucles (minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 msgid "Lower Layer" msgstr "Couche Inférieure" -#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209 -#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087 -#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110 -#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132 -#: src/libslic3r/PrintConfig.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "Limites de la machine" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 msgid "Main Shortcuts" msgstr "Principaux Raccourcis" -#: src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/Plater.cpp:168 msgid "Manifold" msgstr "Variété" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:57 msgid "Manual editing" msgstr "Édition manuelle" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 msgid "Masked SLA file exported to %1%" msgstr "Fichier SLA masqué exporté vers %1%" -#: src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:754 msgid "Mate&rial Settings Tab" msgstr "Onglet Réglage&s Matériau" -#: src/slic3r/GUI/Tab.cpp:3300 +#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 msgid "Material" msgstr "Matériau" -#: src/slic3r/GUI/Tab.hpp:391 +#: src/slic3r/GUI/Tab.hpp:415 msgid "Material Settings" msgstr "Réglages Matériau" -#: src/slic3r/GUI/Plater.cpp:140 +#: src/slic3r/GUI/Plater.cpp:165 msgid "Materials" msgstr "Matériaux" -#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "Maximum" -#: src/libslic3r/PrintConfig.cpp:2470 +#: src/libslic3r/PrintConfig.cpp:2725 msgid "Max bridge length" msgstr "Longueur maximum de pont" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2813 msgid "Max merge distance" msgstr "Distance maximum de fusion" -#: src/libslic3r/PrintConfig.cpp:2479 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max pillar linking distance" msgstr "Distance maximum de jonction de pilier" -#: src/libslic3r/PrintConfig.cpp:64 +#: src/libslic3r/PrintConfig.cpp:80 msgid "Max print height" msgstr "Hauteur maximale d'impression" -#: src/libslic3r/PrintConfig.cpp:1172 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "Vitesse d'impression maximale" @@ -3811,167 +4113,167 @@ msgstr "Vitesse d'impression maximale" msgid "max PrusaSlicer version" msgstr "Version maximum de PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:1203 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "Pente volumétrique négative maximum" -#: src/libslic3r/PrintConfig.cpp:1192 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "Pente volumétrique positive maximum" -#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "Vitesse volumétrique maximale" -#: src/libslic3r/PrintConfig.cpp:2167 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "Distance maximale de pont" -#: src/libslic3r/PrintConfig.cpp:2193 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "Distance maximale entre les supports sur les sections de remplissage épars." -#: src/libslic3r/PrintConfig.cpp:1099 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "Accélérations maximum E" -#: src/libslic3r/PrintConfig.cpp:1105 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "Accélération maximum de l'axe E" -#: src/libslic3r/PrintConfig.cpp:1102 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "Accélération maximum de l'axe X" -#: src/libslic3r/PrintConfig.cpp:1103 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "Accélération maximum de l'axe Y" -#: src/libslic3r/PrintConfig.cpp:1104 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Accélération maximum de l'axe Z" -#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" msgstr "Accélération maximum lors de l'extrusion" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" msgstr "Accélération maximum lors de l'extrusion (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "Accélération maximum lors de la rétraction" -#: src/libslic3r/PrintConfig.cpp:1169 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "Accélération maximum lors de la rétraction (M204 T)" -#: src/libslic3r/PrintConfig.cpp:1096 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "Accélérations maximum X" -#: src/libslic3r/PrintConfig.cpp:1097 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Accélérations maximum Y" -#: src/libslic3r/PrintConfig.cpp:1098 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Accélérations maximum Z" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2218 msgid "Maximum accelerations" msgstr "Accélérations maximum" -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 msgid "Maximum exposure time" msgstr "Temps d'exposition maximum" -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" -msgstr "Alimentation maximum E" +msgstr "Vitesse d'avance maximum en E" -#: src/libslic3r/PrintConfig.cpp:1087 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" -msgstr "Alimentation maximum de l'axe E" +msgstr "Vitesse d'avance maximum de l'axe E" -#: src/libslic3r/PrintConfig.cpp:1084 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" -msgstr "Alimentation maximum de l'axe X" +msgstr "Vitesse d'avance maximum de l'axe X" -#: src/libslic3r/PrintConfig.cpp:1085 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" -msgstr "Alimentation maximum de l'axe Y" +msgstr "Vitesse d'avance maximum de l'axe Y" -#: src/libslic3r/PrintConfig.cpp:1086 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" -msgstr "Alimentation maximum de l'axe Z" +msgstr "Vitesse d'avance maximum de l'axe Z" -#: src/libslic3r/PrintConfig.cpp:1078 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" -msgstr "Alimentation maximum X" +msgstr "Vitesse d'avance maximum en X" -#: src/libslic3r/PrintConfig.cpp:1079 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" -msgstr "Alimentation maximum Y" +msgstr "Vitesse d'avance maximum en Y" -#: src/libslic3r/PrintConfig.cpp:1080 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" -msgstr "Alimentation maximum Z" +msgstr "Vitesse d'avance maximum en Z" -#: src/slic3r/GUI/Tab.cpp:2165 +#: src/slic3r/GUI/Tab.cpp:2213 msgid "Maximum feedrates" -msgstr "Alimentations maximum" +msgstr "Vitesses d'avance maximum" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 msgid "Maximum initial exposure time" msgstr "Temps d'exposition initiale Maximum" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Mouvement brusque maximum E" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "Mouvement brusque maximum de l'axe E" -#: src/libslic3r/PrintConfig.cpp:1120 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "Mouvement brusque maximum de l'axe X" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Mouvement brusque maximum de l'axe Y" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Mouvement brusque maximum de l'axe Z" -#: src/libslic3r/PrintConfig.cpp:1114 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Mouvement brusque maximum X" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Mouvement brusque maximum Y" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Mouvement brusque maximum Z" -#: src/libslic3r/PrintConfig.cpp:566 +#: src/libslic3r/PrintConfig.cpp:598 msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Vitesse volumétrique maximale autorisée pour ce filament. Limite la vitesse volumétrique d'une impression au minimum des vitesses volumétriques d'impression et de filament. Mettez à zéro pour enlever la limite." -#: src/libslic3r/PrintConfig.cpp:3053 +#: src/libslic3r/PrintConfig.cpp:3427 msgid "Merge" msgstr "Fusionner" -#: src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Le fait de fusionner des ponts ou des piliers avec d'autres piliers peut augmenter le rayon. Zéro signifie aucune augmentation, un signifie augmentation totale." -#: src/libslic3r/SLAPrint.cpp:71 +#: src/libslic3r/SLAPrintSteps.cpp:62 msgid "Merging slices and calculating statistics" msgstr "Fusion des tranches et calcul des statistiques" @@ -3979,7 +4281,7 @@ msgstr "Fusion des tranches et calcul des statistiques" msgid "Mesh repair failed." msgstr "Échec de la réparation du maillage." -#: src/slic3r/GUI/wxExtensions.cpp:3514 +#: src/slic3r/GUI/DoubleSlider.cpp:1607 msgid "Message for pause print on current layer (%1% mm)." msgstr "Message pour mettre en pause l'impression sur la couche en cours (%1% mm)." @@ -3987,11 +4289,11 @@ msgstr "Message pour mettre en pause l'impression sur la couche en cours (%1% mm msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" msgstr "Les messages avec une sévérité inférieure ou égale au loglevel seront imprimés. 0 : identification, 1 : débogage, 3 : avertissement , 4 : erreur, 5 : fatal" -#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Minimum" -#: src/libslic3r/PrintConfig.cpp:1233 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "Vitesse d'impression minimale" @@ -3999,195 +4301,239 @@ msgstr "Vitesse d'impression minimale" msgid "min PrusaSlicer version" msgstr "Version minimum de PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:2507 +#: src/libslic3r/PrintConfig.cpp:2763 msgid "Minimal distance of the support points" msgstr "Distance minimale des points de support" -#: src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "Longueur minimale d'extrusion de filament" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:54 msgid "Minimal points distance" msgstr "Distance minimale des points" -#: src/libslic3r/PrintConfig.cpp:635 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "Purge minimale sur la tour de nettoyage" -#: src/libslic3r/PrintConfig.cpp:1442 +#: src/libslic3r/PrintConfig.cpp:177 +msgid "Minimum bottom shell thickness" +msgstr "Épaisseur minimale de la coque inférieure" + +#: src/slic3r/GUI/PresetHints.cpp:335 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "L'épaisseur minimale de la coque inférieure est de %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1512 msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Résolution minimale pour les détails, utilisée pour simplifier le fichier d'entrée afin d'accélérer le découpage et de réduire l'utilisation de la mémoire. Les modèles haute-résolution possèdent souvent plus de détails que ce que les imprimantes peuvent produire. Mettez à zéro pour désactiver toute simplification et utiliser la résolution complète de l'entrée." -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 msgid "Minimum exposure time" msgstr "Temps d'exposition minimum" -#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" -msgstr "Alimentation minimum lors de l'extrusion" +msgstr "Vitesse d'avance minimum lors de l'extrusion" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" -msgstr "Alimentation minimum lors de l'extrusion (M205 S)" +msgstr "Vitesse d'avance minimum lors de l'extrusion (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2182 +#: src/slic3r/GUI/Tab.cpp:2230 msgid "Minimum feedrates" -msgstr "Alimentations minimum" +msgstr "Vitesses d'avance minimum" -#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 +#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 msgid "Minimum initial exposure time" msgstr "Temps d'exposition initiale minimum" -#: src/libslic3r/PrintConfig.cpp:1452 +#: src/slic3r/GUI/Tab.cpp:1071 +msgid "Minimum shell thickness" +msgstr "Épaisseur de coque minimale" + +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "Épaisseur minimale d'une coque supérieure/inférieure" + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "Épaisseur minimale de la coque supérieure" + +#: src/slic3r/GUI/PresetHints.cpp:316 +msgid "Minimum top shell thickness is %1% mm." +msgstr "L'épaisseur minimale de la coque supérieure est de %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "Trajet minimal après une rétraction" -#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" -msgstr "Alimentation minimum en déplacement" +msgstr "Vitesse d'avance minimum en déplacement" -#: src/libslic3r/PrintConfig.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" -msgstr "Alimentation minimum en déplacement (M205 T)" +msgstr "Vitesse d'avance minimum en déplacement (M205 T)" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Minimum wall thickness of a hollowed model." +msgstr "Épaisseur de paroi minimale d'un modèle évidé." + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum width of features to maintain when doing elephant foot compensation." +msgstr "Largeur minimum des caractéristiques à maintenir lorsque vous pratiquez une compensation de pied d'éléphant." + +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror" msgstr "Symétrie" -#: src/libslic3r/PrintConfig.cpp:2320 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "Symétriser horizontalement" -#: src/slic3r/GUI/GLCanvas3D.cpp:1711 +#: src/slic3r/GUI/GLCanvas3D.cpp:2075 msgid "Mirror Object" msgstr "Symétriser l'Objet" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror the selected object" msgstr "Symétriser l'objet sélectionné" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Mirror the selected object along the X axis" msgstr "Symétriser l'objet sélectionné selon l'axe X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Mirror the selected object along the Y axis" msgstr "Symétriser l'objet sélectionné selon l'axe Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Mirror the selected object along the Z axis" msgstr "Symétriser l'objet sélectionné selon l'axe Z" -#: src/libslic3r/PrintConfig.cpp:2327 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "Symétriser verticalement" -#: src/slic3r/Utils/OctoPrint.cpp:69 -#, c-format +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 +#, possible-c-format msgid "Mismatched type of print host: %s" msgstr "Mauvais appariement de l'hôte d'impression : %s" -#: src/libslic3r/GCode/PreviewData.cpp:176 +#: src/libslic3r/ExtrusionEntity.cpp:323 msgid "Mixed" msgstr "Mélangé" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2482 msgid "ml" msgstr "ml" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118 -#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84 -#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210 -#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293 -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353 -#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484 -#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680 -#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227 -#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263 -#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454 -#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503 -#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521 -#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612 -#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898 -#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125 -#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179 -#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297 -#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381 -#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454 -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483 -#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510 -#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539 -#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 +#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 +#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 +#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 +#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 +#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 +#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 +#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 +#: src/libslic3r/PrintConfig.cpp:2909 msgid "mm" msgstr "mm" -#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" msgstr "mm (zéro pour désactiver)" -#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992 -#: src/libslic3r/PrintConfig.cpp:1797 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mm ou %" -#: src/libslic3r/PrintConfig.cpp:201 src/libslic3r/PrintConfig.cpp:577 -#: src/libslic3r/PrintConfig.cpp:585 src/libslic3r/PrintConfig.cpp:594 -#: src/libslic3r/PrintConfig.cpp:602 src/libslic3r/PrintConfig.cpp:629 -#: src/libslic3r/PrintConfig.cpp:648 src/libslic3r/PrintConfig.cpp:874 -#: src/libslic3r/PrintConfig.cpp:1001 src/libslic3r/PrintConfig.cpp:1079 -#: src/libslic3r/PrintConfig.cpp:1099 src/libslic3r/PrintConfig.cpp:1112 -#: src/libslic3r/PrintConfig.cpp:1123 src/libslic3r/PrintConfig.cpp:1176 -#: src/libslic3r/PrintConfig.cpp:1235 src/libslic3r/PrintConfig.cpp:1363 -#: src/libslic3r/PrintConfig.cpp:1537 src/libslic3r/PrintConfig.cpp:1546 -#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:2053 +#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 +#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 +#: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 +#: src/libslic3r/PrintConfig.cpp:1050 src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1181 +#: src/libslic3r/PrintConfig.cpp:1191 src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1300 src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/PrintConfig.cpp:2154 msgid "mm/s" msgstr "mm/s" -#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856 -#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702 -#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s ou %" -#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303 -#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936 -#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134 -#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334 +#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:1661 +#: src/libslic3r/PrintConfig.cpp:1730 msgid "mm²" msgstr "mm²" -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" -#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" msgstr "Mode" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" msgstr "modèle" -#: src/slic3r/GUI/BedShapeDialog.cpp:239 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "Modèle" @@ -4195,139 +4541,162 @@ msgstr "Modèle" msgid "Model fixing" msgstr "Réparation d'un modèle" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model Repair by the Netfabb service" msgstr "Réparation d'un modèle par le service Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:406 +#: src/slic3r/Utils/FixModelByWin10.cpp:413 msgid "Model repair canceled" msgstr "Réparation du modèle annulée" -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model repair failed:" msgstr "Échec de la réparation du modèle:" -#: src/slic3r/Utils/FixModelByWin10.cpp:400 +#: src/slic3r/Utils/FixModelByWin10.cpp:407 msgid "Model repair finished" msgstr "Réparation du modèle terminée" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 msgid "Model repaired successfully" msgstr "Réparation du modèle réussie" -#: src/slic3r/GUI/Preset.cpp:207 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "modifié" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Modifier" msgstr "Modificateur" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1163 msgid "Modifiers" msgstr "Modificateurs" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2503 msgid "money/bottle" msgstr "prix/bouteille" -#: src/libslic3r/PrintConfig.cpp:719 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "€/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Mouse wheel" msgstr "Roulette de la souris" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:266 msgid "Mouse wheel:" msgstr "Roulette de la souris:" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" msgstr "Déplacer" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Move clipping plane" msgstr "Déplacer le plan de coupe" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Move current slider thumb Down" msgstr "Déplacer le curseur actuel vers le bas" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Move current slider thumb Up" msgstr "Déplacer le curseur actuel vers le haut" -#: src/slic3r/GUI/GLCanvas3D.cpp:2872 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +msgid "Move drainage hole" +msgstr "Déplacer le trou de drainage" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3538 msgid "Move Object" msgstr "Déplacer l'Objet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 msgid "Move point" msgstr "Déplacer le point" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "Déplacer la sélection de 10 mm dans la direction négative X" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "Déplacer la sélection de 10 mm dans la direction négative Y" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "Déplacer la sélection de 10 mm dans la direction positive X" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "Déplacer la sélection de 10 mm dans la direction positive Y" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 msgid "Move support point" msgstr "Déplacer un point de support" -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "Mouvement dans l'espace de la caméra" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "Pas du mouvement réglé sur 1 mm" + +#: src/libslic3r/PrintConfig.cpp:2201 msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Les imprimantes multi-matériaux peuvent avoir besoin de préparer ou de purger leurs extrudeurs lors d'un changement d'outil. Extruder le matériau en excès dans la tour de nettoyage." -#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769 +#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 msgid "Multi-part object detected" msgstr "Objet multi-pièces détecté" -#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436 -#, c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 +#, possible-c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Plusieurs %s équipements ont été détectés. Veuillez n'en connecter qu'un seul à la fois pour le processus de flash." -#: src/slic3r/GUI/Tab.cpp:1118 +#: src/slic3r/GUI/Tab.cpp:1181 msgid "Multiple Extruders" msgstr "Extrudeurs Multiples" -#: src/slic3r/GUI/Plater.cpp:2414 -msgid "" -"Multiple objects were loaded for a multi-material printer.\n" -"Instead of considering them as multiple objects, should I consider\n" -"these files to represent a single object having multiple parts?" -msgstr "" -"Plusieurs fichiers ont été chargés pour une impression multi-matériaux.\n" -"Au lieu de les considérer en tant que plusieurs objets, dois-je considérer\n" -"ces fichiers en tant que un seul objet ayant plusieurs pièces ?" +#: src/slic3r/GUI/Plater.cpp:2394 +msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" +msgstr "Plusieurs fichiers ont été chargés pour une impression multi-matériaux.\nAu lieu de les considérer en tant que plusieurs objets, dois-je considérer\nces fichiers en tant que un seul objet ayant plusieurs pièces ?" -#: src/libslic3r/PrintConfig.cpp:3050 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Multiply copies by creating a grid." msgstr "Multiplier les copies en créant une grille." -#: src/libslic3r/PrintConfig.cpp:3045 +#: src/libslic3r/PrintConfig.cpp:3419 msgid "Multiply copies by this factor." msgstr "Multiplier les copies par ce facteur." -#: src/slic3r/GUI/Field.cpp:139 +#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:176 +#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nom" -#: src/libslic3r/PrintConfig.cpp:1418 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter." msgstr "Nom de la variante d'imprimante. Par exemple, la variante d'imprimante peut être différenciée par un diamètre de buse." -#: src/libslic3r/PrintConfig.cpp:1412 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "Nom du fabriquant de l'imprimante." -#: src/libslic3r/PrintConfig.cpp:1009 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "Nom du profil, duquel hérite ce profil." -#: src/libslic3r/PrintConfig.cpp:1560 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "Le plus proche" @@ -4335,36 +4704,40 @@ msgstr "Le plus proche" msgid "Network lookup" msgstr "Recherche réseau" -#: src/slic3r/GUI/Plater.cpp:2056 +#: src/slic3r/GUI/Plater.cpp:2135 msgid "New Project" msgstr "Nouveau Projet" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 -#, c-format +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 +msgid "New project, clear plater" +msgstr "Nouveau projet, libérer le plateau" + +#: src/slic3r/GUI/UpdateDialogs.cpp:38 +#, possible-c-format msgid "New version of %s is available" msgstr "Une nouvelle version de %s est disponible" -#: src/slic3r/GUI/UpdateDialogs.cpp:47 +#: src/slic3r/GUI/UpdateDialogs.cpp:45 msgid "New version:" msgstr "Nouvelle version :" -#: src/slic3r/GUI/GLCanvas3D.cpp:3750 +#: src/slic3r/GUI/GLCanvas3D.cpp:4722 msgid "Next Redo action: %1%" msgstr "Prochaine action Répéter : %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:3718 +#: src/slic3r/GUI/GLCanvas3D.cpp:4690 msgid "Next Undo action: %1%" msgstr "Prochaine action Annuler : %1%" -#: src/libslic3r/PrintConfig.cpp:912 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "Aucune extrusion" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:422 msgid "No pad can be generated for this model with the current configuration" msgstr "Aucun socle ne peut être généré pour ce modèle avec la configuration actuelle" -#: src/slic3r/GUI/MainFrame.cpp:635 +#: src/slic3r/GUI/MainFrame.cpp:786 msgid "No previously sliced file." msgstr "Aucun fichier précédemment découpé." @@ -4372,160 +4745,175 @@ msgstr "Aucun fichier précédemment découpé." msgid "NO RAMMING AT ALL" msgstr "PAS D'EXPULSION DU TOUT" -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Sans couches dispersées (EXPERIMENTAL)" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2765 msgid "No support points will be placed closer than this threshold." msgstr "Aucun point de support ne sera positionné plus près que ce seuil." -#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422 -#: src/libslic3r/GCode/PreviewData.cpp:162 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates aviable" +msgstr "Aucune mise à jour disponible" + +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Aucun" -#: src/slic3r/GUI/Tab.cpp:2152 +#: src/slic3r/GUI/Tab.cpp:2199 msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1073 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "normal mode" msgstr "mode normal" -#: src/libslic3r/Zipper.cpp:49 +#: src/libslic3r/Zipper.cpp:46 msgid "not a ZIP archive" msgstr "n'est pas une archive ZIP" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 msgid "Not found: " msgstr "Introuvable :" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/GUI/DoubleSlider.cpp:985 +msgid "Note" +msgstr "Remarque" + +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "Remarque : AstroBox en version 1.1.0 minimum est requis." + +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." msgstr "Remarque : FlashAir avec firmware 2.00.02 ou plus récent avec une fonction de téléchargement activée est nécessaire." -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Note : une version d'Octoprint supérieure ou égale à 1.1.0 est requise." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Remarque: certains raccourcis ne fonctionnent qu'en mode de (non-)édition." -#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194 -#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577 -#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986 -#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080 -#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329 +#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 +#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 +#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 +#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 +#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 msgid "Notes" msgstr "Notes" -#: src/slic3r/GUI/GUI.cpp:277 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 msgid "Notice" msgstr "Remarque" -#: src/slic3r/GUI/ConfigWizard.cpp:118 +#: src/slic3r/GUI/ConfigWizard.cpp:218 msgid "nozzle" msgstr "buse" -#: src/libslic3r/PrintConfig.cpp:1261 +#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Diamètre de la buse" -#: src/slic3r/GUI/ConfigWizard.cpp:560 +#: src/slic3r/GUI/ConfigWizard.cpp:970 msgid "Nozzle Diameter:" msgstr "Diamètre de la Buse :" -#: src/libslic3r/PrintConfig.cpp:618 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "Nombres de mouvements de refroidissement" -#: src/slic3r/GUI/Tab.cpp:1845 +#: src/slic3r/GUI/Tab.cpp:1837 msgid "Number of extruders of the printer." msgstr "Nombre d'extrudeurs de l'imprimante." -#: src/libslic3r/PrintConfig.cpp:1888 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "Number of interface layers to insert between the object(s) and support material." msgstr "Nombre de couches d'interface à insérer entre le(s) objet(s) et les supports." -#: src/libslic3r/PrintConfig.cpp:1627 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely." msgstr "Nombre de boucles pour la jupe. Si la Longueur Minimale d'Extrusion est paramétrée, le nombre de boucles minimal sera plus grand que celui configuré ici. Mettez à zéro pour désactiver complètement la jupe." -#: src/libslic3r/PrintConfig.cpp:2214 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "Nombre de pixels présents" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Nombre de pixels présents dans X" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Nombre de pixels présents dans Y" -#: src/libslic3r/PrintConfig.cpp:151 +#: src/libslic3r/PrintConfig.cpp:166 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Nombre de couches solides à générer sur les surfaces inférieures." -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." msgstr "Nombre de couches solides à générer sur les surfaces supérieures et inférieures." -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." msgstr "Nombre de couches solides à générer sur les surfaces supérieures." -#: src/libslic3r/PrintConfig.cpp:2303 +#: src/libslic3r/PrintConfig.cpp:2509 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Nombre de couches nécessaires pour que le temps d'exposition passe du temps d'exposition initial au temps d'exposition normal" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:243 msgid "Number of tool changes" msgstr "Nombre de changements d'outil" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2744 msgid "Object elevation" msgstr "Élévation de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1858 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 msgid "Object manipulation" msgstr "Manipulation de l'Objet" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "Nom de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 msgid "Object or Instance" msgstr "Objet ou Instance" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Object reordered" msgstr "Objet réorganisé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1868 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 msgid "Object Settings to modify" msgstr "Réglages de l'Objet à modifier" -#: src/slic3r/GUI/Plater.cpp:1875 +#: src/slic3r/GUI/Plater.cpp:2513 msgid "Object too large?" msgstr "Objet trop grand ?" -#: src/libslic3r/PrintConfig.cpp:2161 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "L'objet sera utilisé pour purger la buse après un changement d'outil pour économiser du matériau qui finirait normalement dans la tour de nettoyage et raccourcirait le temps d'impression. Par conséquent, les couleurs de l'objet seront mélangées." -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "object(s)" msgstr "objet(s)" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "objects" msgstr "objets" -#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "Spirale Octagramme" @@ -4533,300 +4921,333 @@ msgstr "Spirale Octagramme" msgid "OctoPrint version" msgstr "Version d'OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2419 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 msgid "of a current Object" msgstr "d'un Objet en cours" -#: src/slic3r/GUI/wxExtensions.cpp:2570 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "Décalage" + +#: src/slic3r/GUI/DoubleSlider.cpp:923 msgid "One layer mode" msgstr "Mode couche unique" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1361 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Un ou plusieurs objets ont été affectés à un extrudeur que l'imprimante ne possède pas." -#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Créer uniquement des supports reposant sur le plateau. Ne pas créer pas de supports sur une impression." -#: src/libslic3r/PrintConfig.cpp:978 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "Faire remplissage seulement où cela est nécessaire" -#: src/slic3r/GUI/Tab.cpp:2271 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Only lift Z" msgstr "Lever Z seulement" -#: src/libslic3r/PrintConfig.cpp:1500 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "Lever Z seulement au-dessus de" -#: src/libslic3r/PrintConfig.cpp:1509 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Lever Z seulement en-dessous de" -#: src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "Rétracter uniquement lors du franchissement de périmètres" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1189 msgid "Ooze prevention" msgstr "Prévention des coulures" -#: src/libslic3r/Print.cpp:1193 +#: src/libslic3r/Print.cpp:1262 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "La prévention des écoulements n'est actuellement pas supportée lorsque la tour de nettoyage est activée." -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "Ouvrir un fichier de projet" -#: src/slic3r/GUI/Tab.cpp:1745 +#: src/slic3r/GUI/Tab.cpp:1727 msgid "Open CA certificate file" msgstr "Ouvrir le fichier de certificat CA" -#: src/slic3r/GUI/UpdateDialogs.cpp:63 src/slic3r/GUI/UpdateDialogs.cpp:126 +#: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "Ouvrir la page du journal des modifications" -#: src/slic3r/GUI/UpdateDialogs.cpp:68 +#: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Ouvrir la page de téléchargement" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:105 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "Ouvrir un projet STL/OBJ/AMF/3MF avec configuration, libérer le plateau" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" msgstr "Ouvrir un projet STL/OBJ/AMF/3MF avec la configuration, effacer le lit" -#: src/slic3r/GUI/MainFrame.cpp:551 -#, c-format +#: src/slic3r/GUI/MainFrame.cpp:695 +#, possible-c-format msgid "Open the %s website in your browser" msgstr "Ouvrir le site web de %s dans votre navigateur" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Ouvrir la page de téléchargement des drivers Prusa3D dans votre navigateur" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Open the software releases page in your browser" msgstr "Ouvrir la page des publications du logiciel dans votre navigateur" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize orientation" msgstr "Optimiser l'orientation" -#: src/slic3r/GUI/Plater.cpp:2643 +#: src/slic3r/GUI/Plater.cpp:2751 msgid "Optimize Rotation" msgstr "Optimiser la Rotation" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize the rotation of the object for better print results." msgstr "Optimiser la rotation de l'objet pour un meilleur résultat d'impression." -#: src/libslic3r/PrintConfig.cpp:112 +#: src/libslic3r/PrintConfig.cpp:127 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimiser les déplacements afin de minimiser le franchissement de périmètres. Ceci est surtout utile avec les extruder Bowden qui sont sujets aux coulures. Cette fonctionnalité ralentit l'impression et la génération du G-code." -#: src/slic3r/GUI/Tab.cpp:1070 +#: src/slic3r/GUI/Tab.cpp:1133 msgid "Options for support material and raft" msgstr "Options pour le matériau de support et le radeau" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/DoubleSlider.cpp:960 +msgid "or press \"+\" key" +msgstr "ou appuyez sur la touche \"+\"" + +#: src/slic3r/GUI/Plater.cpp:2876 msgid "Orientation found." msgstr "Orientation trouvée." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2875 msgid "Orientation search canceled." msgstr "Recherche de l'orientation annulée." -#: src/slic3r/GUI/BedShapeDialog.cpp:79 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "Origine" -#: src/slic3r/GUI/Tab.cpp:1165 +#: src/slic3r/GUI/Tab.cpp:1229 msgid "Other" msgstr "Autre" -#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977 +#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Autres couches" -#: src/slic3r/GUI/ConfigWizard.cpp:438 +#: src/slic3r/GUI/ConfigWizard.cpp:857 msgid "Other Vendors" msgstr "Autres Fabriquants" -#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 msgid "Output file" msgstr "Fichier de sortie" -#: src/libslic3r/PrintConfig.cpp:3104 +#: src/libslic3r/PrintConfig.cpp:3478 msgid "Output File" msgstr "Fichier de Sortie" -#: src/libslic3r/PrintConfig.cpp:1294 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "Format du nom de fichier de sortie" -#: src/libslic3r/PrintConfig.cpp:2992 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Output Model Info" msgstr "Information du Modèle de Sortie" -#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 msgid "Output options" msgstr "Options de sortie" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Périmètre en surplomb" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "Seuil de surplomb" -#: src/slic3r/GUI/Tab.cpp:1153 +#: src/slic3r/GUI/Tab.cpp:1217 msgid "Overlap" msgstr "Chevauchement" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "Onglet des Réglages d'Imp&ression" -#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520 -#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426 -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523 -#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547 -#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569 +#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 +#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 +#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 +#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 +#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 +#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 +#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 +#: src/libslic3r/PrintConfig.cpp:2890 msgid "Pad" msgstr "Socle" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 +#: src/slic3r/GUI/GUI_ObjectList.cpp:45 msgid "Pad and Support" msgstr "Socle et Support" -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "Pad around object" msgstr "Socle autour de l'objet" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2853 msgid "Pad around object everywhere" msgstr "Socle partout autour de l'objet" -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2802 msgid "Pad brim size" msgstr "Taille du bord de socle" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "La taille du bord de socle est trop petite pour la configuration actuelle." -#: src/libslic3r/PrintConfig.cpp:2731 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector penetration" msgstr "Pénétration du connecteur de l'objet socle" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "Pad object connector stride" msgstr "Pas du connecteur de l'objet socle" -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector width" msgstr "Largeur du connecteur de l'objet socle" -#: src/libslic3r/PrintConfig.cpp:2700 +#: src/libslic3r/PrintConfig.cpp:2860 msgid "Pad object gap" msgstr "Espace entre l'objet et le socle" -#: src/libslic3r/PrintConfig.cpp:2532 +#: src/libslic3r/PrintConfig.cpp:2788 msgid "Pad wall height" msgstr "Hauteur de la paroi du socle" -#: src/libslic3r/PrintConfig.cpp:2568 +#: src/libslic3r/PrintConfig.cpp:2835 msgid "Pad wall slope" msgstr "Inclinaison de la paroi du socle" -#: src/libslic3r/PrintConfig.cpp:2522 +#: src/libslic3r/PrintConfig.cpp:2778 msgid "Pad wall thickness" msgstr "Épaisseur de la paroi du socle" -#: src/slic3r/GUI/Field.cpp:108 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "Page Down" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "Page Up" + +#: src/slic3r/GUI/Field.cpp:134 msgid "parameter name" msgstr "nom du paramètre" -#: src/slic3r/GUI/Field.cpp:184 +#: src/slic3r/GUI/Field.cpp:238 msgid "Parameter validation" msgstr "Validation du paramètre" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Part" msgstr "Pièce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1881 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 msgid "Part manipulation" msgstr "Manipulation d'une pièce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 msgid "Part Settings to modify" msgstr "Réglages de la pièce à modifier" -#: src/slic3r/GUI/GLCanvas3D.cpp:3449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4563 msgid "Paste" msgstr "Coller" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "Coller le presse-papier" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 msgid "Paste from clipboard" msgstr "Coller depuis le presse-papier" -#: src/slic3r/GUI/Plater.cpp:4772 +#: src/slic3r/GUI/Plater.cpp:5640 msgid "Paste From Clipboard" msgstr "Coller Depuis le Presse-Papier" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "Motif" -#: src/libslic3r/PrintConfig.cpp:1805 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "Angle du motif" -#: src/libslic3r/PrintConfig.cpp:1929 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" msgstr "Espacement du motif" -#: src/libslic3r/PrintConfig.cpp:1917 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "Motif utilisé pour générer les supports." -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/DoubleSlider.cpp:976 +msgid "Pause print (\"%1%\")" +msgstr "Mettre en pause l'impression (\"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 +#: src/slic3r/GUI/GLCanvas3D.cpp:987 msgid "Pause print or custom G-code" msgstr "Pause d'impression ou G-code personnalisé" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "Effectuer la coupe" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163 +#: src/libslic3r/PrintConfig.cpp:2918 +msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." +msgstr "Performance vs précision du calcul. Des valeurs plus faibles peuvent produire des artefacts indésirables." + +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Périmètre" -#: src/libslic3r/PrintConfig.cpp:1339 +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "Extrudeur pour les périmètres" -#: src/slic3r/GUI/PresetHints.cpp:162 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" msgstr "périmètres" -#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348 -#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "Périmètres" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -#, c-format +#: src/slic3r/GUI/ConfigWizard.cpp:861 +#, possible-c-format msgid "Pick another vendor supported by %s" msgstr "Choisissez un autre fournisseur pris en charge par %s" @@ -4834,11 +5255,11 @@ msgstr "Choisissez un autre fournisseur pris en charge par %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Tailles d'image devant être stockées dans des fichiers .gcode et .sl1" -#: src/libslic3r/PrintConfig.cpp:2430 +#: src/libslic3r/PrintConfig.cpp:2672 msgid "Pillar widening factor" msgstr "Facteur d'élargissement du pilier" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Le diamètre de la tête d'épingle doit être plus petit que le diamètre du pilier." @@ -4846,40 +5267,48 @@ msgstr "Le diamètre de la tête d'épingle doit être plus petit que le diamèt msgid "Place bearings in slots and resume" msgstr "Placer les roulements dans les fentes et relancer" -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32 +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "Placer les roulements dans les fentes et reprendre l'impression" + +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "Positionner sur la surface" -#: src/slic3r/GUI/MainFrame.cpp:161 +#: src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Plateau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 msgid "Plater Shortcuts" msgstr "Raccourcis du Plateau" -#: src/slic3r/GUI/GUI.cpp:143 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Veuillez vérifier et réparer votre liste d'objet." -#: src/slic3r/GUI/Tab.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 msgid "Please check your object list before preset changing." msgstr "Veuillez vérifier votre liste d'objet avant le changement de préréglage." -#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:286 +#: src/slic3r/GUI/Plater.cpp:3272 +msgid "Please select the file to reload" +msgstr "Veuillez sélectionner le fichier à recharger" + +#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" msgstr "Copyright des sections" -#: src/libslic3r/PrintConfig.cpp:2235 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "Portrait" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:215 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:457 msgid "Position" msgstr "Position" -#: src/slic3r/GUI/Tab.cpp:2265 +#: src/slic3r/GUI/Tab.cpp:2363 msgid "Position (for multi-extruder printers)" msgstr "Position (pour les imprimantes multi-extrudeurs)" @@ -4887,495 +5316,533 @@ msgstr "Position (pour les imprimantes multi-extrudeurs)" msgid "Position (mm)" msgstr "Position (en mm)" -#: src/libslic3r/PrintConfig.cpp:1553 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Position des points de départ des périmètres." -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "Position X" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Position Y" -#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Scripts de post-traitement" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "Pré&visualisation" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Préférences" -#: src/libslic3r/PrintConfig.cpp:1571 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "Direction préférée de la jointure" -#: src/libslic3r/PrintConfig.cpp:1582 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "Direction préférée de la jointure - gigue" -#: src/libslic3r/PrintObject.cpp:251 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "Préparation du remplissage" -#: src/slic3r/GUI/Tab.cpp:2758 -#, c-format +#: src/slic3r/GUI/Tab.cpp:2904 +#, possible-c-format msgid "Preset (%s)" msgstr "Préréglage (%s)" -#: src/slic3r/GUI/Tab.cpp:3031 -msgid "Preset with name \"%1%\" already exist." +#: src/slic3r/GUI/Tab.cpp:3066 +msgid "Preset with name \"%1%\" already exists." msgstr "Un préréglage avec le nom \"%1%\" existe déjà." -#: src/slic3r/GUI/Tab.cpp:2994 +#: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" msgstr "PresetName||%1% - Copie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "" -"Press to activate deselection rectangle\n" -"or to scale or rotate selected objects\n" -"around their own center" -msgstr "" -"Appuyez pour activer le rectangle de\n" -"désélection ou pour redimensionner\n" -"ou faire pivoter les objets sélectionnés\n" -"autour de leur propre centre" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" +msgstr "Appuyez pour activer le rectangle de\ndésélection ou pour redimensionner\nou faire pivoter les objets sélectionnés\nautour de leur propre centre" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "Appuyer pour activer le rectangle de déselection" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 msgid "Press to activate one direction scaling in Gizmo scale" -msgstr "" -"Appuyez pour activer le redimensionnement\n" -"dans une direction pour le Gizmo" +msgstr "Appuyez pour activer le redimensionnement\ndans une direction pour le Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 #, no-c-format -msgid "" -"Press to activate selection rectangle\n" -"or to snap by 5% in Gizmo scale\n" -"or to snap by 1mm in Gizmo move" -msgstr "" -"Appuyez pour activer le rectangle\n" -"de sélection ou pour modifier de 5%\n" -"la dimension du Gizmo ou pour\n" -"modifier d'1 mm le déplacement du\n" -"Gizmo" +msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" +msgstr "Appuyez pour activer le rectangle\nde sélection ou pour modifier de 5%\nla dimension du Gizmo ou pour\nmodifier d'1 mm le déplacement du\nGizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "" -"Press to scale selection to fit print volume\n" -"in Gizmo scale" -msgstr "" -"Appuyez pour redimensionner la sélection afin\n" -"qu'elle s'ajuste aux dimensions du Gizmo" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "Appuyer pour activer le rectangle de sélection" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" +msgstr "Appuyer pour redimensionner (à l'échelle du Gizmo) ou faire pivoter (rotation du Gizmo)\nles objets sélectionnés autour de leur propre centre" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +msgid "Press to scale selection to fit print volume\nin Gizmo scale" +msgstr "Appuyez pour redimensionner la sélection afin\nqu'elle s'ajuste aux dimensions du Gizmo" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 msgid "Press to select multiple object or move multiple object with mouse" msgstr "Clicquez pour sélectionner plusieurs objets ou pour déplacer plusieurs objets avec la souris" -#: src/slic3r/GUI/Tab.cpp:2288 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with mouse" +msgstr "Clicquez pour sélectionner plusieurs objets\nou pour déplacer plusieurs objets avec la souris" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with a mouse" +msgstr "Clicquez pour sélectionner plusieurs objets\nou pour déplacer plusieurs objets avec la souris" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" +msgstr "Appuyer pour modifier de 5% à l'échelle du Gizmo\nou pour modifier d'1 mm le mouvement du Gizmo" + +#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 msgid "Preview" msgstr "Aperçu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "Aperçu du modèle évidé et percé" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 msgid "Preview Shortcuts" msgstr "Prévisualisation des Raccourcis" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid "Previously sliced file (" msgstr "Fichier précédemment découpé (" -#: src/libslic3r/PrintConfig.cpp:1773 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "Préparer tous les extrudeurs d'impression" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 msgid "print" msgstr "imprimer" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "File d'Attente de Téléchargement de l'&Hôte d'Impression" -#: src/libslic3r/PrintConfig.cpp:439 +#: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Imprimer les périmètres de l'extérieur vers l'intérieur au lieu de l'ordre par défaut qui est inversé." -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Print Diameters" msgstr "Diamètres d'Impression" -#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074 +#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 msgid "Print Host upload" msgstr "Téléchargement de l'Hôte d'Impression" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -#: src/slic3r/GUI/PrintHostDialogs.cpp:135 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "File d'Attente de téléchargement de l'hôte d'impression" -#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405 +#: src/slic3r/GUI/DoubleSlider.cpp:941 +msgid "Print mode" +msgstr "Mode d'impression" + +#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 msgid "Print Settings" msgstr "Réglages d'Impression" -#: src/slic3r/GUI/Plater.cpp:681 +#: src/slic3r/GUI/Plater.cpp:812 msgid "Print settings" msgstr "Réglages d'impression" -#: src/slic3r/GUI/Tab.cpp:1520 +#: src/slic3r/GUI/Tab.cpp:1480 msgid "Print speed override" msgstr "Contournement de la vitesse d'impression" -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Imprimer z" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "Onglet des Réglages de l'Imprimant&e" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1438 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Printable" msgstr "Imprimable" -#: src/slic3r/GUI/Plater.cpp:685 +#: src/slic3r/GUI/Plater.cpp:816 msgid "Printer" msgstr "Imprimante" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 msgid "printer" msgstr "imprimer" -#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "Correction absolue de l'imprimante" -#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283 +#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 msgid "Printer gamma correction" msgstr "Correction gamma de l'imprimante" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/Tab.cpp:978 msgid "printer model" msgstr "modèle de l'imprimante" -#: src/libslic3r/PrintConfig.cpp:1402 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "Notes de l'imprimante" -#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267 -#: src/libslic3r/PrintConfig.cpp:2268 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "Correction de redimensionnement de l'imprimante" -#: src/slic3r/GUI/Tab.hpp:368 +#: src/slic3r/GUI/Tab.hpp:390 msgid "Printer Settings" msgstr "Réglages de l'Imprimante" -#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43 +#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44 msgid "Printer technology" msgstr "Technologie de l'imprimante" -#: src/libslic3r/PrintConfig.cpp:1396 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "Type d'imprimante" -#: src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "Variante d'imprimante" -#: src/libslic3r/PrintConfig.cpp:1411 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "Fabriquant de l'imprimante" -#: src/libslic3r/Print.cpp:1294 +#: src/libslic3r/Print.cpp:1384 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Impression avec plusieurs extrudeurs de différents diamètres de buse. Si le support doit être imprimé avec l'extrudeur courant (support_material_extruder == 0 ou support_material_interface_extruder == 0), toutes les buses doivent avoir le même diamètre." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:715 -#, c-format +#: src/slic3r/GUI/MainFrame.cpp:851 +#, possible-c-format msgid "Processing %s" msgstr "Traitement %s" -#: src/slic3r/GUI/Plater.cpp:2287 -#, c-format +#: src/slic3r/GUI/Plater.cpp:2267 +#, possible-c-format msgid "Processing input file %s" msgstr "Traitement du fichier d'entrée %s" -#: src/libslic3r/PrintObject.cpp:110 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "Traitement de maillage triangulé" -#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585 -#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087 -#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 +#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 +#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 msgid "Profile dependencies" msgstr "Dépendances du profil" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "Profil :" -#: src/slic3r/GUI/PrintHostDialogs.cpp:149 +#: src/slic3r/GUI/PrintHostDialogs.cpp:150 msgid "Progress" msgstr "Progression" -#: src/slic3r/GUI/FirmwareDialog.cpp:779 +#: src/slic3r/GUI/FirmwareDialog.cpp:817 msgid "Progress:" msgstr "Progression :" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Prusa 3D &Drivers" msgstr "&Drivers Prusa 3D" -#: src/slic3r/GUI/ConfigWizard.cpp:1109 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa FFF Technology Printers" msgstr "Imprimantes à Technologie FFF Prusa" -#: src/slic3r/GUI/ConfigWizard.cpp:1112 +#: src/slic3r/GUI/ConfigWizard.cpp:2001 msgid "Prusa MSLA Technology Printers" msgstr "Imprimantes à Technologie MSLA Prusa" -#: src/slic3r/GUI/AboutDialog.cpp:255 +#: src/slic3r/GUI/AboutDialog.cpp:260 msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap community." msgstr "PrusaSlicer est basé sur Slic3r par Alessandro Ranellucci et la communauté RepRap." -#: src/slic3r/GUI/GUI_App.cpp:297 -#, c-format -msgid "" -"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" -"while OpenGL version %s, render %s, vendor %s was detected." -msgstr "" -"PrusaSlicer a besoin de pilotes graphiques opérationnels OpenGL 2.0 pour fonctionner correctement,\n" -"alors que OpenGL version %s, rendu %s, fournisseur %s a été détecté." +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 +#, possible-c-format +msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." +msgstr "PrusaSlicer a besoin de pilotes graphiques opérationnels OpenGL 2.0 pour fonctionner correctement,\nalors que OpenGL version %s, rendu %s, fournisseur %s a été détecté." #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "Version de PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:771 -msgid "" -"PrusaSlicer's user interfaces comes in three variants:\n" -"Simple, Advanced, and Expert.\n" -"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "" -"Les interfaces utilisateur de PrusaSlicer se déclinent en trois variantes :\n" -"Simple, Avancé et Expert.\n" -"Le mode Simple affiche uniquement les paramètres les plus fréquemment utilisés pertinents pour l'impression 3D régulière. Les deux autres offrent des réglages fins de plus en plus sophistiqués, ils conviennent respectivement aux utilisateurs avancés et experts." +#: src/slic3r/GUI/ConfigWizard.cpp:816 +msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "Les interfaces utilisateur de PrusaSlicer se déclinent en trois variantes :\nSimple, Avancé et Expert.\nLe mode Simple affiche uniquement les paramètres les plus fréquemment utilisés pertinents pour l'impression 3D régulière. Les deux autres offrent des réglages fins de plus en plus sophistiqués, ils conviennent respectivement aux utilisateurs avancés et experts." -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "La purge après le changement d'outil sera faite dans le remplissage de l'objet. Cela diminue le gaspillage mais peut rallonger le temps d'impression à cause des mouvements supplémentaires." -#: src/slic3r/GUI/Plater.cpp:456 +#: src/slic3r/GUI/Plater.cpp:541 msgid "Purging volumes" msgstr "Volumes de purge" -#: src/libslic3r/PrintConfig.cpp:2106 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "Volumes de purge - volumes de chargement/déchargement" -#: src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "Volumes de purge - matrice" -#: src/slic3r/GUI/Tab.cpp:1019 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "Qualité" + +#: src/slic3r/GUI/Tab.cpp:1082 msgid "Quality (slower slicing)" msgstr "Qualité (découpage plus lent)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1145 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1377 -#, c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:278 +msgid "Quality / Speed" +msgstr "Qualité / Vitesse" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 +#, possible-c-format msgid "Quick Add Settings (%s)" msgstr "Ajout de Réglages Rapide (%s)" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "Découpage Rapide" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "Découpage Rapide et Enregistrer Sous" -#: src/slic3r/GUI/MainFrame.cpp:409 -#, c-format +#: src/slic3r/GUI/MainFrame.cpp:540 +#, possible-c-format msgid "Quit %s" msgstr "Quitter %s" -#: src/libslic3r/PrintConfig.cpp:479 +#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Rayon" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1129 msgid "Raft" msgstr "Radeau" -#: src/libslic3r/PrintConfig.cpp:1431 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" msgstr "Couches du radeau" -#: src/slic3r/GUI/WipeTowerDialog.cpp:14 +#: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "Personnalisation de l'expulsion" -#: src/slic3r/GUI/WipeTowerDialog.cpp:40 -msgid "" -"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" -"\n" -"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "" -"L'Expulsion décrit l'extrusion rapide qui a lieu juste avant un changement d'outil sur une imprimante MM à extrudeur unique. Le but est de donner une forme correcte au filament déchargé afin qu'il n'empêche pas l'insertion du nouveau filament et puisse être réinséré lui-même plus tard. Cette phase est importante et des matériaux différents peuvent nécessiter des vitesses d'extrusion différentes pour obtenir la bonne forme. De ce fait, les débits d'extrusion pendant l'expulsion sont ajustables.\n" -"\n" -"Ceci est un paramétrage de niveau expert, et un mauvais ajustement provoquera probablement des blocages, des accrochages de la roue de l'extrudeur sur le filament , etc ..." +#: src/slic3r/GUI/WipeTowerDialog.cpp:41 +msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "L'Expulsion décrit l'extrusion rapide qui a lieu juste avant un changement d'outil sur une imprimante MM à extrudeur unique. Le but est de donner une forme correcte au filament déchargé afin qu'il n'empêche pas l'insertion du nouveau filament et puisse être réinséré lui-même plus tard. Cette phase est importante et des matériaux différents peuvent nécessiter des vitesses d'extrusion différentes pour obtenir la bonne forme. De ce fait, les débits d'extrusion pendant l'expulsion sont ajustables.\n\nCeci est un paramétrage de niveau expert, et un mauvais ajustement provoquera probablement des blocages, des accrochages de la roue de l'extrudeur sur le filament , etc ..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:90 +#: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" msgstr "Espacement de la ligne de ramming" -#: src/slic3r/GUI/WipeTowerDialog.cpp:88 +#: src/slic3r/GUI/WipeTowerDialog.cpp:89 msgid "Ramming line width" msgstr "Largeur de la ligne d'expulsion" -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "Paramètres de l'expulsion" -#: src/slic3r/GUI/Tab.cpp:1545 +#: src/slic3r/GUI/Tab.cpp:1507 msgid "Ramming settings" msgstr "Réglages de l'expulsion" -#: src/libslic3r/PrintConfig.cpp:1559 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "Aléatoire" -#: src/slic3r/GUI/wxExtensions.cpp:486 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 msgid "Range" msgstr "Zone" -#: src/libslic3r/SLAPrint.cpp:72 +#: src/libslic3r/SLAPrintSteps.cpp:63 msgid "Rasterizing layers" msgstr "Tramage des couches" -#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "Re&charger à partir du disque" + +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "Reconfigurer" -#: src/slic3r/GUI/FirmwareDialog.cpp:783 +#: src/slic3r/GUI/FirmwareDialog.cpp:821 msgid "Ready" msgstr "Prêt" -#: src/slic3r/GUI/Plater.cpp:2406 +#: src/slic3r/GUI/Plater.cpp:3099 msgid "Ready to slice" msgstr "Prêt à découper" -#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "Arrière" -#: src/slic3r/GUI/MainFrame.cpp:526 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "Vue Arrière" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "Projets récents" -#: src/slic3r/GUI/PresetHints.cpp:262 -#, c-format +#: src/slic3r/GUI/PresetHints.cpp:263 +#, possible-c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Épaisseur des parois fines de l'objet recommandée pour la hauteur de couche %.2f et" +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." +msgstr "Épaisseur recommandée pour la paroi mince de l'objet : Non disponible en raison de la largeur d'extrusion excessivement petite." + #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." msgstr "Épaisseur des parois fines de l'objet recommandée : Non disponible car la hauteur de couche est invalide." -#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "Re-création" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "Rectangle" -#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796 -#: src/libslic3r/PrintConfig.cpp:1922 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "Rectiligne" -#: src/libslic3r/PrintConfig.cpp:1923 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "Grille rectiligne" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3639 -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Recommencer" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 -#, c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#, possible-c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Répéter %1$d Action" +msgstr[1] "Répéter %1$d Actions" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Redo History" msgstr "Répéter Historique" -#: src/slic3r/GUI/Tab.cpp:1037 +#: src/slic3r/GUI/Tab.cpp:1100 msgid "Reducing printing time" msgstr "Réduction du temps d'impression" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3461 +msgid "Reload all from disk" +msgstr "Tout recharger à partir du disque" + +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 +#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 msgid "Reload from disk" msgstr "Recharger à partir du disque" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3328 +msgid "Reload from: " +msgstr "Recharger depuis : " + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "Recharger le plateau depuis le disque" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "Recharger le plateau à partir du disque" + +#: src/slic3r/GUI/Plater.cpp:3972 msgid "Reload the selected object from disk" msgstr "Recharger l'objet sélectionné à partir du disque" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3715 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 msgid "Reload the selected volumes from disk" msgstr "Recharger les volumes sélectionnés à partir du disque" -#: src/slic3r/GUI/Preferences.cpp:36 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "Se souvenir du répertoire de sortie" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "remove" msgstr "retirer" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Remove" msgstr "Retirer" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "Supprimer tous les trous" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:51 msgid "Remove all points" msgstr "Retirer tous les points" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:251 msgid "Remove detail" msgstr "Supprimer les détails" +#: src/slic3r/GUI/Plater.cpp:876 +msgid "Remove device" +msgstr "Supprimer l'appareil" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 msgid "Remove extruder from sequence" msgstr "Supprimer l'extrudeur de la séquence" -#: src/slic3r/GUI/GLCanvas3D.cpp:3475 +#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 msgid "Remove instance" msgstr "Supprimer l'instance" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 msgid "Remove Instance of the selected object" msgstr "Supprimer l'instance de l'objet sélectionné" @@ -5383,76 +5850,80 @@ msgstr "Supprimer l'instance de l'objet sélectionné" msgid "Remove layer range" msgstr "Supprimer la zone de couche" -#: src/slic3r/GUI/Plater.cpp:3518 +#: src/slic3r/GUI/Plater.cpp:3951 msgid "Remove one instance of the selected object" msgstr "Supprime une instance de l'objet sélectionné" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "Supprimer le paramètre" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Remove point" msgstr "Supprimer le point" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Remove point from selection" msgstr "Supprimer le point de la sélection" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "Supprimer les trous sélectionnés" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 msgid "Remove selected points" msgstr "Retirer les points sélectionnés" -#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 msgid "Remove the selected object" msgstr "Retirer l'objet sélectionné" -#: src/slic3r/GUI/ConfigWizard.cpp:305 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Supprimer les profils d'utilisateur - installation à partir de zéro (un instantané des réglages sera pris)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1200 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 msgid "Rename" msgstr "Renommer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Object" msgstr "Renommer l'Objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Sub-object" msgstr "Renommer le Sous-objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Renaming" msgstr "Renommage" -#: src/libslic3r/PrintConfig.cpp:3125 +#: src/libslic3r/PrintConfig.cpp:3500 msgid "Render with a software renderer" msgstr "Rendu avec avec un logiciel de rendu" -#: src/libslic3r/PrintConfig.cpp:3126 +#: src/libslic3r/PrintConfig.cpp:3501 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Appliquer un rendu avec un logiciel de rendu. Le logiciel de rendu MESA qui est fourni est chargé à la place du pilote OpenGL présent par défaut." -#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058 +#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 msgid "Repair" msgstr "Réparer" -#: src/slic3r/Utils/FixModelByWin10.cpp:387 +#: src/slic3r/Utils/FixModelByWin10.cpp:394 msgid "Repaired 3MF file contains more than one object" msgstr "Le fichier 3MF réparé contient plus d'un objet" -#: src/slic3r/Utils/FixModelByWin10.cpp:391 +#: src/slic3r/Utils/FixModelByWin10.cpp:398 msgid "Repaired 3MF file contains more than one volume" msgstr "Le fichier 3MF réparé contient plus d'un volume" -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:392 msgid "Repaired 3MF file does not contain any object" msgstr "Le fichier 3MF réparé ne contient aucun objet" -#: src/slic3r/Utils/FixModelByWin10.cpp:389 +#: src/slic3r/Utils/FixModelByWin10.cpp:396 msgid "Repaired 3MF file does not contain any volume" msgstr "Le fichier 3MF réparé ne contient aucun volume" @@ -5460,176 +5931,189 @@ msgstr "Le fichier 3MF réparé ne contient aucun volume" msgid "Repairing model by the Netfabb service" msgstr "Réparation d'un modèle par le service Netfabb" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "Répéter le dernier découpage rapide" -#: src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "Répéter le Dernier Découpage Rapide" -#: src/slic3r/GUI/Tab.cpp:3032 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Replace?" msgstr "Remplacer ?" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Report an I&ssue" msgstr "S&ignaler un Problème" -#: src/slic3r/GUI/MainFrame.cpp:561 -#, c-format +#: src/slic3r/GUI/MainFrame.cpp:705 +#, possible-c-format msgid "Report an issue on %s" msgstr "Signaler un problème sur %s" -#: src/slic3r/Utils/PresetUpdater.cpp:590 -#, c-format +#: src/slic3r/Utils/PresetUpdater.cpp:713 +#, possible-c-format msgid "requires max. %s" msgstr "nécessite max. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:588 -#, c-format +#: src/slic3r/Utils/PresetUpdater.cpp:710 +#, possible-c-format msgid "requires min. %s" msgstr "nécessite min. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:583 -#, c-format +#: src/slic3r/Utils/PresetUpdater.cpp:705 +#, possible-c-format msgid "requires min. %s and max. %s" msgstr "nécessite min. %s et max. %s" -#: src/slic3r/GUI/FirmwareDialog.cpp:772 +#: src/slic3r/GUI/FirmwareDialog.cpp:810 msgid "Rescan" msgstr "Scanner à nouveau" -#: src/slic3r/GUI/Tab.cpp:1879 +#: src/slic3r/GUI/Tab.cpp:1904 msgid "Rescan serial ports" msgstr "Rescanner les ports série" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:318 msgid "Reset" msgstr "Réinitialiser" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 msgid "Reset clipping plane" msgstr "Réinitialiser le plan de coupe" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 msgid "Reset direction" msgstr "Réinitialiser la direction" -#: src/slic3r/GUI/Plater.cpp:2603 +#: src/slic3r/GUI/Plater.cpp:2707 msgid "Reset Project" msgstr "Réinitialiser le Projet" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:303 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Réinitialiser la rotation" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:328 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 msgid "Reset Rotation" msgstr "Réinitialiser la Rotation" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:285 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:290 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:397 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:399 msgid "Reset scale" msgstr "Réinitialiser l'échelle" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:257 msgid "Reset to base" msgstr "Réinitialiser à la base" -#: src/slic3r/GUI/Tab.cpp:2584 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Reset to Filament Color" msgstr "Réinitialiser la Couleur du Filament" -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "Résolution" -#: src/libslic3r/PrintConfig.cpp:1459 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "Quantité de rétractation avant essuyage" -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" msgstr "Rétracter lors des changements de couche" -#: src/slic3r/GUI/Tab.cpp:2268 +#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 +#: src/slic3r/GUI/Tab.cpp:2366 msgid "Retraction" msgstr "Rétraction" -#: src/libslic3r/PrintConfig.cpp:1453 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "Retraction is not triggered when travel moves are shorter than this length." msgstr "La rétraction n'est pas déclenchée lorsque les déplacements sont plus courts que cette distance." -#: src/libslic3r/PrintConfig.cpp:1474 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "Longueur de Rétractation" -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "Longueur de Rétractation (changement d'outil)" -#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "Vitesse de Rétractation" -#: src/slic3r/GUI/Tab.cpp:2284 +#: src/slic3r/GUI/Tab.cpp:2382 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Rétractation lorsque l'outil est désactivé (réglages avancés pour les configurations multi-extrudeurs)" -#: src/slic3r/GUI/GUI_Preview.cpp:244 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Retractions" msgstr "Rétractions" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "Droite" -#: src/slic3r/GUI/GUI_ObjectList.cpp:381 +#: src/slic3r/GUI/GUI_ObjectList.cpp:400 msgid "Right button click the icon to change the object printable property" msgstr "Clic droit sur l'icône pour changer les propriétés imprimables de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Right button click the icon to change the object settings" msgstr "Clic droit sur l'icône pour changer les réglages de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:250 +#: src/slic3r/GUI/GUI_ObjectList.cpp:357 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Clic droit sur l'icône pour réparer le STL avec Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Right click" msgstr "Clic droit" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Right mouse button:" msgstr "Clic droit souris :" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "Vue Droite" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253 -#: src/libslic3r/PrintConfig.cpp:3062 +#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 +#: src/libslic3r/PrintConfig.cpp:3436 msgid "Rotate" msgstr "Pivoter" -#: src/libslic3r/PrintConfig.cpp:3067 +#: src/libslic3r/PrintConfig.cpp:3441 msgid "Rotate around X" msgstr "Pivoter autour de X" -#: src/libslic3r/PrintConfig.cpp:3072 +#: src/libslic3r/PrintConfig.cpp:3446 msgid "Rotate around Y" msgstr "Pivoter autour de Y" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "Pivoter la partie basse vers le haut" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "Faire pivoter la sélection de 45 degrés dans le sens inverse des aiguilles d'une montre" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "Faire pivoter la sélection de 45 degrés dans le sens des aiguilles d'une montre" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:321 +#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotation" @@ -5637,118 +6121,124 @@ msgstr "Rotation" msgid "Rotation (deg)" msgstr "Rotation (deg)" -#: src/libslic3r/PrintConfig.cpp:3068 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Rotation angle around the X axis in degrees." msgstr "Angle de rotation autour de l'axe X en degrés." -#: src/libslic3r/PrintConfig.cpp:3073 +#: src/libslic3r/PrintConfig.cpp:3447 msgid "Rotation angle around the Y axis in degrees." msgstr "Angle de rotation autour de l'axe Y en degrés." -#: src/libslic3r/PrintConfig.cpp:3063 +#: src/libslic3r/PrintConfig.cpp:3437 msgid "Rotation angle around the Z axis in degrees." msgstr "Angle de rotation autour de l'axe Z en degrés." -#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658 -#, c-format +#: src/slic3r/GUI/GUI_App.cpp:797 +#, possible-c-format msgid "Run %s" msgstr "Run %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 msgid "Running post-processing scripts" msgstr "Exécuter des scripts de post-traitement" -#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81 -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612 -#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671 -#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252 -#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319 +#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 +#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 +#: src/libslic3r/PrintConfig.cpp:2557 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:466 src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end G-code" msgstr "Envoyer le G-code" -#: src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end to print" msgstr "Envoyer pour imprimer" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3264 -#, c-format +#: src/slic3r/GUI/Tab.cpp:3401 +#, possible-c-format msgid "Save %s as:" msgstr "Enregistrer %s sous :" -#: src/slic3r/GUI/MainFrame.cpp:686 -#, c-format +#: src/slic3r/GUI/MainFrame.cpp:828 +#, possible-c-format msgid "Save %s file as:" msgstr "Enregistrer le fichier %s sous :" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 msgid "Save changes?" msgstr "Enregistrer les modifications ?" -#: src/libslic3r/PrintConfig.cpp:2997 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Save config file" msgstr "Sauvegarder le fichier de configuration" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:927 msgid "Save configuration as:" msgstr "Enregistrer la configuration sous :" -#: src/libslic3r/PrintConfig.cpp:2998 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Save configuration to the specified file." msgstr "Enregistrer la configuration dans le fichier spécifié." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:133 -#, c-format +#: src/slic3r/GUI/Tab.cpp:135 +#, possible-c-format msgid "Save current %s" msgstr "Enregistrer l'état actuel %s" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "Sauvegarder le fichier du projet en cours" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "Sauvegarder le fichier du projet en cours sous" -#: src/slic3r/GUI/Plater.cpp:1938 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Save file as:" msgstr "Enregistrer le fichier sous :" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save G-code file as:" msgstr "Sauvegarder le fichier G-code en tant que :" -#: src/slic3r/GUI/MainFrame.cpp:757 +#: src/slic3r/GUI/MainFrame.cpp:901 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Enregistrer le fichier OBJ (moins enclin aux erreurs de coordonnées que le STL) sous :" -#: src/slic3r/GUI/Tab.hpp:417 +#: src/slic3r/GUI/Tab.hpp:442 msgid "Save preset" msgstr "Enregistrer le préréglage" -#: src/slic3r/GUI/MainFrame.cpp:843 +#: src/slic3r/GUI/MainFrame.cpp:982 msgid "Save presets bundle as:" msgstr "Enregistrer le lot de préréglages sous :" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "Sauveg&arder le Projet &sous" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Save project (3MF)" -msgstr "Sauvegarder le projet (3MF)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "Sauvegarder le projet (3mf)" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "Sauvegarder le projet en tant que (3mf)" + +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save SL1 file as:" msgstr "Sauvegarder le fichier SL1 sous :" -#: src/slic3r/GUI/MainFrame.cpp:692 +#: src/slic3r/GUI/MainFrame.cpp:840 msgid "Save zip file as:" msgstr "Sauvegarder le fichier zip sous :" @@ -5758,10 +6248,11 @@ msgstr "Sauvegarder le fichier zip sous :" msgid "Saving mesh into the 3MF container failed." msgstr "Échec de la sauvegarde du maillage dans le contenant 3MF." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254 -#: src/libslic3r/PrintConfig.cpp:3077 +#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Scale" msgstr "Redimensionner" @@ -5769,47 +6260,51 @@ msgstr "Redimensionner" msgid "Scale (%)" msgstr "Redimensionner (%)" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Facteurs de redimensionnement" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "Scale selection to fit print volume\nin Gizmo scale" +msgstr "Redimensionner la sélection pour l'adapter au volume d'impression\nà l'échelle du Gizmo" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale the selected object to fit the print volume" msgstr "Redimensionner l'objet sélectionné pour qu'il s'ajuste au volume d'impression" -#: src/libslic3r/PrintConfig.cpp:3086 +#: src/libslic3r/PrintConfig.cpp:3460 msgid "Scale to Fit" msgstr "Redimensionner pour Ajuster" -#: src/slic3r/GUI/Selection.cpp:947 +#: src/slic3r/GUI/Selection.cpp:939 msgid "Scale To Fit" msgstr "Redimensionner pour Ajuster" -#: src/libslic3r/PrintConfig.cpp:3087 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Scale to fit the given volume." msgstr "Redimensionner pour ajuster à un volume donné." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale to print volume" msgstr "Redimensionner pour ajuster au volume d'impression" -#: src/libslic3r/PrintConfig.cpp:3078 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Scaling factor or percentage." msgstr "Facteur ou pourcentage de redimensionnement." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Planification du téléchargement dans `%1%`. Voir : Imprimer la file d'attente de téléchargement de l'hôte" -#: src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "Position de la jointure" -#: src/libslic3r/PrintConfig.cpp:1572 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "Direction préférée de la jointure" -#: src/libslic3r/PrintConfig.cpp:1581 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "Gigue de la direction préférée de la jointure" @@ -5817,115 +6312,119 @@ msgstr "Gigue de la direction préférée de la jointure" msgid "Searching for devices" msgstr "Recherche des dispositifs" -#: src/slic3r/GUI/Plater.cpp:2190 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Searching for optimal orientation" msgstr "Recherche de l'orientation optimale" -#: src/slic3r/GUI/GUI_App.cpp:1100 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Sélectionnez un fichier gcode :" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 -msgid "Select All objects" -msgstr "Sélectionner Tous les objets" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" +msgstr "Sélectionner tous les objets" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 msgid "Select all points" msgstr "Sélectionner tous les points" -#: src/slic3r/GUI/ConfigWizard.cpp:1089 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "Select all standard printers" msgstr "Sélectionner toutes les imprimantes standard" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 msgid "Select by rectangle" msgstr "Sélectionner par rectangle" -#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870 +#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 msgid "Select configuration to load:" msgstr "Sélectionner la configuration à charger :" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:82 msgid "Select coordinate space, in which the transformation will be performed." msgstr "Sélectionnez un espace de coordonnées dans lequel la transformation sera effectuée." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2834 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 msgid "Select extruder number for selected objects and/or parts" msgstr "Sélectionner le numéro d'extrudeur pour les objets et/ou pièces sélectionnés" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2847 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 msgid "Select extruder number:" msgstr "Sélectionner le numéro de l'extrudeur :" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 msgid "Select Filament Settings Tab" msgstr "Sélectionner l'Onglet des Réglages du Filament" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1251 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 msgid "Select new extruder for the object/part" msgstr "Sélectionner un nouvel extrudeur pour l'objet/la pièce" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "Select Plater Tab" msgstr "Sélectionner l'Onglet du Plateau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Select Print Settings Tab" msgstr "Sélectionner l'Onglet des Réglages d'Impression" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Select Printer Settings Tab" msgstr "Sélectionner l'Onglet des Réglages de l'Imprimante" -#: src/slic3r/GUI/GUI_ObjectList.cpp:917 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 msgid "Select showing settings" msgstr "Sélectionner les réglages d'affichage" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "Sélectionner la langue" -#: src/slic3r/GUI/Tab.cpp:57 +#: src/slic3r/GUI/Tab.cpp:59 msgid "Select the print profiles this profile is compatible with." msgstr "Sélectionner les profils d'impression avec lesquels ce profil est compatible." -#: src/slic3r/GUI/Tab.cpp:51 +#: src/slic3r/GUI/Tab.cpp:53 msgid "Select the printers this profile is compatible with." msgstr "Sélectionner les imprimantes avec lesquelles ce profil est compatible." -#: src/slic3r/GUI/MainFrame.cpp:744 +#: src/slic3r/GUI/MainFrame.cpp:891 msgid "Select the STL file to repair:" msgstr "Sélectionner le fichier STL à réparer :" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:241 msgid "Select toolbar icon size in respect to the default one." msgstr "Sélectionner la taille de l'icône de la barre d'outil par rapport à la taille par défaut." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2545 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Select type of part" msgstr "Sélectionner le type de pièce" -#: src/slic3r/GUI/Plater.cpp:606 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Select what kind of pad do you need" msgstr "Choisissez le type de socle dont vous avez besoin" -#: src/slic3r/GUI/Plater.cpp:421 +#: src/slic3r/GUI/Plater.cpp:495 msgid "Select what kind of support do you need" msgstr "Choisissez le type de support dont vous avez besoin" +#: src/slic3r/GUI/DoubleSlider.cpp:1890 +msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" +msgstr "Sélectionnez OUI si vous souhaitez supprimer tous les changements d'outil enregistrées, \n\tNON si vous souhaitez que tous les changements d'outil soient remplacés par des modifications de couleur, \n\tou ANNULER pour ne pas les modifier." + #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" msgstr "Sélection-Ajouter" -#: src/slic3r/GUI/Selection.cpp:384 +#: src/slic3r/GUI/Selection.cpp:376 msgid "Selection-Add All" msgstr "Sélection-Ajouter Tout" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 msgid "Selection-Add from list" msgstr "Sélection-Ajouter depuis la liste" -#: src/slic3r/GUI/GLCanvas3D.cpp:5623 +#: src/slic3r/GUI/GLCanvas3D.cpp:6659 msgid "Selection-Add from rectangle" msgstr "Sélection-Ajouter depuis le rectangle" @@ -5941,15 +6440,15 @@ msgstr "Sélection-Ajouter Objet" msgid "Selection-Remove" msgstr "Sélection-Retirer" -#: src/slic3r/GUI/Selection.cpp:410 +#: src/slic3r/GUI/Selection.cpp:402 msgid "Selection-Remove All" msgstr "Sélection-Retirer Tout" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 msgid "Selection-Remove from list" msgstr "Sélection-Retirer de la liste" -#: src/slic3r/GUI/GLCanvas3D.cpp:5642 +#: src/slic3r/GUI/GLCanvas3D.cpp:6678 msgid "Selection-Remove from rectangle" msgstr "Sélection-Retirer du rectangle" @@ -5961,11 +6460,11 @@ msgstr "Sélection-Supprimer l'Instance" msgid "Selection-Remove Object" msgstr "Sélection-Supprimer l'Objet" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "Sélectionner tous les objets" -#: src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:5556 msgid "Send G-code" msgstr "Envoyer le G-code" @@ -5973,27 +6472,31 @@ msgstr "Envoyer le G-code" msgid "Send G-Code to printer host" msgstr "Envoyer le G-Code à l'hôte d'imprimante" -#: src/slic3r/GUI/MainFrame.cpp:466 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "Envoyer pour imprimer le plateau actuel en tant que G-code" -#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 msgid "Send to printer" msgstr "Envoyer à l'imprimante" -#: src/slic3r/GUI/Tab.cpp:1169 +#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +msgid "Seq." +msgstr "Seq." + +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Sequential printing" msgstr "Impression séquentielle" -#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591 +#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Port série" -#: src/libslic3r/PrintConfig.cpp:1599 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "Vitesse du port série" -#: src/slic3r/GUI/FirmwareDialog.cpp:769 +#: src/slic3r/GUI/FirmwareDialog.cpp:807 msgid "Serial port:" msgstr "Port série :" @@ -6001,17 +6504,17 @@ msgstr "Port série :" msgid "Service name" msgstr "Nom du service" -#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025 -#: src/slic3r/GUI/Tab.cpp:3008 +#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 +#: src/slic3r/GUI/Tab.cpp:3160 msgid "Set" msgstr "Appliquer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1192 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Object" msgstr "Définir comme Objet Séparé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Objects" msgstr "Définir comme Objets Séparés" @@ -6019,7 +6522,7 @@ msgstr "Définir comme Objets Séparés" msgid "Set extruder change for every" msgstr "Définir le changement d'extrudeur pour chaque" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2833 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 msgid "Set extruder for selected items" msgstr "Définir l'extrudeur pour les items sélectionnés" @@ -6027,6 +6530,10 @@ msgstr "Définir l'extrudeur pour les items sélectionnés" msgid "Set extruder sequence" msgstr "Définir la séquence d'extrudeur" +#: src/slic3r/GUI/DoubleSlider.cpp:1504 +msgid "Set extruder sequence for the entire print" +msgstr "Définir la séquence d'extrusion pour l'ensemble de l'impression" + #: src/slic3r/GUI/wxExtensions.cpp:3080 msgid "Set extruder sequence for whole print" msgstr "Définir la séquence d'extrudeur pour l'impression complète" @@ -6035,674 +6542,695 @@ msgstr "Définir la séquence d'extrudeur pour l'impression complète" msgid "Set extruder(tool) sequence" msgstr "Définir la séquence d'extrudeur (outil)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Set lower thumb to current slider thumb" msgstr "Définir le curseur inférieur sur le curseur actuel" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:245 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:297 msgid "Set Mirror" msgstr "Appliquer la Symétrie" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Set number of instances" msgstr "Définir le nombre d'instances" -#: src/slic3r/GUI/Plater.cpp:4163 -#, c-format +#: src/slic3r/GUI/Plater.cpp:4771 +#, possible-c-format msgid "Set numbers of copies to %d" msgstr "Régler le nombre de copies sur %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:746 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" msgstr "Définir l'Orientation" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:715 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:750 msgid "Set Position" msgstr "Définir la Position" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Définir Imprimable" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" msgstr "Définir une Instance Imprimable" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:811 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:846 msgid "Set Scale" msgstr "Définir l'Échelle" -#: src/libslic3r/PrintConfig.cpp:2228 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Définit l'orientation de l'affichage LCD dans l'imprimante SLA. Le mode portrait échangera la signification des paramètres de hauteurs et de largeur et les images de sortie seront pivotées de 90 degrés." -#: src/slic3r/GUI/ConfigWizard.cpp:527 +#: src/slic3r/GUI/ConfigWizard.cpp:933 msgid "Set the shape of your printer's bed." msgstr "Réglez la forme du plateau de votre imprimante." -#: src/libslic3r/PrintConfig.cpp:524 +#: src/libslic3r/PrintConfig.cpp:556 msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion. Si la valeur reste sur zéro, Slic3r calcule la largeur d’extrusion en se basant sur le diamètre de la buse (voir l’info-bulle concernant la largeur d’extrusion du périmètre, la largeur d’extrusion du remplissage, etc…). Si la valeur est exprimée en pourcentage (par exemple : 230%), elle sera calculée par rapport à la hauteur de couche." -#: src/libslic3r/PrintConfig.cpp:417 +#: src/libslic3r/PrintConfig.cpp:448 msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour les périmètres extérieurs. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 200%), elle sera calculée par rapport à la hauteur de couche." -#: src/libslic3r/PrintConfig.cpp:831 +#: src/libslic3r/PrintConfig.cpp:878 msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour la première couche. Vous pouvez procéder ainsi pour obtenir des extrudats plus épais afin d’avoir une meilleure adhérence. Si la valeur est exprimée en pourcentage (par exemple : 120%), elle sera calculée par rapport à la hauteur de la première couche. Si elle est réglée sur zéro, elle utilisera la largeur d’extrusion par défaut." -#: src/libslic3r/PrintConfig.cpp:1689 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour le remplissage ou les surfaces solides. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche." -#: src/libslic3r/PrintConfig.cpp:2019 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour le remplissage ou les surfaces supérieures. Vous voudrez peut-être utiliser des extrudats plus fins pour remplir les zones les plus étroites et obtenir des finitions plus lisses. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon le diamètre de la buse sera utilisé. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche." -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour le remplissage. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Vous voudrez peut-être utiliser des extrudats plus épais pour accélérer le remplissage et rendre vos pièces plus solides. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche." -#: src/libslic3r/PrintConfig.cpp:1350 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement une largeur d’extrusion pour les périmètres. Vous voudrez peut-être utiliser des extrudats plus fin pour obtenir des surfaces plus nettes. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 200%), elle sera calculée par rapport à la hauteur de couche." -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour les supports. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon le diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche." -#: src/libslic3r/PrintConfig.cpp:480 +#: src/libslic3r/PrintConfig.cpp:512 msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater." msgstr "Paramétrez ceci avec le rayon de dégagement autour de l'extrudeur. Si l'extrudeur n'est pas centré, choisissez la plus grande valeur par sécurité. Ce réglage est utilisé pour vérifier les collisions et afficher l'aperçu graphique sur le plateau." -#: src/libslic3r/PrintConfig.cpp:65 +#: src/libslic3r/PrintConfig.cpp:81 msgid "Set this to the maximum height that can be reached by your extruder while printing." msgstr "Réglez cette valeur sur la hauteur maximum que peut atteindre votre extrudeur au cours de l'impression." -#: src/libslic3r/PrintConfig.cpp:469 +#: src/libslic3r/PrintConfig.cpp:501 msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Paramétrez ceci avec la distance verticale entre la pointe de la buse et (habituellement) les tiges du chariot de l'axe X. En d'autres termes, il s'agit de la hauteur du cylindre de dégagement autour de l'extrudeur, et elle représente la profondeur maximum à laquelle peut descendre l'extrudeur avant d'entrer en collision avec d'autres objets imprimés." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Définir non-Imprimable" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" msgstr "Définir une Instance non-Imprimable" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Set upper thumb to current slider thumb" msgstr "Définir le curseur supérieur sur le curseur actuel" -#: src/slic3r/GUI/BedShapeDialog.cpp:143 +#: src/libslic3r/PrintConfig.cpp:3494 +msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." +msgstr "Définit la sensibilité de journalisation. 0 : fatal, 1: erreur, 2 : avertissement, 3 : info, 4 : débogage, 5 : trace\nPar exemple. loglevel = 2 enregistre les messages d'erreur et d'avertissement de niveau fatal." + +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Réglages" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Settings for height range" msgstr "Réglages pour la zone de hauteur" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "Dois-je ajuster ces paramètres pour les supports ?" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "Dois-je ajuster ces réglages afin d'activer le Vase Spirale ?" -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "Dois-je ajuster ces réglages afin d'activer la tour de Nettoyage ?" -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "Dois-je passer au motif de remplissage rectiligne?" -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Dois-je synchroniser les couches de support afin d'activer la Tour de Nettoyage ?" -#: src/slic3r/GUI/BedShapeDialog.cpp:60 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 msgid "Shape" msgstr "Forme" -#: src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/GUI_Preview.cpp:258 msgid "Shells" msgstr "Coques" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:254 msgid "Shift + Left mouse button:" msgstr "Maj + Clic gauche souris :" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:260 msgid "Shift + Right mouse button:" msgstr "Maj + Clic droit souris :" -#: src/slic3r/GUI/GUI_Preview.cpp:221 +#: src/slic3r/GUI/GUI_Preview.cpp:233 msgid "Show" msgstr "Afficher" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show &Configuration Folder" msgstr "Afficher le Répertoire de &Configuration" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show &labels" +msgstr "Afficher les &labels" + +#: src/slic3r/GUI/MainFrame.cpp:707 msgid "Show about dialog" msgstr "Afficher la boîte de dialogue à propos" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show advanced settings" msgstr "Afficher les réglages avancés" -#: src/slic3r/GUI/PrintHostDialogs.cpp:158 +#: src/slic3r/GUI/PrintHostDialogs.cpp:159 msgid "Show error message" msgstr "Afficher le message d'erreur" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "Show incompatible print and filament presets" msgstr "Afficher les préréglages d'impression et de filament incompatibles" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Show keyboard shortcuts list" msgstr "Afficher la liste des raccourcis clavier" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show object/instance labels in 3D scene" +msgstr "Afficher les labels de l'objet /instance dans la scène 3D" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show simplified settings" msgstr "Afficher les réglages simplifiés" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "Afficher les supports" + +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show system information" msgstr "Afficher les informations système" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "Afficher la vue d'édition 3D" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "Afficher la prévisualisation des tranches 3D" -#: src/slic3r/GUI/MainFrame.cpp:480 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "Afficher les réglages de filament" -#: src/libslic3r/PrintConfig.cpp:2983 +#: src/libslic3r/PrintConfig.cpp:3357 msgid "Show the full list of print/G-code configuration options." msgstr "Afficher la liste complète des options de configuration d'impression/G-code." -#: src/libslic3r/PrintConfig.cpp:2988 +#: src/libslic3r/PrintConfig.cpp:3362 msgid "Show the full list of SLA print configuration options." msgstr "Afficher la liste complète des options de configuration d'impression SLA." -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:710 msgid "Show the list of the keyboard shortcuts" msgstr "Afficher la liste des raccourcis clavier" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" msgstr "Afficher le plateau" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "Afficher les réglages d'impression" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "Afficher les réglages de l'imprimante" -#: src/libslic3r/PrintConfig.cpp:2977 +#: src/libslic3r/PrintConfig.cpp:3351 msgid "Show this help." msgstr "Afficher cette aide." -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show user configuration folder (datadir)" msgstr "Afficher le répertoire de configuration utilisateur (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 msgid "Show/Hide (L)egend" msgstr "Afficher/Masquer la (L)égende" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Afficher/Masquer le dialogue des paramètres des périphériques 3Dconnexion" -#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "Afficher/Cacher la Légende" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Show/Hide object/instance labels" +msgstr "Afficher/Masquer les labels de l'objet/instance" + +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "Simple" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Simple mode" msgstr "Mode simple" -#: src/slic3r/GUI/GUI_App.cpp:674 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "Mode de Vue Simple" -#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239 +#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 msgid "Single extruder MM setup" msgstr "Réglage MM pour extrudeur unique" -#: src/libslic3r/PrintConfig.cpp:1767 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" msgstr "Multi Material à extrudeur unique" -#: src/slic3r/GUI/Tab.cpp:2023 -msgid "" -"Single Extruder Multi Material is selected, \n" -"and all extruders must have the same diameter.\n" -"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" -msgstr "" -"Le Multi-Matériaux Extrudeur Unique est sélectionné,\n" -"et tous les extrudeurs doivent avoir le même diamètre.\n" -"Voulez-vous modifier le diamètre pour tous les extrudeurs\n" -"en utilisant la valeur du diamètre de la buse du premier extrudeur ?" +#: src/slic3r/GUI/Tab.cpp:1865 +msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" +msgstr "Le Multi-Matériaux Extrudeur Unique est sélectionné,\net tous les extrudeurs doivent avoir le même diamètre.\nVoulez-vous modifier le diamètre pour tous les extrudeurs\nen utilisant la valeur du diamètre de la buse du premier extrudeur ?" -#: src/slic3r/GUI/Tab.cpp:2240 +#: src/slic3r/GUI/Tab.cpp:2303 msgid "Single extruder multimaterial parameters" msgstr "Paramètres multimatériaux pour extrudeur unique" -#: src/slic3r/GUI/BedShapeDialog.cpp:72 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137 -#: src/slic3r/GUI/Tab.cpp:2257 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 +#: src/slic3r/GUI/Tab.cpp:2320 msgid "Size" msgstr "Taille" -#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014 +#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 msgid "Size and coordinates" msgstr "Taille et coordonnées" -#: src/slic3r/GUI/BedShapeDialog.cpp:73 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." msgstr "Taille en X et Y du plateau rectangulaire." -#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050 -#: src/libslic3r/GCode/PreviewData.cpp:171 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Jupe" -#: src/slic3r/GUI/Tab.cpp:1049 +#: src/slic3r/GUI/Tab.cpp:1112 msgid "Skirt and brim" msgstr "Jupe et bordure" -#: src/libslic3r/PrintConfig.cpp:1617 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "Hauteur de la jupe" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "Boucles de la Jupe" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 msgid "SLA gizmo keyboard shortcuts" msgstr "Raccourcis clavier pour le gizmo SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1150 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 msgid "SLA gizmo turned off" msgstr "Gizmo SLA désactivé" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1115 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 msgid "SLA gizmo turned on" msgstr "Gizmo SLA activé" -#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277 +#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 msgid "SLA material" msgstr "Matériau SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Material Profiles Selection" msgstr "Sélection des Profils Matériaux SLA" -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 msgid "SLA material type" msgstr "Type de matériau SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Materials" msgstr "Matériaux SLA" -#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276 +#: src/slic3r/GUI/Preset.cpp:1473 msgid "SLA print" msgstr "Impression SLA" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2569 msgid "SLA print material notes" msgstr "Notes concernant le matériau d'impression SLA" -#: src/slic3r/GUI/Plater.cpp:690 +#: src/slic3r/GUI/Plater.cpp:814 msgid "SLA print settings" msgstr "Réglages d'impression SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 msgid "SLA Support Points" msgstr "Points de Support SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:722 +#: src/slic3r/GUI/GLCanvas3D.cpp:692 msgid "SLA supports outside the print area were detected" msgstr "SLA supports détectés en dehors de la zone d'impression" -#: src/slic3r/GUI/ConfigWizard.cpp:1493 +#: src/slic3r/GUI/ConfigWizard.cpp:1533 msgid "SLA Technology Printers" msgstr "Imprimantes Technologie SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Slab" msgstr "Slab" -#: src/libslic3r/PrintConfig.cpp:1268 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host." msgstr "Slic3r peut envoyer des fichiers G-codes vers un hôte d'imprimante. Ce champ doit contenir le type d'hôte." -#: src/libslic3r/PrintConfig.cpp:89 +#: src/libslic3r/PrintConfig.cpp:105 msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." msgstr "Slic3r peut envoyer des fichiers G-code à un hôte d'impression. Ce champ doit contenir la clé d'API ou le mot de passe requis pour l'authentification." -#: src/libslic3r/PrintConfig.cpp:82 +#: src/libslic3r/PrintConfig.cpp:98 msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance." msgstr "Slic3r peut télécharger des fichiers G-code vers un hôte d'impression. Ce champ doit contenir le nom d'hôte, l'adresse IP ou l'URL de l'instance hôte d'impression." -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r ne descendra pas en-dessous de cette vitesse." -#: src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Slice" msgstr "Découper" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "Découper un fichier en G-code" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "Découper un fichier en G-code, enregistrer sous" -#: src/libslic3r/PrintConfig.cpp:71 +#: src/libslic3r/PrintConfig.cpp:87 msgid "Slice gap closing radius" msgstr "Découper le rayon de fermeture de l'espacement" -#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3618 +#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5140 msgid "Slice now" msgstr "Découper maintenant" -#: src/libslic3r/PrintConfig.cpp:2944 +#: src/libslic3r/PrintConfig.cpp:3318 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Découper le modèle et exporter les couches d'impression SLA en tant que PNG." -#: src/libslic3r/PrintConfig.cpp:2965 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Slice the model and export toolpaths as G-code." msgstr "Découper le modèle et exporter les parcours en tant que G-code." -#: src/libslic3r/PrintConfig.cpp:2971 +#: src/libslic3r/PrintConfig.cpp:3345 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Découper le modèle en tant que FFF ou SLA en fonction de la valeur de configuration de la printer_technology." -#: src/slic3r/GUI/Plater.cpp:193 +#: src/slic3r/GUI/Plater.cpp:218 msgid "Sliced Info" msgstr "Informations de découpage" -#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159 -#: src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3647 msgid "Slicing" msgstr "Découpe" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 msgid "Slicing complete" msgstr "Découpe annulée" -#: src/libslic3r/SLAPrint.cpp:1459 +#: src/libslic3r/SLAPrint.cpp:760 msgid "Slicing done" msgstr "Découpe effectuée" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:876 msgid "Slicing Done!" msgstr "Découpe Effectuée !" -#: src/libslic3r/SLAPrint.cpp:759 +#: src/libslic3r/SLAPrintSteps.cpp:209 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "La découpe a du être interrompue du fait d'une erreur interne : index de découpage inconsistant." -#: src/libslic3r/SLAPrint.cpp:55 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Slicing model" msgstr "Découpe du modèle" -#: src/libslic3r/SLAPrint.cpp:59 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing supports" msgstr "Découpe des supports" -#: src/libslic3r/PrintConfig.cpp:2249 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "Lent" -#: src/libslic3r/PrintConfig.cpp:1635 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "Ralentir si le temps d'impression de la couche est inférieur à" -#: src/libslic3r/PrintConfig.cpp:2250 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "Inclinaison lente" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" msgstr "Périmètres courts" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:293 msgid "Smooth" msgstr "Lisse" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:263 msgid "Smoothing" msgstr "Lissage" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "Nom de l'instantané" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Software &Releases" msgstr "Software & Publications" -#: src/slic3r/GUI/PresetHints.cpp:181 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "remplissage solide" -#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687 -#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Remplissage solide" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "Remplissage solide toutes les" -#: src/libslic3r/PrintConfig.cpp:1667 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "Extrudeur pour le remplissage solide" -#: src/libslic3r/PrintConfig.cpp:1658 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" msgstr "Surface de seuil pour le remplissage solide" -#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Couches solides" -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "Matériau soluble" -#: src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." msgstr "Il est probable qu'un matériau soluble soit utilisé pour un support soluble." -#: src/libslic3r/PrintConfig.cpp:914 +#: src/libslic3r/PrintConfig.cpp:937 msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Certaines commandes G/M-code, y compris le contrôle de la température ainsi que d'autres, ne sont pas universelles. Paramétrez cette option dans le firmware de votre imprimante pour obtenir une sortie compatible. L'option \"Pas d'extrusion\" empêche complètement PrusaSlicer d'exporter toute valeur d'extrusion." +#: src/slic3r/GUI/GLCanvas3D.cpp:693 +msgid "Some objects are not visible" +msgstr "Certains objets ne sont pas visibles" + #: src/slic3r/GUI/GLCanvas3D.cpp:721 msgid "Some objects are not visible when editing supports" msgstr "Certains objets ne sont pas visibles lorsque les supports sont édités" -#: src/libslic3r/Print.cpp:1162 +#: src/libslic3r/Print.cpp:1222 msgid "Some objects are too close; your extruder will collide with them." msgstr "Certains objets sont trop proches ; votre extrudeur va entrer en collision avec eux." -#: src/libslic3r/Print.cpp:1177 +#: src/libslic3r/Print.cpp:1224 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Certains objets sont trop grands et ne peuvent pas être imprimés sans collision avec l'extrudeur." -#: src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2815 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Certains objets peuvent s'accommoder de quelques petits socles au lieu d'un seul grand. Ce paramètre définit à quelle distance le centre de deux petits socles devrait se trouver. S'ils sont proches, ils seront fusionnés en un seul socle." -#: src/libslic3r/PrintConfig.cpp:2086 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default." msgstr "Certaines imprimantes ou certains réglages d'imprimante peuvent rencontrer des difficultés pour imprimer avec une hauteur de couche variable. Activé par défaut." -#: src/libslic3r/PrintConfig.cpp:1897 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." msgstr "Espacement entre les lignes d'interface. Mettez à zéro pour obtenir une interface solide." -#: src/libslic3r/PrintConfig.cpp:1931 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." msgstr "Espacement entre les lignes des supports." -#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512 -#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084 -#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598 -#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698 -#: src/libslic3r/PrintConfig.cpp:2029 +#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 +#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "Vitesse" -#: src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "Vitesse (baud) du port USB/série pour la connexion à l'imprimante." -#: src/libslic3r/GCode/PreviewData.cpp:400 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "Vitesse (mm/s)" -#: src/libslic3r/PrintConfig.cpp:872 +#: src/libslic3r/PrintConfig.cpp:920 msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Vitesse pour combler de petits interstices avec de courts mouvements en zigzag. Gardez un réglage relativement lent afin d'éviter les problèmes de vibration et de résonance. Réglez sur zéro pour désactiver le remplissage d'interstices." -#: src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Tab.cpp:1160 msgid "Speed for non-print moves" msgstr "Vitesse pour les déplacements sans impression" -#: src/libslic3r/PrintConfig.cpp:1362 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Vitesse pour les périmètres (contours, parois verticales). Réglez sur zéro pour un ajustement automatique." -#: src/slic3r/GUI/Tab.cpp:1085 +#: src/slic3r/GUI/Tab.cpp:1148 msgid "Speed for print moves" msgstr "Vitesse pour les déplacements d'impression" -#: src/libslic3r/PrintConfig.cpp:200 +#: src/libslic3r/PrintConfig.cpp:226 msgid "Speed for printing bridges." msgstr "Vitesse d'impression des ponts." -#: src/libslic3r/PrintConfig.cpp:1699 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto." msgstr "Vitesse pour imprimer des zones solides (supérieures/inférieures/parois horizontales internes). Peut être exprimée en pourcentage (par exemple: 80%) de la vitesse de remplissage par défaut susmentionnée. Réglez sur zéro pour un ajustement automatique." -#: src/libslic3r/PrintConfig.cpp:1906 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed." msgstr "Vitesse d'impression des couches d'interface des supports. Si exprimée en pourcentage (par exemple 50%), elle sera calculée à partir de la vitesse d'impression des supports." -#: src/libslic3r/PrintConfig.cpp:1940 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." msgstr "Vitesse d'impression du support." -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." msgstr "Vitesse pour imprimer le remplissage interne. Réglez sur zéro pour un ajustement automatique." -#: src/libslic3r/PrintConfig.cpp:2030 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto." msgstr "Vitesse pour imprimer les couches solides supérieures (ne s'applique qu'aux couches externes les plus hautes et pas aux couches internes solides). Vous voudrez peut-être abaisser cette vitesse afin d'avoir une finition de surface plus nette. Peut être exprimé en pourcentage (par exemple: 80%) de la vitesse de remplissage solide susmentionnée. Réglez sur zéro pour un ajustement automatique." -#: src/libslic3r/PrintConfig.cpp:2052 +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "Vitesse pour les déplacements (trajet entre deux points d'extrusion distants)." -#: src/libslic3r/PrintConfig.cpp:627 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "Vitesse du premier mouvement de refroidissement" -#: src/libslic3r/PrintConfig.cpp:646 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "Vitesse du dernier mouvement de refroidissement" -#: src/libslic3r/PrintConfig.cpp:585 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "Vitesse utilisée au tout début de la phase de chargement." -#: src/libslic3r/PrintConfig.cpp:577 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "Vitesse utilisée pour charger le filament sur la tour de nettoyage." -#: src/libslic3r/PrintConfig.cpp:593 +#: src/libslic3r/PrintConfig.cpp:624 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Vitesse utilisée pour décharger le filament sur la tour de nettoyage (n'affecte pas l'étape initiale de déchargement juste après l'expulsion)." -#: src/libslic3r/PrintConfig.cpp:602 +#: src/libslic3r/PrintConfig.cpp:633 msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Vitesse utilisée pour décharger l'extrémité du filament juste après l'expulsion." -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Speed:" msgstr "vitesse :" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Sphere" msgstr "Sphère" -#: src/libslic3r/PrintConfig.cpp:1717 +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "Mode de vase spirale" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "Vase Spirale" -#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988 -#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082 +#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 msgid "Split" msgstr "Scinder" -#: src/slic3r/GUI/Plater.cpp:2971 +#: src/slic3r/GUI/Plater.cpp:4028 msgid "Split the selected object" msgstr "Scinder l'objet sélectionné" -#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988 +#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 msgid "Split the selected object into individual objects" msgstr "Scinder l'objet sélectionné en objets individuels" -#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008 +#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 msgid "Split the selected object into individual sub-parts" msgstr "Scinder l'objet sélectionné en sous-parties individuelles" -#: src/slic3r/GUI/GLCanvas3D.cpp:3490 +#: src/slic3r/GUI/GLCanvas3D.cpp:4599 msgid "Split to objects" msgstr "Diviser en objets individuels" -#: src/slic3r/GUI/Plater.cpp:2796 +#: src/slic3r/GUI/Plater.cpp:2965 msgid "Split to Objects" msgstr "Diviser en Objets" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1110 +#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "Scinder en parties" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1904 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 msgid "Split to Parts" msgstr "Scinder en Parties" @@ -6710,11 +7238,11 @@ msgstr "Scinder en Parties" msgid "Standard" msgstr "Standard" -#: src/libslic3r/PrintConfig.cpp:799 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "Étoiles" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "Démarrer un nouveau projet" @@ -6722,12 +7250,12 @@ msgstr "Démarrer un nouveau projet" msgid "Start at height" msgstr "Hauteur de début" -#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949 -#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "G-code de début" -#: src/slic3r/GUI/MainFrame.cpp:403 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "Démarrer un nouveau processus de découpe" @@ -6735,24 +7263,24 @@ msgstr "Démarrer un nouveau processus de découpe" msgid "Start printing after upload" msgstr "Lancer l'impression après le téléchargement" -#: src/slic3r/GUI/PrintHostDialogs.cpp:150 +#: src/slic3r/GUI/PrintHostDialogs.cpp:151 msgid "Status" msgstr "État" -#: src/slic3r/GUI/FirmwareDialog.cpp:782 +#: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Status:" msgstr "État :" -#: src/slic3r/GUI/Tab.cpp:2158 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Stealth" msgstr "Mode silencieux" -#: src/slic3r/GUI/Plater.cpp:1084 +#: src/slic3r/GUI/Plater.cpp:1267 msgid "stealth mode" msgstr "mode silencieux" -#: src/slic3r/GUI/Plater.cpp:3545 -#, c-format +#: src/slic3r/GUI/Plater.cpp:5001 +#, possible-c-format msgid "STL file exported to %s" msgstr "Fichier STL exporté vers %s" @@ -6760,814 +7288,803 @@ msgstr "Fichier STL exporté vers %s" msgid "Stop at height" msgstr "Hauteur d'arrêt" -#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 msgid "Success!" msgstr "Réussi !" -#: src/slic3r/GUI/PresetHints.cpp:200 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "support" -#: src/libslic3r/PrintConfig.cpp:2441 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Support base diameter" msgstr "Diamètre de la base du support" -#: src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2693 msgid "Support base height" msgstr "Hauteur de la base du support" -#: src/libslic3r/PrintConfig.cpp:2566 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base safety distance" msgstr "Distance de sécurité de la base du support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Blocker" msgstr "Bloqueur de Support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Enforcer" msgstr "Générateur de Support" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "Générateur de support" -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3593 msgid "Support head" msgstr "Tête du support" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2611 msgid "Support head front diameter" msgstr "Diamètre avant de la tête du support" -#: src/libslic3r/PrintConfig.cpp:2378 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head penetration" msgstr "Pénétration de la tête du support" -#: src/libslic3r/PrintConfig.cpp:2387 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head width" msgstr "Largeur de la tête du support" -#: src/slic3r/GUI/PresetHints.cpp:210 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "interface du support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70 -#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236 -#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060 -#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432 -#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786 -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806 -#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887 -#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905 -#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930 -#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939 -#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956 -#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" msgstr "Support" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904 -#: src/libslic3r/GCode/PreviewData.cpp:173 +#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Interface des supports" -#: src/libslic3r/PrintConfig.cpp:1957 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)." msgstr "Le support ne sera pas généré pour les surplombs dont l'inclinaison (90° = vertical) dépasse le seuil défini. Autrement dit, cette valeur représente l'inclinaison horizontale maximum (mesurée à partir du plan horizontal) que vous pouvez imprimer sans support. Réglez sur zéro pour une détection automatique (recommandé)." -#: src/libslic3r/PrintConfig.cpp:1877 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" msgstr "Extrudeur pour l'interface des supports/du radeau" -#: src/libslic3r/PrintConfig.cpp:1851 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" msgstr "Extrudeur pour support/raft/jupe" -#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815 -#: src/libslic3r/PrintConfig.cpp:2423 +#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2665 msgid "Support on build plate only" msgstr "Support sur le plateau uniquement" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:991 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 msgid "Support parameter change" msgstr "Changement des paramètres de support" -#: src/slic3r/GUI/Tab.cpp:3406 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support pillar" msgstr "Pilier de support" -#: src/libslic3r/PrintConfig.cpp:2407 +#: src/libslic3r/PrintConfig.cpp:2649 msgid "Support pillar connection mode" msgstr "Mode de connexion du pilier de support" -#: src/libslic3r/PrintConfig.cpp:2397 +#: src/libslic3r/PrintConfig.cpp:2639 msgid "Support pillar diameter" msgstr "Diamètre du pilier de support" -#: src/libslic3r/PrintConfig.cpp:2499 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "Support points density" msgstr "Densité des points de support" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 msgid "Support points edit" msgstr "Éditer les points de support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519 -#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397 -#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363 -#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379 -#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398 -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431 -#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490 -#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508 +#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 +#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 +#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 +#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 +#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 +#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 +#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 +#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 +#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 +#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Supports" msgstr "Supports" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "supports and pad" msgstr "supports et socle" -#: src/libslic3r/PrintConfig.cpp:1043 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "Temps de support restant" -#: src/libslic3r/PrintConfig.cpp:1053 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "Supporte le mode silencieux" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 -msgid "" -"Supports work better, if the following feature is enabled:\n" -"- Detect bridging perimeters" -msgstr "" -"Les supports fonctionnent mieux, si la fonctionnalité suivante est activée :\n" -"- Détecter les périmètres de pontage" +#: src/slic3r/GUI/ConfigManipulation.cpp:159 +msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" +msgstr "Les supports fonctionnent mieux, si la fonctionnalité suivante est activée :\n- Détecter les périmètres de pontage" -#: src/slic3r/GUI/Preferences.cpp:76 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets" msgstr "Supprimer les préréglages \" - par défaut - \"" -#: src/slic3r/GUI/Preferences.cpp:78 +#: src/slic3r/GUI/Preferences.cpp:91 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Supprimer les préréglages \" - par défaut - \" dans les choix Impression / Filament / Imprimante une fois qu'il y a d'autres préréglages valides disponibles." -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/DoubleSlider.cpp:1112 +msgid "Switch code to Change extruder" +msgstr "Code de changement pour Changer l'extrudeur" + +#: src/slic3r/GUI/DoubleSlider.cpp:1147 +msgid "Switch code to Color change (%1%) for:" +msgstr "Code de changement pour Changer de couleur (%1%) pour :" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 msgid "Switch to 3D" msgstr "Basculer vers la 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 msgid "Switch to editing mode" msgstr "Basculer vers le mode édition" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 msgid "Switch to Preview" msgstr "Basculer vers la Prévisualisation" -#: src/slic3r/GUI/wxExtensions.cpp:2412 -#, c-format +#: src/slic3r/GUI/wxExtensions.cpp:703 +#, possible-c-format msgid "Switch to the %s mode" msgstr "Basculer vers le mode %s" -#: src/slic3r/GUI/GUI_App.cpp:752 -msgid "" -"Switching the language will trigger application restart.\n" -"You will lose content of the plater." +#: src/slic3r/GUI/GUI_App.cpp:882 +msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." msgstr "Le changement de langue déclenchera le redémarrage de l’application. L'objet et tous les paramètres non enregistrés seront perdus." -#: src/slic3r/GUI/WipeTowerDialog.cpp:327 -msgid "" -"Switching to simple settings will discard changes done in the advanced mode!\n" -"\n" -"Do you want to proceed?" -msgstr "" -"Basculer vers les réglages simples annulera les changements effectués en mode avancé !\n" -"\n" -"Voulez-vous continuer ?" +#: src/slic3r/GUI/WipeTowerDialog.cpp:365 +msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" +msgstr "Basculer vers les réglages simples annulera les changements effectués en mode avancé !\n\nVoulez-vous continuer ?" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1016 msgid "symbolic profile name" msgstr "nom de profil symbolique" -#: src/libslic3r/PrintConfig.cpp:1949 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive." msgstr "Synchroniser les couches du support avec les couches d'impression de l'objet. Cela est utile pour les imprimantes multi-matériaux, pour lesquelles le changement d'extrudeur est onéreux." -#: src/libslic3r/PrintConfig.cpp:1947 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "Synchroniser avec les couches de l'objet" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "System &Info" msgstr "&Informations sur le Système" -#: src/slic3r/GUI/SysInfoDialog.cpp:44 +#: src/slic3r/GUI/SysInfoDialog.cpp:78 msgid "System Information" msgstr "Informations sur le Système" -#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970 -#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067 -#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553 +#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 +#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 +#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "Préréglages système" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" msgstr "Capturer un in&stantané de la configuration" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Instantané de la configuration en cours" -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Température" -#: src/libslic3r/PrintConfig.cpp:1727 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped." msgstr "Différence de température devant être appliquée quand un extrudeur n'est pas actif. Permet la génération d'un contour complet \"sacrificiel\" sur lequel les buses sont nettoyées régulièrement." -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "Variation de température" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Temperatures" msgstr "Températures" -#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 msgid "Test" msgstr "Test" -#: src/slic3r/GUI/BedShapeDialog.cpp:171 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "Texture" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." -msgstr "Le modèle de remplissage %1% n'est pas censé fonctionner avec une densité de 100%%." +msgstr "Le modèle de remplissage %1% n'est pas censé fonctionner avec une densité de 100%." -#: src/slic3r/GUI/FirmwareDialog.cpp:530 -#, c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:548 +#, possible-c-format msgid "The %s device could not have been found" msgstr "L'équipement %s n'a pas pu être trouvé" -#: src/slic3r/GUI/FirmwareDialog.cpp:417 -#, c-format -msgid "" -"The %s device was not found.\n" -"If the device is connected, please press the Reset button next to the USB connector ..." -msgstr "" -"L'équipement %s n'a pas été trouvé.\n" -"Si l'équipement est connecté, veuillez appuyer sur le bouton Reset à côté du connecteur USB ..." +#: src/slic3r/GUI/FirmwareDialog.cpp:436 +#, possible-c-format +msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." +msgstr "L'équipement %s n'a pas été trouvé.\nSi l'équipement est connecté, veuillez appuyer sur le bouton Reset à côté du connecteur USB ..." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640 -msgid "" -"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" -"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" -"once the rotation is embedded into the object coordinates." +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 +msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." msgstr "L'objet actuel est incliné (les angles de rotation ne sont pas des multiples de 90 °). La mise à l'échelle non uniforme des objets inclinés est possible dans le système de coordonnées seulement quand la rotation est incorporée aux coordonnées de l'objet." -#: src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2717 msgid "The default angle for connecting support sticks and junctions." msgstr "L'angle par défaut pour connecter les tiges de support et les jonctions." -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:631 msgid "The endings of the support pillars will be deployed on the gap between the object and the pad. 'Support base safety distance' has to be greater than the 'Pad object gap' parameter to avoid this." msgstr "Les extrémités des piliers de support seront déployées dans l'espace entre l'objet et le socle. La 'Distance de sécurité de base du support' doit être plus grande que le paramètre 'Espace de l'objet socle' pour éviter cela." -#: src/libslic3r/PrintConfig.cpp:457 +#: src/libslic3r/PrintConfig.cpp:489 msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders." msgstr "L'extrudeur à utiliser (à moins que d'autres réglages d'extrudeur plus spécifiques soient spécifiés). Cette valeur se substitue aux extrudeurs de périmètre et de remplissage, mais pas aux extrudeurs de support." -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "L'extrudeur à utiliser pour imprimer le remplissage." -#: src/libslic3r/PrintConfig.cpp:1341 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "L'extrudeur à utiliser pour imprimer les périmètres et la bordure. Le premier extrudeur a le numéro 1." -#: src/libslic3r/PrintConfig.cpp:1669 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." msgstr "L'extrudeur à utiliser pour imprimer les remplissages solides." -#: src/libslic3r/PrintConfig.cpp:1879 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too." msgstr "L'extrudeur à utiliser pour imprimer les intercalaires du support (1+,0 pour utiliser l'extrudeur actuel et limiter les changements d'outil). Cela affecte également le raft." -#: src/libslic3r/PrintConfig.cpp:1853 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)." msgstr "L'extrudeur à utiliser pour imprimer des supports, du raft ou des contours (1+,0 pour utiliser l'extrudeur actuel et limiter les changements d'outil)." -#: src/libslic3r/PrintConfig.cpp:695 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "Le type de matériau de filament à utiliser dans les G-codes personnalisés." -#: src/libslic3r/PrintConfig.cpp:3105 +#: src/libslic3r/PrintConfig.cpp:3479 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Le fichier dans lequel la sortie sera écrite (si rien n'est spécifié, il sera basé sur le fichier d'entrée)" -#: src/libslic3r/PrintConfig.cpp:1054 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "Le firmware est compatible avec le mode silencieux" -#: src/libslic3r/PrintConfig.cpp:351 +#: src/libslic3r/PrintConfig.cpp:377 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "La première couche sera réduite sur le plan XY selon la valeur configurée afin de compenser l'écrasement de la première couche également connu sous le nom d'effet Pied d'Éléphant." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2726 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 msgid "the following characters are not allowed:" msgstr "les caractères suivant ne sont pas autorisés :" -#: src/slic3r/GUI/Tab.cpp:3311 +#: src/slic3r/GUI/Tab.cpp:3445 msgid "the following suffix is not allowed:" msgstr "le suffixe suivant n'est pas autorisé :" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Espace entre le bas de l'objet et le socle généré en mode élévation zéro." -#: src/libslic3r/PrintConfig.cpp:2453 +#: src/libslic3r/PrintConfig.cpp:2695 msgid "The height of the pillar base cone" msgstr "La hauteur du cône de la base du pilier" -#: src/libslic3r/PrintConfig.cpp:2481 +#: src/slic3r/GUI/DoubleSlider.cpp:1895 +msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." +msgstr "Les dernières données de changement de couleur ont été enregistrées pour une impression multi-extrudeur avec des changements d'outils pour l'impression entière." + +#: src/slic3r/GUI/DoubleSlider.cpp:1889 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "Les dernières données de changement de couleur ont été enregistrées pour une impression multi-extrudeur." + +#: src/slic3r/GUI/DoubleSlider.cpp:1873 +msgid "The last color change data was saved for a multiple extruder printer profile." +msgstr "Les dernières données de changement de couleur ont été enregistrées pour un profil d'imprimante à extrudeurs multiples." + +#: src/slic3r/GUI/DoubleSlider.cpp:1872 +msgid "The last color change data was saved for a single extruder printer profile." +msgstr "Les dernières données de changement de couleur ont été enregistrées pour un profil d'imprimante à extrudeur unique." + +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." +msgstr "Les dernières données de changement de couleur ont été sauvegardées une vue d'une impression avec extrudeur simple." + +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "La distance maximum entre deux piliers pour qu'ils soient reliés. Une valeur de zéro empêchera les piliers en cascade." -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/libslic3r/PrintConfig.cpp:2727 msgid "The max length of a bridge" msgstr "La longueur maximum d'un pont" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2705 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Distance minimum entre la base du pilier et le modèle en mm. Utile en mode élévation zéro où un espace correspondant à ce paramètre est inséré entre le modèle et le socle." -#: src/libslic3r/PrintConfig.cpp:2176 +#: src/libslic3r/PrintConfig.cpp:175 +msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." +msgstr "Le nombre de couches solides inférieures est augmenté au-dessus de bottom_solid_layers si nécessaire pour satisfaire l'épaisseur minimale de la coque inférieure." + +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." +msgstr "Le nombre de couches solides supérieures est augmenté au-dessus de top_solid_layers si nécessaire pour satisfaire l'épaisseur minimale de la coque supérieure. Ceci est utile pour éviter l'effet de capitonnage lors de l'impression avec une hauteur de couche variable." + +#: src/libslic3r/PrintConfig.cpp:2277 msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes." msgstr "L'objet sera agrandi/réduit sur les plans XY selon la valeur indiquée (négatif = réduit, positif = agrandi). Ce réglage peut être utile pour un réglage fin des tailles de trous." -#: src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "The object will be raised by this number of layers, and support material will be generated under it." msgstr "L'objet sera surélevé de ce nombre de couches, et du support sera généré en dessous." -#: src/libslic3r/PrintConfig.cpp:2259 -msgid "" -"The percentage of the bed area. \n" -"If the print area exceeds the specified value, \n" -"then a slow tilt will be used, otherwise - a fast tilt" -msgstr "" -"Pourcentage de la zone du lit.\n" -"Si la zone d'impression excède la valeur spécifiée,\n" -"alors une inclinaison lente sera appliquée, sinon - une inclinaison rapide" +#: src/libslic3r/PrintConfig.cpp:2424 +msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" +msgstr "Pourcentage de la zone du lit.\nSi la zone d'impression excède la valeur spécifiée,\nalors une inclinaison lente sera appliquée, sinon - une inclinaison rapide" -#: src/slic3r/GUI/GUI_App.cpp:831 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "Les préréglages des onglets suivants ont été modifiés" -#: src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "L'imprimante multiplexe les filaments vers une seule tête d'extrusion." -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Format/3mf.cpp:1630 msgid "The selected 3mf file has been saved with a newer version of %1% and is not compatible." msgstr "Le fichier 3mf sélectionné a été enregistré avec une version plus récente de %1% et n'est pas compatible." -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "The selected amf file has been saved with a newer version of %1% and is not compatible." msgstr "Le fichier amf sélectionné a été enregistré avec une version plus récente de %1% et n'est pas compatible." -#: src/slic3r/GUI/BedShapeDialog.cpp:342 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "Le fichier sélectionné ne contient aucune géométrie." -#: src/slic3r/GUI/BedShapeDialog.cpp:346 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Le fichier sélectionné contient plusieurs zones disjointes. Cela n'est pas utilisable." -#: src/slic3r/GUI/Plater.cpp:2271 +#: src/slic3r/GUI/Plater.cpp:2954 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "L'objet sélectionné ne peut être scindé car il contient plus d'un volume/matériau." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 msgid "The selected object couldn't be split because it contains only one part." msgstr "L'objet sélectionné n'a pu être scindé car il ne contient qu'une seule pièce." -#: src/slic3r/GUI/MainFrame.cpp:410 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "Le projet sélectionné n'est plus disponible" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." +msgstr "L'impression séquentielle est activée.\nIl est impossible d'appliquer un G-code personnalisé pour des objets en impression séquentielle.\nCe code ne sera pas traité au cours de la génération du G-code." + +#: src/libslic3r/PrintConfig.cpp:2837 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "La pente de la paroi du socle par rapport au plan du lit. 90 degrés donne des murs droits." -#: src/libslic3r/PrintConfig.cpp:1544 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used." msgstr "La vitesse de chargement d'un filament dans l'extrudeur après une rétractation (ne s'applique qu'au moteur de l'extrudeur). Si cette valeur reste sur zéro, la vitesse de rétraction est utilisée." -#: src/libslic3r/PrintConfig.cpp:1536 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "La vitesse des rétractations (ne s'applique qu'au moteur de l'extrudeur)." +#: src/slic3r/GUI/ConfigManipulation.cpp:81 +#, no-c-format +msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" +msgstr "Les dernières données de changement de couleur ont été enregistrées pour une impression multi-extrudeur avec des changements d'outils pour l'impression entière." + #: src/slic3r/GUI/ConfigManipulation.cpp:75 #, no-c-format -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- inactive Ensure vertical shell thickness" -msgstr "" -"Le mode Vase Spirale nécessite :\n" -"- un périmètre\n" -"- pas de couches solides supérieures\n" -"- une densité de remplissage de 0%\n" -"- pas de matériau de soutien\n" -"- la non-activation d'Assurer l'épaisseur verticale de la paroi" +msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" +msgstr "Le mode Vase Spirale nécessite :\n- un périmètre\n- pas de couches solides supérieures\n- une densité de remplissage de 0%\n- pas de matériau de soutien\n- la non-activation d'Assurer l'épaisseur verticale de la paroi" -#: src/libslic3r/Print.cpp:1187 +#: src/libslic3r/Print.cpp:1233 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "L'option Vase Spirale ne peut être utilisé que lors de l'impression d'un seul objet." -#: src/libslic3r/Print.cpp:1189 +#: src/libslic3r/Print.cpp:1240 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "L'option Vase Spirale ne peut être utilisé que lors de l'impression d'objets mono-matériau." -#: src/slic3r/GUI/Tab.cpp:2900 +#: src/slic3r/GUI/Tab.cpp:3052 msgid "The supplied name is empty. It can't be saved." msgstr "Le nom proposé est vide. Sauvegarde impossible." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3449 msgid "The supplied name is not available." msgstr "Le nom proposé n'est pas disponible." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2725 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278 -#: src/slic3r/GUI/Tab.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:3444 msgid "The supplied name is not valid;" msgstr "Le nom fourni n'est pas valide ;" -#: src/libslic3r/Print.cpp:1268 +#: src/libslic3r/Print.cpp:1218 msgid "The supplied settings will cause an empty print." msgstr "Les réglages fournis vont entraîner une impression vide." -#: src/libslic3r/PrintConfig.cpp:2524 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "The thickness of the pad and its optional cavity walls." msgstr "L'épaisseur du socle et de ses parois de cavité optionnelles." -#: src/libslic3r/PrintConfig.cpp:1825 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Distance verticale entre l'objet et l'intercalaire du support. Régler cette valeur sur zéro empêchera Slic3r d'utiliser la vitesse et le débit des ponts pour la première couche de l'objet." -#: src/slic3r/GUI/Tab.cpp:2429 -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Shall I disable it in order to enable Firmware Retraction?" -msgstr "" -"L'option Nettoyage n'est pas disponible lorsque vous utilisez le mode Rétractation du Firmware.\n" -"\n" -"Voulez-vous que je la désactive pour permettre la Rétractation du Firmware ?" +#: src/slic3r/GUI/Tab.cpp:2571 +msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" +msgstr "L'option Nettoyage n'est pas disponible lorsque vous utilisez le mode Rétractation du Firmware.\n\nVoulez-vous que je la désactive pour permettre la Rétractation du Firmware ?" -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "À l'heure actuelle, la Tour de Nettoyage ne prend pas en charge l'E volumétrique (use_volumetric_e-0)." -#: src/slic3r/GUI/ConfigManipulation.cpp:107 -msgid "" -"The Wipe Tower currently supports the non-soluble supports only\n" -"if they are printed with the current extruder without triggering a tool change.\n" -"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "" -"La tour de nettoyage prend actuellement en charge les supports non solubles seulement\n" -"si ils sont imprimés avec l'extrudeur actuel sans déclencher un changement d'outil.\n" -"(support_material_extruder et support_material_interface_extruder doivent être réglés sur 0)." +#: src/slic3r/GUI/ConfigManipulation.cpp:115 +msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgstr "La tour de nettoyage prend actuellement en charge les supports non solubles seulement\nsi ils sont imprimés avec l'extrudeur actuel sans déclencher un changement d'outil.\n(support_material_extruder et support_material_interface_extruder doivent être réglés sur 0)." -#: src/libslic3r/Print.cpp:1306 +#: src/libslic3r/Print.cpp:1396 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "A l'heure actuelle la Tour de Nettoyage ne tolère les supports non-solubles que s'ils sont imprimés avec l'extrudeur en cours d'utilisation sans déclencher un changement d'outil. (support_material_extruder de même que support_material_interface_extruder doivent être réglés sur 0)." -#: src/libslic3r/Print.cpp:1200 +#: src/libslic3r/Print.cpp:1266 +msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." +msgstr "La tour de nettoyage n'est actuellement pas prise en charge pour les impressions séquentielles multimatériaux." + +#: src/libslic3r/Print.cpp:1258 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "La tour de nettoyage est actuellement supportée uniquement pour les versions de G-Code de Marlin, RepRap/Sprinter et Repetier." -#: src/libslic3r/Print.cpp:1202 +#: src/libslic3r/Print.cpp:1260 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "La tour de nettoyage est actuellement supportée uniquement avec l'adressage relatif de l'extrudeur (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1225 +#: src/libslic3r/Print.cpp:1289 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "La tour de nettoyage est uniquement supportées pour plusieurs objets s'ils sont imprimés avec un nombre égal de couche de radeau" -#: src/libslic3r/Print.cpp:1227 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils sont imprimés avec la même support_material_contact_distance" -#: src/libslic3r/Print.cpp:1229 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils découpés de la même façon." -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1287 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils ont une même hauteur de couche" -#: src/libslic3r/Print.cpp:1155 +#: src/libslic3r/Print.cpp:1253 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "La tour de nettoyage n'est supportée que si tous les extrudeurs ont le même diamètre de buse et utilisent un filament de même diamètre." -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1335 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "La tour de Nettoyage n'est prise en charge que si tous les objets ont la même hauteur de couche variable" -#: src/slic3r/GUI/UpdateDialogs.cpp:127 -#, c-format +#: src/libslic3r/SLAPrintSteps.cpp:596 +msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." +msgstr "Il y a des objets non imprimables. Essayez d'ajuster les paramètres de support pour rendre les objets imprimables." + +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." +msgstr "Il y a un changement de couleur pour un extrudeur qui n'a pas été utilisé auparavant.\nVérifiez vos paramètres pour éviter les changements de couleur redondants." + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." +msgstr "Il y a un changement de couleur pour un extrudeur qui ne sera pas utilisé avant la fin du travail d'impression.\nCe code ne sera pas traité lors de la génération du G-code." + +#: src/slic3r/GUI/DoubleSlider.cpp:993 +msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." +msgstr "Une modification d'extrudeur est défini sur le même extrudeur.\nCe code ne sera pas traité lors de la génération du G-code." + +#: src/slic3r/GUI/UpdateDialogs.cpp:225 +#, possible-c-format msgid "This %s version: %s" msgstr "Version de ce %s : %s" -#: src/libslic3r/PrintConfig.cpp:140 +#: src/libslic3r/PrintConfig.cpp:155 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Ce code est inséré entre des objets lorsque vous utilisez l'impression séquentielle. Par défaut la température de l'extrudeur et du plateau est réinitialisée et utilise la commande sans-attente ; toutefois si des commandes M104, M109, M140 ou M190 sont détectées dans ce code personnalisé, Slic3r n'ajoutera pas de commandes de température. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r, donc vous pouvez entrer une commande \"M109S[first_layer_temperature]\" où vous le souhaitez." -#: src/libslic3r/PrintConfig.cpp:1032 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ce code personnalisé est inséré à chaque changement de couche, juste après le mouvement Z et avant le déplacement de l'extrudeur au point de départ de la couche suivante. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r de même que [layer_num] et [layer_z]." -#: src/libslic3r/PrintConfig.cpp:129 +#: src/libslic3r/PrintConfig.cpp:144 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ce code personnalisé est inséré à chaque changement de couche, juste avant le mouvement en Z. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r de même que [layer_num] et [layer_z]." -#: src/libslic3r/PrintConfig.cpp:2057 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "This custom code is inserted before every toolchange. Placeholder variables for all PrusaSlicer settings as well as {previous_extruder} and {next_extruder} can be used. When a tool-changing command which changes to the correct extruder is included (such as T{next_extruder}), PrusaSlicer will emit no other such command. It is therefore possible to script custom behaviour both before and after the toolchange." msgstr "Ce code personnalisé est inséré avant chaque changement d'outil. Des variables génériques pour n'importe quels réglages PrusaSlicer ainsi que {previous_extruder} et {next_extruder} peuvent être utilisées. Lorsqu'une commande de changement d'outil qui occasionne un changement concernant le bon extrudeur est incluse (comme T{next_extruder}), PrusaSlicer n'émettra pas d'autres commandes de ce type. Il est donc possible de rédiger le script d'un comportement personnalisé à la fois avant et après le changement d'outil." -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:396 msgid "This end procedure is inserted at the end of the output file, before the printer end gcode (and before any toolchange from this filament in case of multimaterial printers). Note that you can use placeholder variables for all PrusaSlicer settings. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Cette procédure de fin est insérée à la fin d'un fichier de sortie, avant le gcode de fin de l'imprimante (et avant tout changement d'outil de ce filament dans le cas des imprimantes multimatériaux). Notez que vous pouvez utiliser des variables génériques pour tous les réglages PrusaSlicer. Si vous avez des extrudeurs multiples, le gcode est traité dans l'ordre des extrudeurs." -#: src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:386 msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all PrusaSlicer settings." msgstr "Cette procédure de fin est insérée à la fin d'un fichier de sortie. Notez que vous pouvez utiliser des variables génériques pour tous les paramètres PrusaSlicer." -#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds." -msgstr "Ce réglage expérimental sert à limiter la vitesse de changement dans le flux d'extrusion. Une valeur de 1.8 mm³/s² garantit qu'un changement de flux d'extrusion de 1.8 mm³/s (largeur d'extrusion 0.45mm, hauteur d'extrusion 0.2mm, alimentation 20 mm/s) à 5.4 mm³/s (alimentation 60 mm/s) prendra au moins 2 secondes." +msgstr "Ce réglage expérimental sert à limiter la vitesse de changement dans le flux d'extrusion. Une valeur de 1.8 mm³/s² garantit qu'un changement de flux d'extrusion de 1.8 mm³/s (largeur d'extrusion 0.45mm, hauteur d'extrusion 0.2mm, vitesse d'avance de 20 mm/s) à 5.4 mm³/s (vitesse d'avance de 60 mm/s) prendra au moins 2 secondes." -#: src/libslic3r/PrintConfig.cpp:1183 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports." msgstr "Ce réglage expérimental est utilisé pour paramétrer la vitesse volumétrique maximum tolérée par votre extrudeur." -#: src/libslic3r/PrintConfig.cpp:2061 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." msgstr "Ce réglage expérimental utilise les commandes G10 et G11 pour laisser le firmware gérer la rétractation. Utilisable seulement par les versions récentes de Marlin." -#: src/libslic3r/PrintConfig.cpp:2075 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Cette fonction expérimentale génère des valeurs de E en millimètres cubiques au lieu de millimètres linéaires. Si votre firmware ne connait pas déjà le diamètre du filament, vous pouvez saisir une commande comme 'M200 D[filament_diameter_0] T0' dans votre G-Code de début pour activer le mode volumétrique, et utiliser le diamètre de filament associé au filament choisi dans Slic3r. Cette fonction n'est utilisable que dans les versions récentes de Marlin." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2848 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 msgid "This extruder will be set for selected items" msgstr "Cet extrudeur sera défini pour les items sélectionnés" -#: src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Ce facteur affecte la quantité de plastique utilisée pour les ponts. Vous pouvez le diminuer légèrement pour éviter l'affaissement. La valeur par défaut est généralement suffisante et vous devriez expérimenter le refroidissement (utiliser un ventilateur) avant de modifier ceci." -#: src/libslic3r/PrintConfig.cpp:514 +#: src/libslic3r/PrintConfig.cpp:546 msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Ce facteur modifie proportionnellement le flux d'extrusion. Vous pouvez avoir besoin de modifier ceci afin d'obtenir un rendu de surface net et une largeur correcte pour les murs uniques. Les valeurs habituelles vont de 0.9 à 1.1. Si vous pensez devoir changer davantage cette valeur, vérifiez le diamètre de votre filament et les E Steps dans le firmware." -#: src/libslic3r/PrintConfig.cpp:178 +#: src/libslic3r/PrintConfig.cpp:204 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Cette vitesse de ventilateur sera utilisée pour les ponts et les surplombs." -#: src/libslic3r/PrintConfig.cpp:944 +#: src/libslic3r/PrintConfig.cpp:992 msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy." msgstr "Cette fonction permet de combiner le remplissage afin d'accélérer l'impression en extrudant des couches de remplissage plus épaisses tout en conservant des périmètres fins, avec plus de précision." -#: src/libslic3r/PrintConfig.cpp:1677 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height." msgstr "Cette fonction permet de forcer l'impression d'une couche solide après le nombre de couches indiqué. Réglez sur zéro pour la désactiver. Vous pouvez indiquer n'importe quelle valeur (par exemple 9999); Slic3r choisira automatiquement le nombre maximum de couches a combiner en fonction du diamètre de la buse et de l'épaisseur des couches." -#: src/libslic3r/PrintConfig.cpp:1718 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Cette fonction élèvera le Z graduellement en cas d'impression d'un objet à paroi unique, afin de rendre invisibles les jointures. Cette option nécessite de n'avoir qu'un seul périmètre, de ne pas avoir de remplissage, ni de surface solide supérieure, ni de support. Vous pouvez toujours choisir le nombre de surface solides inférieures de même que les boucles des jupes et des bordures. Cela ne fonctionnera pas si vous imprimez plus d'un objet." -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2351 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Ce fichier ne peut être chargé en mode simple. Voulez-vous basculer en mode avancé ?" -#: src/slic3r/GUI/Plater.cpp:2361 -msgid "" -"This file contains several objects positioned at multiple heights.\n" -"Instead of considering them as multiple objects, should I consider\n" -"this file as a single object having multiple parts?" -msgstr "" -"Ce fichier contient plusieurs objets positionnés à différentes hauteurs. Au lieu de les considérer comme des objets distincts, voulez-vous que je considère\n" -"ce fichier comme un seul objet en plusieurs parties?" +#: src/slic3r/GUI/Plater.cpp:2341 +msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" +msgstr "Ce fichier contient plusieurs objets positionnés à différentes hauteurs. Au lieu de les considérer comme des objets distincts, voulez-vous que je considère\nce fichier comme un seul objet en plusieurs parties?" -#: src/slic3r/GUI/FirmwareDialog.cpp:313 -#, c-format -msgid "" -"This firmware hex file does not match the printer model.\n" -"The hex file is intended for: %s\n" -"Printer reported: %s\n" -"\n" -"Do you want to continue and flash this hex file anyway?\n" -"Please only continue if you are sure this is the right thing to do." -msgstr "" -"Le fichier hex de ce firmware ne correspond pas au modèle d'imprimante.\n" -"Le fichier hex est prévu pour : %s\n" -"Imprimante détectée : %s\n" -"\n" -"Voulez-vous continuer et flasher ce fichier hex quand même ?\n" -"S'il vous plait, ne continuez que si vous êtes certain de faire le bon choix." +#: src/slic3r/GUI/FirmwareDialog.cpp:332 +#, possible-c-format +msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." +msgstr "Le fichier hex de ce firmware ne correspond pas au modèle d'imprimante.\nLe fichier hex est prévu pour : %s\nImprimante détectée : %s\n\nVoulez-vous continuer et flasher ce fichier hex quand même ?\nS'il vous plait, ne continuez que si vous êtes certain de faire le bon choix." -#: src/libslic3r/PrintConfig.cpp:278 +#: src/libslic3r/PrintConfig.cpp:304 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Cette option active la logique de refroidissement automatique, qui ajuste la vitesse d'impression et celle du ventilateur en fonction du temps d'impression de la couche." -#: src/slic3r/GUI/Plater.cpp:448 +#: src/slic3r/GUI/Plater.cpp:533 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Cette option permet l'impression de la bordure qui entoure chaque objet lors de la première couche." -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "Cette option active la rétractation lors d'un déplacement sur l'axe Z." -#: src/libslic3r/PrintConfig.cpp:2093 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Cette option déplace la buse lors des rétractations, limitant ainsi l'apparition d'amas sur les extrudeurs ayant tendance à couler." -#: src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a default preset." msgstr "Ceci est un préréglage par défaut." -#: src/libslic3r/PrintConfig.cpp:2501 +#: src/libslic3r/PrintConfig.cpp:2757 msgid "This is a relative measure of support points density." msgstr "Ceci est une mesure relative de la densité des points de support." -#: src/slic3r/GUI/Tab.cpp:2528 +#: src/slic3r/GUI/Tab.cpp:2334 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Ceci est une imprimante multimatériaux à extrudeur unique, les diamètres de tous les extrudeurs seront réglés sur la nouvelle valeur. Voulez-vous continuer ?" -#: src/slic3r/GUI/Tab.cpp:923 +#: src/slic3r/GUI/Tab.cpp:957 msgid "This is a system preset." msgstr "Ceci est un préréglage système." -#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." msgstr "Ceci est utilisé dans l'interface de Slic3r uniquement en tant que indication visuelle." -#: src/libslic3r/PrintConfig.cpp:300 +#: src/libslic3r/PrintConfig.cpp:326 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Accélération à laquelle votre imprimante sera réinitialisée suite à une modification de l'accélération des fonctions spécifiques (périmètre/remplissage). Régler sur zéro pour ne pas réinitialiser l'accélération." -#: src/libslic3r/PrintConfig.cpp:158 +#: src/libslic3r/PrintConfig.cpp:184 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "L'accélération qui sera utilisée par votre imprimante pour les ponts. Régler sur zéro pour désactiver l'accélération pour les ponts." -#: src/libslic3r/PrintConfig.cpp:813 +#: src/libslic3r/PrintConfig.cpp:860 msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer." msgstr "L'accélération que l'imprimante utilisera pour la première couche. Régler sur zéro afin de désactiver le contrôle de l'accélération pour la première couche." -#: src/libslic3r/PrintConfig.cpp:934 +#: src/libslic3r/PrintConfig.cpp:982 msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill." msgstr "Il s'agit de l'accélération que votre imprimante utilisera pour le remplissage. Régler sur zéro afin de désactiver le contrôle de l'accélération pour le remplissage." -#: src/libslic3r/PrintConfig.cpp:1331 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters." msgstr "L'accélération que votre imprimante utilisera pour les périmètres. Une valeur élevée comme 9000 donne généralement de bons résultats si votre matériel le permet. Régler sur zéro afin de désactiver le contrôle de l'accélération pour les périmètres." -#: src/libslic3r/PrintConfig.cpp:1262 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "Il s'agit du diamètre de la buse de votre extrudeur (par exemple: 0.5, 0.35, etc.)" -#: src/libslic3r/PrintConfig.cpp:1162 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter." msgstr "Ceci est la hauteur de couche imprimable maximum pour cet extrudeur, utilisée pour plafonner la hauteur de couche variable et la hauteur de couche des supports. La hauteur de couche maximum recommandée est 75% de la largeur d'extrusion afin d'obtenir une adhésion inter-couches correcte. Si réglée sur 0, la hauteur de couche est limitée à 75% du diamètre de la buse." -#: src/libslic3r/PrintConfig.cpp:1225 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm." msgstr "Cette valeur est la hauteur de couche imprimable minimum pour cet extrudeur et elle limite la résolution pour la hauteur de couche variable. Les valeurs type se situent entre 0.05 mm et 0.1 mm." -#: src/libslic3r/GCode.cpp:630 +#: src/libslic3r/GCode.cpp:639 msgid "This is usually caused by negligibly small extrusions or by a faulty model. Try to repair the model or change its orientation on the bed." msgstr "Ceci est généralement provoqué par de petites extrusions négligeables ou par un modèle défectueux. Essayez de réparer le modèle ou de changer son orientation sur le lit." -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools." msgstr "Cette matrice décrit les volumes (en millimètres cube) nécessaires pour purger le nouveau filament dans la tour de nettoyage pour une paire d'outils donnée." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643 -msgid "" -"This operation is irreversible.\n" -"Do you want to proceed?" -msgstr "" -"Cette opération est irréversible.\n" -"Voulez-vous continuer?" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 +msgid "This operation is irreversible.\nDo you want to proceed?" +msgstr "Cette opération est irréversible.\nVoulez-vous continuer?" -#: src/libslic3r/PrintConfig.cpp:1372 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." msgstr "Cette option définit le nombre de périmètres à générer pour chaque couche. Notez que Slic3r peut augmenter cette valeur automatiquement si il détecte une surface inclinée qui nécessite un plus grand nombre de périmètres, si l'option \"Périmètres supplémentaires\" est sélectionnée." -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures." msgstr "Cette option abaissera la température des extrudeurs inutilisés pour prévenir le oozing (suintement). Cela active automatiquement la génération d'une grande jupe et le déplacement des extrudeurs hors de cette jupe lors des changements de température." -#: src/libslic3r/PrintConfig.cpp:980 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved." msgstr "Cette option limitera le remplissage aux zones nécessaires pour soutenir les couches supérieures (cela agira comme un support interne). Si activé, la génération du G-Code prendra plus de temps à cause des calculs supplémentaires requis." -#: src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "This option will switch the print order of perimeters and infill, making the latter first." msgstr "Cette option inverse l'ordre d'impression des périmètres et du remplissage, ce dernier étant alors imprimé en premier." -#: src/libslic3r/PrintConfig.cpp:427 +#: src/libslic3r/PrintConfig.cpp:459 msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Ce réglage distinct affectera la vitesse des périmètres extérieurs (ceux qui sont visibles). Si cette valeur est exprimée en pourcentage (par exemple: 80%) elle sera calculée d'après le réglage de la vitesse de périmètre susmentionnée. Réglez sur zéro pour un ajustement automatique." -#: src/libslic3r/PrintConfig.cpp:1648 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Ce réglage distinct affectera la vitesse des périmètre ayant un rayon <= 6.5mm (les trous habituellement). Si cette valeur est exprimée en pourcentage (par exemple: 80%) elle sera calculée d'après le réglage de la vitesse de périmètre susmentionnée. Réglez sur zéro pour un ajustement automatique." -#: src/libslic3r/PrintConfig.cpp:989 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width." msgstr "Cette option applique un chevauchement supplémentaire entre les périmètres et le remplissage pour une meilleur fusion. En théorie, cela ne devrait pas être nécessaire, mais le jeu mécanique peut générer des espacements. Si exprimé en pourcentage (par exemple 15%), la valeur sera calculée en fonction de la largeur d'extrusion du périmètre." -#: src/libslic3r/PrintConfig.cpp:57 +#: src/libslic3r/PrintConfig.cpp:73 msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print." msgstr "Cette option contrôle l'épaisseur (et donc le nombre total) des couches. Des couches plus fines donneront une meilleure précision mais l'impression sera plus longue." -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "Cette option représente la vitesse maximum du ventilateur." -#: src/libslic3r/PrintConfig.cpp:1216 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "Cette option représente le PWM minimum dont votre ventilateur a besoin pour tourner." -#: src/libslic3r/PrintConfig.cpp:1801 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "This start procedure is inserted at the beginning, after any printer start gcode (and after any toolchange to this filament in case of multi-material printers). This is used to override settings for a specific filament. If PrusaSlicer detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Cette procédure de départ est insérée au début, après n'importe quel gcode de départ de l'imprimante (et après n'importe quel changement d'outil pour ce filament dans le cas des imprimantes multi-matériaux). Ceci est utilisé pour supplanter les réglages d'un filament spécifique. Si PrusaSlicer détecte M104, M109, M140 ou M190 dans vos codes personnalisés, de telles commandes ne seront pas ajoutées automatiquement de sorte que vous restez libre de personnaliser l'ordre des commandes de chauffe et autres actions personnalisées. Notez que vous pouvez utiliser des variables génériques pour les tous les paramètres PrusaSlicer, donc vous pouvez utiliser une commande \"M109 S[first_layer_temperature]\" où vous voulez." -#: src/libslic3r/PrintConfig.cpp:1786 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If PrusaSlicer detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Cette procédure de départ est insérée au début, après que le lit a atteint la température ciblée et que l'extrudeur vient de commencer à chauffer, et avant que l'extrudeur ait terminé de chauffer. Si PrusaSlicer détecte M104 ou M190 dans votre code personnalisé, de telles commandes ne seront pas ajoutées automatiquement de sorte que vous restez libre de personnaliser l'ordre des commandes de chauffe et autres actions personnalisées. Notez que vous pouvez utiliser des variables génériques pour les tous les paramètres PrusaSlicer, donc vous pouvez utiliser une commande \"M109 S[first_layer_temperature]\" où vous voulez." -#: src/libslic3r/PrintConfig.cpp:664 +#: src/libslic3r/PrintConfig.cpp:695 msgid "This string is edited by RammingDialog and contains ramming specific parameters." msgstr "Cette chaine est éditée par RammingDialog et contient les paramètres spécifiques d'expulsion." -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." msgstr "Cette valeur sera ajoutée (ou soustraite) de toutes les coordonnées Z dans le G-Code de sortie. Elle est utilisée pour compenser une mauvaise position de fin de course Z: par exemple si votre fin de course place votre buse à 0.3mm au dessus du plateau, réglez cette valeur sur -0.3 (ou corrigez votre fin de course)." -#: src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." msgstr "Ce vecteur enregistre les volumes requis pour changer l'outil utilisé pour la tour de nettoyage. Ces valeurs sont utilisées pour simplifier la création des volumes de purge complets ci-dessous." -#: src/slic3r/GUI/UpdateDialogs.cpp:155 -#, c-format -msgid "" -"This version of %s is not compatible with currently installed configuration bundles.\n" -"This probably happened as a result of running an older %s after using a newer one.\n" -"\n" -"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "" -"Cette version de %s n'est pas compatible avec les ensembles de configuration actuellement installés.\n" -"Cela survient probablement du fait d'avoir lancé une ancienne version de %s après en avoir utilisé une nouvelle.\n" -"\n" -"Vous pouvez soit quitter %s et essayer à nouveau avec une version plus récente, ou vous pouvez relancer la configuration initiale. Procéder ainsi permettra de créer une sauvegarde de la configuration existante avant d'installer les fichiers compatibles avec ce %s." +#: src/slic3r/GUI/UpdateDialogs.cpp:216 +#, possible-c-format +msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "Cette version de %s n'est pas compatible avec les ensembles de configuration actuellement installés.\nCela survient probablement du fait d'avoir lancé une ancienne version de %s après en avoir utilisé une nouvelle.\n\nVous pouvez soit quitter %s et essayer à nouveau avec une version plus récente, ou vous pouvez relancer la configuration initiale. Procéder ainsi permettra de créer une sauvegarde de la configuration existante avant d'installer les fichiers compatibles avec ce %s." -#: src/libslic3r/PrintConfig.cpp:2284 +#: src/libslic3r/PrintConfig.cpp:2449 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Cela appliquera une correction gamma aux polygones 2D tramés. Une valeur gamma de zéro signifie un seuillage avec le seuil au milieu. Ce comportement élimine l'anti-alias sans perdre de trous dans le polygone." -#: src/libslic3r/PrintConfig.cpp:1994 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "Threads" -#: src/libslic3r/PrintConfig.cpp:1995 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Les threads sont utilisés pour paralléliser les calculs longs. Le nombre optimal de threads est légèrement supérieur au nombre de coeurs/processeurs disponibles." -#: src/slic3r/GUI/Tab.cpp:2052 +#: src/slic3r/GUI/Tab.cpp:2091 msgid "Tilt" msgstr "Incliner" -#: src/slic3r/GUI/Tab.cpp:2053 +#: src/slic3r/GUI/Tab.cpp:2092 msgid "Tilt time" msgstr "Durée de l'inclinaison" @@ -7575,161 +8092,187 @@ msgstr "Durée de l'inclinaison" msgid "Time" msgstr "Durée" -#: src/libslic3r/PrintConfig.cpp:655 +#: src/libslic3r/PrintConfig.cpp:687 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Temps nécessaire pour que le Firmware de l'imprimante (ou la Multi Material Unit 2.0) charge un filament au cours d'un changement d'outils (lorsqu'il exécute le T code). Ce temps est ajouté au temps total d'impression par l'estimateur de temps du G-code." -#: src/libslic3r/PrintConfig.cpp:670 +#: src/libslic3r/PrintConfig.cpp:702 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Temps nécessaire pour que le Firmware de l'imprimante (ou la Multi Material Unit 2.0) décharge un filament au cours d'un changement d'outils (lorsqu'il exécute le T code). Ce temps est ajouté au temps total d'impression par l'estimateur de temps du G-code." -#: src/libslic3r/PrintConfig.cpp:2242 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "Durée de l'inclinaison rapide" -#: src/libslic3r/PrintConfig.cpp:2251 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "Durée de l'inclinaison lente" -#: src/libslic3r/PrintConfig.cpp:610 +#: src/libslic3r/PrintConfig.cpp:641 msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Temps d'attente nécessaire après que le filament ait été déchargé. Peut aider à obtenir des changements d'outils fiables avec des matériaux flexible qui ont besoin de plus de temps pour revenir à leurs dimensions originales." -#: src/slic3r/GUI/Tab.cpp:916 +#: src/slic3r/GUI/DoubleSlider.cpp:962 +msgid "To add another code use Ctrl + Left click" +msgstr "Pour ajouter un autre code, utilisez Ctrl + Clic gauche" + +#: src/slic3r/GUI/DoubleSlider.cpp:963 +msgid "To add another code use Right click" +msgstr "Pour ajouter un autre code, utilisez le Clic droit" + +#: src/slic3r/GUI/Tab.cpp:968 msgid "To do that please specify a new name for the preset." msgstr "Pour faire cela veuillez spécifier un nouveau nom pour le préréglage." #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "" -"To except of redundant tool manipulation, \n" -"Color change(s) for unused extruder(s) was(were) deleted" -msgstr "" -"À l'exception de la manipulation d'outils redondants,\n" -"le(s) Changement(s) de couleur pour le(s) extrudeur(s) inutilisé(s) a (ont) été supprimé(s)" +msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" +msgstr "À l'exception de la manipulation d'outils redondants,\nle(s) Changement(s) de couleur pour le(s) extrudeur(s) inutilisé(s) a (ont) été supprimé(s)" -#: src/slic3r/GUI/Plater.cpp:2966 +#: src/slic3r/GUI/Plater.cpp:4023 msgid "To objects" msgstr "Vers les objets" -#: src/slic3r/GUI/Plater.cpp:2968 +#: src/slic3r/GUI/Plater.cpp:4025 msgid "To parts" msgstr "Vers les parties" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:212 -#, c-format +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 +#, possible-c-format msgid "Toggle %c axis mirroring" msgstr "Activer la symétrie sur l'axe %c" -#: src/libslic3r/Zipper.cpp:37 +#: src/libslic3r/Zipper.cpp:34 msgid "too many files" msgstr "trop de fichiers" -#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315 -#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404 +#: src/libslic3r/SLAPrintSteps.cpp:154 +msgid "Too much overlapping holes." +msgstr "Trop de trous qui se chevauchent." + +#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 +#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 +#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Outil" -#: src/slic3r/GUI/WipeTowerDialog.cpp:240 +#: src/slic3r/GUI/WipeTowerDialog.cpp:276 msgid "Tool #" msgstr "Outil #" -#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006 +#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code de changement d'outil" -#: src/slic3r/GUI/Tab.cpp:1530 +#: src/slic3r/GUI/Tab.cpp:1493 msgid "Toolchange parameters with single extruder MM printers" msgstr "Paramètres de changement d'outil pour les imprimantes multi-matériaux mono-extrudeur" #. TRN To be shown in the main menu View->Top -#: src/slic3r/GUI/MainFrame.cpp:522 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "Haut" -#: src/libslic3r/PrintConfig.cpp:388 +#: src/slic3r/GUI/PresetHints.cpp:300 +msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "Indice d'épaisseur de coque supérieure / inférieure : non disponible en raison de la hauteur de couche non valide." + +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "Motif de remplissage du dessus" -#: src/slic3r/GUI/PresetHints.cpp:189 +#: src/slic3r/GUI/PresetHints.cpp:319 +msgid "Top is open." +msgstr "Le haut est ouvert." + +#: src/slic3r/GUI/PresetHints.cpp:313 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "La coque supérieure a une épaisseur de %1% mm pour une hauteur de couche %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" msgstr "remplissage solide supérieur" -#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017 -#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Remplissage solide supérieur" -#: src/libslic3r/PrintConfig.cpp:2046 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" msgstr "Couches supérieures solides" -#: src/slic3r/GUI/MainFrame.cpp:522 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "Vue du Dessus" -#: src/slic3r/GUI/WipeTowerDialog.cpp:247 +#: src/slic3r/GUI/WipeTowerDialog.cpp:285 msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded." msgstr "Le volume de purge total est calculé en additionnant les deux valeurs ci-dessous, en fonction des outils qui sont chargés/déchargés." -#: src/slic3r/GUI/WipeTowerDialog.cpp:84 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 msgid "Total rammed volume" msgstr "Volume total expulsé" -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 +#: src/slic3r/GUI/WipeTowerDialog.cpp:83 msgid "Total ramming time" msgstr "Durée totale de l'expulsion" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:516 msgid "Translate" msgstr "Traduire" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Translation" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051 +#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Déplacement" -#: src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "Triangles" -#: src/libslic3r/PrintConfig.cpp:3059 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Essayer de réparer tout maillage non-multiple (cette option est ajoutée implicitement dès que nous devons découper le modèle pour accomplir l'action demandée)." -#: src/libslic3r/PrintConfig.cpp:1397 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "Type d'imprimante." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2549 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Type:" msgstr "Type :" -#: src/libslic3r/Zipper.cpp:35 +#: src/slic3r/GUI/Plater.cpp:3436 +msgid "Unable to reload:" +msgstr "Impossible de recharger :" + +#: src/libslic3r/Zipper.cpp:32 msgid "undefined error" msgstr "erreur non définie" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3609 -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Annuler" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 -#, c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#, possible-c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Annuler %1$d Action" +msgstr[1] "Annuler %1$d Actions" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Undo History" msgstr "Annuler Historique" -#: src/libslic3r/Zipper.cpp:59 +#: src/libslic3r/Zipper.cpp:56 msgid "unexpected decompressed size" msgstr "volume de décompression inattendu" @@ -7737,104 +8280,102 @@ msgstr "volume de décompression inattendu" msgid "Unknown" msgstr "Inconnu" -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 msgid "Unknown error occured" msgstr "Une erreur inconnue s'est produite" -#: src/slic3r/GUI/WipeTowerDialog.cpp:234 +#: src/slic3r/GUI/WipeTowerDialog.cpp:263 msgid "unloaded" msgstr "déchargé" -#: src/libslic3r/PrintConfig.cpp:591 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "Vitesse de déchargement" -#: src/libslic3r/PrintConfig.cpp:600 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "Vitesse de déchargement au démarrage" -#: src/slic3r/GUI/Tab.cpp:3069 +#: src/slic3r/GUI/Tab.cpp:3240 msgid "UNLOCKED LOCK" msgstr "CADENAS OUVERT" -#: src/slic3r/GUI/Tab.cpp:3362 -msgid "" -"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" -"Click to reset all settings for current option group to the system (or default) values." -msgstr "" -"L'icône CADENAS OUVERT indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\n" -"Cliquez pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." +#: src/slic3r/GUI/Tab.cpp:3266 +msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." +msgstr "L'icône CADENAS OUVERT indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\nCliquez pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." -#: src/slic3r/GUI/Tab.cpp:3377 -msgid "" -"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" -"Click to reset current value to the system (or default) value." -msgstr "" -"L'icône CADENAS OUVERT indique que la valeur a été changée et n'est pas égale à la valeur du système (ou par défaut).\n" -"Cliquez pour réinitialiser la valeur actuelle sur les valeurs du système (ou par défaut)." +#: src/slic3r/GUI/Tab.cpp:3281 +msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." +msgstr "L'icône CADENAS OUVERT indique que la valeur a été changée et n'est pas égale à la valeur du système (ou par défaut).\nCliquez pour réinitialiser la valeur actuelle sur les valeurs du système (ou par défaut)." -#: src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Unretractions" msgstr "Dérétractation" -#: src/slic3r/GUI/Tab.cpp:2785 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "Unsaved Changes" msgstr "Modifications Non Sauvegardés" -#: src/slic3r/GUI/GUI_App.cpp:790 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "Préréglages Non Sauvegardés" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 msgid "Unselect gizmo / Clear selection" msgstr "Désélectionner le gizmo / Effacer la sélection" -#: src/libslic3r/Zipper.cpp:63 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "Désélectionner le Gizmo ou supprimer la sélection" + +#: src/libslic3r/Zipper.cpp:60 msgid "unsupported central directory size" msgstr "volume du répertoire central non supporté" -#: src/libslic3r/Zipper.cpp:43 +#: src/libslic3r/Zipper.cpp:40 msgid "unsupported encryption" msgstr "cryptage non supporté" -#: src/libslic3r/Zipper.cpp:45 +#: src/libslic3r/Zipper.cpp:42 msgid "unsupported feature" msgstr "fonction non supportée" -#: src/libslic3r/Zipper.cpp:41 +#: src/libslic3r/Zipper.cpp:38 msgid "unsupported method" msgstr "méthode non supportée" -#: src/libslic3r/Zipper.cpp:53 +#: src/libslic3r/Zipper.cpp:50 msgid "unsupported multidisk archive" msgstr "archive multidisque non supportée" -#: src/slic3r/GUI/GUI_App.cpp:305 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "Version d'OpenGL non supportée" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 msgid "Unsupported selection" msgstr "Sélection non supportée" -#: src/libslic3r/GCode/PreviewData.cpp:495 -#, c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:960 +#, possible-c-format msgid "up to %.2f mm" msgstr "jusqu'à %.2f mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/UpdateDialogs.cpp:38 msgid "Update available" msgstr "Mise à jour disponible" -#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 msgid "Update built-in Presets automatically" msgstr "Mettre à jour automatiquement les Préréglages intégrés" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Updates" msgstr "Mises à jour" -#: src/slic3r/GUI/ConfigWizard.cpp:426 +#: src/slic3r/GUI/ConfigWizard.cpp:785 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Les mises à jour ne sont jamais appliquées sans l'accord de l'utilisateur et n'annulent jamais les réglages personnalisés de l'utilisateur." @@ -7842,11 +8383,11 @@ msgstr "Les mises à jour ne sont jamais appliquées sans l'accord de l'utilisat msgid "Upgrade" msgstr "Mise à jour" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" msgstr "Charger un firmware dans une imprimante basée sur un Arduino" -#: src/slic3r/Utils/FlashAir.cpp:60 +#: src/slic3r/Utils/FlashAir.cpp:58 msgid "Upload not enabled on FlashAir card." msgstr "Téléchargement non activé sur la carte FlashAir." @@ -7854,32 +8395,32 @@ msgstr "Téléchargement non activé sur la carte FlashAir." msgid "Upload to Printer Host with the following filename:" msgstr "Envoyer vers l'Hôte d'Imprimante avec le nom de fichier suivant :" -#: src/slic3r/GUI/PrintHostDialogs.cpp:229 +#: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "Téléchargement" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 msgid "Upper Layer" msgstr "Couche du Haut" -#: src/slic3r/GUI/Tab.cpp:1873 +#: src/slic3r/GUI/Tab.cpp:1898 msgid "USB/Serial connection" msgstr "Connexion USB/Série" -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "Port USB/Série pour la connexion de l'imprimante." -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 +#: src/slic3r/GUI/DoubleSlider.cpp:1115 msgid "Use another extruder" msgstr "Utiliser un autre extrudeur" -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:147 msgid "Use custom size for toolbar icons" msgstr "Utiliser une taille personnalisée pour les icônes de la barre d'outils" -#: src/libslic3r/PrintConfig.cpp:2060 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "Utiliser la rétraction du firmware" @@ -7887,51 +8428,59 @@ msgstr "Utiliser la rétraction du firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Utilisez des barres obliques (/) comme séparateur de répertoire si nécessaire." -#: src/libslic3r/PrintConfig.cpp:2515 +#: src/slic3r/GUI/Preferences.cpp:129 +msgid "Use free camera" +msgstr "Utiliser la caméra libre" + +#: src/libslic3r/PrintConfig.cpp:2771 msgid "Use pad" msgstr "Utiliser un socle" -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "Use perspective camera" msgstr "Utiliser l'appareil photo en perspective" -#: src/libslic3r/PrintConfig.cpp:2067 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "Utiliser des valeurs E relatives" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "Use Retina resolution for the 3D scene" msgstr "Utiliser la résolution Retina pour la scène 3D" -#: src/libslic3r/PrintConfig.cpp:508 +#: src/libslic3r/PrintConfig.cpp:540 msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)." msgstr "Utiliser cette option pour indiquer la lettre utilisée par l'extrudeur de votre imprimante (habituellement E, mais certaines imprimantes utilisent A)." -#: src/libslic3r/PrintConfig.cpp:1807 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "Use this setting to rotate the support material pattern on the horizontal plane." msgstr "Utiliser ce réglage pour orienter le motif du support sur le plan horizontal." -#: src/libslic3r/PrintConfig.cpp:2074 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "E Volumétrique" -#: src/slic3r/GUI/Plater.cpp:214 +#: src/slic3r/GUI/DoubleSlider.cpp:1139 +msgid "used" +msgstr "utilisé" + +#: src/slic3r/GUI/Plater.cpp:239 msgid "Used Filament (g)" msgstr "Filament Utilisé (g)" -#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041 +#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 msgid "Used Filament (m)" msgstr "Filament Utilisé (m)" -#: src/slic3r/GUI/Plater.cpp:213 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Filament (mm³)" msgstr "Filament Utilisé (mm³)" -#: src/slic3r/GUI/Plater.cpp:1015 +#: src/slic3r/GUI/Plater.cpp:1188 msgid "Used Material (ml)" msgstr "Matériau Utilisé (ml)" -#: src/slic3r/GUI/Plater.cpp:215 +#: src/slic3r/GUI/Plater.cpp:240 msgid "Used Material (unit)" msgstr "Matériau Utilisé (unité)" @@ -7939,117 +8488,117 @@ msgstr "Matériau Utilisé (unité)" msgid "User" msgstr "Utilisateur" -#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071 -#: src/slic3r/GUI/PresetBundle.cpp:1558 +#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 +#: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "Préréglages utilisateur" -#: src/libslic3r/Zipper.cpp:93 +#: src/libslic3r/Zipper.cpp:90 msgid "validation failed" msgstr "échec de la validation" -#: src/slic3r/GUI/ButtonsDescription.cpp:41 +#: src/slic3r/GUI/ButtonsDescription.cpp:36 msgid "Value is the same as the system value" msgstr "La valeur est identique à la valeur du système" -#: src/slic3r/GUI/ButtonsDescription.cpp:58 +#: src/slic3r/GUI/ButtonsDescription.cpp:53 msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "La valeur a été changée et n'est pas égale à la valeur du système ou au dernier préréglage sauvegardé" -#: src/slic3r/GUI/Tab.cpp:2151 +#: src/slic3r/GUI/Tab.cpp:2198 msgid "Values in this column are for Normal mode" msgstr "Les valeurs de cette colonne sont pour le mode Normal" -#: src/slic3r/GUI/Tab.cpp:2157 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Stealth mode" msgstr "Les valeurs de cette colonne sont pour le mode Silencieux" -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 msgid "Variable layer height" msgstr "Hauteur de couche variable" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1713 msgid "Variable layer height - Adaptive" msgstr "Hauteur de couche variable - Adaptatif" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:604 msgid "Variable layer height - Manual edit" msgstr "Hauteur de couche variable - Modification manuelle" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1705 msgid "Variable layer height - Reset" msgstr "Hauteur de couche variable - Réinitialisation" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1721 msgid "Variable layer height - Smooth all" msgstr "Hauteur de couche variable - Tout lisser" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "variants" msgstr "variantes" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 msgid "vendor" msgstr "fabriquant" -#: src/slic3r/GUI/ConfigWizard.cpp:536 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "Fournisseur :" -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "G-code commenté" -#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "Version" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 msgid "version" msgstr "version" -#: src/slic3r/GUI/Tab.cpp:1002 +#: src/slic3r/GUI/Tab.cpp:1055 msgid "Vertical shells" msgstr "Parois verticales" -#: src/slic3r/GUI/GUI_Preview.cpp:209 +#: src/slic3r/GUI/GUI_Preview.cpp:220 msgid "View" msgstr "Vue" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:814 msgid "View mode" msgstr "Mode de vue" -#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867 -#: src/libslic3r/SLAPrint.cpp:915 +#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 +#: src/libslic3r/SLAPrintSteps.cpp:430 msgid "Visualizing supports" msgstr "Visualisation des supports" -#: src/slic3r/GUI/Plater.cpp:138 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Volume" msgstr "Volume" -#: src/slic3r/GUI/WipeTowerDialog.cpp:248 +#: src/slic3r/GUI/WipeTowerDialog.cpp:286 msgid "Volume to purge (mm³) when the filament is being" msgstr "Volume à purger (mm³) lorsque le filament est" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Volumes in Object reordered" msgstr "Volumes dans l'Objet réorganisés" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "Volumétrique" -#: src/slic3r/GUI/Tab.cpp:1800 +#: src/slic3r/GUI/Tab.cpp:1593 msgid "Volumetric flow hints not available" msgstr "Indications du débit volumétrique non disponible" -#: src/slic3r/GUI/GUI_Preview.cpp:216 +#: src/slic3r/GUI/GUI_Preview.cpp:228 msgid "Volumetric flow rate" msgstr "Débit volumétrique" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "Débit volumétrique (mm³/s)" @@ -8057,362 +8606,363 @@ msgstr "Débit volumétrique (mm³/s)" msgid "Volumetric speed" msgstr "Vitesse volumétrique" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283 -#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328 +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Wall thickness" +msgstr "Épaisseur de la paroi" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 +#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Alerte" -#: src/slic3r/GUI/ConfigWizard.cpp:294 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "Bienvenue" -#: src/slic3r/GUI/ConfigWizard.cpp:296 -#, c-format +#: src/slic3r/GUI/ConfigWizard.cpp:427 +#, possible-c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Bienvenue dans l'Assistant de Configuration de %s" -#: src/slic3r/GUI/ConfigWizard.cpp:298 -#, c-format +#: src/slic3r/GUI/ConfigWizard.cpp:429 +#, possible-c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Bienvenue dans l'Assistant de Configuration de %s" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:99 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Lorsqu'ils sont sélectionnés, les préréglages de l'imprimante et du filament sont visibles dans l'éditeur de préréglage même s'ils sont désignés comme incompatibles avec l'imprimante en cours d'utilisation" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "pendant l'impression des" -#: src/libslic3r/PrintConfig.cpp:217 +#: src/libslic3r/PrintConfig.cpp:243 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Lorsque vous imprimez des objets multi-matériaux, ce réglage fera en sorte que Slic3r rattache ensemble les parties de l'objet qui se superposent (la 2e partie sera rattachée à la 1ere, la 3e partie sera rattachée à la 1ere et la 2e, etc...)." -#: src/libslic3r/PrintConfig.cpp:269 +#: src/libslic3r/PrintConfig.cpp:295 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Lorsque vous imprimez plusieurs objets ou copies, ce réglage permet de terminer un objet avant de passer au suivant (en repartant de sa première couche). Cette fonction est utile pour éviter les risques d'impressions gâchées. Slic3r doit vous avertir et éviter les collisions entre les objets et l'extrudeur, mais soyez vigilant." -#: src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:891 msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height." msgstr "Lors d'une impression avec de très faibles épaisseurs de couche, vous pouvez choisir d'imprimer une première couche plus épaisse pour améliorer l'adhérence et la tolérance aux plateaux imparfaits. Ce réglage peut être exprimé comme une valeur absolue ou un pourcentage (par exemple 150%) par rapport à l'épaisseur de couche par défaut." -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Lorsque la rétractation est déclenchée avant un changement d'outil, le filament est retiré de la longueur indiquée (la longueur est mesurée sur le filament brut, avant qu'il entre dans l'extrudeur)." -#: src/libslic3r/PrintConfig.cpp:1475 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Lorsque la rétractation est déclenchée, le filament est tiré en arrière de la longueur indiquée (la longueur est mesurée sur le filament brut, avant qu'il entre dans l'extrudeur)." -#: src/libslic3r/PrintConfig.cpp:1347 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." msgstr "Lorsqu'elle est réglée sur zéro, la distance de laquelle le filament est déplacé depuis la position d'attente pendant le chargement est exactement la même que lors de son déchargement. Lorsqu'elle est positive, il est chargé davantage, si elle est négative, le déplacement de chargement est plus court que le déchargement." -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow." msgstr "Lorsque vous réglez les autres vitesses à 0, Slic3r calculera automatiquement la vitesse optimale de façon à garder une pression constante dans l'extrudeur. Cette fonction expérimentale est utilisée pour régler la plus haute vitesse que vous souhaitez autoriser." -#: src/libslic3r/PrintConfig.cpp:1527 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Lorsque la rétractation est compensée après un changement d'outil, l'extrudeur exprimera cette quantité de filament en plus." -#: src/libslic3r/PrintConfig.cpp:1519 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Lorsque la rétractation est compensée après un déplacement, l'extruder exprimera cette quantité de filament en plus. Ce réglage est rarement nécessaire." -#: src/slic3r/GUI/Tab.cpp:3076 +#: src/slic3r/GUI/Tab.cpp:3247 msgid "WHITE BULLET" msgstr "PUCE BLANCHE" -#: src/slic3r/GUI/Tab.cpp:3365 +#: src/slic3r/GUI/Tab.cpp:3269 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "L'icône en forme de PUCE BLANCHE indique un préréglage non-système (ou non par défaut)." -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "L'icône en forme de PUCE BLANCHE indique que les réglages sont identiques au dernier préréglage sauvegardé pour le groupe d'options actuel." -#: src/slic3r/GUI/Tab.cpp:3126 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "L'icône PUCE BLANCHE indique que la valeur est la même que pour le dernier préréglage sauvegardé." -#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Largeur" -#: src/libslic3r/GCode/PreviewData.cpp:398 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "Largeur (mm)" -#: src/libslic3r/PrintConfig.cpp:2389 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "Width from the back sphere center to the front sphere center" msgstr "Largeur depuis le centre arrière de la sphère jusqu'au centre avant de la sphère" -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "Largeur d'une tour de nettoyage" -#: src/libslic3r/PrintConfig.cpp:2761 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Largeur des bâtonnets de connexion qui connectent l'objet et le socle généré." -#: src/libslic3r/PrintConfig.cpp:2203 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "Largeur de l'affichage" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "fonctionnera toujours à %1%%%" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "sera désactivé." -#: src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction." msgstr "Va augmenter ou diminuer les polygones 2D découpés en fonction du signe de la correction." -#: src/libslic3r/PrintConfig.cpp:2160 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "Nettoyer dans cet objet" -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "Nettoyer dans le remplissage de cet objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:564 src/libslic3r/PrintConfig.cpp:2202 -#: src/libslic3r/PrintConfig.cpp:2210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 +#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Options de nettoyage" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130 -#: src/libslic3r/GCode/PreviewData.cpp:174 +#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Tour de nettoyage" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "wipe tower" msgstr "tour de nettoyage" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "Tour de Nettoyage" -#: src/slic3r/GUI/WipeTowerDialog.cpp:141 +#: src/slic3r/GUI/WipeTowerDialog.cpp:142 msgid "Wipe tower - Purging volume adjustment" msgstr "Tour de nettoyage - Ajustement du volume de purge" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1490 msgid "Wipe tower parameters" msgstr "Paramètres de la tour de nettoyage" -#: src/libslic3r/PrintConfig.cpp:2144 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "Angle de rotation de la tour de nettoyage" -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "Angle de rotation de la tour de nettoyage par rapport à l'axe X." -#: src/libslic3r/PrintConfig.cpp:2092 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "Nettoyer lors des rétractions" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "avec un débit volumétrique" -#: src/libslic3r/PrintConfig.cpp:1460 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement." msgstr "Avec les extrudeurs bowden, il est conseillé d'effectuer une rétractation rapide avant de réaliser le mouvement de nettoyage." -#: src/libslic3r/PrintConfig.cpp:1969 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" msgstr "Avec une enveloppe autour du support" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:62 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:105 msgid "World coordinates" msgstr "Les coordonnées mondiales" -#: src/slic3r/GUI/UpdateDialogs.cpp:76 -msgid "" -"Would you like to install it?\n" -"\n" -"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" -"\n" -"Updated configuration bundles:" -msgstr "" -"Voulez-vous l'installer ?\n" -"\n" -"Notez qu'un instantané complet de la configuration sera sauvegardé d'abord. Elle peut être restaurée à tout moment si vous rencontrez un problème avec la nouvelle version.\n" -"\n" -"Ensembles de configuration mis à jour :" +#: src/slic3r/GUI/UpdateDialogs.cpp:92 +msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" +msgstr "Voulez-vous l'installer ?\n\nNotez qu'un instantané complet de la configuration sera sauvegardé d'abord. Elle peut être restaurée à tout moment si vous rencontrez un problème avec la nouvelle version.\n\nEnsembles de configuration mis à jour :" -#: src/libslic3r/Zipper.cpp:95 +#: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "échec de l'écriture du rappel" -#: src/libslic3r/PrintConfig.cpp:2993 +#: src/libslic3r/PrintConfig.cpp:3367 msgid "Write information about the model to the console." msgstr "Rédiger des informations au sujet du modèle en direction de la console." -#: src/slic3r/Utils/Duet.cpp:148 +#: src/slic3r/Utils/Duet.cpp:131 msgid "Wrong password" msgstr "Mauvais mot de passe" -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "Coordonnée X du coin avant gauche d'une tour de nettoyage" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" msgstr "Séparation XY entre un objet et son support" -#: src/libslic3r/PrintConfig.cpp:1795 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." msgstr "Séparation XY entre un objet et son support. Si la valeur est exprimée en pourcentage (par exemple 50%), elle sera calculée à partir de la largeur du périmètre extérieur." -#: src/libslic3r/PrintConfig.cpp:2174 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" msgstr "Compensation de Taille XY" -#: src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordonnée Y du coin avant gauche d'une tour de nettoyage" -#: src/slic3r/GUI/Plater.cpp:992 +#: src/slic3r/GUI/Plater.cpp:1167 msgid "Yes" msgstr "Oui" -#: src/libslic3r/PrintConfig.cpp:1252 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "You can put here your personal notes. This text will be added to the G-code header comments." msgstr "Vous pouvez inscrire ici vos commentaires personnels. Ce texte sera ajouté au commentaire en entête du G-Code." -#: src/libslic3r/PrintConfig.cpp:557 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "Vous pouvez saisir vos remarques concernant le filament ici." -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "Vous pouvez saisir ici vos observations concernant l'imprimante." -#: src/libslic3r/PrintConfig.cpp:2332 +#: src/libslic3r/PrintConfig.cpp:2570 msgid "You can put your notes regarding the SLA print material here." msgstr "Vous pouvez mettre ici vos annotations concernant le matériau d'impression SLA." -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:350 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Vous pouvez régler ce paramètre sur une valeur positive pour désactiver complètement le ventilateur pendant les premières couches, afin de ne pas rendre l'adhérence plus difficile." -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Vous pouvez utiliser toutes les options de configuration comme variables dans ce modèle. Par exemple : [layer_height], [fill_density] etc. Vous pouvez aussi utiliser [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 msgid "You can't change a type of the last solid part of the object." msgstr "Vous ne pouvez pas changer un type de la dernière partie solide de l'objet." -#: src/slic3r/GUI/Plater.cpp:2243 -msgid "You can't load SLA project if there is at least one multi-part object on the bed" -msgstr "Vous le pouvez pas charger le projet SLA s'il y a au moins un objet multi-parties sur le lit" - -#: src/slic3r/GUI/Plater.cpp:1746 -#, c-format +#: src/slic3r/GUI/Plater.cpp:2374 +#, possible-c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Vous ne pouvez pas ajouter l'objet (les objets) depuis %s car l'un d'entre eux est en plusieurs parties" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:565 +#: src/slic3r/GUI/Plater.cpp:2295 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "Vous ne pouvez pas charger un projet SLA avec un objet en plusieurs parties sur le plateau" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" msgstr "Vous ne pouvez pas utiliser un mode de redimensionnement non-uniforme pour une sélection d'objets/de parties multiples" -#: src/slic3r/GUI/ConfigWizard.cpp:1637 +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" msgstr "Vous devez sélectionner au moins un filament pour les imprimantes sélectionnées" -#: src/slic3r/GUI/ConfigWizard.cpp:1643 +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "Vous devez sélectionner au moins un matériau pour les imprimantes sélectionnées" -#: src/slic3r/GUI/GUI_App.cpp:300 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "Vous avez peut-être besoin de mettre à jour le pilote de votre carte graphique." -#: src/slic3r/GUI/Preferences.cpp:130 -#, c-format +#: src/slic3r/GUI/Preferences.cpp:176 +#, possible-c-format msgid "You need to restart %s to make the changes effective." msgstr "Vous devez redémarrer %s afin que les modifications soient appliquées." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 -#, c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 +#, possible-c-format msgid "You started your selection with %s Item." msgstr "Vous avez commencé votre sélection avec l'item %s." -#: src/slic3r/GUI/MainFrame.cpp:772 +#: src/slic3r/GUI/DoubleSlider.cpp:1875 +msgid "Your current changes will delete all saved color changes." +msgstr "Vos changements actuels supprimeront toutes les changements de couleur enregistrés." + +#: src/slic3r/GUI/DoubleSlider.cpp:1896 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "Vos changements actuels supprimeront toutes les changement enregistrés de l'extrudeur (outil)." + +#: src/slic3r/GUI/MainFrame.cpp:913 msgid "Your file was repaired." msgstr "Votre fichier a été réparé." -#: src/slic3r/GUI/Plater.cpp:1874 +#: src/slic3r/GUI/Plater.cpp:2512 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Votre objet semble être trop grand, il a donc été automatiquement réduit afin de l'adapter à votre plateau d'impression." -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" msgstr "Décalage Z" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "" -"Zero first layer height is not valid.\n" -"\n" -"The first layer height will be reset to 0.01." -msgstr "" -"Une hauteur de première couche de zéro n'est pas valide.\n" -"\n" -"La hauteur de la première couche sera réinitialisée à 0,01." +msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." +msgstr "Une hauteur de première couche de zéro n'est pas valide.\n\nLa hauteur de la première couche sera réinitialisée à 0,01." #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "" -"Zero layer height is not valid.\n" -"\n" -"The layer height will be reset to 0.01." -msgstr "" -"Une hauteur de couche de zéro n'est pas valide.\n" -"\n" -"La hauteur de la couche sera réinitialisée à 0,01." +msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." +msgstr "Une hauteur de couche de zéro n'est pas valide.\n\nLa hauteur de la couche sera réinitialisée à 0,01." -#: src/libslic3r/PrintConfig.cpp:2416 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +#: src/slic3r/GUI/Mouse3DController.cpp:326 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +msgid "Zoom" +msgstr "Zoom" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Zoom in" msgstr "Zoom avant" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Zoom out" msgstr "Zoom arrière" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Zoom to all objects in scene, if none selected" msgstr "Zoomer sur tous les objets sur la scène, si aucun n'est sélectionné" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Zoom to Bed" msgstr "Zoomer sur le Lit" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "Zoom to selected object\nor all objects in scene, if none selected" +msgstr "Zoomer sur l'objet sélectionné\nou sur tous les objets sur la scène, si aucun n'est sélectionné" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 msgid "Zoom to selected object" msgstr "Zoomer sur l'objet sélectionné" -#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733 -#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580 -#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962 -#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463 +#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 +#: src/libslic3r/PrintConfig.cpp:2839 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627 +#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 msgid "°C" msgstr "°C" diff --git a/resources/localization/it/PrusaSlicer.mo b/resources/localization/it/PrusaSlicer.mo index be6f9fd448d56957ce9b7a42f506dfa68fb4bf39..52a196e8c08b660117cf520a84536dc721b207cd 100644 GIT binary patch delta 61849 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 delta 43880 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 X{PVn5f26KAmqW+ZWY)b-sssNAp>|kB diff --git a/resources/localization/it/PrusaSlicer_it.po b/resources/localization/it/PrusaSlicer_it.po index 5d1a965bbd..05739bdb0f 100644 --- a/resources/localization/it/PrusaSlicer_it.po +++ b/resources/localization/it/PrusaSlicer_it.po @@ -7,75 +7,75 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: PhraseApp (phraseapp.com)\n" -#: src/slic3r/GUI/MainFrame.cpp:61 +#: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Ricordati di controllare gli aggiornamenti su http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:727 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid " was successfully sliced." msgstr " generato con successo." -#: src/libslic3r/PrintConfig.cpp:179 src/libslic3r/PrintConfig.cpp:745 -#: src/libslic3r/PrintConfig.cpp:1154 src/libslic3r/PrintConfig.cpp:1217 -#: src/libslic3r/PrintConfig.cpp:1462 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2502 +#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 +#: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2758 msgid "%" msgstr "%" -#: src/libslic3r/GCode/PreviewData.cpp:504 +#: src/slic3r/GUI/GLCanvas3D.cpp:968 #, possible-c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:2958 +#: src/slic3r/GUI/Tab.cpp:3110 msgid "%1% Preset" msgstr "%1% Preset" -#: src/slic3r/GUI/Plater.cpp:3831 +#: src/slic3r/GUI/Plater.cpp:4413 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "La stampante %1% era attiva nel momento in cui è stata creata l'istantanea di Annulla / Ripeti dell'oggetto. Passare alla stampante %1% richiede il ricaricamento dei preset %1%." -#: src/libslic3r/Print.cpp:1282 +#: src/libslic3r/Print.cpp:1370 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm è troppo basso per essere un altezza layer stampabile %3% mm" -#: src/slic3r/GUI/PresetHints.cpp:228 +#: src/slic3r/GUI/PresetHints.cpp:229 #, possible-c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s alla velocità del filamento di %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:974 +#: src/slic3r/GUI/Plater.cpp:1149 #, possible-c-format msgid "%d (%d shells)" msgstr "%d (%d di perimetri)" -#: src/slic3r/GUI/Plater.cpp:982 +#: src/slic3r/GUI/Plater.cpp:1157 #, possible-c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d facce degenerate, %d spigoli riparati, %d facce rimosse, %d faccee aggiunte, %d facce invertite, %d spigoli inversi" -#: src/slic3r/GUI/PresetHints.cpp:268 +#: src/slic3r/GUI/PresetHints.cpp:269 #, possible-c-format msgid "%d lines: %.2f mm" msgstr "%d linee: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:894 +#: src/slic3r/GUI/MainFrame.cpp:1029 #, possible-c-format msgid "%d presets successfully imported." msgstr "%d preset importati correttamente." -#: src/slic3r/GUI/MainFrame.cpp:550 +#: src/slic3r/GUI/MainFrame.cpp:694 #, possible-c-format msgid "%s &Website" msgstr "%s Sito &Web" -#: src/slic3r/GUI/UpdateDialogs.cpp:113 +#: src/slic3r/GUI/UpdateDialogs.cpp:211 #, possible-c-format msgid "%s configuration is incompatible" msgstr "configurazione %s non compatibile" -#: src/slic3r/GUI/Field.cpp:136 +#: src/slic3r/GUI/Field.cpp:170 #, possible-c-format msgid "%s doesn't support percentage" msgstr "%s non supporta la percentuale" @@ -85,7 +85,7 @@ msgstr "%s non supporta la percentuale" msgid "%s error" msgstr "errore %s" -#: src/slic3r/GUI/ConfigWizard.cpp:336 +#: src/slic3r/GUI/ConfigWizard.cpp:481 #, possible-c-format msgid "%s Family" msgstr "Famiglia %s" @@ -95,294 +95,341 @@ msgstr "Famiglia %s" msgid "%s has encountered an error" msgstr "%s ha riscontrato un errore" -#: src/slic3r/GUI/GUI_App.cpp:132 +#: src/slic3r/GUI/GUI_App.cpp:138 #, possible-c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." msgstr "%s ha riscontrato un errore. Probabilmente è stato causato dalla memoria piena. Se sei sicuro di avere abbastanza RAM nel sistema, questo potrebbe essere un bug e te ne saremmo grati se potessi informarci.\n\nL'applicazione verrà chiusa." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:155 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 #, possible-c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s ha riscontrato un errore. Probabilmente è stato causato dalla memoria piena. Se sei sicuro di avere abbastanza RAM nel sistema, questo potrebbe essere un bug e te ne saremmo grati se potessi informarci." -#: src/slic3r/GUI/UpdateDialogs.cpp:112 +#: src/slic3r/GUI/UpdateDialogs.cpp:308 +#, possible-c-format +msgid "%s has no configuration updates aviable." +msgstr "%s non ha aggiornamenti di configurazione disponibili." + +#: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 #, possible-c-format msgid "%s incompatibility" msgstr "incompatibilità %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:172 +#: src/slic3r/GUI/UpdateDialogs.cpp:270 #, possible-c-format msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." msgstr "%s adesso utilizza uno schema aggiornato di configurazioni.\n\nSono stati introdotti i così detti 'Preset di sistema', che contengono i settaggi integrati predefiniti per varie stampanti. Questi preset di sistema non possono essere modificati, però l'utente può creare i propri preset ereditando le impostazioni da quelli di sistema.\nUn preset ereditato può sia ereditare un valore particolare dal genitore, o sovrascriverlo con un valore personalizzato.\n\nSi prega di procedere con il %s che segue per impostare i nuovi preset e scegliere se abilitare gli aggiornamenti automatici del preset." -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 #, possible-c-format msgid "%s View Mode" msgstr "%s Modalità Visualizzazione" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#, possible-c-format +msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" +msgstr "%s avvierà gli aggiornamenti. In caso contrario non sarà in grado di avviarsi.\n\nSi fa noto che prima verrà creata un'istantanea della configurazione completa. Questa potrà essere ripristinata in qualunque momento se dovesse esserci un problema con la nuova versione.\n\nPacchetti di configurazione aggiornati:" + +#: src/slic3r/GUI/MainFrame.cpp:707 #, possible-c-format msgid "&About %s" msgstr "Inform&azioni su %s" -#: src/slic3r/GUI/GUI_App.cpp:769 +#: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" msgstr "&Configurazione" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" msgstr "Istantanee di &Configurazione" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" msgstr "&Copia" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" msgstr "&Elimina selezionati" -#: src/slic3r/GUI/MainFrame.cpp:575 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&Edit" msgstr "Modifich&e" -#: src/slic3r/GUI/MainFrame.cpp:377 +#: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "&Esporta" -#: src/slic3r/GUI/MainFrame.cpp:480 src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 msgid "&Filament Settings Tab" msgstr "Impostazioni &Filamento" -#: src/slic3r/GUI/MainFrame.cpp:574 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&File" msgstr "&File" -#: src/slic3r/GUI/ConfigWizard.cpp:1094 +#: src/slic3r/GUI/ConfigWizard.cpp:1984 msgid "&Finish" msgstr "&Completa" -#: src/slic3r/GUI/MainFrame.cpp:580 +#: src/slic3r/GUI/MainFrame.cpp:729 msgid "&Help" msgstr "&Aiuto" -#: src/slic3r/GUI/MainFrame.cpp:359 +#: src/slic3r/GUI/MainFrame.cpp:474 msgid "&Import" msgstr "&Importa" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/GUI_App.cpp:822 +msgid "&Language" +msgstr "&Lingua" + +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "&Nuovo progetto" -#: src/slic3r/GUI/ConfigWizard.cpp:1093 +#: src/slic3r/GUI/ConfigWizard.cpp:1983 msgid "&Next >" msgstr "&Successivo>" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "Apri Pr&ogetto" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "Incolla" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" msgstr "&Piano" -#: src/slic3r/GUI/GUI_App.cpp:665 +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "&Preferenze" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "&Esci" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "&Ripeti" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "&Ripara file STL" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "&Salva Progetto" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "&Seleziona tutto" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "Ann&ulla" -#: src/slic3r/GUI/MainFrame.cpp:577 +#: src/slic3r/GUI/MainFrame.cpp:726 msgid "&View" msgstr "&Vista" -#: src/slic3r/GUI/MainFrame.cpp:576 +#: src/slic3r/GUI/MainFrame.cpp:725 msgid "&Window" msgstr "&Finestra" -#: src/slic3r/GUI/ConfigWizard.cpp:574 src/slic3r/GUI/ConfigWizard.cpp:602 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(Tutto)" -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(minimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "(Re)slice" msgstr "(Ri)processa" -#: src/slic3r/GUI/MainFrame.cpp:455 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(Re)Slice Ora" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 msgid "(Unknown)" msgstr "(Sconosciuto)" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid ") not found." msgstr ") non trovato." -#: src/libslic3r/PrintConfig.cpp:1857 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (solubile)" -#: src/libslic3r/PrintConfig.cpp:1858 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0.2 (rimovibile)" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:3074 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "3D editor view" msgstr "Vista editing 3D" -#: src/libslic3r/PrintConfig.cpp:804 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "Nido d'ape 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:291 msgid "3Dconnexion settings" msgstr "Impostazioni 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:3590 +#: src/slic3r/GUI/Plater.cpp:5068 #, possible-c-format msgid "3MF file exported to %s" msgstr "File 3MF esportato in %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1092 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 msgid "< &Back" msgstr "< &Precedente" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:277 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Un'espressione booleana che usa i valori di configurazione di un profilo di stampa attivo. Se questa espressione produce un risultato vero, questo profilo si considera compatibile con il profilo stampante attivo." -#: src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:262 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Un'espressione booleana che usa i valori di configurazione di un profilo stampante attivo. Se questa espressione produce un risultato vero, questo profilo si considera compatibile con il profilo stampante attivo." -#: src/slic3r/GUI/ConfigWizard.cpp:609 +#: src/slic3r/GUI/ConfigWizard.cpp:1035 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Una regola generale è da 160 a 230°C per il PLA, e da 215 a 250°C per l'ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:623 +#: src/slic3r/GUI/ConfigWizard.cpp:1049 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Una regola generale è 60°C per il PLA e 110°C per l'ABS. Lascia a zero se non hai un piano riscaldato." -#: src/slic3r/GUI/GLCanvas3D.cpp:721 +#: src/slic3r/GUI/GLCanvas3D.cpp:691 msgid "A toolpath outside the print area was detected" msgstr "È stato rilevato un percorso al di fuori dell'area di stampa" -#: src/slic3r/GUI/AboutDialog.cpp:35 +#: src/slic3r/GUI/AboutDialog.cpp:199 #, possible-c-format msgid "About %s" msgstr "Informazioni su %s" -#: src/libslic3r/GCode/PreviewData.cpp:499 +#: src/slic3r/GUI/GLCanvas3D.cpp:964 #, possible-c-format msgid "above %.2f mm" msgstr "sopra %.2f mm" -#: src/libslic3r/PrintConfig.cpp:1499 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Z Sopra " -#: src/slic3r/GUI/Tab.cpp:1103 +#: src/slic3r/GUI/Tab.cpp:1166 msgid "Acceleration control (advanced)" msgstr "Controllo Accelerazione (avanzato)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73 +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Accuracy" +msgstr "Precisione" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 msgid "Activate" msgstr "Attiva" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43 msgid "Active" msgstr "Attivo" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/DoubleSlider.cpp:1103 +msgid "active" +msgstr "attivo" + +#: src/slic3r/GUI/GLCanvas3D.cpp:272 msgid "Adaptive" msgstr "Adattivo" -#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237 +#: src/slic3r/GUI/Tab.cpp:243 msgid "Add a new printer" msgstr "Aggiungi una nuova stampante" -#: src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Add a pad underneath the supported model" msgstr "Aggiungi un pad sotto il modello supportato" -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Aggiunge un contorno (una singola linea di perimetro) attorno alla base del supporto. Questo rende il supporto più affidabile, ma anche più difficile da rimuovere." -#: src/slic3r/GUI/wxExtensions.cpp:3441 +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" +msgstr "Aggiungi altro codice - Ctrl + Clic sinistro" + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" +msgstr "Aggiungi un altro codice - Clic destro" + +#: src/slic3r/GUI/DoubleSlider.cpp:1449 msgid "Add color change" msgstr "Aggiungi cambio colore" -#: src/slic3r/GUI/wxExtensions.cpp:3435 +#: src/slic3r/GUI/DoubleSlider.cpp:1148 msgid "Add color change (%1%) for:" msgstr "Aggiungi cambio colore (%1%) per:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/DoubleSlider.cpp:959 +msgid "Add color change - Left click" +msgstr "Aggiungi cambio colore - Clic sinistro" + +#: src/slic3r/GUI/DoubleSlider.cpp:957 +msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" +msgstr "Aggiungi cambio colore - Clic sinistro per colore predefinito o Maiusc + Clic sinistro per selezione personalizzata del colore" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Add color change marker for current layer" msgstr "Aggiungi un segnale di cambio colore al layer corrente" -#: src/slic3r/GUI/wxExtensions.cpp:3447 +#: src/slic3r/GUI/DoubleSlider.cpp:1462 msgid "Add custom G-code" msgstr "Aggiungi un G-code personalizzato" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:245 msgid "Add detail" msgstr "Aggiungi dettagli" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +msgid "Add drainage hole" +msgstr "Aggiungi foro di drenaggio" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 +msgid "Add extruder change - Left click" +msgstr "Aggiungi cambio estrusore - Clic sinistro" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 msgid "Add extruder to sequence" msgstr "Aggiungi estrusore alla sequenza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1662 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 msgid "Add Generic Subobject" msgstr "Aggiungi sotto-oggetto generico" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2584 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2613 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2631 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 msgid "Add Height Range" msgstr "Aggiungi Intervallo Altezza" -#: src/slic3r/GUI/GLCanvas3D.cpp:3463 +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 +#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 msgid "Add instance" msgstr "Aggiungi istanza" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 msgid "Add Instance of the selected object" msgstr "Aggiungi istanza all'oggetto selezionato" @@ -390,112 +437,113 @@ msgstr "Aggiungi istanza all'oggetto selezionato" msgid "Add layer range" msgstr "Aggiungi intervallo layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1950 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 msgid "Add Layers" msgstr "Aggiungi layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1067 +#: src/slic3r/GUI/GUI_ObjectList.cpp:52 msgid "Add modifier" msgstr "Aggiungi modificatore" -#: src/libslic3r/PrintConfig.cpp:447 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Aggiunge più perimetri quando necessario per evitare spazi tra i perimetri inclinati. Slic3r continua ad aggiungere perimetri fino a quando almeno il 70% del giro immediatamente sopra sarà supportato." -#: src/slic3r/GUI/Plater.cpp:3516 +#: src/slic3r/GUI/Plater.cpp:3949 msgid "Add one more instance of the selected object" msgstr "Aggiungi un'altra istanza dell'oggetto selezionato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1066 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1082 +#: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "Aggiungi parte" -#: src/slic3r/GUI/wxExtensions.cpp:3444 +#: src/slic3r/GUI/DoubleSlider.cpp:1459 msgid "Add pause print" msgstr "Aggiungi pausa di stampa" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 msgid "Add point" msgstr "Aggiungi punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Add point to selection" msgstr "Aggiungi punto alla selezione" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 msgid "Add settings" msgstr "Aggiungi impostazioni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 msgid "Add Settings Bundle for Height range" msgstr "Aggiungi Gruppo impostazioni per intervallo Altezza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1191 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Object" msgstr "Aggiungi gruppo di impostazioni per l'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1190 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 msgid "Add Settings Bundle for Sub-object" msgstr "Aggiungi Gruppi di Impostazioni per il sotto-progetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 msgid "Add Settings for Layers" msgstr "Aggiungi impostazioni per i layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1128 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Object" msgstr "Aggiungi impostazioni per l'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1127 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 msgid "Add Settings for Sub-object" msgstr "Aggiungi impostazioni per il sotto-oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1676 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1922 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 msgid "Add Shape" msgstr "Aggiungi Forma" -#: src/libslic3r/PrintConfig.cpp:382 +#: src/libslic3r/PrintConfig.cpp:409 msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)." msgstr "Aggiunge un riempimento solido vicino le superfici inclinate per garantire lo spessore verticale (layer solidi superiore + inferiore)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1069 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:54 msgid "Add support blocker" msgstr "Aggiungi blocco supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:53 msgid "Add support enforcer" msgstr "Aggiungi rinforzo supporto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:531 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 msgid "Add support point" msgstr "Aggiungi punto di supporto" -#: src/slic3r/GUI/GLCanvas3D.cpp:3392 +#: src/slic3r/GUI/GLCanvas3D.cpp:4516 msgid "Add..." msgstr "Aggiungi..." -#: src/slic3r/GUI/PresetBundle.cpp:1683 +#: src/slic3r/GUI/PresetBundle.cpp:1697 msgid "Add/Remove filaments" msgstr "Aggiungi/Rimuovi filamenti" -#: src/slic3r/GUI/Preset.cpp:1102 +#: src/slic3r/GUI/Preset.cpp:1151 msgid "Add/Remove materials" msgstr "Aggiungi/Rimuovi materiali" -#: src/slic3r/GUI/Tab.cpp:920 +#: src/slic3r/GUI/Preset.cpp:1153 +msgid "Add/Remove printers" +msgstr "Aggiungi/Rimuovi stampanti" + +#: src/slic3r/GUI/Tab.cpp:972 msgid "Additional information:" msgstr "Informazioni aggiuntive:" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:59 msgid "Additional Settings" msgstr "Impostazioni Aggiuntive" -#: src/slic3r/GUI/ConfigWizard.cpp:431 +#: src/slic3r/GUI/ConfigWizard.cpp:790 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Inoltre viene generata una copia di backup dei preset prima di applicare un aggiornamento." @@ -503,54 +551,55 @@ msgstr "Inoltre viene generata una copia di backup dei preset prima di applicare msgid "Address" msgstr "Indirizzo" -#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76 -#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026 -#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139 -#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515 -#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435 -#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 +#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 +#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 +#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 +#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 msgid "Advanced" msgstr "Avanzate" -#: src/slic3r/GUI/ConfigWizard.cpp:786 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Advanced mode" msgstr "Modalità Avanzata" -#: src/slic3r/GUI/GUI_App.cpp:675 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "Modalità Visualizzazione Avanzata" -#: src/slic3r/GUI/FirmwareDialog.cpp:803 +#: src/slic3r/GUI/FirmwareDialog.cpp:841 msgid "Advanced: Output log" msgstr "Avanzato: Log di output" -#: src/libslic3r/PrintConfig.cpp:636 +#: src/libslic3r/PrintConfig.cpp:668 msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Dopo un cambio di attrezzo, l'esatta posizione del filamento appena caricato dentro l'ugello potrebbe essere sconosciuta, e la pressione del filamento probabilmente non è ancora stabile. Prima di spurgare la testina di stampa nel riempimento o in un oggetto sacrificale, Slic3r posizionerà questo materiale in una torre di spurgo al fine di ottenere una successiva estrusione affidabile su oggetto sacrificale o riempimento." -#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031 +#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-code dopo il cambio layer" -#: src/libslic3r/PrintConfig.cpp:3009 +#: src/libslic3r/PrintConfig.cpp:3383 msgid "Align the model to the given point." msgstr "Allinea il modello al punto dato." -#: src/libslic3r/PrintConfig.cpp:3008 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Align XY" msgstr "Allinea XY" -#: src/libslic3r/PrintConfig.cpp:1561 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "Allineato" -#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3158 msgid "All" msgstr "Tutto" -#: src/libslic3r/Print.cpp:1135 +#: src/libslic3r/Print.cpp:1215 msgid "All objects are outside of the print volume." msgstr "Tutti gli oggetti sono fuori dal volume di stampa." @@ -558,232 +607,246 @@ msgstr "Tutti gli oggetti sono fuori dal volume di stampa." msgid "All objects will be removed, continue ?" msgstr "Saranno rimossi tutti gli oggetti, continuare?" -#: src/slic3r/GUI/ConfigWizard.cpp:188 +#: src/slic3r/GUI/Plater.cpp:4684 +msgid "All objects will be removed, continue?" +msgstr "Saranno rimossi tutti gli oggetti, continuare?" + +#: src/slic3r/GUI/ConfigWizard.cpp:289 msgid "All standard" msgstr "Tutto standard" -#: src/libslic3r/Zipper.cpp:65 +#: src/libslic3r/Zipper.cpp:62 msgid "allocation failed" msgstr "allocazione fallita" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Along X axis" msgstr "Lungo asse X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Along Y axis" msgstr "Lungo asse Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Along Z axis" msgstr "Lungo l'asse Z" -#: src/slic3r/GUI/ConfigWizard.cpp:122 +#: src/slic3r/GUI/ConfigWizard.cpp:222 msgid "Alternate nozzles:" msgstr "Ugelli alternativi:" -#: src/slic3r/GUI/Plater.cpp:3561 +#: src/slic3r/GUI/Plater.cpp:5022 #, possible-c-format msgid "AMF file exported to %s" msgstr "File AMF esportato in %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:725 +#: src/slic3r/GUI/GLCanvas3D.cpp:695 msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" msgstr "È stato rilevato un oggetto al di fuori dell'area di stampa\nRisolvere il problema per continuare lo slicing" -#: src/slic3r/GUI/GLCanvas3D.cpp:720 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "An object outside the print area was detected" msgstr "È stato rilevato un oggetto al di fuori dell'area di stampa" -#: src/slic3r/GUI/Tab.cpp:2781 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "and it has the following unsaved changes:" msgstr "e ha i seguenti cambiamenti non salvati:" -#: src/slic3r/GUI/Plater.cpp:2461 +#: src/slic3r/GUI/Plater.cpp:3154 msgid "Another export job is currently running." msgstr "Un altro processo di esportazione è in corso." -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "Qualunque freccia" + +#: src/slic3r/GUI/Tab.cpp:967 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Qualunque modifica deve essere salvata come un nuovo preset ereditato da questo." -#: src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" msgstr "Chiave API / Password" -#: src/slic3r/GUI/GUI_App.cpp:671 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Preferenze applicazione" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 msgid "Apply changes" msgstr "Applica cambiamenti" -#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "secondi approssimativi" -#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "Corde di Archimede" -#: src/libslic3r/Zipper.cpp:91 +#: src/libslic3r/Zipper.cpp:88 msgid "archive is too large" msgstr "l'archivio è troppo grande" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:2955 +#: src/slic3r/GUI/Tab.cpp:3107 msgid "Are you sure you want to %1% the selected preset?" msgstr "Sei sicuro di voler %1% il preset selezionato?" -#: src/slic3r/GUI/FirmwareDialog.cpp:862 +#: src/slic3r/GUI/FirmwareDialog.cpp:902 msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" msgstr "Sei sicuro di voler annullare il flash del firmware?\nQuesto potrebbe lasciare la tua stampante in una condizione inutilizzabile!" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "Are you sure you want to continue?" +msgstr "Sei sicuro di voler continuare?" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 msgid "Are you sure you want to do it?" msgstr "Sei sicuro di voler procedere?" -#: src/libslic3r/PrintConfig.cpp:2258 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "Riempimento area" -#: src/slic3r/GUI/Plater.cpp:609 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Around object" msgstr "Intorno all'oggetto" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/Plater.cpp:2738 msgid "Arrange" msgstr "Disponi" -#: src/slic3r/GUI/GLCanvas3D.cpp:3486 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Arrange selection" msgstr "Disponi selezione" -#: src/libslic3r/PrintConfig.cpp:3054 +#: src/libslic3r/PrintConfig.cpp:3428 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Disponi i modelli su un piano e uniscili in un singolo modello al fine di effettuare le operazioni una singola volta." -#: src/slic3r/GUI/Plater.cpp:2106 +#: src/slic3r/GUI/Plater.cpp:2797 msgid "Arranging" msgstr "Disponendo" -#: src/slic3r/GUI/Plater.cpp:2718 +#: src/slic3r/GUI/Plater.cpp:2825 msgid "Arranging canceled." msgstr "Disposizione annullata." -#: src/slic3r/GUI/Plater.cpp:2144 +#: src/slic3r/GUI/Plater.cpp:2826 msgid "Arranging done." msgstr "Disposizione completata." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Arrow Down" msgstr "Freccia giù" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Arrow Left" msgstr "Freccia sinistra" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Arrow Right" msgstr "Freccia Destra" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Arrow Up" msgstr "Freccia Su" -#: src/slic3r/GUI/GUI_App.cpp:303 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Come soluzione alternativa, è possibile eseguire PrusaSlicer con una grafica 3D di rendering software eseguendo prusa-slicer.exe con il parametro --sw_renderer." -#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743 -#: src/slic3r/GUI/Tab.cpp:2798 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 +#: src/slic3r/GUI/Tab.cpp:2944 msgid "Attention!" msgstr "Attenzione!" -#: src/libslic3r/PrintConfig.cpp:1785 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "Supporti generati automaticamente" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "Centra automaticamente le parti" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 msgid "Auto-generate points" msgstr "Genera punti automaticamente" -#: src/slic3r/GUI/Plater.cpp:979 +#: src/slic3r/GUI/Plater.cpp:1154 #, possible-c-format msgid "Auto-repaired (%d errors)" msgstr "Auto-riparati (%d errori)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:337 #, possible-c-format msgid "Auto-repaired (%d errors):" msgstr "Auto-riparati (%d errori):" -#: src/slic3r/GUI/FirmwareDialog.cpp:771 +#: src/slic3r/GUI/FirmwareDialog.cpp:809 msgid "Autodetected" msgstr "Autorilevato" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1338 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 msgid "Autogenerate support points" msgstr "Genera automaticamente punti di supporto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 msgid "Autogeneration will erase all manually edited points." msgstr "La generazione automatica cancellerà tutti i punti editati manualmente." -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Automatic generation" msgstr "Generazione automatica" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Automatic updates" msgstr "Aggiornamenti automatici" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "Ripara automaticamente un file STL" -#: src/slic3r/GUI/Tab.cpp:1110 +#: src/slic3r/GUI/Tab.cpp:1173 msgid "Autospeed (advanced)" msgstr "Autovelocità (avanzato)" -#: src/libslic3r/PrintConfig.cpp:111 +#: src/libslic3r/PrintConfig.cpp:126 msgid "Avoid crossing perimeters" msgstr "Evita incrocio perimetri" -#: src/slic3r/GUI/Tab.cpp:3081 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "BACK ARROW" msgstr "FRECCIA INDIETRO" -#: src/slic3r/GUI/Tab.cpp:3113 +#: src/slic3r/GUI/Tab.cpp:3274 msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." msgstr "L'icona FRECCIA INDIETRO indica che le impostazioni sono state cambiate e non corrispondono all'ultimo preset salvato per il seguente gruppo di opzioni.\nClicca per reimpostare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni." -#: src/slic3r/GUI/Tab.cpp:3127 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." msgstr "L'icona FRECCIA ALL'INDIETRO indica che il valore è stato cambiato e non corrisponde all'ultimo preset salvato.\nCliccare per reimpostare il valore corrente all'ultimo preset salvato." -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Elaborazione in background" -#: src/slic3r/GUI/GUI_ObjectList.cpp:242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "backwards edges" msgstr "spigoli invertiti" -#: src/slic3r/GUI/MainFrame.cpp:152 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "basato su Slic3r" -#: src/slic3r/GUI/Tab.cpp:1484 +#: src/slic3r/GUI/Tab.cpp:1441 msgid "Bed" msgstr "Piano" @@ -795,31 +858,31 @@ msgstr "Modello piano personalizzato" msgid "Bed custom texture" msgstr "Forma piano personalizzata" -#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape" msgstr "Forma Piano" -#: src/libslic3r/PrintConfig.cpp:50 +#: src/libslic3r/PrintConfig.cpp:51 msgid "Bed shape" msgstr "Forma piano" -#: src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape and Size" msgstr "Forma e dimensioni del piano di stampa" -#: src/libslic3r/PrintConfig.cpp:122 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Bed temperature" msgstr "Temperatura piano" -#: src/libslic3r/PrintConfig.cpp:120 +#: src/libslic3r/PrintConfig.cpp:135 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura per i layer dopo il primo. Imposta a zero per disattivare i comandi di controllo della temperatura del piano di stampa in output." -#: src/slic3r/GUI/ConfigWizard.cpp:626 +#: src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "Bed Temperature:" msgstr "Temperatura piano di stampa:" -#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128 +#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 msgid "Before layer change G-code" msgstr "G-code prima del cambio layer" @@ -827,98 +890,110 @@ msgstr "G-code prima del cambio layer" msgid "Before roll back" msgstr "Prima di tornare indietro" -#: src/slic3r/GUI/Plater.cpp:608 +#: src/slic3r/GUI/Plater.cpp:637 msgid "Below object" msgstr "Sotto l'oggetto" -#: src/libslic3r/PrintConfig.cpp:1508 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "Z Sotto" -#: src/libslic3r/PrintConfig.cpp:139 +#: src/libslic3r/PrintConfig.cpp:154 msgid "Between objects G-code" msgstr "G-code tra gli oggetti" -#: src/slic3r/GUI/Tab.cpp:1979 +#: src/slic3r/GUI/Tab.cpp:2004 msgid "Between objects G-code (for sequential printing)" msgstr "G-code tra gli oggetti (per stampa sequenziale)" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 msgid "Bottle volume" msgstr "Volume bottiglia" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 msgid "Bottle weight" msgstr "Peso bottiglia" #. TRN To be shown in the main menu View->Bottom -#: src/slic3r/GUI/MainFrame.cpp:524 +#. TRN To be shown in Print Settings "Bottom solid layers" +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 +#: src/libslic3r/PrintConfig.cpp:173 msgid "Bottom" msgstr "Inferiore" -#: src/libslic3r/PrintConfig.cpp:409 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "Trama riempimento inferiore" -#: src/libslic3r/PrintConfig.cpp:152 +#: src/slic3r/GUI/PresetHints.cpp:338 +msgid "Bottom is open." +msgstr "La parte inferiore è aperta." + +#: src/slic3r/GUI/PresetHints.cpp:332 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "Il guscio inferiore è spesso %1% mm per l'altezza layer %2% mm." + +#: src/libslic3r/PrintConfig.cpp:167 msgid "Bottom solid layers" msgstr "Layer solidi sul fondo" -#: src/slic3r/GUI/MainFrame.cpp:524 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" msgstr "Vista inferiore" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1087 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1090 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 msgid "Box" -msgstr "Box" +msgstr "Cubo" -#: src/libslic3r/PrintConfig.cpp:157 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bridge" msgstr "Bridge" -#: src/libslic3r/PrintConfig.cpp:186 +#: src/libslic3r/PrintConfig.cpp:212 msgid "Bridge flow ratio" msgstr "Rapporto flusso Bridge" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Riempimento Bridge" -#: src/libslic3r/PrintConfig.cpp:198 +#: src/libslic3r/PrintConfig.cpp:224 msgid "Bridges" msgstr "Bridge" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:203 msgid "Bridges fan speed" msgstr "Velocità ventola Bridge" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:192 msgid "Bridging angle" msgstr "Angolo Bridge" -#: src/libslic3r/PrintConfig.cpp:168 +#: src/libslic3r/PrintConfig.cpp:194 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Ignora angolo Bridging. Se lasciato a zero, l'angolo di bridging verrà calcolato automaticamente. Altrimenti l'angolo fornito sarà utilizzato per tutti i bridge. Usa 180° per l'angolo zero." -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "Bridging volumetrico" -#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056 +#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "Brim" -#: src/libslic3r/PrintConfig.cpp:208 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Brim width" msgstr "Larghezza brim" -#: src/slic3r/GUI/Tab.cpp:1681 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 +#: src/slic3r/GUI/Tab.cpp:1719 msgid "Browse" msgstr "Naviga" -#: src/libslic3r/Zipper.cpp:85 +#: src/libslic3r/Zipper.cpp:82 msgid "buffer too small" msgstr "buffer troppo piccolo" @@ -926,461 +1001,514 @@ msgstr "buffer troppo piccolo" msgid "Buttons And Text Colors Description" msgstr "Descrizione colori testo e pulsanti" -#: src/slic3r/GUI/PresetHints.cpp:220 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "secondo il massimo del profilo di stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:115 +msgid "Camera" +msgstr "Camera" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 msgid "Camera view" msgstr "Vista camera" -#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37 -#: src/slic3r/GUI/ProgressStatusBar.cpp:28 +#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Annulla" -#: src/slic3r/GUI/PrintHostDialogs.cpp:156 +#: src/slic3r/GUI/PrintHostDialogs.cpp:157 msgid "Cancel selected" msgstr "Cancella selezione" -#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Annullato" -#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231 +#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Annullamento" -#: src/slic3r/GUI/FirmwareDialog.cpp:866 +#: src/slic3r/GUI/FirmwareDialog.cpp:906 msgid "Cancelling..." msgstr "Annullo in corso..." -#: src/slic3r/GUI/Tab.cpp:2905 +#: src/libslic3r/Flow.cpp:55 +msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "Non è possibile calcolare la larghezza di estrusione per %1%: Variabile \"%2%\" non accessibile." + +#: src/slic3r/GUI/Tab.cpp:3057 msgid "Cannot overwrite a system profile." msgstr "Impossibile sovrascrivere un profilo di sistema." -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:3061 msgid "Cannot overwrite an external profile." msgstr "Impossibile sovrascrivere un profilo esterno." -#: src/libslic3r/SLAPrint.cpp:612 +#: src/libslic3r/SLAPrint.cpp:613 msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Impossibile procedere senza punti di supporto! Aggiungi i punti di supporto o disattiva la generazione supporti." -#: src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/Tab.cpp:1832 msgid "Capabilities" msgstr "Caratteristiche" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "Cattura un'istantanea della configurazione" -#: src/libslic3r/PrintConfig.cpp:3035 +#: src/libslic3r/PrintConfig.cpp:3409 msgid "Center" msgstr "Centro" -#: src/libslic3r/PrintConfig.cpp:3036 +#: src/libslic3r/PrintConfig.cpp:3410 msgid "Center the print around the given center." msgstr "Centra la stampa sul centro dato." -#: src/slic3r/GUI/Tab.cpp:1744 +#: src/slic3r/GUI/Tab.cpp:1726 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "File di certificato (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -#: src/slic3r/GUI/GUI_App.cpp:683 -msgid "Change Application &Language" -msgstr "&Lingua" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:154 msgid "Change camera type (perspective, orthographic)" msgstr "Cambia tipo di visuale (prospettica, ortografica)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1226 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +msgid "Change drainage hole diameter" +msgstr "Modifica il diametro dei fori di drenaggio" + +#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 msgid "Change extruder" msgstr "Cambia estrusore" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:534 msgid "Change Extruder" msgstr "Cambio estrusore" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/DoubleSlider.cpp:1113 +msgid "Change extruder (N/A)" +msgstr "Cambio estrusore (N/A)" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Change Extruders" msgstr "Cambio Estrusori" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:144 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 #, possible-c-format msgid "Change Option %s" msgstr "Modifica Opzione %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3134 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 msgid "Change Part Type" msgstr "Modifica il tipo di Parte" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:925 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 msgid "Change point head diameter" msgstr "Modifica diametro punta della testa" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Change the number of instances of the selected object" msgstr "Cambia il numero di istanze dell'oggetto selezionato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1185 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 msgid "Change type" msgstr "Cambia tipo" -#: src/slic3r/GUI/UpdateDialogs.cpp:56 +#: src/slic3r/GUI/UpdateDialogs.cpp:53 msgid "Changelog && Download" msgstr "Changelog && Download" -#: src/slic3r/GUI/GUI_App.cpp:378 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "Cambio lingua applicazione" -#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61 +#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Verifica la presenza di aggiornamenti" -#: src/slic3r/GUI/BedShapeDialog.cpp:509 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "Controlla aggiornamenti di configurazione" + +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "Cerca aggiornamenti" + +#: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Seleziona un file da cui importare la forma del piano di stampa (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:621 +#: src/slic3r/GUI/MainFrame.cpp:775 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Scegli un file da processare (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/BedShapeDialog.cpp:532 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" msgstr "Scegli un file STL da cui importare il modello del piano:" -#: src/slic3r/GUI/BedShapeDialog.cpp:464 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" msgstr "Scegli un file STL da cui importare la forma del piano:" -#: src/slic3r/GUI/GUI_App.cpp:510 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "Seleziona un file (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:501 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Seleziona uno o più file (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:490 +#: src/slic3r/GUI/ConfigWizard.cpp:896 msgid "Choose the type of firmware used by your printer." msgstr "Indica il firmware usato dalla tua stampante." -#: src/slic3r/GUI/BedShapeDialog.cpp:84 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "Circolare" -#: src/slic3r/GUI/GLCanvas3D.cpp:3701 src/slic3r/GUI/GLCanvas3D.cpp:3734 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 msgid "Click right mouse button to open History" msgstr "Fai click destro per aprire la Storia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:383 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Click the icon to change the object printable property" msgstr "Clicca l'icona per cambiare le proprietà di stampa dell'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:377 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Click the icon to change the object settings" msgstr "Fare clic sull'icona per modificare le impostazioni dell'oggetto" -#: src/slic3r/GUI/Plater.cpp:292 +#: src/slic3r/GUI/Plater.cpp:340 msgid "Click to edit preset" msgstr "Clicca per modificare il preset" -#: src/libslic3r/PrintConfig.cpp:216 +#: src/libslic3r/PrintConfig.cpp:242 msgid "Clip multi-part objects" msgstr "Collega oggetti multi-part" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 msgid "Clipping of view" msgstr "Ritaglio della vista" -#: src/slic3r/GUI/FirmwareDialog.cpp:814 -#: src/slic3r/GUI/PrintHostDialogs.cpp:160 +#: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Chiudi" -#: src/libslic3r/PrintConfig.cpp:550 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +msgid "Closing distance" +msgstr "Distanza di chiusura" + +#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 +#: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Colore" -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 +#: src/slic3r/GUI/DoubleSlider.cpp:972 +msgid "Color change (\"%1%\")" +msgstr "Cambio colore (\"%1%\")" + +#: src/slic3r/GUI/DoubleSlider.cpp:973 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "Cambio colore (\"%1%\") per Estrusore %2%" + +#: src/slic3r/GUI/GLCanvas3D.cpp:995 #, possible-c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Cambio colore per Estrusore %d a %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535 -#: src/libslic3r/GCode/PreviewData.cpp:406 +#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Color Print (Stampa a Colori)" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:250 msgid "Colorprint height" msgstr "Altezza Colorprint" -#: src/libslic3r/PrintConfig.cpp:942 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "Combina riempimento ogni" -#: src/libslic3r/PrintConfig.cpp:947 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "Combina riempimento ogni n layer" -#: src/slic3r/GUI/UpdateDialogs.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "Comandi" + +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "Commento:" -#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 msgid "Compatible print profiles" msgstr "Profili di stampa compatibili" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:276 msgid "Compatible print profiles condition" msgstr "Condizioni profili di stampa compatibili" -#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 msgid "Compatible printers" msgstr "Stampanti compatibili" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Compatible printers condition" msgstr "Condizioni di stampante compatibile" -#: src/libslic3r/PrintConfig.cpp:268 +#: src/libslic3r/PrintConfig.cpp:294 msgid "Complete individual objects" msgstr "Completa singoli oggetti" -#: src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/PrintHostDialogs.cpp:234 msgid "Completed" msgstr "Completato" -#: src/libslic3r/Zipper.cpp:57 +#: src/libslic3r/Zipper.cpp:54 msgid "compression failed" msgstr "compressione fallita" -#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "Concentrico" -#: src/slic3r/GUI/ConfigWizard.cpp:1185 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Assistant" msgstr "&Assistente Configurazione" -#: src/slic3r/GUI/ConfigWizard.cpp:1182 +#: src/slic3r/GUI/ConfigWizard.cpp:2116 msgid "Configuration &Wizard" msgstr "Configurazione guidata (&Wizard)" -#: src/slic3r/GUI/ConfigWizard.cpp:1184 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Assistant" msgstr "Assistente configurazione" -#: src/libslic3r/PrintConfig.cpp:1251 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "Note di configurazione" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:104 msgid "Configuration Snapshots" msgstr "Istantanee di Configurazione" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "Aggiornamento di configurazione" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 msgid "Configuration update is available" msgstr "Aggiornamento di configurazione disponibile" -#: src/slic3r/GUI/ConfigWizard.cpp:1181 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Configuration update is necessary to install" +msgstr "È necessario installare un aggiornamento della configurazione." + +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "Aggiornamenti di configurazione" + +#: src/slic3r/GUI/ConfigWizard.cpp:2115 msgid "Configuration Wizard" msgstr "Configurazione Guidata" -#: src/slic3r/GUI/FirmwareDialog.cpp:863 +#: src/slic3r/GUI/FirmwareDialog.cpp:903 msgid "Confirmation" msgstr "Conferma" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1929 msgid "Connection failed." msgstr "Connessione fallita." -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/Tab.cpp:3612 msgid "Connection of the support sticks and junctions" msgstr "Connessione delle barre di supporto e giunzioni" -#: src/slic3r/Utils/Duet.cpp:51 +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "La connessione ad AstroBox funziona correttamente." + +#: src/slic3r/Utils/Duet.cpp:49 msgid "Connection to Duet works correctly." msgstr "La connessione a Duet funziona correttamente." -#: src/slic3r/Utils/FlashAir.cpp:70 +#: src/slic3r/Utils/FlashAir.cpp:68 msgid "Connection to FlashAir works correctly and upload is enabled." msgstr "Connessione a FlashAir correttamente funzionante e caricamento abilitato." -#: src/slic3r/Utils/OctoPrint.cpp:84 +#: src/slic3r/Utils/OctoPrint.cpp:83 msgid "Connection to OctoPrint works correctly." msgstr "Connessione con OctoPrint funzionante." -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1926 msgid "Connection to printer works correctly." msgstr "Connessione con la stampante funzionante." -#: src/slic3r/Utils/OctoPrint.cpp:195 +#: src/slic3r/Utils/OctoPrint.cpp:176 msgid "Connection to Prusa SL1 works correctly." msgstr "La connessione a Prusa SL1 funziona correttamente." -#: src/libslic3r/PrintConfig.cpp:1823 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Distanza di contatto Z" -#: src/slic3r/GUI/AboutDialog.cpp:96 +#: src/slic3r/GUI/AboutDialog.cpp:261 msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Con il contributo di Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik e molti altri." -#: src/libslic3r/PrintConfig.cpp:2433 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Controlla il tipo di bridge tra due pilastri adiacenti. Può essere zig-zag, croce (doppio zig-zag) o dinamico, che passerà automaticamente tra i due a seconda della distanza tra i due pilastri." -#: src/slic3r/GUI/Tab.cpp:1489 +#: src/slic3r/GUI/Tab.cpp:1446 msgid "Cooling" msgstr "Raffreddamento" -#: src/libslic3r/PrintConfig.cpp:629 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "I movimenti di raffreddamento accelerano gradualmente partendo da questa velocità." -#: src/libslic3r/PrintConfig.cpp:648 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "I movimenti di raffreddamento accelerano gradualmente verso questa velocità." -#: src/slic3r/GUI/Tab.cpp:1510 +#: src/slic3r/GUI/Tab.cpp:1467 msgid "Cooling thresholds" msgstr "Soglie di raffreddamento" -#: src/libslic3r/PrintConfig.cpp:291 +#: src/libslic3r/PrintConfig.cpp:317 msgid "Cooling tube length" msgstr "Lunghezza del tubo di raffreddamento" -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:309 msgid "Cooling tube position" msgstr "Posizione tubo di raffreddamento" -#: src/slic3r/GUI/Tab.cpp:2878 +#: src/slic3r/GUI/GLCanvas3D.cpp:4554 msgid "Copy" msgstr "Copia" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "Copia selezione negli appunti" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 msgid "Copy to clipboard" msgstr "Copia negli appunti" -#: src/slic3r/GUI/SysInfoDialog.cpp:120 +#: src/slic3r/GUI/SysInfoDialog.cpp:154 msgid "Copy to Clipboard" msgstr "Copia negli appunti" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Copia del G-code temporaneo nel G-code di output non riuscita" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Copia del G-code temporaneo nel G-code di output non riuscita. Forse la scheda SD ha la sicura per la scrittura?" -#: src/slic3r/GUI/AboutDialog.cpp:92 +#: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Copyright" -#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325 +#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 msgid "Correction for expansion" msgstr "Correzione dell'espansione" -#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310 +#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 msgid "Corrections" msgstr "Correzioni" -#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056 -#: src/libslic3r/PrintConfig.cpp:717 +#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 msgid "Cost" msgstr "Costo" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Cost (money)" msgstr "Costo (soldi)" -#: src/slic3r/GUI/Plater.cpp:2140 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Non è stato possibile disporre gli oggetti! Alcune geometrie potrebbero essere non valide." -#: src/slic3r/Utils/Duet.cpp:56 +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "Impossibile connettere ad AstroBox" + +#: src/slic3r/Utils/Duet.cpp:54 msgid "Could not connect to Duet" msgstr "Connessione a Duet fallita" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Could not connect to FlashAir" msgstr "Impossibile connettersi a FlashAir" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Could not connect to OctoPrint" msgstr "Impossibile connettersi ad OctoPrint" -#: src/slic3r/Utils/OctoPrint.cpp:200 +#: src/slic3r/Utils/OctoPrint.cpp:181 msgid "Could not connect to Prusa SLA" msgstr "Connessione a Prusa SLA fallita" -#: src/slic3r/GUI/Tab.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1689 msgid "Could not get a valid Printer Host reference" msgstr "Impossibile ottenere un riferimento Host Stampante valido" -#: src/slic3r/Utils/Duet.cpp:151 +#: src/slic3r/Utils/Duet.cpp:134 msgid "Could not get resources to create a new connection" msgstr "Non sono state trovate le risorse per stabilire una nuova connessione" -#: src/libslic3r/PrintConfig.cpp:1872 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "Copre con anelli il layer superiore del supporto a contatto. Disattivato per impostazione predefinita." -#: src/libslic3r/PrintConfig.cpp:73 +#: src/libslic3r/PrintConfig.cpp:89 msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." msgstr "Le fratture più piccole di 2 volte il gap closing radius vengono riempite durante lo slicing del mesh triangolare. L'operazione potrebbe ridurre la risoluzione finale di stampa, dunque è preferibile settare il valore ragionevolmente basso." -#: src/libslic3r/Zipper.cpp:61 +#: src/libslic3r/Zipper.cpp:58 msgid "CRC-32 check failed" msgstr "verifica CRC-32 fallita" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "Create pad around object and ignore the support elevation" msgstr "Genera Pad intorno all'oggetto ed ignora l'elevazione del supporto" -#: src/libslic3r/PrintConfig.cpp:2460 +#: src/libslic3r/PrintConfig.cpp:2715 msgid "Critical angle" msgstr "Angolo critico" -#: src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Cross" msgstr "Croce" -#: src/libslic3r/PrintConfig.cpp:800 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "Cubico" -#: src/slic3r/GUI/wxExtensions.cpp:2413 +#: src/slic3r/GUI/wxExtensions.cpp:704 #, possible-c-format msgid "Current mode is %s" msgstr "La modalità corrente è %s" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:959 msgid "Current preset is inherited from the default preset." msgstr "Il preset attuale è stato ereditato dal preset predefinito." -#: src/slic3r/GUI/Tab.cpp:928 +#: src/slic3r/GUI/Tab.cpp:962 #, possible-c-format msgid "Current preset is inherited from:\n\t%s" msgstr "Il preset corrente è ereditato da:\n%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:45 +#: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Versione corrente:" @@ -1388,180 +1516,193 @@ msgstr "Versione corrente:" msgid "Cusp (mm)" msgstr "Orlo (mm)" -#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239 -#: src/libslic3r/GCode/PreviewData.cpp:175 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Personalizzato" -#: src/libslic3r/PrintConfig.cpp:96 +#: src/libslic3r/PrintConfig.cpp:112 msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Può essere specificato il file del certificato CA personalizzato per le connessioni OctoPrint HTTPS, in formato crt/pem. Se lasciato in bianco, verrà utilizzato lo OS CA certificate repository predefinito." -#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 msgid "Custom G-code" msgstr "G-code personalizzato" +#: src/slic3r/GUI/DoubleSlider.cpp:1591 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "G-code personalizzato al layer attuale (%1% mm)." + #: src/slic3r/GUI/wxExtensions.cpp:3500 msgid "Custom Gcode on current layer (%1% mm)." msgstr "Gcode personalizzato al layer corrente (%1% mm)." -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Stampante Personalizzata" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "Setup Stampante Personalizzata" -#: src/slic3r/GUI/ConfigWizard.cpp:377 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "Nome profilo personalizzato:" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 msgid "Cut" msgstr "Taglia" -#: src/slic3r/GUI/Plater.cpp:4193 +#: src/slic3r/GUI/Plater.cpp:4801 msgid "Cut by Plane" msgstr "Taglia sul Piano" -#: src/libslic3r/PrintConfig.cpp:3014 +#: src/libslic3r/PrintConfig.cpp:3388 msgid "Cut model at the given Z." msgstr "Taglia il modello al dato Z." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Cylinder" msgstr "Cilindro" -#: src/slic3r/GUI/MainFrame.cpp:491 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "D&eseleziona tutto" -#: src/libslic3r/PrintConfig.cpp:3115 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Data directory" msgstr "Directory dati" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:332 msgid "Deadzone:" msgstr "Zona morta:" -#: src/libslic3r/Zipper.cpp:55 +#: src/libslic3r/Zipper.cpp:52 msgid "decompression failed or archive is corrupted" msgstr "decompressione non riuscita o archivio corrotto" -#: src/slic3r/GUI/Plater.cpp:4127 +#: src/slic3r/GUI/Plater.cpp:4735 msgid "Decrease Instances" msgstr "Diminuisci Istanze" -#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245 -#: src/libslic3r/PrintConfig.cpp:299 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 msgid "Default" msgstr "Predefinito" -#: xs/src/slic3r/GUI/Field.cpp:98 +#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 msgid "default" msgstr "predefinito" -#: src/libslic3r/PrintConfig.cpp:730 +#: src/libslic3r/PrintConfig.cpp:777 msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them." msgstr "Angolo base predefinito per l'orientamento del riempimento. Su questo verrà applicato il tratteggio. I bridge saranno riempiti utilizzando la migliore direzione che Slic3r riesce a determinare, quindi questa impostazione non influisce sui bridge." -#: src/libslic3r/PrintConfig.cpp:522 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "Larghezza estrusione predefinita" -#: src/slic3r/GUI/Tab.cpp:937 +#: src/slic3r/GUI/Tab.cpp:989 msgid "default filament profile" msgstr "profilo filamento predefinito" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:335 msgid "Default filament profile" msgstr "Profilo filamento predefinito" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:336 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Profilo filamento predefinito associato al profilo stampante corrente. Quando si seleziona il profilo stampante corrente, questo profilo filamento verrà attivato." -#: src/slic3r/GUI/Tab.cpp:2757 +#: src/slic3r/GUI/Tab.cpp:2903 #, possible-c-format msgid "Default preset (%s)" msgstr "Preset predefinito (%s)" -#: src/libslic3r/GCode/PreviewData.cpp:491 +#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 msgid "Default print color" msgstr "Colore di stampa predefinito" -#: src/slic3r/GUI/Tab.cpp:934 +#: src/slic3r/GUI/Tab.cpp:986 msgid "default print profile" msgstr "profilo di stampa predefinito" -#: src/libslic3r/PrintConfig.cpp:316 +#: src/libslic3r/PrintConfig.cpp:342 msgid "Default print profile" msgstr "Profilo di stampa predefinito" -#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341 -#: src/libslic3r/PrintConfig.cpp:2352 +#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 +#: src/libslic3r/PrintConfig.cpp:2594 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Profilo di stampa predefinito associato al profilo stampante corrente. Alla selezione del profilo stampante corrente, questo profilo di stampa verrà attivato." -#: src/slic3r/GUI/Tab.cpp:951 +#: src/slic3r/GUI/Tab.cpp:1003 msgid "default SLA material profile" msgstr "profilo materiale SLA predefinito" -#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351 +#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 msgid "Default SLA material profile" msgstr "Profilo materiale SLA predefinito" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:1007 msgid "default SLA print profile" msgstr "profilo di stampa SLA predefinito" -#: src/slic3r/GUI/Field.cpp:105 +#: src/slic3r/GUI/Field.cpp:131 msgid "default value" msgstr "valore predefinito" -#: src/slic3r/GUI/ConfigWizard.cpp:375 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "Inserisci un profilo stampante personalizzato" -#: src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Definisce la profondità della cavità nel pad. Imposta a zero per disattivare la cavità. Fai attenzione ad attivare questa funzione in quanto alcune resine possono causare un effetto ventosa dentro la cavità il che renderà difficile il distacco della stampa dal foglio del vat." -#: src/slic3r/GUI/GUI_ObjectList.cpp:237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:344 msgid "degenerate facets" msgstr "facce degenerate" -#: src/libslic3r/PrintConfig.cpp:608 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "Ritardo dopo lo scarico" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "delete" msgstr "elimina" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891 -#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Delete" msgstr "Elimina" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "Elimin&a tutto" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Delete All" msgstr "Elimina tutto" -#: src/slic3r/GUI/Plater.cpp:3298 +#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 msgid "Delete all" msgstr "Elimina tutto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 msgid "Delete All Instances from Object" msgstr "Elimina Tutte le Istanze dall'Oggetto" -#: src/slic3r/GUI/wxExtensions.cpp:3465 +#: src/slic3r/GUI/DoubleSlider.cpp:1488 msgid "Delete color change" msgstr "Elimina il cambio colore" @@ -1569,171 +1710,188 @@ msgstr "Elimina il cambio colore" msgid "Delete color change for Extruder %1%" msgstr "Elimina il cambio colore per Estrusore %1%" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 msgid "Delete color change marker for current layer" msgstr "Elimina il segnale di cambio colore per il layer corrente" -#: src/slic3r/GUI/wxExtensions.cpp:3467 +#: src/slic3r/GUI/DoubleSlider.cpp:1491 msgid "Delete custom G-code" msgstr "Elimina G-code personalizzato" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +msgid "Delete drainage hole" +msgstr "Elimina foro di drenaggio" + #: src/slic3r/GUI/wxExtensions.cpp:3095 msgid "Delete extruder change to \"%1%\"" msgstr "Elimina il cambio estrusore a \"%1%\"" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1898 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 msgid "Delete Height Range" msgstr "Elimina Intervallo Altezza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1876 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 msgid "Delete Instance" msgstr "Elimina Istanza" -#: src/slic3r/GUI/Plater.cpp:2592 +#: src/slic3r/GUI/Plater.cpp:2696 msgid "Delete Object" msgstr "Elimina Oggetto" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:100 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 #, possible-c-format msgid "Delete Option %s" msgstr "Elimina Opzione %s" -#: src/slic3r/GUI/wxExtensions.cpp:3466 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Delete pause print" msgstr "Elimina pausa stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Delete selected" msgstr "Elimina selezionato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 msgid "Delete Selected" msgstr "Elimina Selezionati" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2303 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 msgid "Delete Selected Item" msgstr "Elimina l'elemento selezionato" -#: src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Plater.cpp:4692 msgid "Delete Selected Objects" msgstr "Elimina Oggetti Selezionati" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1782 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 msgid "Delete Settings" msgstr "Elimina Impostazioni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1857 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 msgid "Delete Subobject" msgstr "Elimina Sotto-oggetto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:720 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 msgid "Delete support point" msgstr "Elimina punto di supporto" -#: src/slic3r/GUI/Tab.cpp:131 +#: src/slic3r/GUI/Tab.cpp:136 msgid "Delete this preset" msgstr "Elimina questo preset" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/DoubleSlider.cpp:1001 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "Elimina il segno di spunta - Clic sinistro o premi il tasto \"-\"" + +#: src/slic3r/GUI/DoubleSlider.cpp:1489 +msgid "Delete tool change" +msgstr "Elimina cambio attrezzo" + +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "Elimina tutti gli oggetti" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "Elimina la selezione corrente" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 +#: src/libslic3r/PrintConfig.cpp:2495 msgid "Density" msgstr "Densità" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Densità del riempimento interno, espresso nell'intervallo 0% - 100%." -#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584 -#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086 -#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 +#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 msgid "Dependencies" msgstr "Dipendenze" -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "Velocità di deretrazione" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "Deseleziona tutto" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Deselect by rectangle" msgstr "Deseleziona con rettangolo" -#: src/slic3r/GUI/MainFrame.cpp:492 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "Deseleziona tutti gli oggetti" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "Rileva perimetri ponte (bridge)" -#: src/libslic3r/PrintConfig.cpp:1988 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)." msgstr "Rileva pareti a spessore singolo (parti in cui non entrano due estrusioni ed è necessario comprimerle in una singola traccia)." -#: src/libslic3r/PrintConfig.cpp:1986 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "Rileva perimetri sottili" -#: src/libslic3r/PrintConfig.cpp:3083 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Rileva parti non connesse nel modello(i) dato e le divide in oggetti separati." -#: src/slic3r/GUI/Plater.cpp:1713 +#: src/slic3r/GUI/Plater.cpp:2352 msgid "Detected advanced data" msgstr "Rilevati dati avanzati" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:306 msgid "Device:" msgstr "Dispositivo:" -#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "Diametro" -#: src/libslic3r/PrintConfig.cpp:2443 +#: src/libslic3r/PrintConfig.cpp:2685 msgid "Diameter in mm of the pillar base" msgstr "Diametro in mm della base del pilastro" -#: src/libslic3r/PrintConfig.cpp:2399 +#: src/libslic3r/PrintConfig.cpp:2641 msgid "Diameter in mm of the support pillars" msgstr "Diametro in mm dei pilastri di supporto" -#: src/libslic3r/PrintConfig.cpp:2371 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Diameter of the pointing side of the head" msgstr "Diametro del lato di puntamento della testa" -#: src/slic3r/GUI/BedShapeDialog.cpp:89 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." msgstr "Diametro del piano di stampa. Si presume che l'origine (0,0) si trovi al centro." -#: src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "Direzione" -#: src/libslic3r/PrintConfig.cpp:323 +#: src/libslic3r/PrintConfig.cpp:349 msgid "Disable fan for the first" msgstr "Disattiva ventola per i primi" -#: src/libslic3r/PrintConfig.cpp:1280 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Disabilita la retrazione quando la traiettoria del movimento non oltrepassa i perimetri del layer superiore (pertanto qualunque scolatura sarà probabilmente invisibile)." -#: src/slic3r/GUI/wxExtensions.cpp:3078 +#: src/slic3r/GUI/DoubleSlider.cpp:925 msgid "Discard all custom changes" msgstr "Elimina tutte le modifiche personalizzate" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 msgid "Discard changes" msgstr "Annulla modifiche" -#: src/slic3r/GUI/Tab.cpp:2784 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 msgid "Discard changes and continue anyway?" msgstr "Eliminare le modifiche e continuare comunque?" @@ -1741,96 +1899,112 @@ msgstr "Eliminare le modifiche e continuare comunque?" msgid "Displacement (mm)" msgstr "Spostamento (mm)" -#: src/slic3r/GUI/Tab.cpp:2041 +#: src/slic3r/GUI/Tab.cpp:2076 msgid "Display" msgstr "Display" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "Altezza display" -#: src/libslic3r/PrintConfig.cpp:2319 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "Mostra mirroring orizzontale" -#: src/libslic3r/PrintConfig.cpp:2227 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "Orientamento display" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "Mostra la finestra della fila di caricamento all'host di stampa" -#: src/libslic3r/PrintConfig.cpp:2326 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "Mostra mirroring verticale" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "Larghezza display" -#: src/libslic3r/PrintConfig.cpp:341 +#: src/libslic3r/PrintConfig.cpp:367 msgid "Distance between copies" msgstr "Distanza tra le copie" -#: src/libslic3r/PrintConfig.cpp:1610 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "La distanza tra skirt e oggetto(i). Imposta questo valore a zero per unire lo skirt all'oggetto(i) e ottenere un brim per una migliore adesione." -#: src/libslic3r/PrintConfig.cpp:2752 +#: src/libslic3r/PrintConfig.cpp:2873 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Distanza tra due barre di connessione che collegano l'oggetto e il pad generato." -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "Distanza dall'oggetto" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Distanza della coordinata 0,0 del G-code dall'angolo frontale sinistro del rettangolo." -#: src/libslic3r/PrintConfig.cpp:285 +#: src/libslic3r/PrintConfig.cpp:310 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Distanza del centro del tubo di raffreddamento dalla punta dell'estrusore." -#: src/libslic3r/PrintConfig.cpp:1338 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Distanza della punta dell'estrusore dalla posizione dove il filamento viene posto mentre viene scaricato. Dovrebbe essere uguale al valore nel firmware della stampante." -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:368 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Distanza usata per la funzione disposizione automatica del piano." -#: src/libslic3r/PrintConfig.cpp:3097 +#: src/libslic3r/PrintConfig.cpp:3471 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Non fallire se un file fornito a --load non esiste." -#: src/libslic3r/PrintConfig.cpp:3041 +#: src/libslic3r/PrintConfig.cpp:3415 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Non disporre i modelli prima dell’unione e mantieni le coordinate XY originali." -#: src/slic3r/GUI/Field.cpp:206 +#: src/slic3r/GUI/Field.cpp:235 #, possible-c-format msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." msgstr "Intendevi %s invece di %s %s?\nSeleziona SI se vuoi cambiare il valore a %s %%,\no NO se sei sicuro che %s %s è il valore corretto." -#: src/slic3r/GUI/GUI_App.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "Vuoi selezionare automaticamente i filamenti predefiniti?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "Vuoi selezionare automaticamente i materiali predefiniti?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1893 +msgid "Do you want to delete all saved tool changes?" +msgstr "Vuoi cancellare tutti i cambi attrezzo salvati?" + +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "Vuoi continuare?" +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "Do you want to retry" +msgstr "Vuoi riprovare" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 msgid "Do you want to save your manually edited support points?" msgstr "Vuoi salvare i punti di supporto modificati manualmente?" -#: src/libslic3r/PrintConfig.cpp:3040 +#: src/libslic3r/PrintConfig.cpp:3414 msgid "Don't arrange" msgstr "Non disporre" -#: src/slic3r/GUI/UpdateDialogs.cpp:55 +#: src/slic3r/GUI/UpdateDialogs.cpp:71 msgid "Don't notify about new releases any more" msgstr "Non notificare più i nuovi rilasci" -#: src/libslic3r/PrintConfig.cpp:333 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Don't support bridges" msgstr "Non supportare i bridge" @@ -1838,141 +2012,169 @@ msgstr "Non supportare i bridge" msgid "Downgrade" msgstr "Downgrade" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Drag" msgstr "Trascina" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:340 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:355 +#: src/libslic3r/SLAPrintSteps.cpp:42 +msgid "Drilling holes into model." +msgstr "Praticare fori nel modello." + +#: src/libslic3r/SLAPrintSteps.cpp:163 +msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." +msgstr "Applicazione dei fori nella mesh non riuscita. Questo solitamente è causato da un modello corrotto. Prova prima a sistemarlo." + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:337 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:349 msgid "Drop to bed" msgstr "Poggia sul piano" -#: src/libslic3r/PrintConfig.cpp:3044 +#: src/libslic3r/PrintConfig.cpp:3418 msgid "Duplicate" msgstr "Duplica" -#: src/libslic3r/PrintConfig.cpp:3049 +#: src/libslic3r/PrintConfig.cpp:3423 msgid "Duplicate by grid" msgstr "Duplica per griglia" -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "Durante gli altri layer, la ventola" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2660 msgid "Dynamic" msgstr "Dinamico" -#: src/slic3r/GUI/MainFrame.cpp:708 +#: src/slic3r/GUI/MainFrame.cpp:751 msgid "E&xport" msgstr "Esporta" -#: src/slic3r/GUI/GUI_ObjectList.cpp:238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:345 msgid "edges fixed" msgstr "spigoli riparati" -#: src/slic3r/GUI/wxExtensions.cpp:3460 +#: src/slic3r/GUI/DoubleSlider.cpp:1480 msgid "Edit color" msgstr "Modifica colore" -#: src/slic3r/GUI/wxExtensions.cpp:3462 +#: src/slic3r/GUI/DoubleSlider.cpp:933 +msgid "Edit current color - Right click the colored slider segment" +msgstr "Modifica colore attuale - Clic destro sul segmento colorato della barra di scorrimento" + +#: src/slic3r/GUI/DoubleSlider.cpp:1482 msgid "Edit custom G-code" msgstr "Modifica G-code personalizzato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2690 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 msgid "Edit Height Range" msgstr "Modifica Intervallo Altezza" -#: src/slic3r/GUI/wxExtensions.cpp:3461 +#: src/slic3r/GUI/DoubleSlider.cpp:1481 msgid "Edit pause print message" msgstr "Modifica messaggio pausa di stampa" -#: src/slic3r/GUI/GUI_ObjectList.cpp:373 +#: src/slic3r/GUI/DoubleSlider.cpp:1003 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "Modifica segno di spunta - Ctrl + Clic Sinistro" + +#: src/slic3r/GUI/DoubleSlider.cpp:1004 +msgid "Edit tick mark - Right click" +msgstr "Modifica segno di spunta - Clic destro" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 msgid "Editing" msgstr "Editing" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:375 msgid "Elephant foot compensation" msgstr "Compensazione zampa d'elefante" -#: src/libslic3r/SLAPrint.cpp:678 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "Larghezza minima zampa d'elefante" + +#: src/libslic3r/SLAPrint.cpp:625 msgid "Elevation is too low for object. Use the \"Pad around object\" feature to print the object without elevation." msgstr "L'elevazione è troppo bassa per l'oggetto. Utilizza la funzione \"Pad intorno all'oggetto\" per stampare l'oggetto senza elevazione." -#: src/libslic3r/PrintConfig.cpp:1044 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode." msgstr "Inserisce M73 P[percent printed] R[remaining time in minutes] ad intervalli di un minuto nel G-code per permettere al firmware di mostrare un tempo residuo accurato. Al momento solo il firmware della Prusa i3 MK3 riconosce M73. Il firmware della i3 MK3 supporta il codice M73 Qxx Sxx anche per la modalità silenziosa." -#: src/libslic3r/GCode.cpp:628 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "Rilevati layer vuoti, il file non sarà stampabile." -#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286 -#: src/libslic3r/PrintConfig.cpp:2099 +#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Abilita" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:303 msgid "Enable auto cooling" msgstr "Abilita raffreddamento automatico" -#: src/libslic3r/PrintConfig.cpp:539 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" msgstr "Attiva ventola se la stampa del layer impiega meno di" -#: src/libslic3r/PrintConfig.cpp:2321 +#: src/libslic3r/PrintConfig.cpp:2899 +msgid "Enable hollowing" +msgstr "Attiva svuotamento" + +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "Attiva il mirroring orizzontale per le immagini di output" -#: src/libslic3r/PrintConfig.cpp:1781 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "Abilita la generazione di materiale di supporto." -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:966 msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." msgstr "Attivalo per aggiungere commenti nel G-Code etichettando i movimenti di stampa secondo l'appartenenza, utile per il plugin Octoprint CancelObject. Questa impostazione NON è compatibile con una configurazione Multi Material ad estrusore singolo e con Spurgo nell'oggetto / Spurgo nel riempimento." -#: src/libslic3r/PrintConfig.cpp:881 +#: src/libslic3r/PrintConfig.cpp:929 msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." msgstr "Abilita per ottenere un file G-code commentato, con un testo descrittivo per ciascuna linea. Se stampi da memoria SD, il peso aggiuntivo del file potrebbe rallentare il firmware." -#: src/libslic3r/PrintConfig.cpp:2085 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "Abilita layer ad altezza variabile" -#: src/libslic3r/PrintConfig.cpp:2328 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "Attiva mirroring verticale per le immagini di output" -#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955 -#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "G-code finale" -#: src/libslic3r/PrintConfig.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "Applica il supporto per i primi" -#: src/libslic3r/PrintConfig.cpp:1845 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" msgstr "Applica il supporto per i primi n layer" -#: src/slic3r/GUI/PrintHostDialogs.cpp:197 -#: src/slic3r/GUI/PrintHostDialogs.cpp:228 +#: src/slic3r/GUI/PrintHostDialogs.cpp:198 +#: src/slic3r/GUI/PrintHostDialogs.cpp:229 msgid "Enqueued" msgstr "Messo in coda" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" msgstr "Mantieni spessore guscio verticale" -#: src/slic3r/GUI/wxExtensions.cpp:3499 +#: src/slic3r/GUI/DoubleSlider.cpp:1590 msgid "Enter custom G-code used on current layer" msgstr "Inserisci il G-code personalizzato da usare al layer corrente" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Enter new name" msgstr "Inserisci un nuovo nome" @@ -1980,262 +2182,292 @@ msgstr "Inserisci un nuovo nome" msgid "Enter short message shown on Printer display during pause print" msgstr "Inserisci un breve messaggio da mostrare sul display della stampante durante la pausa di stampa" -#: src/slic3r/GUI/ConfigWizard.cpp:622 +#: src/slic3r/GUI/DoubleSlider.cpp:1606 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "Inserisci un breve messaggio da mostrare sul display della stampante quando una stampa è in pausa" + +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Inserisci la temperatura del piano necessaria per l'adesione del filamento al piano riscaldato." -#: src/slic3r/GUI/ConfigWizard.cpp:570 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Enter the diameter of your filament." msgstr "Inserisci il diametro del filamento." -#: src/slic3r/GUI/ConfigWizard.cpp:557 +#: src/slic3r/GUI/ConfigWizard.cpp:967 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Inserisci il diametro dell'ugello dell'estrusore della stampante." -#: src/slic3r/GUI/ConfigWizard.cpp:608 +#: src/slic3r/GUI/DoubleSlider.cpp:1622 +msgid "Enter the height you want to jump to" +msgstr "Inserisci l'altezza a cui si vuole saltare" + +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "Enter the temperature needed for extruding your filament." msgstr "Inserisci la temperatura necessaria per estrudere il filamento." -#: src/libslic3r/PrintConfig.cpp:718 +#: src/libslic3r/PrintConfig.cpp:761 msgid "Enter your filament cost per kg here. This is only for statistical information." msgstr "Inserisci qui il costo del filamento per kg. È solo un'informazione statistica." -#: src/libslic3r/PrintConfig.cpp:686 +#: src/libslic3r/PrintConfig.cpp:718 msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement." msgstr "Inserisci qui la densità del filamento. È solo un'informazione statistica. Un metodo di calcolo approssimativo consiste nel pesare un pezzo di filamento di lunghezza nota, e calcolare il rapporto tra lunghezza e volume. È meglio calcolare il volume direttamente attraverso il dislocamento." -#: src/libslic3r/PrintConfig.cpp:678 +#: src/libslic3r/PrintConfig.cpp:710 msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Inserisci qui il diametro del filamento. È richiesta una buona precisione, pertanto usa un calibro ed esegui misurazioni multiple lungo il filamento, per poi ricavare una media." -#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Errore" -#: src/slic3r/GUI/FirmwareDialog.cpp:608 +#: src/slic3r/GUI/FirmwareDialog.cpp:645 #, possible-c-format msgid "Error accessing port at %s: %s" msgstr "Errore nell'accedere alla porta a%s: %s" -#: src/slic3r/GUI/Plater.cpp:3593 +#: src/slic3r/GUI/Plater.cpp:3441 +msgid "Error during reload" +msgstr "Errore durante il ri-caricamento" + +#: src/slic3r/GUI/Plater.cpp:5073 #, possible-c-format msgid "Error exporting 3MF file %s" msgstr "Errore nell'esportazione del file 3MF %s" -#: src/slic3r/GUI/Plater.cpp:3564 +#: src/slic3r/GUI/Plater.cpp:5025 #, possible-c-format msgid "Error exporting AMF file %s" msgstr "Errore nell'esportazione del file AMF %s" -#: src/slic3r/GUI/PrintHostDialogs.cpp:153 +#: src/slic3r/GUI/PrintHostDialogs.cpp:154 msgid "Error Message" msgstr "Messaggio d'errore" -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:118 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Errore nell'analisi del file config di PrusaSlicer, probabilmente è corrotto. Per risolvere questo problema prova ad eliminare manualmente il file. Il tuoi profili utente non verranno toccati." -#: src/slic3r/GUI/PrintHostDialogs.cpp:271 +#: src/slic3r/GUI/PrintHostDialogs.cpp:272 msgid "Error uploading to print host:" msgstr "Errore durante il caricamento dell'host di stampa:" -#: src/libslic3r/Zipper.cpp:105 +#: src/libslic3r/Zipper.cpp:102 msgid "Error with zip archive" msgstr "Errore con archivio zip" -#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1443 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 msgid "Error!" msgstr "Errore!" -#: src/slic3r/GUI/BedShapeDialog.cpp:482 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "Errore! Modello non valido" -#: src/slic3r/GUI/FirmwareDialog.cpp:610 +#: src/slic3r/GUI/FirmwareDialog.cpp:647 #, possible-c-format msgid "Error: %s" msgstr "Errore: %s" -#: src/slic3r/GUI/Plater.cpp:1503 +#: src/slic3r/GUI/Job.hpp:123 msgid "ERROR: not enough resources to execute a new job." msgstr "ERRORE: risorse non sufficienti per eseguire un nuovo lavoro." -#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028 -#: src/slic3r/GUI/Plater.cpp:1070 +#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 +#: src/slic3r/GUI/Plater.cpp:1255 msgid "Estimated printing time" msgstr "Tempo di stampa stimato" -#: src/slic3r/GUI/Plater.cpp:424 +#: src/slic3r/GUI/Plater.cpp:499 msgid "Everywhere" msgstr "Ovunque" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." msgstr "ad eccezione dei primi %1% layer." -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "ad eccezione del primo layer." -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1373 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "%1% %2% mm eccessivi per essere stampabili con un diametro ugello di %3% mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 #, possible-c-format msgid "Exit %s" msgstr "Chiudi %s" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:361 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Opzione sperimentale per prevenire la formazione di supporti sotto i bridge." -#: src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan." msgstr "Opzione sperimentale per regolare il flusso delle sporgenze (sarà utilizzato il flusso dei bridge), applicare la velocità del bridge e attivare la ventola." -#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "Esperto" -#: src/slic3r/GUI/ConfigWizard.cpp:787 +#: src/slic3r/GUI/ConfigWizard.cpp:823 msgid "Expert mode" msgstr "Modalità Esperto" -#: src/slic3r/GUI/GUI_App.cpp:676 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "Modalità Visualizzazione Esperto" -#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821 +#: src/slic3r/GUI/Plater.cpp:5555 msgid "Export" msgstr "Esporta" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "Esporta &Configurazione" -#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 msgid "Export &G-code" msgstr "Esporta &G-code" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Esporta percorso a&ttrezzo come OBJ" -#: src/libslic3r/PrintConfig.cpp:2949 +#: src/libslic3r/PrintConfig.cpp:3323 msgid "Export 3MF" msgstr "Esporta 3MF" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "Esporta tutti i preset su file" -#: src/libslic3r/PrintConfig.cpp:2954 +#: src/libslic3r/PrintConfig.cpp:3328 msgid "Export AMF" msgstr "Esporta AMF" -#: src/slic3r/GUI/Plater.cpp:1932 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Export AMF file:" msgstr "Esporta file AMF:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 msgid "Export as STL" msgstr "Esporta come STL" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "Esporta config" + +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "Esporta Configurazione da &Bundle" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "Esporta la configurazione corrente su file" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "Esporta il piano corrente come AMF" -#: src/slic3r/GUI/MainFrame.cpp:362 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "Esporta il piano corrente come G-code" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "Esporta il piano corrente come STL" -#: src/slic3r/GUI/MainFrame.cpp:368 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" msgstr "Esporta piano corrente come STL includendo i supporti" -#: src/slic3r/GUI/Plater.cpp:2722 +#: src/slic3r/GUI/Plater.cpp:3673 msgid "Export failed" msgstr "Esportazione fallita" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733 -#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964 +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "Esporta il percorso completo dei modelli e fonti delle parti nei file 3mf e amf" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 +#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 msgid "Export G-code" msgstr "Esporta G-code" -#: src/libslic3r/PrintConfig.cpp:2931 +#: src/libslic3r/PrintConfig.cpp:3305 msgid "Export OBJ" msgstr "Esporta OBJ" -#: src/slic3r/GUI/Plater.cpp:2531 +#: src/slic3r/GUI/Plater.cpp:2594 msgid "Export OBJ file:" msgstr "Esporta file OBJ:" -#: src/slic3r/Utils/FixModelByWin10.cpp:368 +#: src/slic3r/Utils/FixModelByWin10.cpp:369 +#: src/slic3r/Utils/FixModelByWin10.cpp:374 msgid "Export of a temporary 3mf file failed" msgstr "L'esportazione di un file 3mf non è riuscita" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" msgstr "Esporta piano come &AMF" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" msgstr "Esporta piano come &STL" -#: src/slic3r/GUI/MainFrame.cpp:481 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" msgstr "Esporta piano come STL &includendo i supporti" -#: src/libslic3r/PrintConfig.cpp:2943 +#: src/libslic3r/PrintConfig.cpp:3317 msgid "Export SLA" msgstr "Esporta SLA" -#: src/libslic3r/PrintConfig.cpp:2959 +#: src/slic3r/GUI/Preferences.cpp:73 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "Esporta il percorso completo delle fonti su 3mf e amf" + +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Export STL" msgstr "Esporta STL" -#: src/slic3r/GUI/Plater.cpp:1925 +#: src/slic3r/GUI/Plater.cpp:2575 msgid "Export STL file:" msgstr "Esporta file STL:" -#: src/libslic3r/PrintConfig.cpp:2950 +#: src/libslic3r/PrintConfig.cpp:3324 msgid "Export the model(s) as 3MF." msgstr "Esporta modello/i come 3MF." -#: src/libslic3r/PrintConfig.cpp:2955 +#: src/libslic3r/PrintConfig.cpp:3329 msgid "Export the model(s) as AMF." msgstr "Esporta il modello(i) come AMF." -#: src/libslic3r/PrintConfig.cpp:2932 +#: src/libslic3r/PrintConfig.cpp:3306 msgid "Export the model(s) as OBJ." msgstr "Esporta il modello(i) come OBJ." -#: src/libslic3r/PrintConfig.cpp:2960 +#: src/libslic3r/PrintConfig.cpp:3334 msgid "Export the model(s) as STL." msgstr "Esporta il modello(i) come STL." -#: src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Export the selected object as STL file" msgstr "Esporta l'oggetto selezionato come file STL" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/Plater.cpp:877 +msgid "Export to SD card / Flash drive" +msgstr "Esporta su scheda SD / memoria Flash" + +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" msgstr "Esporta percorso attrezzo come OBJ" -#: src/libslic3r/Print.cpp:1517 +#: src/libslic3r/Print.cpp:1634 msgid "Exporting G-code" msgstr "Esportando il G-code" @@ -2248,139 +2480,143 @@ msgstr "Esportazione modello..." msgid "Exporting source model" msgstr "Esportazione modello sorgente" -#: src/libslic3r/SLAPrint.cpp:700 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "Il tempo di esposizione è fuori dai limiti del profilo stampante." -#: src/slic3r/GUI/Tab.cpp:3306 +#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 msgid "Exposure" msgstr "Esposizione" -#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311 +#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 msgid "Exposure time" msgstr "Tempo di esposizione" -#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Perimetro esterno" -#: src/slic3r/GUI/PresetHints.cpp:153 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" msgstr "perimetri esterni" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" msgstr "Perimetri esterni" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" msgstr "Perimetri esterni per primi" -#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "Lunghezza extra in ripresa" -#: src/libslic3r/PrintConfig.cpp:1321 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "Distanza di caricamento aggiuntiva" -#: src/libslic3r/PrintConfig.cpp:445 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "Perimetro aggiuntivo se necessario" -#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479 -#: src/libslic3r/PrintConfig.cpp:455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Estrusore" -#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475 +#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 +#: src/libslic3r/GCode/PreviewData.cpp:445 #, possible-c-format msgid "Extruder %d" msgstr "Estrusore %d" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/DoubleSlider.cpp:978 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "Estrusore (attrezzo) viene cambiato a Estrusore \"%1%\"" + +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Extruder and Bed Temperatures" msgstr "Temperature dell'estrusore e del piano" -#: src/slic3r/GUI/WipeTowerDialog.cpp:226 +#: src/slic3r/GUI/WipeTowerDialog.cpp:255 msgid "Extruder changed to" msgstr "Cambia estrusore a" -#: src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/Tab.cpp:1235 msgid "Extruder clearance (mm)" msgstr "Spazio libero per l'estrusore (mm)" -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "Colore estrusore" -#: src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "Offset estrusore" -#: src/libslic3r/PrintConfig.cpp:863 +#: src/libslic3r/PrintConfig.cpp:911 msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file." msgstr "Temperatura estrusore per il primo layer. Se vuoi controllare manualmente la temperatura durante la stampa, imposta questo a zero per disattivare i comandi di controllo temperatura nel file di output." -#: src/libslic3r/PrintConfig.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Temperatura estrusore per i layer successivi al primo. Imposta questo a zero per disattivare i comandi di controllo temperatura nell'output." -#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72 -#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119 -#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456 -#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340 -#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852 -#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151 -#: src/libslic3r/PrintConfig.cpp:2159 +#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "Estrusori" -#: src/libslic3r/PrintConfig.cpp:507 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "Asse estrusore" -#: src/libslic3r/PrintConfig.cpp:513 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "Moltiplicatore estrusione" -#: src/slic3r/GUI/ConfigWizard.cpp:612 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 msgid "Extrusion Temperature:" msgstr "Temperatura di estrusione:" -#: src/slic3r/GUI/Tab.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:1207 msgid "Extrusion width" msgstr "Larghezza estrusione" -#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514 -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523 -#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962 -#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "Larghezza Estrusione" -#: src/slic3r/GUI/Plater.cpp:139 +#: src/slic3r/GUI/Plater.cpp:164 msgid "Facets" msgstr "Facce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "facets added" msgstr "aggiunte facce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:239 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "facets removed" msgstr "rimosse facce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:241 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets reversed" msgstr "facce invertite" -#: src/libslic3r/PrintConfig.cpp:2302 +#: src/libslic3r/PrintConfig.cpp:2508 msgid "Faded layers" msgstr "Layer sfumati" -#: src/libslic3r/Zipper.cpp:47 +#: src/libslic3r/Zipper.cpp:44 msgid "failed finding central directory" msgstr "directory centrale non trovata" @@ -2388,181 +2624,181 @@ msgstr "directory centrale non trovata" msgid "Failed loading the input model." msgstr "Caricamento modello input fallito." -#: src/libslic3r/PrintBase.cpp:65 +#: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." msgstr "Elaborazione fallita del modello output_filename_format." -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "Ventola" -#: src/slic3r/GUI/Tab.cpp:1501 +#: src/slic3r/GUI/Tab.cpp:1458 msgid "Fan settings" msgstr "Impostazioni ventola" -#: src/slic3r/GUI/Tab.cpp:1502 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" msgstr "Velocità ventola" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" msgstr "Velocità ventola (%)" -#: src/libslic3r/PrintConfig.cpp:2240 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "Veloce" -#: src/libslic3r/PrintConfig.cpp:2241 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "Tilt veloce" -#: src/slic3r/GUI/GUI_App.cpp:135 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "Errore irreversibile" -#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/libslic3r/GCode/PreviewData.cpp:394 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Tipo di caratteristica" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 msgid "Feature types" msgstr "Tipi di caratteristica" -#: src/slic3r/GUI/ConfigWizard.cpp:1488 +#: src/slic3r/GUI/ConfigWizard.cpp:1528 msgid "FFF Technology Printers" msgstr "Stampanti con tecnologia FFF" -#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470 -#: src/slic3r/GUI/Tab.cpp:1471 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "Filamento" -#: src/slic3r/GUI/Preset.cpp:1275 +#: src/slic3r/GUI/Preset.cpp:1472 msgid "filament" msgstr "filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Filament and Nozzle Diameters" msgstr "Diametro filamento e ugello" -#: src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/ConfigWizard.cpp:984 msgid "Filament Diameter:" msgstr "Diametro del filamento:" -#: src/libslic3r/PrintConfig.cpp:620 +#: src/libslic3r/PrintConfig.cpp:651 msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." msgstr "Il filamento è raffreddato venendo spostato avanti e indietro nei tubi di raffreddamento. Specificare il numero desiderato di questi movimenti." -#: src/libslic3r/PrintConfig.cpp:654 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "Durata caricamento filamento" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "Note filamento" -#: src/slic3r/GUI/Tab.cpp:1502 src/slic3r/GUI/Tab.cpp:1557 +#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 msgid "Filament Overrides" msgstr "Sovrascrittura filamento" -#: src/libslic3r/PrintConfig.cpp:1312 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "Posizione di parcheggio del filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filament Profiles Selection" msgstr "Selezione Profili Filamento" -#: src/slic3r/GUI/Tab.cpp:1516 +#: src/slic3r/GUI/Tab.cpp:1473 msgid "Filament properties" msgstr "Proprietà filamento" -#: src/slic3r/GUI/Tab.hpp:335 +#: src/slic3r/GUI/Tab.hpp:354 msgid "Filament Settings" msgstr "Impostazioni Filamento" -#: src/libslic3r/PrintConfig.cpp:694 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "Tipo filamento" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "Durata scaricamento filamento" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 msgid "filaments" msgstr "filamenti" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filaments" msgstr "Filamenti" -#: src/libslic3r/Zipper.cpp:75 +#: src/libslic3r/Zipper.cpp:72 msgid "file close failed" msgstr "chiusura del file fallita" -#: src/libslic3r/Zipper.cpp:69 +#: src/libslic3r/Zipper.cpp:66 msgid "file create failed" msgstr "generazione del file non riuscita" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:793 msgid "File Not Found" msgstr "file non trovato" -#: src/libslic3r/Zipper.cpp:89 +#: src/libslic3r/Zipper.cpp:86 msgid "file not found" msgstr "file non trovato" -#: src/libslic3r/Zipper.cpp:67 +#: src/libslic3r/Zipper.cpp:64 msgid "file open failed" msgstr "apertura file non riuscita" -#: src/libslic3r/Zipper.cpp:73 +#: src/libslic3r/Zipper.cpp:70 msgid "file read failed" msgstr "lettura del file non riuscita" -#: src/libslic3r/Zipper.cpp:77 +#: src/libslic3r/Zipper.cpp:74 msgid "file seek failed" msgstr "ricerca file fallita" -#: src/libslic3r/Zipper.cpp:79 +#: src/libslic3r/Zipper.cpp:76 msgid "file stat failed" msgstr "statistica file non riuscita" -#: src/libslic3r/Zipper.cpp:39 +#: src/libslic3r/Zipper.cpp:36 msgid "file too large" msgstr "file troppo grande" -#: src/libslic3r/Zipper.cpp:71 +#: src/libslic3r/Zipper.cpp:68 msgid "file write failed" msgstr "scrittura file fallita" -#: src/slic3r/GUI/PrintHostDialogs.cpp:152 +#: src/slic3r/GUI/PrintHostDialogs.cpp:153 msgid "Filename" msgstr "Nome file" -#: src/libslic3r/PrintConfig.cpp:728 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "Angolo riempimento" -#: src/libslic3r/PrintConfig.cpp:742 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "Densità riempimento" -#: src/libslic3r/PrintConfig.cpp:779 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "Trama riempimento" -#: src/libslic3r/PrintConfig.cpp:410 +#: src/libslic3r/PrintConfig.cpp:437 msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells." msgstr "Trama per riempimento inferiore. Questo influenza solamente il layer inferiore esterno visibile, e non i gusci solidi adiacenti." -#: src/libslic3r/PrintConfig.cpp:781 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "Trama riempimento generale a bassa densità." -#: src/libslic3r/PrintConfig.cpp:390 +#: src/libslic3r/PrintConfig.cpp:417 msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells." msgstr "Trama per riempimento superiore. Questo influenza solamente il layer superiore esterno visibile, e non i gusci solidi adiacenti." @@ -2570,88 +2806,88 @@ msgstr "Trama per riempimento superiore. Questo influenza solamente il layer sup msgid "Finished" msgstr "Finito" -#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920 +#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:740 +#: src/slic3r/GUI/FirmwareDialog.cpp:777 msgid "Firmware flasher" -msgstr "Flasher Firmware" +msgstr "Firmware flasher" -#: src/slic3r/GUI/FirmwareDialog.cpp:765 +#: src/slic3r/GUI/FirmwareDialog.cpp:802 msgid "Firmware image:" msgstr "Immagine firmware:" -#: src/slic3r/GUI/Tab.cpp:2431 +#: src/slic3r/GUI/Tab.cpp:2573 msgid "Firmware Retraction" msgstr "Retrazione Firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:486 +#: src/slic3r/GUI/ConfigWizard.cpp:892 msgid "Firmware Type" msgstr "Tipo Firmware" -#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821 -#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "Primo layer" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "Altezza del primo layer" -#: src/libslic3r/Print.cpp:1328 +#: src/libslic3r/Print.cpp:1418 msgid "First layer height can't be greater than nozzle diameter" msgstr "L'altezza del primo layer non può essere più grande del diametro dell'ugello" -#: src/libslic3r/PrintConfig.cpp:852 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "Velocità del primo layer" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "Volumetrica primo layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 msgid "Fix through the Netfabb" msgstr "Ripara tramite Netfabb" -#: src/slic3r/GUI/Plater.cpp:3072 +#: src/slic3r/GUI/Plater.cpp:3482 msgid "Fix Throught NetFabb" msgstr "Ripara tramite NetFabb" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" msgstr "Installa &firmware stampante" -#: src/slic3r/GUI/FirmwareDialog.cpp:146 +#: src/slic3r/GUI/FirmwareDialog.cpp:150 msgid "Flash!" msgstr "Flash!" -#: src/slic3r/GUI/FirmwareDialog.cpp:275 +#: src/slic3r/GUI/FirmwareDialog.cpp:284 msgid "Flashing cancelled." msgstr "Flash annullato." -#: src/slic3r/GUI/FirmwareDialog.cpp:192 +#: src/slic3r/GUI/FirmwareDialog.cpp:199 msgid "Flashing failed" msgstr "Flash non riuscito" -#: src/slic3r/GUI/FirmwareDialog.cpp:274 +#: src/slic3r/GUI/FirmwareDialog.cpp:283 msgid "Flashing failed. Please see the avrdude log below." msgstr "Flash fallito. Ti preghiamo di consultare il registro avrdude qui sotto." -#: src/slic3r/GUI/FirmwareDialog.cpp:148 +#: src/slic3r/GUI/FirmwareDialog.cpp:152 msgid "Flashing in progress. Please do not disconnect the printer!" msgstr "Flash in corso. Non disconnettere la stampante!" -#: src/slic3r/GUI/FirmwareDialog.cpp:273 +#: src/slic3r/GUI/FirmwareDialog.cpp:282 msgid "Flashing succeeded!" msgstr "Flash completato con successo!" -#: src/slic3r/GUI/Tab.cpp:1156 +#: src/slic3r/GUI/Tab.cpp:1220 msgid "Flow" msgstr "Flusso" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" msgstr "il flusso viene massimizzato" @@ -2675,299 +2911,390 @@ msgstr "Per Eliminare il codice \"%1%\" usa il tasto sinistro del mouse\nPer Mod msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" msgstr "Per Eliminare il cambio colore usa il tasto sinistro del mouse\nPer Modificare il colore usa il tasto destro del mouse" -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Per maggiori informazioni visita la nostra pagina wiki:" -#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528 +#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 msgid "For support enforcers only" msgstr "Solo per rinforzi supporto" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3345 +#: src/slic3r/GUI/Tab.cpp:3249 msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." msgstr "per il tasto sinistro: indica un preset non di sistema (o non-predefinito),\nper il tasto destro: indica che le impostazioni non sono state modificate." -#: src/slic3r/GUI/ConfigManipulation.cpp:128 +#: src/slic3r/GUI/ConfigManipulation.cpp:136 msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." msgstr "Per far sì che la torre di spurgo funzioni con i supporti solubili, i layer dei supporti devono essere sincronizzati con quelli del modello." -#: src/libslic3r/Print.cpp:1302 +#: src/libslic3r/Print.cpp:1392 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Per far sì che la torre di spurgo funzioni con i supporti solubili, i layer dei supporti devono essere sincronizzati con quelli del modello." -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Force pad around object everywhere" msgstr "Forza il Pad ovunque intorno all'oggetto" -#: src/libslic3r/PrintConfig.cpp:1660 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "Force solid infill for regions having a smaller area than the specified threshold." msgstr "Forza riempimento solido per le regioni con un'area inferiore al limite specificato." -#: src/libslic3r/PrintConfig.cpp:1023 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." msgstr "Forza la generazione di perimetri solidi tra volumi o materiali adiacenti. Utile per stampe multi estrusore con materiali traslucidi o supporti solubili manuali." -#: src/slic3r/GUI/WipeTowerDialog.cpp:262 +#: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "From" msgstr "Da" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 msgid "From Object List You can't delete the last solid part from object." msgstr "Non è possibile eliminare l'ultima parte solida dall'oggetto nell'elenco Oggetti." -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "Frontale" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "Vista anteriore" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1015 msgid "full profile name" msgstr "nome completo profilo" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87 +#: src/slic3r/GUI/DoubleSlider.cpp:987 +msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." +msgstr "Il G-code associato a questo segno di spunta è in conflitto con la modalità di stampa.\nLa modifica causerà cambiamenti nei dati della barra di scorrimento." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 msgid "G-code file exported to %1%" msgstr "G-code esportato in %1%" -#: src/libslic3r/PrintConfig.cpp:888 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "Formato G-code" -#: src/libslic3r/PrintConfig.cpp:689 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2496 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870 -#: src/libslic3r/GCode/PreviewData.cpp:170 +#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Riempimento spazi" -#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812 -#: src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 +#: src/slic3r/GUI/Tab.cpp:2038 msgid "General" msgstr "Generale" -#: src/libslic3r/PrintConfig.cpp:1242 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder." msgstr "Genera almeno il numero di skirt necessari per consumare la quantità di filamento specificata per il primo layer. Per le macchine multi estrusore, questo minimo riguarda ciascun estrusore." -#: src/libslic3r/PrintConfig.cpp:1779 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "Genera materiale di supporto" -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Genera materiale di supporto per il numero di layer specificati partendo dal basso, a prescindere che sia abilitato il materiale di supporto normale o meno, e indipendentemente dall'angolo limite. Questo è utile per ottenere più adesione negli oggetti con un appoggio sul piano molto sottile o fragile." -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2604 msgid "Generate supports" msgstr "Genera supporti" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2606 msgid "Generate supports for the models" msgstr "Genera supporti per i modelli" -#: src/libslic3r/Print.cpp:1492 +#: src/libslic3r/Print.cpp:1610 msgid "Generating brim" msgstr "Generazione brim" -#: src/libslic3r/Print.cpp:1524 +#: src/libslic3r/Print.cpp:1638 msgid "Generating G-code" msgstr "Generazione G-code" -#: src/libslic3r/SLAPrint.cpp:58 +#: src/libslic3r/SLAPrintSteps.cpp:46 msgid "Generating pad" msgstr "Generazione pad" -#: src/libslic3r/PrintObject.cpp:141 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" msgstr "Generazione perimetri" -#: src/libslic3r/Print.cpp:1484 +#: src/libslic3r/Print.cpp:1602 msgid "Generating skirt" msgstr "Generando skirt" -#: src/libslic3r/PrintObject.cpp:391 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "Generazione materiale di supporto" -#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809 +#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 msgid "Generating support points" msgstr "Generazione punti di supporto" -#: src/libslic3r/SLAPrint.cpp:57 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Generating support tree" msgstr "Generazione albero di supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1551 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 msgid "Generic" msgstr "Generico" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 msgid "Gizmo cut" msgstr "Gizmo Taglia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Gizmo move" msgstr "Gizmo Sposta" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 msgid "Gizmo Place face on bed" msgstr "Gizmo Posiziona faccia sul piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Gizmo rotate" msgstr "Gizmo Ruota" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 msgid "Gizmo scale" msgstr "Gizmo Ridimensiona" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "Gizmo SLA Svuota" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo SLA support points" msgstr "Gizmo Punti supporto SLA" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:641 +#: src/slic3r/GUI/GLCanvas3D.cpp:2945 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 msgid "Gizmo-Move" msgstr "Gizmo-Sposta" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:569 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 msgid "Gizmo-Place on Face" msgstr "Gizmo-Posiziona sulla faccia" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:651 +#: src/slic3r/GUI/GLCanvas3D.cpp:3025 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 msgid "Gizmo-Rotate" msgstr "Gizmo-Ruota" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:646 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 msgid "Gizmo-Scale" msgstr "Gizmo-Ridimensiona" -#: src/slic3r/GUI/AboutDialog.cpp:95 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "Gizmo" + +#: src/slic3r/GUI/AboutDialog.cpp:259 msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versione 3" -#: src/slic3r/GUI/ConfigWizard.cpp:571 +#: src/slic3r/GUI/ConfigWizard.cpp:981 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "È necessaria una buona precisione, quindi utilizza un calibro ed effettua diverse misurazioni lungo il filamento, quindi calcola la media." -#: src/libslic3r/PrintConfig.cpp:797 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "Griglia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1846 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 msgid "Group manipulation" msgstr "Manipolazione gruppo" -#: src/libslic3r/PrintConfig.cpp:805 +#: src/slic3r/GUI/Preferences.cpp:137 +msgid "GUI" +msgstr "GUI" + +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "Giroide" -#: src/slic3r/GUI/Tab.cpp:2775 +#: src/slic3r/GUI/Tab.cpp:2921 msgid "has the following unsaved changes:" msgstr "ha le seguenti modifiche non salvate:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "Diametro testa" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "L'inserimento della capocchia non deve essere più grande della sua larghezza." -#: src/libslic3r/PrintConfig.cpp:822 +#: src/libslic3r/PrintConfig.cpp:869 msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura piano riscaldato per il primo layer. Imposta a zero per disattivare i comandi di controllo temperatura nell'output." -#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Altezza" -#: src/libslic3r/GCode/PreviewData.cpp:396 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "Altezza (mm)" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts." msgstr "Altezza dello skirt espresso in layer. Imposta un valore alto per utilizzare lo skirt come scudo contro le scolature." -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "Altezza del display" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 msgid "Height range Modifier" msgstr "Modificatore intervallo Altezza" -#: src/slic3r/GUI/GLCanvas3D.cpp:3650 src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Height ranges" msgstr "Intervalli Altezza" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:251 msgid "Heights at which a filament change is to occur." msgstr "Altezze alle quali i cambi di filamento devono avvenire." -#: src/slic3r/GUI/ConfigWizard.cpp:300 +#: src/slic3r/GUI/ConfigWizard.cpp:433 #, possible-c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Ciao, benvenuto su %s! La %s ti aiuterà con la configurazione iniziale; giusto qualche impostazione e sarai pronto a stampare." -#: src/libslic3r/PrintConfig.cpp:2976 +#: src/libslic3r/PrintConfig.cpp:3350 msgid "Help" msgstr "Aiuto" -#: src/libslic3r/PrintConfig.cpp:2982 +#: src/libslic3r/PrintConfig.cpp:3356 msgid "Help (FFF options)" msgstr "Aiuto (opzioni FFF)" -#: src/libslic3r/PrintConfig.cpp:2987 +#: src/libslic3r/PrintConfig.cpp:3361 msgid "Help (SLA options)" msgstr "Aiuto (opzioni SLA)" -#: src/slic3r/GUI/WipeTowerDialog.cpp:225 +#: src/slic3r/GUI/WipeTowerDialog.cpp:254 msgid "Here you can adjust required purging volume (mm³) for any given pair of tools." msgstr "Qui è possibile regolare il volume di spurgo necessario (mm³) per ogni coppia di attrezzi." -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "Alta corrente estrusore al cambio filamento" -#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806 +#: src/slic3r/GUI/GLCanvas3D.cpp:282 +msgid "Higher print quality versus higher print speed." +msgstr "Qualità di stampa più alta contro velocità di stampa più alta." + +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "Curva di Hilbert" -#: src/slic3r/GUI/Plater.cpp:873 +#: src/slic3r/GUI/Plater.cpp:1039 msgid "Hold Shift to Slice & Export G-code" msgstr "Tieni premuto Shift per fare lo Slice & Esportare il G-code" -#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "Profondità foro" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "Diametro foro" + +#: src/slic3r/GUI/Plater.cpp:2744 +msgid "Hollow" +msgstr "Svuota" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" +msgstr "Svuota e perfora" + +#: src/libslic3r/PrintConfig.cpp:2901 +msgid "Hollow out a model to have an empty interior" +msgstr "Svuota un modello per avere l'interno vuoto" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "Svuota questo oggetto" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 +#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 +#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 +#: src/libslic3r/PrintConfig.cpp:2926 +msgid "Hollowing" +msgstr "Svuotamento" + +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Hollowing accuracy" +msgstr "Precisione" + +#: src/slic3r/GUI/Plater.cpp:2910 +msgid "Hollowing cancelled." +msgstr "Svuotamento annullato." + +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Hollowing closing distance" +msgstr "Distanza di chiusura" + +#: src/slic3r/GUI/Plater.cpp:2911 +msgid "Hollowing done." +msgstr "Svuotamento completato." + +#: src/slic3r/GUI/Plater.cpp:2913 +msgid "Hollowing failed." +msgstr "Svuotamento non riuscito." + +#: src/libslic3r/PrintConfig.cpp:2928 +msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." +msgstr "Lo svuotamento avviene in due passaggi: prima, viene calcolato un interno immaginario (offset più la distanza di chiusura) nell'oggetto e viene quindi riportato all'offset specificato. Una distanza di chiusura più grande rende l'interno più arrotondato. A zero, l'interno sarà più somigliante all'esterno." + +#: src/libslic3r/SLAPrintSteps.cpp:41 +msgid "Hollowing model" +msgstr "Svuotamento modello" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +msgid "Hollowing parameter change" +msgstr "Cambio parametro svuotamento" + +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Hollowing thickness" +msgstr "Spessore parete" + +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Nido d'ape" -#: src/slic3r/GUI/Tab.cpp:1013 +#: src/slic3r/GUI/Tab.cpp:1066 msgid "Horizontal shells" msgstr "Gusci orizzontali" -#: src/libslic3r/PrintConfig.cpp:209 +#: src/libslic3r/PrintConfig.cpp:235 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Larghezza orizzontale del brim che sarà stampata attorno ad ogni oggetto nel primo layer." -#: src/slic3r/GUI/PrintHostDialogs.cpp:151 +#: src/slic3r/GUI/PrintHostDialogs.cpp:152 msgid "Host" msgstr "Host" -#: src/libslic3r/PrintConfig.cpp:1267 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "Tipo di Host" @@ -2975,749 +3302,810 @@ msgstr "Tipo di Host" msgid "Hostname" msgstr "Nome Host" -#: src/libslic3r/PrintConfig.cpp:81 +#: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" msgstr "Nome Host, IP o URL" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:141 msgid "Hover the cursor over buttons to find more information \nor click this button." msgstr "Scorri il cursore sui bottoni per ottenere maggiori informazioni o clicca su questo bottone." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2803 msgid "How far should the pad extend around the contained geometry" msgstr "Quanto deve estendersi il Pad attorno la geometria contenuta" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2892 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Quanto devono penetrare i piccoli connettori nel corpo del modello." -#: src/libslic3r/PrintConfig.cpp:2380 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "How much the pinhead has to penetrate the model surface" msgstr "Quanto deve penetrare l'apice nella superficie del modello" -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/libslic3r/PrintConfig.cpp:2746 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Quanto deve sollevarsi il supporto fino all'oggetto supportato. Se \"Pad intorno all'oggetto\" è attivo, questo valore è ignorato." -#: src/libslic3r/PrintConfig.cpp:95 +#: src/libslic3r/PrintConfig.cpp:111 msgid "HTTPS CA File" msgstr "File HTTPS CA" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "File HTTPS CA opzionale. È necessario solo se si intende usare un HTTPS con certificato autofirmato." -#: src/slic3r/GUI/Tab.cpp:1773 +#: src/slic3r/GUI/Tab.cpp:1755 #, possible-c-format msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." msgstr "File HTTPS CA:\nSu questo sistema, %s utilizza certificati HTTPS provenienti dal sistema Certificate Store o da Keychain.\nPer utilizzare un file CA personalizzato, importa il tuo file CA sul Certificate Store / Keychain." -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:226 msgid "Icon size in a respect to the default size" msgstr "Dimensioni icona rispetto alla dimensione predefinita" -#: src/slic3r/GUI/PrintHostDialogs.cpp:148 +#: src/slic3r/GUI/PrintHostDialogs.cpp:149 msgid "ID" msgstr "ID" -#: src/libslic3r/PrintConfig.cpp:1787 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Se attivo, verranno automaticamente generati i supporti in base al valore soglia di sporgenza. Se disattivato, i supporti verranno generati solamente all'interno dei volumi di \"Rinforzo Supporto\"." -#: src/slic3r/GUI/ConfigWizard.cpp:413 +#: src/slic3r/GUI/ConfigWizard.cpp:772 #, possible-c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Se attivato, %s verifica la presenza di nuove versioni online. Quando è disponibile una nuova versione, viene mostrata una notifica al successivo avvio dell'applicazione (mai durante l'uso del programma). È solo un meccanismo di notifica, non viene effettuato nessun aggiornamento automatico." -#: src/slic3r/GUI/ConfigWizard.cpp:423 +#: src/slic3r/GUI/ConfigWizard.cpp:782 #, possible-c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Se attivo, %s scarica in background gli aggiornamenti dei preset integrati nel sistema. Questi aggiornamenti vengono scaricati in una cartella temporanea separata. Quando è disponibile una nuova versione del preset, questa viene proposta all'avvio." -#: src/libslic3r/PrintConfig.cpp:1774 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." msgstr "Se attivata, tutti gli estrusori di stampa verranno preparati nel bordo frontale del piano di stampa all'inizio della stampa." -#: src/slic3r/GUI/Preferences.cpp:63 +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "Se attivo, permette al comando di Ricarica da disco di trovare e caricare automaticamente i file quando richiesti.\nSe non attivo, il comando Ricarica da disco chiederà di selezionare ciascun file tramite finestra di apertura file." + +#: src/slic3r/GUI/Preferences.cpp:75 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." +msgstr "Se attivo, permette il comando Ricarica da disco per trovare e caricare automaticamente i file quando richiesto." + +#: src/slic3r/GUI/Preferences.cpp:66 msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Se attivato, PrusaSlicer verifica la presenza di nuove versioni online. Quando una nuova versione è disponibile, viene mostrata una notifica al successivo avvio dell'applicazione (mai durante l'uso del programma). Questo è solo un meccanismo di notifica, non viene effettuato nessun aggiornamento automatico." -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:84 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Se abilitato, Slic3r scarica gli aggiornamenti dei preset inclusi in background. Questi aggiornamenti sono scaricati in una posizione temporanea. Quando una nuova versione dei preset diventa disponibile, viene offerta all'avvio." -#: src/slic3r/GUI/Preferences.cpp:105 +#: src/slic3r/GUI/Preferences.cpp:108 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Se attivo, la scena 3D verrà renderizzata con la risoluzione Retina. Se si riscontrano problemi di prestazioni 3D, disattivare questa opzione potrebbe essere d'aiuto." -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Se attiva, la torre di spurgo non verrà stampata sui layer con cambio attrezzo. Sui layer con un cambio attrezzo, l'estrusore si sposterà verso il basso per stampare la torre di spurgo. L'utente è responsabile nell'accertarsi che non avvengano collisioni durante la stampa." -#: src/slic3r/GUI/Preferences.cpp:112 +#: src/slic3r/GUI/Preferences.cpp:131 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "Se attivo, usa la visuale libera. Se non attivo, usa la visuale vincolata." + +#: src/slic3r/GUI/Preferences.cpp:123 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Se attivo, usa la visuale in prospettiva. Se non attivo, usa la visuale ortografica." -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:149 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Se attivo, è possibile modificare manualmente la dimensione delle icone degli strumenti." -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "If estimated layer time is below ~%1%s, fan will run at %2%%% and print speed will be reduced so that no less than %3%s are spent on that layer (however, speed will never be reduced below %4%mm/s)." msgstr "Se il tempo previsto per il layer è inferiore a ~%1%s, la ventola girerà al %2%%% e la velocità di stampa sarà ridotta così da impiegare non meno di %3%s su quel layer (in ogni caso, la velocità non sarà mai ridotta sotto %4%mm/s)." -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "If estimated layer time is greater, but still below ~%1%s, fan will run at a proportionally decreasing speed between %2%%% and %3%%%." msgstr "Se la durata di stampa prevista per il layer è più lunga, ma comunque inferiore a ~%1%s, la ventola girerà ad una velocità proporzionalmente decrescente compresa tra %2%%% e %3%%%." -#: src/libslic3r/PrintConfig.cpp:853 +#: src/libslic3r/PrintConfig.cpp:901 msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds." msgstr "Se espresso in valore assoluto in mm/s, questa velocità sarà applicata a tutti i movimenti di stampa del primo layer, a prescindere dal tipo di movimento. Se espresso in percentuale (per esempio: 40%) verranno scalate le velocità predefinite." -#: src/libslic3r/PrintConfig.cpp:540 +#: src/libslic3r/PrintConfig.cpp:573 msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds." msgstr "Se il tempo stimato di stampa del layer è al di sotto di questo numero di secondi, la ventola sarà attivata e la sua velocità sarà calcolata interpolando la velocità minima e massima." -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value." msgstr "Se il tempo stimato di stampa del layer è al di sotto di questo numero di secondi, la velocità dei movimenti di stampa sarà ridotta per estendere la durata di questo valore." -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:567 msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS." msgstr "Se questo è attivo, la ventola non verrà mai disattiva e verrà mantenuta attiva almeno alla velocità minima. Utile per il PLA, dannosa per l'ABS." -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "If this is enabled, Slic3r will auto-center objects around the print bed center." msgstr "Se attivo, Slic3r posizionerà automaticamente gli oggetti al centro del piano di stampa." -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code." msgstr "Se attivo, Slic3r processerà in anticipo gli oggetti non appena saranno caricati, così da risparmiare tempo durante l'esportazione del G-code." -#: src/slic3r/GUI/Preferences.cpp:38 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files." msgstr "Se attivo, Slic3r suggerirà l'ultima cartella di destinazione invece della cartella contenente il file di ricezione." -#: src/libslic3r/PrintConfig.cpp:1492 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered." msgstr "Se inserisci un valore positivo, Z verrà alzato velocemente ogni volta che si innesca una retrazione. Quando si utilizzano diversi estrusori, verrà considerato solamente l'impostazione del primo estrusore." -#: src/libslic3r/PrintConfig.cpp:1501 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers." msgstr "Se inserisci un valore positivo, il sollevamento Z avverrà solamente sopra un certo specifico valore assoluto Z. Puoi regolare questa impostazione per evitare il sollevamento nei primi layer." -#: src/libslic3r/PrintConfig.cpp:1510 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers." msgstr "Se inserisci un valore positivo, il sollevamento Z avverrà solamente sotto un certo specifico valore assoluto Z. Puoi regolare questa impostazione per limitare il sollevamento ai primi layer." -#: src/libslic3r/PrintConfig.cpp:1384 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables." msgstr "Se vuoi processare il G-code in uscita con script personalizzati, basta elencare qui il loro percorso assoluto. Separa i diversi script con un punto e virgola. Gli script passeranno il percorso assoluto nel G-code come primo argomento, e potranno accedere alle impostazioni di configurazione di Slic3r leggendo le variabili di ambiente." -#: src/libslic3r/PrintConfig.cpp:498 +#: src/libslic3r/PrintConfig.cpp:530 msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)." msgstr "Se il firmware non gestisce lo spostamento dell'estrusore, è necessario che il G-code ne tenga conto. Questa opzione permette di specificare lo spostamento di ciascun estrusore rispetto al primo. Si aspetta delle coordinate positive (che saranno sottratte dalle coordinate XY)." -#: src/libslic3r/PrintConfig.cpp:2068 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Se il firmware richiede valori E relativi, selezionalo, altrimenti mantienilo deselezionato. Molti firmware utilizzano valori assoluti." -#: src/libslic3r/PrintConfig.cpp:3096 +#: src/libslic3r/PrintConfig.cpp:3470 msgid "Ignore non-existent config files" msgstr "Ignora file di configurazione non esistenti" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "Importa &Configurazione" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "Importa Configurazione da &Bundle" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "Importa Configurazione da &progetto" -#: src/slic3r/GUI/Plater.cpp:4016 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "Importa Config da ini/amf/3mf/gcode" + +#: src/slic3r/GUI/Plater.cpp:4616 msgid "Import Object" msgstr "Importa Oggetto" -#: src/slic3r/GUI/Plater.cpp:4020 +#: src/slic3r/GUI/Plater.cpp:4620 msgid "Import Objects" msgstr "Importa Oggetti" -#: src/slic3r/Utils/FixModelByWin10.cpp:383 +#: src/slic3r/Utils/FixModelByWin10.cpp:390 msgid "Import of the repaired 3mf file failed" msgstr "Importazione del file 3mf riparato non riuscita" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importa STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:106 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 msgid "Import STL/OBJ/AMF/3MF without config, keep bed" msgstr "Importa STL/OBJ/AMF/3MF senza configurazione, mantieni il piano" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2416 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "Importa STL/OBJ/AMF/3MF senza configurazione, mantieni piano" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 #, possible-c-format msgid "In this mode you can select only other %s Items%s" msgstr "In questa modalità puoi selezionare solo altri %s oggetti %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:132 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "Gruppi incompatibili:" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 #, possible-c-format msgid "Incompatible with this %s" msgstr "Incompatibile con questo %s" -#: src/slic3r/GUI/Plater.cpp:4091 +#: src/slic3r/GUI/Plater.cpp:4700 msgid "Increase Instances" msgstr "Aumenta Istanze" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:269 msgid "Increase/decrease edit area" msgstr "Aumenta/diminuisci l'area di modifica" +#: src/slic3r/GUI/Plater.cpp:2906 +msgid "Indexing hollowed object" +msgstr "Indicizzazione di un oggetto svuotato" + #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3338 +#: src/slic3r/GUI/Tab.cpp:3242 msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." msgstr "indica che è stata modificata qualche impostazione e non è uguale ai valori di sistema (o predefiniti) del corrente gruppo di opzioni.\nClicca l'icona LUCCHETTO APERTO per reimpostare tutte le impostazioni del corrente gruppo di opzioni ai valori di sistema (o predefiniti)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3334 +#: src/slic3r/GUI/Tab.cpp:3238 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indica che le impostazioni sono uguali ai valori di sistema (o predefiniti) per l'attuale gruppo di opzioni" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3083 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "indica che le impostazioni sono state modificate e non corrispondono all'ultimo preset salvato per l'attuale gruppo opzioni.\nClicca l'icona FRECCIA INDIETRO per reimpostare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni." -#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69 -#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439 -#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031 -#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167 -#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729 -#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780 -#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943 -#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659 -#: src/libslic3r/PrintConfig.cpp:1676 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 +#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "Riempimento" -#: src/slic3r/GUI/PresetHints.cpp:171 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "riempimento" -#: src/libslic3r/PrintConfig.cpp:972 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "Riempimento prima dei perimetri" -#: src/libslic3r/PrintConfig.cpp:953 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "Estrusore riempimento" -#: src/libslic3r/PrintConfig.cpp:987 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "Sovrapposizione riempimento/perimetri" -#: src/libslic3r/Print.cpp:1476 +#: src/libslic3r/Print.cpp:1580 msgid "Infilling layers" msgstr "Layer di riempimento" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2424 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 msgid "Info" msgstr "Info" -#: src/libslic3r/PrintConfig.cpp:1008 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "Eredita profilo" -#: src/libslic3r/SLAPrint.cpp:707 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "Il tempo di esposizione iniziale è fuori dai limiti del profilo stampante." -#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318 +#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 msgid "Initial exposure time" msgstr "Tempo di esposizione iniziale" -#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296 +#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 msgid "Initial layer height" msgstr "Altezza layer iniziale" -#: src/slic3r/GUI/Field.cpp:155 +#: src/slic3r/GUI/Field.cpp:199 msgid "Input value is out of range" msgstr "Valore input fuori portata" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "Ispeziona / attiva istantanee di configurazione" -#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 #, possible-c-format msgid "Instance %d" msgstr "Istanza %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1887 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 msgid "Instance manipulation" msgstr "Manipolazione istanza" -#: src/slic3r/GUI/wxExtensions.cpp:358 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 msgid "Instances" msgstr "Istanze" -#: src/slic3r/GUI/GUI_ObjectList.cpp:934 src/slic3r/GUI/GUI_ObjectList.cpp:3346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 msgid "Instances to Separated Objects" msgstr "Istanze in Oggetti Separati" -#: src/libslic3r/PrintConfig.cpp:1886 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "Layer interfaccia" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" msgstr "Giri interfaccia" -#: src/libslic3r/PrintConfig.cpp:1895 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" msgstr "Spaziatura trama interfaccia" -#: src/libslic3r/PrintConfig.cpp:1022 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "Gusci interfaccia" -#: src/libslic3r/Zipper.cpp:87 +#: src/libslic3r/Zipper.cpp:84 msgid "internal error" msgstr "errore interno" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Riempimento interno" -#: src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:3090 msgid "Invalid data" msgstr "Dati non validi" -#: src/slic3r/GUI/BedShapeDialog.cpp:471 src/slic3r/GUI/BedShapeDialog.cpp:520 -#: src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "Formato file non valido." -#: src/libslic3r/Zipper.cpp:83 +#: src/libslic3r/Zipper.cpp:80 msgid "invalid filename" msgstr "nome file non valido" -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "Inserimento Capocchia non valido" -#: src/libslic3r/Zipper.cpp:51 +#: src/libslic3r/Zipper.cpp:48 msgid "invalid header or archive is corrupted" msgstr "titolo non valido o archivio corrotto" -#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173 +#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Input numerico non valido." -#: src/libslic3r/Zipper.cpp:81 +#: src/libslic3r/Zipper.cpp:78 msgid "invalid parameter" msgstr "parametro non valido" -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "Diametro apice non valido" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:94 +#: src/slic3r/GUI/AboutDialog.cpp:258 msgid "is licensed under the" msgstr "è concesso in licenza ai sensi" -#: src/slic3r/GUI/Tab.cpp:2779 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Is necessary to install a configuration update. " +msgstr "È necessario installare un aggiornamento della configurazione." + +#: src/slic3r/GUI/Tab.cpp:2925 msgid "is not compatible with print profile" msgstr "non è compatibile con il profilo di stampa" -#: src/slic3r/GUI/Tab.cpp:2778 +#: src/slic3r/GUI/Tab.cpp:2924 msgid "is not compatible with printer" msgstr "non è compatibile con la stampante" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "Iso" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "Vista isometrica" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:966 msgid "It can't be deleted or modified." msgstr "Non può essere eliminato o modificato." -#: src/libslic3r/PrintConfig.cpp:926 +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "It is not allowed to change the file to reload" +msgstr "Non è permesso modificare il file da ricaricare" + +#: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Potrebbe essere utile aumentare la corrente del motore estrusore durante la sequenza di cambio filamento per permettere un avanzamento rapido del ramming e per superare la resistenza durante il caricamento di un filamento con una punta deformata." -#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Non è possibile stampare oggetti multi-parte con tecnologia SLA." -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2225 msgid "Jerk limits" msgstr "Limiti Jerk" -#: src/libslic3r/PrintConfig.cpp:1579 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "Jitter" -#: src/libslic3r/PrintConfig.cpp:533 +#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 +#: src/slic3r/GUI/DoubleSlider.cpp:1623 +msgid "Jump to height" +msgstr "Salta all'altezza" + +#: src/slic3r/GUI/DoubleSlider.cpp:928 +#, possible-c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "Salta all'altezza %s o Imposta sequenza estrusore per l'intera stampa" + +#: src/libslic3r/PrintConfig.cpp:566 msgid "Keep fan always on" msgstr "Mantieni la ventola sempre accesa" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "Mantieni parte inferiore" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:309 msgid "Keep min" msgstr "Mantieni min" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "Mantieni parte superiore" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 msgid "Keyboard Shortcuts" msgstr "Scorciatoie Tastiera" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "Scorciatoie tastiera" + +#: src/libslic3r/PrintConfig.cpp:2489 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "Etichetta oggetti" -#: src/libslic3r/PrintConfig.cpp:2234 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "Landscape" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "Lingua" -#: src/slic3r/GUI/GUI_App.cpp:755 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "Selezione lingua" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1770 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 msgid "Last instance of an object cannot be deleted." msgstr "Non è possibile eliminare l'ultima istanza di un oggetto." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2994 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 msgid "Layer" msgstr "Layer" -#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55 +#: src/slic3r/GUI/ConfigManipulation.cpp:49 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Altezza layer" -#: src/libslic3r/Print.cpp:1332 +#: src/libslic3r/Print.cpp:1423 msgid "Layer height can't be greater than nozzle diameter" msgstr "L'altezza layer non può essere più grande del diametro dell'ugello" -#: src/slic3r/GUI/Tab.cpp:2260 +#: src/slic3r/GUI/Tab.cpp:2358 msgid "Layer height limits" msgstr "Limiti altezza layer" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "Layer height:" msgstr "Altezza layer:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2109 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 msgid "Layer range Settings to modify" msgstr "Impostazioni da modificare in Intervallo Layer" -#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620 -#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844 -#: src/libslic3r/PrintConfig.cpp:1889 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "layer" -#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 +#: src/slic3r/GUI/Tab.cpp:3585 msgid "Layers" msgstr "Layer" -#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 msgid "Layers and perimeters" msgstr "Layer e perimetri" -#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68 -#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56 -#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381 -#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446 -#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026 -#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371 -#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987 -#: src/libslic3r/PrintConfig.cpp:2044 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 +#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "Layer e Perimetri" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "Barra di scorrimento Layer" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 msgid "Layers Slider Shortcuts" msgstr "Scorciatoie Scorrimento Layer" -#. TRN To be shown in Print Settings "Bottom solid layers" -#: rc/libslic3r/PrintConfig.cpp:149 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Bottom" msgstr "Inferiore" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/libslic3r/PrintConfig.cpp:2043 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Top" msgstr "Superiore" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "Sinistra" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Left click" msgstr "Click sinistro" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:242 msgid "Left mouse button:" msgstr "Tasto sinistro mouse:" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "Vista sinistra" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:259 msgid "Legend" msgstr "Legenda" -#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "Lunghezza" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:318 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Lunghezza del tubo di raffreddamento per limitare lo spazio delle mosse di raffreddamento al suo interno." #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:124 +#: src/slic3r/GUI/AboutDialog.cpp:129 msgid "License agreements of all following programs (libraries) are part of application license agreement" msgstr "Gli accordi di licenza di tutti i programmi seguenti (librerie) fanno parte del contratto di licenza dell'applicazione" -#: src/libslic3r/PrintConfig.cpp:1491 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "Solleva Z" -#: src/libslic3r/PrintConfig.cpp:801 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "Linea" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1050 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 msgid "Load" msgstr "Carica" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "Carica modello" -#: src/libslic3r/PrintConfig.cpp:3116 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Carica e archivia le impostazione in una data cartella. Questo è utile per mantenere diversi profili o aggiungere configurazioni da un archivio di rete." -#: src/libslic3r/PrintConfig.cpp:3100 +#: src/libslic3r/PrintConfig.cpp:3474 msgid "Load config file" msgstr "Carica file di configurazione" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 msgid "Load Config from .ini/amf/3mf/gcode" msgstr "Carica Config da .ini/amf/3mf/gcode" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 msgid "Load Config from .ini/amf/3mf/gcode and merge" msgstr "Carica Config da .ini/amf/3mf/gcode ed unisci" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Carica Config da ini/amf/3mf/gcode e unisci" + +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "Carica configurazione dal file di progetto" -#: src/libslic3r/PrintConfig.cpp:3101 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Carica configurazione dal file specificato. Può essere usato più di una volta per caricare opzioni da vari file." -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "Carica un file di configurazione esportato" -#: src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1375 msgid "Load File" msgstr "Carica file" -#: src/slic3r/GUI/Plater.cpp:1275 +#: src/slic3r/GUI/Plater.cpp:1379 msgid "Load Files" msgstr "Carica file" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 msgid "Load Part" msgstr "Carica Parte" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "Carica i preset da un gruppo" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4588 msgid "Load Project" msgstr "Carica Progetto" -#: src/slic3r/GUI/BedShapeDialog.cpp:97 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "Carica forma da STL..." -#: src/slic3r/GUI/BedShapeDialog.cpp:181 src/slic3r/GUI/BedShapeDialog.cpp:249 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "Caricamento..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:235 +#: src/slic3r/GUI/WipeTowerDialog.cpp:264 msgid "loaded" msgstr "caricato" -#: src/slic3r/GUI/Plater.cpp:1782 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "Loaded" msgstr "Caricato" -#: src/slic3r/GUI/Plater.cpp:1590 +#: src/slic3r/GUI/Plater.cpp:2257 msgid "Loading" msgstr "Caricamento" -#: src/slic3r/GUI/GUI_App.cpp:407 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "Caricamento di una modalità di vista" -#: src/slic3r/GUI/GUI_App.cpp:399 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "Caricamento dei preset correnti" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:378 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Loading repaired model" msgstr "Caricamento modello riparato" -#: src/libslic3r/PrintConfig.cpp:575 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "Velocità di caricamento" -#: src/libslic3r/PrintConfig.cpp:583 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "Velocità iniziale di caricamento" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:63 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:106 msgid "Local coordinates" msgstr "Coordinate locali" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:49 msgid "Lock supports under new islands" msgstr "Fissa i supporti sotto le nuove isole" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3236 msgid "LOCKED LOCK" msgstr "LUCCHETTO CHIUSO" -#: src/slic3r/GUI/Tab.cpp:3360 +#: src/slic3r/GUI/Tab.cpp:3264 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "L'icona LUCCHETTO CHIUSO indica che le impostazioni corrispondono ai valori di sistema (o predefiniti) per il seguente gruppo di opzioni" -#: src/slic3r/GUI/Tab.cpp:3376 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "L'icona LUCCHETTO CHIUSO indica che il valore è uguale a quello di sistema (o predefinito)." -#: src/libslic3r/PrintConfig.cpp:3119 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Logging level" msgstr "Livello di logging" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "Giri (minimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 msgid "Lower Layer" msgstr "Layer Inferiore" -#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209 -#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087 -#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110 -#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132 -#: src/libslic3r/PrintConfig.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "Limiti macchina" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 msgid "Main Shortcuts" msgstr "Collegamenti Principali" -#: src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/Plater.cpp:168 msgid "Manifold" msgstr "Manifold" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:57 msgid "Manual editing" msgstr "Editing manuale" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 msgid "Masked SLA file exported to %1%" msgstr "File SLA mascherato esportato su %1%" -#: src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:754 msgid "Mate&rial Settings Tab" msgstr "Scheda Impostazioni Mate&riale" -#: src/slic3r/GUI/Tab.cpp:3300 +#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 msgid "Material" msgstr "Materiale" -#: src/slic3r/GUI/Tab.hpp:391 +#: src/slic3r/GUI/Tab.hpp:415 msgid "Material Settings" msgstr "Impostazioni Materiali" -#: src/slic3r/GUI/Plater.cpp:140 +#: src/slic3r/GUI/Plater.cpp:165 msgid "Materials" msgstr "Materiali" -#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "Massimo" -#: src/libslic3r/PrintConfig.cpp:2470 +#: src/libslic3r/PrintConfig.cpp:2725 msgid "Max bridge length" msgstr "Lunghezza massima Bridge" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2813 msgid "Max merge distance" msgstr "Massima distanza di unione" -#: src/libslic3r/PrintConfig.cpp:2479 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max pillar linking distance" msgstr "Distanza massima collegamento pilastri" -#: src/libslic3r/PrintConfig.cpp:64 +#: src/libslic3r/PrintConfig.cpp:80 msgid "Max print height" msgstr "Altezza massima di stampa" -#: src/libslic3r/PrintConfig.cpp:1172 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "Massima velocità di stampa" @@ -3725,167 +4113,167 @@ msgstr "Massima velocità di stampa" msgid "max PrusaSlicer version" msgstr "versione PrusaSlicer massima" -#: src/libslic3r/PrintConfig.cpp:1203 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "Massima pendenza volumetrica negativa" -#: src/libslic3r/PrintConfig.cpp:1192 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "Massima pendenza volumetrica positiva" -#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "Massima velocità volumetrica" -#: src/libslic3r/PrintConfig.cpp:2167 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "Distanza massima bridging" -#: src/libslic3r/PrintConfig.cpp:2193 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "Distanza massima tra supporti in sezioni a scarso riempimento." -#: src/libslic3r/PrintConfig.cpp:1099 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "Accelerazione massima E" -#: src/libslic3r/PrintConfig.cpp:1105 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "Accelerazione massima dell'asse E" -#: src/libslic3r/PrintConfig.cpp:1102 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "Accelerazione massima dell'asse X" -#: src/libslic3r/PrintConfig.cpp:1103 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "Accelerazione massima dell'asse Y" -#: src/libslic3r/PrintConfig.cpp:1104 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Accelerazione massima dell'asse Z" -#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" msgstr "Accelerazione massima durante l'estrusione" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" msgstr "Accelerazione massima durante l'estrusione (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "Accelerazione massima durante la retrazione" -#: src/libslic3r/PrintConfig.cpp:1169 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "Accelerazione massima durante la retrazione (M204 T)" -#: src/libslic3r/PrintConfig.cpp:1096 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "Accelerazione massima X" -#: src/libslic3r/PrintConfig.cpp:1097 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Accelerazione massima Y" -#: src/libslic3r/PrintConfig.cpp:1098 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Accelerazione massima Z" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2218 msgid "Maximum accelerations" msgstr "Accelerazioni massime" -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 msgid "Maximum exposure time" msgstr "Tempo massimo di esposizione" -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" msgstr "Avanzamento massimo E" -#: src/libslic3r/PrintConfig.cpp:1087 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" msgstr "Avanzamento massimo dell'asse E" -#: src/libslic3r/PrintConfig.cpp:1084 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" msgstr "Avanzamento massimo dell'asse X" -#: src/libslic3r/PrintConfig.cpp:1085 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" msgstr "Avanzamento massimo dell'asse Y" -#: src/libslic3r/PrintConfig.cpp:1086 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" msgstr "Avanzamento massimo dell'asse Z" -#: src/libslic3r/PrintConfig.cpp:1078 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" msgstr "Avanzamento massimo X" -#: src/libslic3r/PrintConfig.cpp:1079 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" msgstr "Avanzamento massimo Y" -#: src/libslic3r/PrintConfig.cpp:1080 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" msgstr "Avanzamento massimo Z" -#: src/slic3r/GUI/Tab.cpp:2165 +#: src/slic3r/GUI/Tab.cpp:2213 msgid "Maximum feedrates" msgstr "Avanzamenti massimi" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 msgid "Maximum initial exposure time" msgstr "Tempo massimo di esposizione iniziale" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Jerk massimo E" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "Jerk massimo dell'asse E" -#: src/libslic3r/PrintConfig.cpp:1120 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "Jerk massimo dell'asse X" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Jerk massimo dell'asse Y" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Jerk massimo dell'asse Z" -#: src/libslic3r/PrintConfig.cpp:1114 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Jerk massimo X" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Jerk massimo Y" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Jerk massimo Z" -#: src/libslic3r/PrintConfig.cpp:566 +#: src/libslic3r/PrintConfig.cpp:598 msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Massima velocità volumetrica consentita per questo filamento. Limita la velocità volumetrica massima di una stampa alla velocità volumetrica minima del filamento e di stampa. Imposta a zero per non avere limite." -#: src/libslic3r/PrintConfig.cpp:3053 +#: src/libslic3r/PrintConfig.cpp:3427 msgid "Merge" msgstr "Unisci" -#: src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "L'unione di bridge o pilastri con altri pilastri può aumentarne il raggio. Zero significa nessun incremento, uno significa incremento pieno." -#: src/libslic3r/SLAPrint.cpp:71 +#: src/libslic3r/SLAPrintSteps.cpp:62 msgid "Merging slices and calculating statistics" msgstr "Unendo gli slice e calcolando le statistiche" @@ -3893,7 +4281,7 @@ msgstr "Unendo gli slice e calcolando le statistiche" msgid "Mesh repair failed." msgstr "Riparazione mesh fallita." -#: src/slic3r/GUI/wxExtensions.cpp:3514 +#: src/slic3r/GUI/DoubleSlider.cpp:1607 msgid "Message for pause print on current layer (%1% mm)." msgstr "Messaggio per pausa stampa al corrente layer (%1% mm)." @@ -3901,11 +4289,11 @@ msgstr "Messaggio per pausa stampa al corrente layer (%1% mm)." msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" msgstr "Messaggi con severità inferiore o uguale al loglevel saranno stampati. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Minimo" -#: src/libslic3r/PrintConfig.cpp:1233 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "Velocità minima di stampa" @@ -3913,195 +4301,239 @@ msgstr "Velocità minima di stampa" msgid "min PrusaSlicer version" msgstr "versione PrusaSlicer minima" -#: src/libslic3r/PrintConfig.cpp:2507 +#: src/libslic3r/PrintConfig.cpp:2763 msgid "Minimal distance of the support points" msgstr "Distanza minima dei punti di supporto" -#: src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "Lunghezza di estrusione minima del filamento" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:54 msgid "Minimal points distance" msgstr "Distanza minima punti" -#: src/libslic3r/PrintConfig.cpp:635 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "Spurgo minimo sulla torre di spurgo" -#: src/libslic3r/PrintConfig.cpp:1442 +#: src/libslic3r/PrintConfig.cpp:177 +msgid "Minimum bottom shell thickness" +msgstr "Spessore minimo guscio inferiore" + +#: src/slic3r/GUI/PresetHints.cpp:335 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "Spessore minimo guscio inferiore è %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1512 msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Risoluzione minima dettaglio, utilizzato per semplificare il file input accelerando lo slicing e riducendo l'utilizzo di memoria. I file ad alta risoluzione spesso hanno più dettaglio di quanto la stampante possa generare. Impostate a zero per disabilitare la semplificazione e utilizzare la risoluzione completa." -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 msgid "Minimum exposure time" msgstr "Tempo minimo di esposizione" -#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" msgstr "Avanzamento minimo durante estrusione" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" msgstr "Avanzamento minimo durante estrusione (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2182 +#: src/slic3r/GUI/Tab.cpp:2230 msgid "Minimum feedrates" msgstr "Avanzamento minimo" -#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 +#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 msgid "Minimum initial exposure time" msgstr "Tempo minimo di esposizione iniziale" -#: src/libslic3r/PrintConfig.cpp:1452 +#: src/slic3r/GUI/Tab.cpp:1071 +msgid "Minimum shell thickness" +msgstr "Spessore minimo guscio" + +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "Spessore minimo guscio superiore / inferiore" + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "Spessore minimo guscio superiore" + +#: src/slic3r/GUI/PresetHints.cpp:316 +msgid "Minimum top shell thickness is %1% mm." +msgstr "Spessore minimo guscio superiore è %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "Spostamento minimo dopo una retrazione" -#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" msgstr "Avanzamento minimo di spostamento" -#: src/libslic3r/PrintConfig.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" msgstr "Avanzamento minimo di spostamento (M205 T)" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Minimum wall thickness of a hollowed model." +msgstr "Spessore minimo parete di un modello svuotato." + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum width of features to maintain when doing elephant foot compensation." +msgstr "Larghezza minima della funzione da mantenere durante la compensazione della zampa d'elefante" + +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror" msgstr "Specchia" -#: src/libslic3r/PrintConfig.cpp:2320 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "Specchia orizzontalmente" -#: src/slic3r/GUI/GLCanvas3D.cpp:1711 +#: src/slic3r/GUI/GLCanvas3D.cpp:2075 msgid "Mirror Object" msgstr "Specchia Oggetto" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror the selected object" msgstr "Specchia l'oggetto selezionato" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Mirror the selected object along the X axis" msgstr "Specchia l'oggetto selezionato sull'asse X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Mirror the selected object along the Y axis" msgstr "Specchia l'oggetto selezionato sull'asse y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Mirror the selected object along the Z axis" msgstr "Specchia l'oggetto selezionato sull'asse Z" -#: src/libslic3r/PrintConfig.cpp:2327 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "Specchia verticalmente" -#: src/slic3r/Utils/OctoPrint.cpp:69 +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 #, possible-c-format msgid "Mismatched type of print host: %s" msgstr "Tipo di Host di stampa non corrispondente: %s" -#: src/libslic3r/GCode/PreviewData.cpp:176 +#: src/libslic3r/ExtrusionEntity.cpp:323 msgid "Mixed" msgstr "Mischiate" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2482 msgid "ml" msgstr "ml" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118 -#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84 -#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210 -#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293 -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353 -#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484 -#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680 -#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227 -#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263 -#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454 -#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503 -#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521 -#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612 -#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898 -#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125 -#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179 -#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297 -#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381 -#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454 -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483 -#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510 -#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539 -#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 +#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 +#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 +#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 +#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 +#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 +#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 +#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 +#: src/libslic3r/PrintConfig.cpp:2909 msgid "mm" msgstr "mm" -#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" msgstr "mm (imposta a zero per disabilitare)" -#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992 -#: src/libslic3r/PrintConfig.cpp:1797 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mm o %" -#: src/libslic3r/PrintConfig.cpp:201 src/libslic3r/PrintConfig.cpp:577 -#: src/libslic3r/PrintConfig.cpp:585 src/libslic3r/PrintConfig.cpp:594 -#: src/libslic3r/PrintConfig.cpp:602 src/libslic3r/PrintConfig.cpp:629 -#: src/libslic3r/PrintConfig.cpp:648 src/libslic3r/PrintConfig.cpp:874 -#: src/libslic3r/PrintConfig.cpp:1001 src/libslic3r/PrintConfig.cpp:1079 -#: src/libslic3r/PrintConfig.cpp:1099 src/libslic3r/PrintConfig.cpp:1112 -#: src/libslic3r/PrintConfig.cpp:1123 src/libslic3r/PrintConfig.cpp:1176 -#: src/libslic3r/PrintConfig.cpp:1235 src/libslic3r/PrintConfig.cpp:1363 -#: src/libslic3r/PrintConfig.cpp:1537 src/libslic3r/PrintConfig.cpp:1546 -#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:2053 +#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 +#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 +#: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 +#: src/libslic3r/PrintConfig.cpp:1050 src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1181 +#: src/libslic3r/PrintConfig.cpp:1191 src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1300 src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/PrintConfig.cpp:2154 msgid "mm/s" msgstr "mm/s" -#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856 -#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702 -#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s o %" -#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303 -#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936 -#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134 -#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334 +#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:1661 +#: src/libslic3r/PrintConfig.cpp:1730 msgid "mm²" msgstr "mm²" -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" -#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" msgstr "Modalità" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" msgstr "modello" -#: src/slic3r/GUI/BedShapeDialog.cpp:239 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "Modello" @@ -4109,133 +4541,162 @@ msgstr "Modello" msgid "Model fixing" msgstr "Riparazione modello" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model Repair by the Netfabb service" msgstr "Riparazione Modello dal servizio Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:406 +#: src/slic3r/Utils/FixModelByWin10.cpp:413 msgid "Model repair canceled" msgstr "Riparazione modello annullata" -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model repair failed:" msgstr "Riparazione modello fallita:" -#: src/slic3r/Utils/FixModelByWin10.cpp:400 +#: src/slic3r/Utils/FixModelByWin10.cpp:407 msgid "Model repair finished" msgstr "Riparazione modello terminata" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 msgid "Model repaired successfully" msgstr "Modello riparato con successo" -#: src/slic3r/GUI/Preset.cpp:207 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "modificato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Modifier" msgstr "Modificatore" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1163 msgid "Modifiers" msgstr "Modificatori" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2503 msgid "money/bottle" msgstr "soldi/bottiglia" -#: src/libslic3r/PrintConfig.cpp:719 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "soldi/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Mouse wheel" msgstr "Rotella del mouse" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:266 msgid "Mouse wheel:" msgstr "Rotella del mouse:" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" msgstr "Sposta" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Move clipping plane" msgstr "Sposta piano di ritaglio" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Move current slider thumb Down" msgstr "Abbassa la barra di scorrimento attuale" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Move current slider thumb Up" msgstr "Solleva la barra di scorrimento attuale" -#: src/slic3r/GUI/GLCanvas3D.cpp:2872 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +msgid "Move drainage hole" +msgstr "Sposta foro di drenaggio" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3538 msgid "Move Object" msgstr "Sposta oggetto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 msgid "Move point" msgstr "Sposta punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "Sposta selezione 10 mm in direzione X negativa" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "Sposta selezione 10 mm in direzione Y negativa" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "Sposta selezione 10 mm in direzione X positiva " + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "Sposta selezione 10 mm in direzione Y positiva " + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 msgid "Move support point" msgstr "Sposta punto di supporto" -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "Movimento nello spazio della camera" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "Passo del movimento impostato a 1 mm" + +#: src/libslic3r/PrintConfig.cpp:2201 msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Le stampanti multi-material potrebbero necessitare di caricare o spurgare l'estrusore al cambio di attrezzo. Estrude il materiale in eccesso in una torre di spurgo." -#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769 +#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 msgid "Multi-part object detected" msgstr "Rilevato oggetto in parti multiple" -#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436 +#: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 #, possible-c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Trovati molteplici %s dispositivi. Per favore connettine uno alla volta per il flashing." -#: src/slic3r/GUI/Tab.cpp:1118 +#: src/slic3r/GUI/Tab.cpp:1181 msgid "Multiple Extruders" msgstr "Estrusori multipli" -#: src/slic3r/GUI/Plater.cpp:2414 +#: src/slic3r/GUI/Plater.cpp:2394 msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" msgstr "Sono stati caricati oggetti multipli per stampante multi-material.\nInvece di considerarli come oggetti multipli, devo considerarli come parte di un singolo oggetto avente parti multiple?" -#: src/libslic3r/PrintConfig.cpp:3050 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Multiply copies by creating a grid." msgstr "Moltiplica le copie creando una griglia." -#: src/libslic3r/PrintConfig.cpp:3045 +#: src/libslic3r/PrintConfig.cpp:3419 msgid "Multiply copies by this factor." msgstr "Moltiplica le copie per questo valore." -#: src/slic3r/GUI/Field.cpp:139 +#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:176 +#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nome" -#: src/libslic3r/PrintConfig.cpp:1418 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter." msgstr "Nome della variante di stampante. Per esempio le varianti di una stampante potrebbero differire per diametro dell'ugello." -#: src/libslic3r/PrintConfig.cpp:1412 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "Nome del venditore della stampante." -#: src/libslic3r/PrintConfig.cpp:1009 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "Nome del profilo da cui questo profilo eredita." -#: src/libslic3r/PrintConfig.cpp:1560 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "Più vicino" @@ -4243,36 +4704,40 @@ msgstr "Più vicino" msgid "Network lookup" msgstr "Ricerca network" -#: src/slic3r/GUI/Plater.cpp:2056 +#: src/slic3r/GUI/Plater.cpp:2135 msgid "New Project" msgstr "Nuovo progetto" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 +msgid "New project, clear plater" +msgstr "Nuovo progetto, pulisci piano" + +#: src/slic3r/GUI/UpdateDialogs.cpp:38 #, possible-c-format msgid "New version of %s is available" msgstr "È disponibile una nuova versione di %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:47 +#: src/slic3r/GUI/UpdateDialogs.cpp:45 msgid "New version:" msgstr "Nuova versione:" -#: src/slic3r/GUI/GLCanvas3D.cpp:3750 +#: src/slic3r/GUI/GLCanvas3D.cpp:4722 msgid "Next Redo action: %1%" msgstr "Ripeti Prossima azione: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:3718 +#: src/slic3r/GUI/GLCanvas3D.cpp:4690 msgid "Next Undo action: %1%" msgstr "Annulla Prossima azione: %1%" -#: src/libslic3r/PrintConfig.cpp:912 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "No estrusione" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:422 msgid "No pad can be generated for this model with the current configuration" msgstr "Non può essere generato nessun Pad per questo modello con la configurazione corrente" -#: src/slic3r/GUI/MainFrame.cpp:635 +#: src/slic3r/GUI/MainFrame.cpp:786 msgid "No previously sliced file." msgstr "File non processato precedentemente." @@ -4280,160 +4745,175 @@ msgstr "File non processato precedentemente." msgid "NO RAMMING AT ALL" msgstr "NESSUN RAMMING" -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Nessun layer rado (SPERIMENTALE)" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2765 msgid "No support points will be placed closer than this threshold." msgstr "Non verranno posizionati punti di supporto più vicini di questa soglia." -#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422 -#: src/libslic3r/GCode/PreviewData.cpp:162 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates aviable" +msgstr "Nessun aggiornamento disponibile" + +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Nessuno" -#: src/slic3r/GUI/Tab.cpp:2152 +#: src/slic3r/GUI/Tab.cpp:2199 msgid "Normal" msgstr "Normale" -#: src/slic3r/GUI/Plater.cpp:1073 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "normal mode" msgstr "modalità normale" -#: src/libslic3r/Zipper.cpp:49 +#: src/libslic3r/Zipper.cpp:46 msgid "not a ZIP archive" msgstr "non un archivio ZIP" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 msgid "Not found: " msgstr "Non trovato:" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/GUI/DoubleSlider.cpp:985 +msgid "Note" +msgstr "Nota" + +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "Nota: è richiesta una versione di AstroBox 1.1.0 o successiva." + +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." msgstr "Nota: è necessaria FlashAir con firmware 2.00.02 o successivo e funzione di caricamento attiva." -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Nota: è richiesta una versione di OctoPrint 1.1.0 o successiva." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Nota: alcune scorciatoie funzionano solo in modalità (non)editing." -#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194 -#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577 -#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986 -#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080 -#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329 +#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 +#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 +#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 +#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 +#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 msgid "Notes" msgstr "Note" -#: src/slic3r/GUI/GUI.cpp:277 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 msgid "Notice" msgstr "Avvertenza" -#: src/slic3r/GUI/ConfigWizard.cpp:118 +#: src/slic3r/GUI/ConfigWizard.cpp:218 msgid "nozzle" msgstr "ugello" -#: src/libslic3r/PrintConfig.cpp:1261 +#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Diametro ugello" -#: src/slic3r/GUI/ConfigWizard.cpp:560 +#: src/slic3r/GUI/ConfigWizard.cpp:970 msgid "Nozzle Diameter:" msgstr "Diametro ugello:" -#: src/libslic3r/PrintConfig.cpp:618 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "Numero di movimenti di raffreddamento" -#: src/slic3r/GUI/Tab.cpp:1845 +#: src/slic3r/GUI/Tab.cpp:1837 msgid "Number of extruders of the printer." msgstr "Numero estrusori della stampante." -#: src/libslic3r/PrintConfig.cpp:1888 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "Number of interface layers to insert between the object(s) and support material." msgstr "Numero di layer interfaccia da inserire tra l'oggetto(i) e il materiale di supporto." -#: src/libslic3r/PrintConfig.cpp:1627 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely." msgstr "Numero di giri per lo skirt. Se è impostata l'opzione per la lunghezza minima di estrusione, il numero dei giri potrebbe essere più grande di quello configurato qui. Imposta questo valore a zero per disattivare completamente lo skirt." -#: src/libslic3r/PrintConfig.cpp:2214 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "Numero di pixel su" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Numero di pixel su X" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Numero di pixel su Y" -#: src/libslic3r/PrintConfig.cpp:151 +#: src/libslic3r/PrintConfig.cpp:166 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Numero di layer solidi da generare sulle superfici inferiori." -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." msgstr "Numero di layer solidi da generare sulle superfici superiori e inferiori." -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." msgstr "Numero di layer solidi da generare sulle superfici superiori." -#: src/libslic3r/PrintConfig.cpp:2303 +#: src/libslic3r/PrintConfig.cpp:2509 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Numero di layer necessari per la sfumatura del tempo di esposizione dal tempo di esposizione iniziale al tempo di esposizione" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:243 msgid "Number of tool changes" msgstr "Numero di cambi attrezzo" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2744 msgid "Object elevation" msgstr "Elevazione oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1858 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 msgid "Object manipulation" msgstr "Manipolazione oggetto" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "Nome oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 msgid "Object or Instance" msgstr "Oggetto o Istanza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Object reordered" msgstr "Oggetto riordinato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1868 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 msgid "Object Settings to modify" msgstr "Impostazioni Oggetto da modificare" -#: src/slic3r/GUI/Plater.cpp:1875 +#: src/slic3r/GUI/Plater.cpp:2513 msgid "Object too large?" msgstr "Oggetto troppo grande?" -#: src/libslic3r/PrintConfig.cpp:2161 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "L'oggetto sarà utilizzato per spurgare l'ugello dopo un cambio di attrezzo per ridurre il tempo di stampa e risparmiare materiale che finirebbe altrimenti nella torre di spurgo. Come risultato, i colori dell'oggetto saranno mischiati." -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "object(s)" msgstr "oggetto(i)" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "objects" msgstr "oggetti" -#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "Spirale a Ottagramma" @@ -4441,299 +4921,332 @@ msgstr "Spirale a Ottagramma" msgid "OctoPrint version" msgstr "Versione OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2419 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 msgid "of a current Object" msgstr "di un Oggetto corrente" -#: src/slic3r/GUI/wxExtensions.cpp:2570 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "Offset" + +#: src/slic3r/GUI/DoubleSlider.cpp:923 msgid "One layer mode" msgstr "Modalità Un Layer" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1361 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Uno o più oggetti sono assegnati ad un estrusore non presente sulla stampante." -#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Genera supporti solo se questi poggiano sulla superficie di stampa. Non genera supporti sulla stampa." -#: src/libslic3r/PrintConfig.cpp:978 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "Riempimento solo quando necessario" -#: src/slic3r/GUI/Tab.cpp:2271 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Only lift Z" msgstr "Solleva Z solamente " -#: src/libslic3r/PrintConfig.cpp:1500 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "Solleva Z solo al di sopra" -#: src/libslic3r/PrintConfig.cpp:1509 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Solleva Z solo al di sotto" -#: src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "Retrai solo se si attraversa un perimetro" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1189 msgid "Ooze prevention" msgstr "Prevenzione delle fuoriuscite" -#: src/libslic3r/Print.cpp:1193 +#: src/libslic3r/Print.cpp:1262 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "Prevenzione sgocciolamento non è al momento supportata con la torre di spurgo attiva." -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "Apri un file progetto" -#: src/slic3r/GUI/Tab.cpp:1745 +#: src/slic3r/GUI/Tab.cpp:1727 msgid "Open CA certificate file" msgstr "Apri file di certificato CA" -#: src/slic3r/GUI/UpdateDialogs.cpp:63 src/slic3r/GUI/UpdateDialogs.cpp:126 +#: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "Apri la pagina del registro delle modifiche" -#: src/slic3r/GUI/UpdateDialogs.cpp:68 +#: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Apri la pagina di Download" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:105 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "Apri progetto STL/OBJ/AMF/3MF con configurazione, pulisci piano" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" msgstr "Apri progetto STL/OBJ/AMF/3MF con configurazione, cancella il piano" -#: src/slic3r/GUI/MainFrame.cpp:551 +#: src/slic3r/GUI/MainFrame.cpp:695 #, possible-c-format msgid "Open the %s website in your browser" msgstr "Apri il sito web di %s nel browser" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Apri la pagina di download dei driver Prusa3D sul browser" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Open the software releases page in your browser" msgstr "Apri la pagina delle versioni software sul browser" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize orientation" msgstr "Ottimizza orientamento" -#: src/slic3r/GUI/Plater.cpp:2643 +#: src/slic3r/GUI/Plater.cpp:2751 msgid "Optimize Rotation" msgstr "Ottimizza Rotazione" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize the rotation of the object for better print results." msgstr "Ottimizza la rotazione dell'oggetto per risultati di stampa migliori." -#: src/libslic3r/PrintConfig.cpp:112 +#: src/libslic3r/PrintConfig.cpp:127 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Ottimizza il movimenti di spostamento per minimizzare l'incrocio di perimetri. È comunemente usato con estrusori Bowden che soffrono di oozing (trasudazione). Questa caratteristica rallenta sia la stampa che la generazione del G-code." -#: src/slic3r/GUI/Tab.cpp:1070 +#: src/slic3r/GUI/Tab.cpp:1133 msgid "Options for support material and raft" msgstr "Opzioni per materiale di supporto e raft" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/DoubleSlider.cpp:960 +msgid "or press \"+\" key" +msgstr "o premi il tasto \"+\"" + +#: src/slic3r/GUI/Plater.cpp:2876 msgid "Orientation found." msgstr "Trovato orientamento." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2875 msgid "Orientation search canceled." msgstr "Ricerca orientamento annullata." -#: src/slic3r/GUI/BedShapeDialog.cpp:79 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "Origine" -#: src/slic3r/GUI/Tab.cpp:1165 +#: src/slic3r/GUI/Tab.cpp:1229 msgid "Other" msgstr "Altro" -#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977 +#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Altri layer" -#: src/slic3r/GUI/ConfigWizard.cpp:438 +#: src/slic3r/GUI/ConfigWizard.cpp:857 msgid "Other Vendors" msgstr "Altri Fornitori" -#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 msgid "Output file" msgstr "File di output" -#: src/libslic3r/PrintConfig.cpp:3104 +#: src/libslic3r/PrintConfig.cpp:3478 msgid "Output File" msgstr "File di output" -#: src/libslic3r/PrintConfig.cpp:1294 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "Formato del file di output" -#: src/libslic3r/PrintConfig.cpp:2992 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Output Model Info" msgstr "Info Modello di output" -#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 msgid "Output options" msgstr "Opzioni output" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Perimetro sporgente" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "Soglia sporgenza" -#: src/slic3r/GUI/Tab.cpp:1153 +#: src/slic3r/GUI/Tab.cpp:1217 msgid "Overlap" msgstr "Sovrapposizione" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "Impostazioni S&tampa" -#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520 -#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426 -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523 -#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547 -#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569 +#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 +#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 +#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 +#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 +#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 +#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 +#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 +#: src/libslic3r/PrintConfig.cpp:2890 msgid "Pad" msgstr "Pad" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 +#: src/slic3r/GUI/GUI_ObjectList.cpp:45 msgid "Pad and Support" msgstr "Pad e Supporto" -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "Pad around object" msgstr "Pad Intorno all'oggetto" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2853 msgid "Pad around object everywhere" msgstr "Pad ovunque intorno all'oggetto" -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2802 msgid "Pad brim size" msgstr "Dimensioni brim del Pad" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "La dimensione del brim del Pad è troppo piccola per la configurazione attuale." -#: src/libslic3r/PrintConfig.cpp:2731 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector penetration" msgstr "Inserimento connettore Pad dell'oggetto" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "Pad object connector stride" msgstr "Passo del connettore del pad dell'oggetto" -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector width" msgstr "Lunghezza connettore Pad dell'oggetto" -#: src/libslic3r/PrintConfig.cpp:2700 +#: src/libslic3r/PrintConfig.cpp:2860 msgid "Pad object gap" msgstr "Spazio Pad oggetto" -#: src/libslic3r/PrintConfig.cpp:2532 +#: src/libslic3r/PrintConfig.cpp:2788 msgid "Pad wall height" msgstr "Altezza parete Pad" -#: src/libslic3r/PrintConfig.cpp:2568 +#: src/libslic3r/PrintConfig.cpp:2835 msgid "Pad wall slope" msgstr "Inclinazione della parete del pad" -#: src/libslic3r/PrintConfig.cpp:2522 +#: src/libslic3r/PrintConfig.cpp:2778 msgid "Pad wall thickness" msgstr "Spessore parete Pad" -#: src/slic3r/GUI/Field.cpp:108 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "Page Down" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "Page Up" + +#: src/slic3r/GUI/Field.cpp:134 msgid "parameter name" msgstr "nome parametro" -#: src/slic3r/GUI/Field.cpp:184 +#: src/slic3r/GUI/Field.cpp:238 msgid "Parameter validation" msgstr "Validazione parametri" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Part" msgstr "Parte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1881 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 msgid "Part manipulation" msgstr "Manipolazione parti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 msgid "Part Settings to modify" msgstr "Impostazioni parte da modificare" -#: src/slic3r/GUI/GLCanvas3D.cpp:3449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4563 msgid "Paste" msgstr "Incolla" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "Incolla appunti" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 msgid "Paste from clipboard" msgstr "Incolla dagli appunti" -#: src/slic3r/GUI/Plater.cpp:4772 +#: src/slic3r/GUI/Plater.cpp:5640 msgid "Paste From Clipboard" msgstr "Incolla dagli appunti" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "Trama" -#: src/libslic3r/PrintConfig.cpp:1805 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "Angolo trama" -#: src/libslic3r/PrintConfig.cpp:1929 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" msgstr "Spaziatura trama" -#: src/libslic3r/PrintConfig.cpp:1917 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "Trama usata per generare il materiale di supporto." -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/DoubleSlider.cpp:976 +msgid "Pause print (\"%1%\")" +msgstr "Metti in pausa (\"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 +#: src/slic3r/GUI/GLCanvas3D.cpp:987 msgid "Pause print or custom G-code" msgstr "Pausa stampa o G-code personalizzato" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "Effettua taglio" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163 +#: src/libslic3r/PrintConfig.cpp:2918 +msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." +msgstr "Prestazioni vs Precisione di calcolo. Valori più bassi possono produrre artefatti non voluti." + +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Perimetro" -#: src/libslic3r/PrintConfig.cpp:1339 +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "Estrusore perimetro" -#: src/slic3r/GUI/PresetHints.cpp:162 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" msgstr "perimetri" -#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348 -#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "Perimetri" -#: src/slic3r/GUI/ConfigWizard.cpp:816 +#: src/slic3r/GUI/ConfigWizard.cpp:861 #, possible-c-format msgid "Pick another vendor supported by %s" msgstr "Scegli un altro distributore supportato da %s" @@ -4742,11 +5255,11 @@ msgstr "Scegli un altro distributore supportato da %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Dimensioni immagine per essere memorizzate nei file .gcode e .sl1" -#: src/libslic3r/PrintConfig.cpp:2430 +#: src/libslic3r/PrintConfig.cpp:2672 msgid "Pillar widening factor" msgstr "Fattore di espansione pilastro" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Il diametro dell'apice dovrebbe essere più piccolo rispetto al diametro del pilastro." @@ -4754,40 +5267,48 @@ msgstr "Il diametro dell'apice dovrebbe essere più piccolo rispetto al diametro msgid "Place bearings in slots and resume" msgstr "Posiziona i cuscinetti negli alloggi e riprendi" -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32 +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "Posiziona i cuscinetti negli alloggi e riprendi a stampare" + +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "Posiziona sulla faccia" -#: src/slic3r/GUI/MainFrame.cpp:161 +#: src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 msgid "Plater Shortcuts" msgstr "Scorciatoie Piano" -#: src/slic3r/GUI/GUI.cpp:143 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Per favore controlla e correggi la tua lista oggetti." -#: src/slic3r/GUI/Tab.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 msgid "Please check your object list before preset changing." msgstr "Per favore verifica la tua lista di oggetti prima di cambiare i preset." -#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:286 +#: src/slic3r/GUI/Plater.cpp:3272 +msgid "Please select the file to reload" +msgstr "Seleziona il file da ricaricare" + +#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" msgstr "Parti di copyright" -#: src/libslic3r/PrintConfig.cpp:2235 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "Ritratto" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:215 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:457 msgid "Position" msgstr "Posizione" -#: src/slic3r/GUI/Tab.cpp:2265 +#: src/slic3r/GUI/Tab.cpp:2363 msgid "Position (for multi-extruder printers)" msgstr "Posizione (per stampanti multi-estrusore)" @@ -4795,245 +5316,278 @@ msgstr "Posizione (per stampanti multi-estrusore)" msgid "Position (mm)" msgstr "Posizione (mm)" -#: src/libslic3r/PrintConfig.cpp:1553 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Posizione dei punti iniziali dei perimetri." -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "Posizione X" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Posizione Y" -#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Script di post produzione" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "&Visualizza anteprima" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Preferenze" -#: src/libslic3r/PrintConfig.cpp:1571 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "Direzione preferita della giunzione" -#: src/libslic3r/PrintConfig.cpp:1582 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "Direzione preferita della giunzione - jitter" -#: src/libslic3r/PrintObject.cpp:251 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "Preparazione infill" -#: src/slic3r/GUI/Tab.cpp:2758 +#: src/slic3r/GUI/Tab.cpp:2904 #, possible-c-format msgid "Preset (%s)" msgstr "Preset (%s)" -#: src/slic3r/GUI/Tab.cpp:3031 -msgid "Preset with name \"%1%\" already exist." +#: src/slic3r/GUI/Tab.cpp:3066 +msgid "Preset with name \"%1%\" already exists." msgstr "Preset con il nome \"%1%\" già esistente." -#: src/slic3r/GUI/Tab.cpp:2994 +#: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" msgstr "NomePreset||%1% - Copia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" msgstr "Premere per attivare il rettangolo di deselezione\no per ridimensionare o ruotare gli oggetti selezionati\nattorno al loro centro" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "Premi per attivare il rettangolo di deselezione" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Premere per attivare una direzione di ridimensionamento nel Gizmo ridimensiona" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 #, no-c-format msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" msgstr "Premere per attivare il rettangolo di selezione\no per incrementi del 5% nel Gizmo ridimensiona\no per incrementi di 1mm nel Gizmo sposta" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "Premi per attivare il rettangolo di selezione" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" +msgstr "Premi per ridimensionare (nel Gizmo ridimensiona) o ruotare (nel Gizmo ruota)\nl'oggetto selezionato attorno al proprio centro" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Press to scale selection to fit print volume\nin Gizmo scale" msgstr "Premere per ridimensionare la selezione così da entrare nel volume di stampa\nnel Gizmo ridimensiona" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 msgid "Press to select multiple object or move multiple object with mouse" msgstr "Premi per selezionare o spostare oggetti multipli con il mouse" -#: src/slic3r/GUI/Tab.cpp:2288 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with mouse" +msgstr "Premi per selezionare o spostare\noggetti multipli con il mouse" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with a mouse" +msgstr "Premi per selezionare o spostare\noggetti multipli con il mouse" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" +msgstr "Premi per scatti del 5% nel Gizmo ridimensiona\no per scatti di 1mm nel Gizmo sposta" + +#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 msgid "Preview" msgstr "Anteprima" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "Anteprima del modello svuotato e forato" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 msgid "Preview Shortcuts" msgstr "Mostra Scorciatoie" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid "Previously sliced file (" msgstr "File precedentemente processato (" -#: src/libslic3r/PrintConfig.cpp:1773 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "Prepara tutti gli estrusori di stampa" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 msgid "print" msgstr "stampa" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "Coda di caricamento &Host di stampa" -#: src/libslic3r/PrintConfig.cpp:439 +#: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Stampa i perimetri di contorno dal più esterno al più interno invece dell'ordine predefinito inverso." -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Print Diameters" msgstr "Diametro di stampa" -#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074 +#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 msgid "Print Host upload" msgstr "Caricamento Host di stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -#: src/slic3r/GUI/PrintHostDialogs.cpp:135 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Coda di caricamento Host di stampa" -#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405 +#: src/slic3r/GUI/DoubleSlider.cpp:941 +msgid "Print mode" +msgstr "Modalità di stampa" + +#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 msgid "Print Settings" msgstr "Impostazioni Stampa" -#: src/slic3r/GUI/Plater.cpp:681 +#: src/slic3r/GUI/Plater.cpp:812 msgid "Print settings" msgstr "Impostazioni di stampa" -#: src/slic3r/GUI/Tab.cpp:1520 +#: src/slic3r/GUI/Tab.cpp:1480 msgid "Print speed override" msgstr "Scavalca velocità di stampa" -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Stampa z" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "Impostazioni Stampant&e" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1438 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Printable" msgstr "Stampabile" -#: src/slic3r/GUI/Plater.cpp:685 +#: src/slic3r/GUI/Plater.cpp:816 msgid "Printer" msgstr "Stampante" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 msgid "printer" msgstr "stampante" -#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "Correzione assoluta stampante" -#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283 +#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 msgid "Printer gamma correction" msgstr "Correzione gamma della stampante" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/Tab.cpp:978 msgid "printer model" msgstr "modello stampante" -#: src/libslic3r/PrintConfig.cpp:1402 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "Note stampante" -#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267 -#: src/libslic3r/PrintConfig.cpp:2268 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "Correzione di scala stampante" -#: src/slic3r/GUI/Tab.hpp:368 +#: src/slic3r/GUI/Tab.hpp:390 msgid "Printer Settings" msgstr "Impostazioni stampante" -#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43 +#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44 msgid "Printer technology" msgstr "Tecnologia stampante" -#: src/libslic3r/PrintConfig.cpp:1396 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "Tipo stampante" -#: src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "Variante della stampante" -#: src/libslic3r/PrintConfig.cpp:1411 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "Venditore della stampante" -#: src/libslic3r/Print.cpp:1294 +#: src/libslic3r/Print.cpp:1384 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Stampa con più estrusori con ugelli di di diametro diverso. Se il supporto deve essere stampato con l'estrusore corrente (support_material_extruder = = 0 o support_material_interface_extruder = = 0), tutti gli ugelli devono avere lo stesso diametro." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:715 +#: src/slic3r/GUI/MainFrame.cpp:851 #, possible-c-format msgid "Processing %s" msgstr "Elaborando %s" -#: src/slic3r/GUI/Plater.cpp:2287 +#: src/slic3r/GUI/Plater.cpp:2267 #, possible-c-format msgid "Processing input file %s" msgstr "Processando il file di input %s" -#: src/libslic3r/PrintObject.cpp:110 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "Elaborando la mesh triangolata" -#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585 -#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087 -#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 +#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 +#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 msgid "Profile dependencies" msgstr "Dipendenze profilo" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "Profilo:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:149 +#: src/slic3r/GUI/PrintHostDialogs.cpp:150 msgid "Progress" msgstr "Progresso" -#: src/slic3r/GUI/FirmwareDialog.cpp:779 +#: src/slic3r/GUI/FirmwareDialog.cpp:817 msgid "Progress:" msgstr "Progresso:" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Prusa 3D &Drivers" msgstr "Prusa 3D &Drivers" -#: src/slic3r/GUI/ConfigWizard.cpp:1109 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa FFF Technology Printers" msgstr "Stampanti Prusa con tecnologia FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:1112 +#: src/slic3r/GUI/ConfigWizard.cpp:2001 msgid "Prusa MSLA Technology Printers" msgstr "Stampanti Prusa con tecnologia MSLA" -#: src/slic3r/GUI/AboutDialog.cpp:255 +#: src/slic3r/GUI/AboutDialog.cpp:260 msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap community." msgstr "PrusaSlicer è basato su Slic3r di Alessandro Ranellucci e la comunità RepRap." -#: src/slic3r/GUI/GUI_App.cpp:297 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 #, possible-c-format msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." msgstr "PrusaSlicer richiede un driver video con supporto OpenGL 2.0 per funzionare correttamente, mentre è stata rilevata la versione %s OpenGL, render %s, distributore %s." @@ -5042,211 +5596,253 @@ msgstr "PrusaSlicer richiede un driver video con supporto OpenGL 2.0 per funzion msgid "PrusaSlicer version" msgstr "versione PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:771 +#: src/slic3r/GUI/ConfigWizard.cpp:816 msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." msgstr "L'interfaccia utente di PrusaSlicer è disponibile in tre varianti:\nSemplice, Avanzata ed Esperto.\nLa modalità Semplice mostra solo le impostazioni rilevanti utilizzate più spesso per una semplice stampa 3D. Le altre due offrono progressivamente ottimizzazioni più sofisticate, sono adatte ad utenti avanzati ed esperti, rispettivamente." -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Lo spurgo dopo un cambio di attrezzo verrà effettuato dentro il riempimento di questo oggetto. Questo diminuisce la quantità di scarto ma potrebbe prolungare il tempo di stampa a causa di spostamenti aggiuntivi." -#: src/slic3r/GUI/Plater.cpp:456 +#: src/slic3r/GUI/Plater.cpp:541 msgid "Purging volumes" msgstr "Volumi di spurgo" -#: src/libslic3r/PrintConfig.cpp:2106 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "Volumi di spurgo - volumi di carico/scarico" -#: src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "Volumi di spurgo - matrice" -#: src/slic3r/GUI/Tab.cpp:1019 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "Qualità" + +#: src/slic3r/GUI/Tab.cpp:1082 msgid "Quality (slower slicing)" msgstr "Qualità (slicing più lento)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1145 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1377 +#: src/slic3r/GUI/GLCanvas3D.cpp:278 +msgid "Quality / Speed" +msgstr "Qualità / Velocità" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 #, possible-c-format msgid "Quick Add Settings (%s)" msgstr "Aggiungere Impostazioni Rapide (%s)" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "Slice veloce" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "Slice veloce e Salva Come" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 #, possible-c-format msgid "Quit %s" msgstr "Chiudi %s" -#: src/libslic3r/PrintConfig.cpp:479 +#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Raggio" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1129 msgid "Raft" msgstr "Raft" -#: src/libslic3r/PrintConfig.cpp:1431 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" msgstr "Layer raft" -#: src/slic3r/GUI/WipeTowerDialog.cpp:14 +#: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "Personalizzazione del ramming" -#: src/slic3r/GUI/WipeTowerDialog.cpp:40 +#: src/slic3r/GUI/WipeTowerDialog.cpp:41 msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." msgstr "Il ramming è la rapida estrusione appena prima di un cambio di attrezzo in una stampante MM ad estrusore singolo. Lo scopo è di dare la forma corretta al capo del filamento scaricato cosicché non prevenga l'inserzione del nuovo filamento e perché possa essere inserito più facilmente esso stesso. Questa fase è importante e materiali diversi possono richiedere velocità diverse per ottenere la forma corretta. Per questo motivo le velocità di estrusione del ramming possono essere modificate.\n\nQuesta è un'impostazione per esperti, valori scorretti produrranno facilmente dei blocchi, o porteranno l'ingranaggio di estrusione a macinare il filamento etc." -#: src/slic3r/GUI/WipeTowerDialog.cpp:90 +#: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" msgstr "Spaziatura tra linee di ramming" -#: src/slic3r/GUI/WipeTowerDialog.cpp:88 +#: src/slic3r/GUI/WipeTowerDialog.cpp:89 msgid "Ramming line width" msgstr "Larghezza della linea di Ramming" -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "Parametri del ramming" -#: src/slic3r/GUI/Tab.cpp:1545 +#: src/slic3r/GUI/Tab.cpp:1507 msgid "Ramming settings" msgstr "Impostazioni del ramming" -#: src/libslic3r/PrintConfig.cpp:1559 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "Casuale" -#: src/slic3r/GUI/wxExtensions.cpp:486 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 msgid "Range" msgstr "Intervallo" -#: src/libslic3r/SLAPrint.cpp:72 +#: src/libslic3r/SLAPrintSteps.cpp:63 msgid "Rasterizing layers" msgstr "Rasterizzazione dei layer" -#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "Ricarica da disco (&l)" + +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "Ri-configura" -#: src/slic3r/GUI/FirmwareDialog.cpp:783 +#: src/slic3r/GUI/FirmwareDialog.cpp:821 msgid "Ready" msgstr "Pronto" -#: src/slic3r/GUI/Plater.cpp:2406 +#: src/slic3r/GUI/Plater.cpp:3099 msgid "Ready to slice" msgstr "Pronto a processare" -#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "Posteriore" -#: src/slic3r/GUI/MainFrame.cpp:526 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "Vista posteriore" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "Progetti recenti" -#: src/slic3r/GUI/PresetHints.cpp:262 +#: src/slic3r/GUI/PresetHints.cpp:263 #, possible-c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Spessore raccomandato per oggetto con parete sottile per altezza layer %.2f e" +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." +msgstr "Spessore raccomandato per oggetto con parete sottile: Non disponibile a causa di una larghezza di estrusione eccessivamente piccola." + #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." msgstr "Spessore raccomandato per oggetto con parete sottile: Non disponibile a causa di un'altezza layer non valida." -#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "Rigenerando" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "Rettangolare" -#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796 -#: src/libslic3r/PrintConfig.cpp:1922 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "Rettilineo" -#: src/libslic3r/PrintConfig.cpp:1923 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "Griglia rettilinea" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3639 -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Ripeti" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Ripeti %1$d Azione" msgstr[1] "Ripeti %1$d Azioni" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Redo History" msgstr "Storia Ripeti" -#: src/slic3r/GUI/Tab.cpp:1037 +#: src/slic3r/GUI/Tab.cpp:1100 msgid "Reducing printing time" msgstr "Riduzione tempo di stampa" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3461 +msgid "Reload all from disk" +msgstr "Ricarica tutto da disco" + +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 +#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 msgid "Reload from disk" msgstr "Ricarica da Disco" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3328 +msgid "Reload from: " +msgstr "Ricarica da:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "Ricarica piano da disco" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "Ricarica piano da disco" + +#: src/slic3r/GUI/Plater.cpp:3972 msgid "Reload the selected object from disk" msgstr "Ricarica l'oggetto selezionato dal disco" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3715 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 msgid "Reload the selected volumes from disk" msgstr "Ricarica i volumi selezionati dal disco" -#: src/slic3r/GUI/Preferences.cpp:36 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "Ricorda la directory di output" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "remove" msgstr "rimuovi" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Remove" msgstr "Rimuovi" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "Rimuovi tutti i fori" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:51 msgid "Remove all points" msgstr "Rimuovi tutti i punti" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:251 msgid "Remove detail" msgstr "Rimuovi dettagli" +#: src/slic3r/GUI/Plater.cpp:876 +msgid "Remove device" +msgstr "Rimuovi dispositivo" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 msgid "Remove extruder from sequence" msgstr "Rimuovi estrusore dalla sequenza" -#: src/slic3r/GUI/GLCanvas3D.cpp:3475 +#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 msgid "Remove instance" msgstr "Rimuovi istanza" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 msgid "Remove Instance of the selected object" msgstr "Rimuovi Istanza dell'oggetto selezionato" @@ -5254,76 +5850,80 @@ msgstr "Rimuovi Istanza dell'oggetto selezionato" msgid "Remove layer range" msgstr "Rimuovi intervallo layer" -#: src/slic3r/GUI/Plater.cpp:3518 +#: src/slic3r/GUI/Plater.cpp:3951 msgid "Remove one instance of the selected object" msgstr "Rimuovi una istanza dell'oggetto selezionato" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "Rimuovi parametro" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Remove point" msgstr "Rimuovi punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Remove point from selection" msgstr "Rimuovi punto dalla selezione" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "Rimuovi i fori selezionati" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 msgid "Remove selected points" msgstr "Rimuovi punti selezionati" -#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 msgid "Remove the selected object" msgstr "Rimuovi l'oggetto selezionato" -#: src/slic3r/GUI/ConfigWizard.cpp:305 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Rimuovi profili utente - reinstalla da zero (sarà prima fatto uno snapshot)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1200 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 msgid "Rename" msgstr "Rinomina" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Object" msgstr "Rinomina oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Sub-object" msgstr "Rinomina sotto-oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Renaming" msgstr "Rinomina" -#: src/libslic3r/PrintConfig.cpp:3125 +#: src/libslic3r/PrintConfig.cpp:3500 msgid "Render with a software renderer" msgstr "Eseguire il rendering con un software redender" -#: src/libslic3r/PrintConfig.cpp:3126 +#: src/libslic3r/PrintConfig.cpp:3501 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Eseguire il rendering con un software redender. Viene caricato il software di rendering MESA integrato al posto del driver OpenGL predefinito ." -#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058 +#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 msgid "Repair" msgstr "Ripara" -#: src/slic3r/Utils/FixModelByWin10.cpp:387 +#: src/slic3r/Utils/FixModelByWin10.cpp:394 msgid "Repaired 3MF file contains more than one object" msgstr "Il file 3MF riparato contiene più di un oggetto" -#: src/slic3r/Utils/FixModelByWin10.cpp:391 +#: src/slic3r/Utils/FixModelByWin10.cpp:398 msgid "Repaired 3MF file contains more than one volume" msgstr "Il file 3MF riparato contiene più di un volume" -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:392 msgid "Repaired 3MF file does not contain any object" msgstr "Il file 3MF riparato non contiene alcun oggetto" -#: src/slic3r/Utils/FixModelByWin10.cpp:389 +#: src/slic3r/Utils/FixModelByWin10.cpp:396 msgid "Repaired 3MF file does not contain any volume" msgstr "Il file 3MF non contiene alcun volume" @@ -5331,176 +5931,189 @@ msgstr "Il file 3MF non contiene alcun volume" msgid "Repairing model by the Netfabb service" msgstr "Riparare modello tramite servizio Netfabb" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "Ripeti l'ultimo slice veloce" -#: src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "Ripeti l'ultimo slice veloce" -#: src/slic3r/GUI/Tab.cpp:3032 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Replace?" msgstr "Sostituire?" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Report an I&ssue" msgstr "&Segnala un problema" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 #, possible-c-format msgid "Report an issue on %s" msgstr "Segnala un problema su %s" -#: src/slic3r/Utils/PresetUpdater.cpp:590 +#: src/slic3r/Utils/PresetUpdater.cpp:713 #, possible-c-format msgid "requires max. %s" msgstr "richiede max. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:588 +#: src/slic3r/Utils/PresetUpdater.cpp:710 #, possible-c-format msgid "requires min. %s" msgstr "richiede min. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:583 +#: src/slic3r/Utils/PresetUpdater.cpp:705 #, possible-c-format msgid "requires min. %s and max. %s" msgstr "richiede min. %s e max. %s" -#: src/slic3r/GUI/FirmwareDialog.cpp:772 +#: src/slic3r/GUI/FirmwareDialog.cpp:810 msgid "Rescan" msgstr "Ri-scansiona" -#: src/slic3r/GUI/Tab.cpp:1879 +#: src/slic3r/GUI/Tab.cpp:1904 msgid "Rescan serial ports" msgstr "Scansiona nuovamente porte seriali" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:318 msgid "Reset" msgstr "Reimposta " -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 msgid "Reset clipping plane" msgstr "Ripristina piano di ritaglio" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 msgid "Reset direction" msgstr "Reset direzione" -#: src/slic3r/GUI/Plater.cpp:2603 +#: src/slic3r/GUI/Plater.cpp:2707 msgid "Reset Project" msgstr "Reimposta Progetto" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:303 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Reimposta rotazione" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:328 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 msgid "Reset Rotation" msgstr "Reimposta rotazione" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:285 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:290 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:397 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:399 msgid "Reset scale" msgstr "Reimposta scala" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:257 msgid "Reset to base" msgstr "Ripristina alla base" -#: src/slic3r/GUI/Tab.cpp:2584 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Reset to Filament Color" msgstr "Ripristina colore Filamento" -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "Risoluzione" -#: src/libslic3r/PrintConfig.cpp:1459 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "Retrai la quantità prima di pulire" -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" msgstr "Retrai al cambio layer" -#: src/slic3r/GUI/Tab.cpp:2268 +#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 +#: src/slic3r/GUI/Tab.cpp:2366 msgid "Retraction" msgstr "Retrazione" -#: src/libslic3r/PrintConfig.cpp:1453 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "Retraction is not triggered when travel moves are shorter than this length." msgstr "La retrazione non è attivata quando i movimenti di spostamento sono più brevi di questa lunghezza." -#: src/libslic3r/PrintConfig.cpp:1474 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "Lunghezza Retrazione" -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "Lunghezza Retrazione (cambio attrezzo)" -#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "Velocità di retrazione" -#: src/slic3r/GUI/Tab.cpp:2284 +#: src/slic3r/GUI/Tab.cpp:2382 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retrazione quando l'attrezzo è disabilitato (impostazioni avanzate per setup multi-estrusore)" -#: src/slic3r/GUI/GUI_Preview.cpp:244 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Retractions" msgstr "Retrazioni" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "Destra" -#: src/slic3r/GUI/GUI_ObjectList.cpp:381 +#: src/slic3r/GUI/GUI_ObjectList.cpp:400 msgid "Right button click the icon to change the object printable property" msgstr "Fare clic con il pulsante destro del mouse sull'icona per modificare le proprietà dell'oggetto stampabile" -#: src/slic3r/GUI/GUI_ObjectList.cpp:279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Right button click the icon to change the object settings" msgstr "Click destro sull'icona per cambiare le impostazioni dell'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:250 +#: src/slic3r/GUI/GUI_ObjectList.cpp:357 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Click destro sull'icona per riparare il file STL tramite Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Right click" msgstr "Click destro" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Right mouse button:" msgstr "Tasto destro mouse:" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "Vista destra" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253 -#: src/libslic3r/PrintConfig.cpp:3062 +#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 +#: src/libslic3r/PrintConfig.cpp:3436 msgid "Rotate" msgstr "Ruota" -#: src/libslic3r/PrintConfig.cpp:3067 +#: src/libslic3r/PrintConfig.cpp:3441 msgid "Rotate around X" msgstr "Ruota attorno ad X" -#: src/libslic3r/PrintConfig.cpp:3072 +#: src/libslic3r/PrintConfig.cpp:3446 msgid "Rotate around Y" msgstr "Ruota attorno ad Y" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "Capovolgi la parte inferiore" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "Ruota la selezione di 45° in senso antiorario" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "Ruota la selezione di 45° in senso orario" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:321 +#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotazione" @@ -5508,118 +6121,124 @@ msgstr "Rotazione" msgid "Rotation (deg)" msgstr "Rotazione (gradi)" -#: src/libslic3r/PrintConfig.cpp:3068 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Rotation angle around the X axis in degrees." msgstr "Angolo di rotazione attorno all'asse X in gradi." -#: src/libslic3r/PrintConfig.cpp:3073 +#: src/libslic3r/PrintConfig.cpp:3447 msgid "Rotation angle around the Y axis in degrees." msgstr "Angolo di rotazione sull'asse Y in gradi." -#: src/libslic3r/PrintConfig.cpp:3063 +#: src/libslic3r/PrintConfig.cpp:3437 msgid "Rotation angle around the Z axis in degrees." msgstr "Angolo di rotazione attorno all'asse Z in gradi." -#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658 +#: src/slic3r/GUI/GUI_App.cpp:797 #, possible-c-format msgid "Run %s" msgstr "Run %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 msgid "Running post-processing scripts" msgstr "Esecuzione script di post produzione" -#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81 -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612 -#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671 -#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252 -#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319 +#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 +#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 +#: src/libslic3r/PrintConfig.cpp:2557 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:466 src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end G-code" msgstr "Invia G-cod&e" -#: src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end to print" msgstr "Manda in stampa" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3401 #, possible-c-format msgid "Save %s as:" msgstr "Salva %s come:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:828 #, possible-c-format msgid "Save %s file as:" msgstr "Salva file %s come:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 msgid "Save changes?" msgstr "Salvare modifiche?" -#: src/libslic3r/PrintConfig.cpp:2997 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Save config file" msgstr "Salva file config" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:927 msgid "Save configuration as:" msgstr "Salva configurazione come:" -#: src/libslic3r/PrintConfig.cpp:2998 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Save configuration to the specified file." msgstr "Salva configurazione nel file specificato." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:133 +#: src/slic3r/GUI/Tab.cpp:135 #, possible-c-format msgid "Save current %s" msgstr "Salva le %s attuali" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "Salva progetto corrente" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "Salvare il file del progetto corrente come" -#: src/slic3r/GUI/Plater.cpp:1938 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Save file as:" msgstr "Salva come:" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save G-code file as:" msgstr "Salva il file G-code come:" -#: src/slic3r/GUI/MainFrame.cpp:757 +#: src/slic3r/GUI/MainFrame.cpp:901 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Salva il file OBJ (meno soggetto a errori di coordinate dell'STL) come:" -#: src/slic3r/GUI/Tab.hpp:417 +#: src/slic3r/GUI/Tab.hpp:442 msgid "Save preset" msgstr "Salva preset" -#: src/slic3r/GUI/MainFrame.cpp:843 +#: src/slic3r/GUI/MainFrame.cpp:982 msgid "Save presets bundle as:" msgstr "Salva il gruppo di preset come:" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "Salv&a Progetto come" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Save project (3MF)" -msgstr "Salva progetto (3MF)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "Salva progetto (3mf)" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "Salva progetto come (3mf)" + +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save SL1 file as:" msgstr "Salva file SL1 come:" -#: src/slic3r/GUI/MainFrame.cpp:692 +#: src/slic3r/GUI/MainFrame.cpp:840 msgid "Save zip file as:" msgstr "Salva file zip come:" @@ -5629,10 +6248,11 @@ msgstr "Salva file zip come:" msgid "Saving mesh into the 3MF container failed." msgstr "Il salvataggio della rete nel contenitore 3MF non è riuscito." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254 -#: src/libslic3r/PrintConfig.cpp:3077 +#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Scale" msgstr "Ridimensiona" @@ -5640,47 +6260,51 @@ msgstr "Ridimensiona" msgid "Scale (%)" msgstr "Ridimensiona (%)" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Fattore di scala" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "Scale selection to fit print volume\nin Gizmo scale" +msgstr "Ridimensiona la selezione per riempire il volume di stampa\nnel Gizmo Ridimensiona" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale the selected object to fit the print volume" msgstr "Ridimensiona l'oggetto selezionato per entrare nel volume di stampa" -#: src/libslic3r/PrintConfig.cpp:3086 +#: src/libslic3r/PrintConfig.cpp:3460 msgid "Scale to Fit" msgstr "Ridimensiona per riempire" -#: src/slic3r/GUI/Selection.cpp:947 +#: src/slic3r/GUI/Selection.cpp:939 msgid "Scale To Fit" msgstr "Ridimensiona per adattare" -#: src/libslic3r/PrintConfig.cpp:3087 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Scale to fit the given volume." msgstr "Ridimensiona per adattare al volume dato." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale to print volume" msgstr "Ridimensiona a volume di stampa" -#: src/libslic3r/PrintConfig.cpp:3078 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Scaling factor or percentage." msgstr "Fattore di scala o percentuale." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Programmazione del caricamento su `%1%`. Vedere finestra -> Coda di caricamento Host di Stampa" -#: src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "Posizione giunzioni" -#: src/libslic3r/PrintConfig.cpp:1572 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "Direzione preferita giunzione" -#: src/libslic3r/PrintConfig.cpp:1581 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "Direzione preferita giunzione jitter" @@ -5688,115 +6312,119 @@ msgstr "Direzione preferita giunzione jitter" msgid "Searching for devices" msgstr "Ricerca dispositivi" -#: src/slic3r/GUI/Plater.cpp:2190 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Searching for optimal orientation" msgstr "Ricerca orientamento ottimale" -#: src/slic3r/GUI/GUI_App.cpp:1100 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Seleziona un file gcode:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 -msgid "Select All objects" -msgstr "Seleziona Tutti gli oggetti" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" +msgstr "Seleziona tutti gli oggetti" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 msgid "Select all points" msgstr "Seleziona tutti i punti" -#: src/slic3r/GUI/ConfigWizard.cpp:1089 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "Select all standard printers" msgstr "Seleziona tutte le stampanti standard" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 msgid "Select by rectangle" msgstr "Seleziona con rettangolo" -#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870 +#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 msgid "Select configuration to load:" msgstr "Seleziona configurazione da caricare:" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:82 msgid "Select coordinate space, in which the transformation will be performed." msgstr "Seleziona le coordinate spaziali in cui verrà eseguita la trasformazione." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2834 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 msgid "Select extruder number for selected objects and/or parts" msgstr "Seleziona il numero estrusore per gli oggetti selezionati e/o parti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2847 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 msgid "Select extruder number:" msgstr "Seleziona l'estrusore numero:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 msgid "Select Filament Settings Tab" msgstr "Attiva Scheda impostazioni di Filamento" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1251 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 msgid "Select new extruder for the object/part" msgstr "Seleziona il nuovo estrusore per l'oggetto/parte" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "Select Plater Tab" msgstr "Seleziona scheda piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Select Print Settings Tab" msgstr "Attiva Scheda Impostazioni di Stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Select Printer Settings Tab" msgstr "Attiva Scheda Impostazioni Stampante" -#: src/slic3r/GUI/GUI_ObjectList.cpp:917 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 msgid "Select showing settings" msgstr "Seleziona le impostazioni mostrate" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "Seleziona la lingua" -#: src/slic3r/GUI/Tab.cpp:57 +#: src/slic3r/GUI/Tab.cpp:59 msgid "Select the print profiles this profile is compatible with." msgstr "Seleziona i profili di stampa compatibili con questo profilo." -#: src/slic3r/GUI/Tab.cpp:51 +#: src/slic3r/GUI/Tab.cpp:53 msgid "Select the printers this profile is compatible with." msgstr "Seleziona le stampanti compatibili con questo profilo." -#: src/slic3r/GUI/MainFrame.cpp:744 +#: src/slic3r/GUI/MainFrame.cpp:891 msgid "Select the STL file to repair:" msgstr "Seleziona il file STL da riparare:" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:241 msgid "Select toolbar icon size in respect to the default one." msgstr "Seleziona la dimensione delle icone della barra degli strumenti rispetto a quella predefinita." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2545 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Select type of part" msgstr "Seleziona il tipo di parte" -#: src/slic3r/GUI/Plater.cpp:606 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Select what kind of pad do you need" msgstr "Seleziona il tipo di Pad richiesto" -#: src/slic3r/GUI/Plater.cpp:421 +#: src/slic3r/GUI/Plater.cpp:495 msgid "Select what kind of support do you need" msgstr "Seleziona il tipo di supporto richiesto" +#: src/slic3r/GUI/DoubleSlider.cpp:1890 +msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" +msgstr "Seleziona SI se vuoi cancellare tutti i cambi attrezzo salvati,\nNO se vuoi che tutti i cambi attrezzo passino a cambi colore,\no ANNULLA per lasciarlo invariato" + #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" msgstr "Selezione-Aggiungi" -#: src/slic3r/GUI/Selection.cpp:384 +#: src/slic3r/GUI/Selection.cpp:376 msgid "Selection-Add All" msgstr "Selezione-Aggiungi tutti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 msgid "Selection-Add from list" msgstr "Aggiungi selezione da elenco" -#: src/slic3r/GUI/GLCanvas3D.cpp:5623 +#: src/slic3r/GUI/GLCanvas3D.cpp:6659 msgid "Selection-Add from rectangle" msgstr "Aggiungi Selezione da rettangolo" @@ -5812,15 +6440,15 @@ msgstr "Selezione-Aggiungi Oggetto" msgid "Selection-Remove" msgstr "Selezione-Rimuovi" -#: src/slic3r/GUI/Selection.cpp:410 +#: src/slic3r/GUI/Selection.cpp:402 msgid "Selection-Remove All" msgstr "Selezione-Rimuovi tutti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 msgid "Selection-Remove from list" msgstr "Rimozione Selezione dall'elenco" -#: src/slic3r/GUI/GLCanvas3D.cpp:5642 +#: src/slic3r/GUI/GLCanvas3D.cpp:6678 msgid "Selection-Remove from rectangle" msgstr "Rimuovi selezione da rettangolo" @@ -5832,11 +6460,11 @@ msgstr "Selezione-Rimuovi istanza" msgid "Selection-Remove Object" msgstr "Selezione-Rimuovi oggetto" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "Seleziona tutti gli oggetti" -#: src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:5556 msgid "Send G-code" msgstr "Invia G-code" @@ -5844,27 +6472,31 @@ msgstr "Invia G-code" msgid "Send G-Code to printer host" msgstr "Invia G-code all’host stampante" -#: src/slic3r/GUI/MainFrame.cpp:466 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "Manda alla stampante il piano corrente come G-Code" -#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 msgid "Send to printer" msgstr "Manda alla stampante" -#: src/slic3r/GUI/Tab.cpp:1169 +#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +msgid "Seq." +msgstr "Seq." + +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Sequential printing" msgstr "Stampa sequenziale" -#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591 +#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Porta seriale" -#: src/libslic3r/PrintConfig.cpp:1599 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "Velocità porta seriale" -#: src/slic3r/GUI/FirmwareDialog.cpp:769 +#: src/slic3r/GUI/FirmwareDialog.cpp:807 msgid "Serial port:" msgstr "Porta seriale:" @@ -5872,17 +6504,17 @@ msgstr "Porta seriale:" msgid "Service name" msgstr "Nome servizio" -#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025 -#: src/slic3r/GUI/Tab.cpp:3008 +#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 +#: src/slic3r/GUI/Tab.cpp:3160 msgid "Set" msgstr "Imposta" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1192 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Object" msgstr "Imposta come Oggetto Separato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Objects" msgstr "Imposta come Oggetti Separati" @@ -5890,7 +6522,7 @@ msgstr "Imposta come Oggetti Separati" msgid "Set extruder change for every" msgstr "Imposta il cambio estrusore per ogni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2833 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 msgid "Set extruder for selected items" msgstr "Imposta estrusore per gli elementi selezionati" @@ -5898,6 +6530,10 @@ msgstr "Imposta estrusore per gli elementi selezionati" msgid "Set extruder sequence" msgstr "Imposta sequenza estrusore" +#: src/slic3r/GUI/DoubleSlider.cpp:1504 +msgid "Set extruder sequence for the entire print" +msgstr "Imposta sequenza estrusore per l'intera stampa" + #: src/slic3r/GUI/wxExtensions.cpp:3080 msgid "Set extruder sequence for whole print" msgstr "Imposta la sequenza estrusore per l'intera stampa" @@ -5906,667 +6542,695 @@ msgstr "Imposta la sequenza estrusore per l'intera stampa" msgid "Set extruder(tool) sequence" msgstr "Imposta sequenza estrusore(attrezzo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Set lower thumb to current slider thumb" msgstr "Imposta il cursore inferiore alla barra di scorrimento attuale" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:245 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:297 msgid "Set Mirror" msgstr "Imposta specchio" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Set number of instances" msgstr "Imposta numero di istanze" -#: src/slic3r/GUI/Plater.cpp:4163 +#: src/slic3r/GUI/Plater.cpp:4771 #, possible-c-format msgid "Set numbers of copies to %d" msgstr "Imposta il numero di copie a %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:746 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" msgstr "Imposta orientamento" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:715 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:750 msgid "Set Position" msgstr "Imposta posizione" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Imposta stampabile" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" msgstr "Imposta Istanza Stampabile" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:811 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:846 msgid "Set Scale" msgstr "Imposta scala" -#: src/libslic3r/PrintConfig.cpp:2228 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Imposta l'orientamento effettivo del display LCD nella stampante SLA. La modalità Ritratto invertirà i valori di altezza e larghezza del display, e le immagini di output saranno ruotate di 90 gradi." -#: src/slic3r/GUI/ConfigWizard.cpp:527 +#: src/slic3r/GUI/ConfigWizard.cpp:933 msgid "Set the shape of your printer's bed." msgstr "Imposta la dimensione del piano della stampante." -#: src/libslic3r/PrintConfig.cpp:524 +#: src/libslic3r/PrintConfig.cpp:556 msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height." msgstr "Imposta questo valore diverso da zero per permettere la larghezza estrusione manuale. Se lasciato a zero, Slic3r ricava la larghezza d'estrusione dal diametro dell'ugello (vedi il suggerimento per la larghezza di estrusione perimetro,larghezza estrusione riempimento ecc.). Se espresso in percentuale (ad esempio 230%), sarà calcolato sull'altezza del layer." -#: src/libslic3r/PrintConfig.cpp:417 +#: src/libslic3r/PrintConfig.cpp:448 msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height." msgstr "Imposta questo valore diverso da zero per impostare una larghezza d'estrusione manuale per i perimetri esterni. Se lasciato a zero, verrà utilizzata la larghezza predefinita se impostata; diversamente verrà utilizzato il valore 1.125 x il diametro dell'ugello. Se espresso in percentuale (per esempio 200%), sarà calcolato sull'altezza del layer." -#: src/libslic3r/PrintConfig.cpp:831 +#: src/libslic3r/PrintConfig.cpp:878 msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width." msgstr "Imposta questo valore diverso da zero per impostare la larghezza di estrusione manuale per il primo layer. Puoi usarlo per forzare un'estrusione più grossa per avere un'adesione migliore. Se espresso in percentuale (per esempio 120%) sarà calcolato sull'altezza del primo layer. Se impostato a zero, sarà utilizzata la larghezza di estrusione predefinita." -#: src/libslic3r/PrintConfig.cpp:1689 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Imposta questo valore diverso da zero per impostare una larghezza d'estrusione manuale per il riempimento delle superfici solide. Se lasciato a zero, verrà usata la larghezza d'estrusione predefinita, altrimenti verrà utilizzato il valore 1.125 x il diametro dell'ugello. Se espresso in percentuale (per esempio 90%) verrà calcolato sull'altezza del layer." -#: src/libslic3r/PrintConfig.cpp:2019 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Imposta questo valore diverso da zero per impostare una larghezza d'estrusione manuale per il riempimento delle superfici superiori. Dovresti scegliere un'estrusione più sottile per riempire gli spazi stretti ed ottenere una finitura più liscia. Se lasciato a zero, verrà usata la larghezza d'estrusione predefinita, altrimenti verrà utilizzato il valore 1.125 x il diametro dell'ugello. Se espresso in percentuale (per esempio 90%) verrà calcolato sull'altezza del layer." -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Imposta questo valore diverso da zero per impostare una larghezza d'estrusione manuale per il riempimento. Se lasciato a zero, verrà usata la larghezza d'estrusione predefinita, altrimenti verrà utilizzato il valore 1.125 x il diametro dell'ugello. Dovresti usare un estrusione più grossa per velocizzare la stampa del riempimento e rendere le tue parti più robuste. Se espresso in percentuale (per esempio 90%) verrà calcolato sull'altezza del layer." -#: src/libslic3r/PrintConfig.cpp:1350 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height." msgstr "Imposta questo valore diverso da zero per impostare una larghezza d'estrusione manuale per i perimetri. Dovresti scegliere un'estrusione più sottile per ottenere superfici più precise. Se lasciato a zero, verrà usata la larghezza d'estrusione predefinita, altrimenti verrà utilizzato il valore 1.125 x il diametro dell'ugello. Se espresso in percentuale (per esempio 200%) verrà calcolato sull'altezza del layer." -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Imposta questo valore diverso da zero per impostare una larghezza d'estrusione manuale per il supporto. Se lasciato a zero, verrà usata la larghezza d'estrusione predefinita., altrimenti verrà utilizzato il valore del diametro dell'ugello. Se espresso in percentuale (per esempio 90%) verrà calcolato sull'altezza del layer." -#: src/libslic3r/PrintConfig.cpp:480 +#: src/libslic3r/PrintConfig.cpp:512 msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater." msgstr "Imposta il raggio di spazio attorno all'estrusore. Se l'estrusore non è centrato, scegli il valore più grande per sicurezza. Questa impostazione è usata per controllare le collisioni e per mostrare l'anteprima grafica nel piano." -#: src/libslic3r/PrintConfig.cpp:65 +#: src/libslic3r/PrintConfig.cpp:81 msgid "Set this to the maximum height that can be reached by your extruder while printing." msgstr "Impostate alla massima altezza che può essere raggiunta dal vostro estrusore durante la stampa." -#: src/libslic3r/PrintConfig.cpp:469 +#: src/libslic3r/PrintConfig.cpp:501 msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Imposta la distanza verticale tra la punta dell'ugello e (solitamente) le barre del carrello X. In altre parole, questa è l'altezza dello spazio cilindrico attorno l'estrusore, e indica la profondità massima che l'estrusore può affacciarsi prima di sbattere con altri oggetti stampati." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Imposta non stampabile" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" msgstr "Imposta Istanza non stampabile" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Set upper thumb to current slider thumb" msgstr "Imposta il cursore superiore alla barra di scorrimento attuale" -#: src/slic3r/GUI/BedShapeDialog.cpp:143 +#: src/libslic3r/PrintConfig.cpp:3494 +msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." +msgstr "Imposta la sensibilità di log. 0:fatale, 1:errore, 2:avviso, 3:informazioni, 4:debug, 5:traccia\nPer esempio. loglevel=2 registra messaggi fatali, di errore e di avviso." + +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Impostazioni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Settings for height range" msgstr "Impostazioni per intervallo altezza" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "Vuoi che regoli queste impostazioni per i supporti?" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "Vuoi che modifichi queste impostazioni per poter attivare il Vaso a Spirale?" -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "Vuoi che modifichi queste impostazioni per poter attivare la Torre di Spurgo?" -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "Devo passare alla trama di riempimento rettilinea?" -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Devo sincronizzare i supporti layer in modo da poter attivare la Torre di Spurgo?" -#: src/slic3r/GUI/BedShapeDialog.cpp:60 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 msgid "Shape" msgstr "Forma" -#: src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/GUI_Preview.cpp:258 msgid "Shells" msgstr "Gusci" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:254 msgid "Shift + Left mouse button:" msgstr "Shift + Tasto sinistro mouse:" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:260 msgid "Shift + Right mouse button:" msgstr "Shift + Tasto destro mouse:" -#: src/slic3r/GUI/GUI_Preview.cpp:221 +#: src/slic3r/GUI/GUI_Preview.cpp:233 msgid "Show" msgstr "Mostra" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show &Configuration Folder" msgstr "Mostra Cartella &Configurazione" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show &labels" +msgstr "Mostra etichette (&l)" + +#: src/slic3r/GUI/MainFrame.cpp:707 msgid "Show about dialog" msgstr "Mostra la finestra di informazioni" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show advanced settings" msgstr "Mostra impostazioni avanzate" -#: src/slic3r/GUI/PrintHostDialogs.cpp:158 +#: src/slic3r/GUI/PrintHostDialogs.cpp:159 msgid "Show error message" msgstr "Mostra messaggio d'errore" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "Show incompatible print and filament presets" msgstr "Mostra preset di stampa e di filamento incompatibili" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Show keyboard shortcuts list" msgstr "Mostra elenco scorciatoie di tastiera" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show object/instance labels in 3D scene" +msgstr "Mostra nella scena 3D le etichette dell'oggetto/istanza" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show simplified settings" msgstr "Mostra impostazioni semplificate" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "Mostra supporti" + +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show system information" msgstr "Mostra informazioni di sistema" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "Mostra la Vista editing 3D" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "Mostra anteprima slice 3D" -#: src/slic3r/GUI/MainFrame.cpp:480 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "Mostra impostazioni filamento" -#: src/libslic3r/PrintConfig.cpp:2983 +#: src/libslic3r/PrintConfig.cpp:3357 msgid "Show the full list of print/G-code configuration options." msgstr "Mostra l'elenco completo delle opzioni di configurazione stampa/G-code." -#: src/libslic3r/PrintConfig.cpp:2988 +#: src/libslic3r/PrintConfig.cpp:3362 msgid "Show the full list of SLA print configuration options." msgstr "Mostra la lista completa delle opzioni di configurazione di stampa SLA." -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:710 msgid "Show the list of the keyboard shortcuts" msgstr "Mostra l'elenco delle scorciatoie di tastiera" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" msgstr "Mostra il piano" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "Mostra impostazioni di stampa" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "Mostra impostazioni della stampante" -#: src/libslic3r/PrintConfig.cpp:2977 +#: src/libslic3r/PrintConfig.cpp:3351 msgid "Show this help." msgstr "Mostra questo aiuto." -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show user configuration folder (datadir)" msgstr "Mostra cartella configurazione utente (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 msgid "Show/Hide (L)egend" msgstr "Mostra/Nascondi (L)egenda" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Mostra/Nascondi finestra delle impostazioni dei dispositivi 3Dconnexion" -#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "Mostra/Nascondi Legenda" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Show/Hide object/instance labels" +msgstr "Mostra/Nascondi etichette dell'oggetto/istanza" + +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "Semplice" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Simple mode" msgstr "Modalità Semplice" -#: src/slic3r/GUI/GUI_App.cpp:674 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "Modalità di visualizzazione semplice" -#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239 +#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 msgid "Single extruder MM setup" msgstr "Setup Estrusore singolo MM" -#: src/libslic3r/PrintConfig.cpp:1767 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" msgstr "Estrusore singolo Multi Material" -#: src/slic3r/GUI/Tab.cpp:2023 +#: src/slic3r/GUI/Tab.cpp:1865 msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" msgstr "Materiale multiplo a singolo estrusore selezionato,\ntutti gli estrusori devono avere lo stesso diametro.\nVuoi modificare il diametro di tutti gli estrusori al valore del diametro dell'ugello del primo estrusore?" -#: src/slic3r/GUI/Tab.cpp:2240 +#: src/slic3r/GUI/Tab.cpp:2303 msgid "Single extruder multimaterial parameters" msgstr "Parametri estrusore singolo materiale multiplo" -#: src/slic3r/GUI/BedShapeDialog.cpp:72 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137 -#: src/slic3r/GUI/Tab.cpp:2257 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 +#: src/slic3r/GUI/Tab.cpp:2320 msgid "Size" msgstr "Dimensioni" -#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014 +#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 msgid "Size and coordinates" msgstr "Dimensione e coordinate" -#: src/slic3r/GUI/BedShapeDialog.cpp:73 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." msgstr "Dimensioni X e Y del piano rettangolare." -#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050 -#: src/libslic3r/GCode/PreviewData.cpp:171 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Skirt" -#: src/slic3r/GUI/Tab.cpp:1049 +#: src/slic3r/GUI/Tab.cpp:1112 msgid "Skirt and brim" msgstr "Skirt e brim" -#: src/libslic3r/PrintConfig.cpp:1617 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "Altezza skirt" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "Giri skirt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 msgid "SLA gizmo keyboard shortcuts" msgstr "Scorciatoie di tastiera gizmo SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1150 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 msgid "SLA gizmo turned off" msgstr "Gizmo SLA disattivato" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1115 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 msgid "SLA gizmo turned on" msgstr "Gizmo SLA attivato" -#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277 +#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 msgid "SLA material" msgstr "Materiale SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Material Profiles Selection" msgstr "Selezione Profili Materiale SLA" -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 msgid "SLA material type" msgstr "Tipo materiale SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Materials" msgstr "Materiali SLA" -#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276 +#: src/slic3r/GUI/Preset.cpp:1473 msgid "SLA print" msgstr "Stampa SLA" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2569 msgid "SLA print material notes" msgstr "Note sul materiale di stampa SLA" -#: src/slic3r/GUI/Plater.cpp:690 +#: src/slic3r/GUI/Plater.cpp:814 msgid "SLA print settings" msgstr "Impostazioni di stampa SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 msgid "SLA Support Points" msgstr "Punti di Supporto SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:722 +#: src/slic3r/GUI/GLCanvas3D.cpp:692 msgid "SLA supports outside the print area were detected" msgstr "Sono stati rilevati supporti SLA al di fuori dell'area di stampa" -#: src/slic3r/GUI/ConfigWizard.cpp:1493 +#: src/slic3r/GUI/ConfigWizard.cpp:1533 msgid "SLA Technology Printers" msgstr "Stampanti con tecnologia SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Slab" msgstr "Lastra" -#: src/libslic3r/PrintConfig.cpp:1268 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host." msgstr "Slic3r può caricare il file G-code ad un host stampante. Questo campo deve contenere il tipo di host." -#: src/libslic3r/PrintConfig.cpp:89 +#: src/libslic3r/PrintConfig.cpp:105 msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." msgstr "Slic3r può caricare i file G-code su un host di stampa. Questo campo deve contenere la chiave API o la password richiesta per l'autenticazione." -#: src/libslic3r/PrintConfig.cpp:82 +#: src/libslic3r/PrintConfig.cpp:98 msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance." msgstr "Slic3r può caricare i file G-code su un host della stampante. Questo campo dovrebbe contenere il nome host, l'indirizzo IP o URL dell'istanza dell'host della stampante." -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r non rallenterà la velocità al di sotto di questa." -#: src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Slice" msgstr "Processa" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "Processa un file in G-code" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "Processa un file in G-code, salva come" -#: src/libslic3r/PrintConfig.cpp:71 +#: src/libslic3r/PrintConfig.cpp:87 msgid "Slice gap closing radius" msgstr "Gap closing radius per slicing" -#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3618 +#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5140 msgid "Slice now" msgstr "Processa ora" -#: src/libslic3r/PrintConfig.cpp:2944 +#: src/libslic3r/PrintConfig.cpp:3318 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Effettua lo slice del modello ed esporta i layer di stampa SLA come PNG." -#: src/libslic3r/PrintConfig.cpp:2965 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Slice the model and export toolpaths as G-code." msgstr "Effettua slice del modello ed esporta il percorso come G-code." -#: src/libslic3r/PrintConfig.cpp:2971 +#: src/libslic3r/PrintConfig.cpp:3345 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Effettua lo slice del modello come FFF o SLA in base al valore di configurazione di printer_technology." -#: src/slic3r/GUI/Plater.cpp:193 +#: src/slic3r/GUI/Plater.cpp:218 msgid "Sliced Info" msgstr "Informazioni processo" -#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159 -#: src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3647 msgid "Slicing" msgstr "Slicing" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 msgid "Slicing complete" msgstr "Slicing completato" -#: src/libslic3r/SLAPrint.cpp:1459 +#: src/libslic3r/SLAPrint.cpp:760 msgid "Slicing done" msgstr "Slicing completato" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:876 msgid "Slicing Done!" msgstr "Slicing Completato!" -#: src/libslic3r/SLAPrint.cpp:759 +#: src/libslic3r/SLAPrintSteps.cpp:209 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Lo slicing è stato interrotto a causa di un errore interno: Indice di slice inconsistente." -#: src/libslic3r/SLAPrint.cpp:55 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Slicing model" msgstr "Slice modello" -#: src/libslic3r/SLAPrint.cpp:59 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing supports" msgstr "Supporti di Slicing" -#: src/libslic3r/PrintConfig.cpp:2249 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "Lento" -#: src/libslic3r/PrintConfig.cpp:1635 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "Rallenta se il tempo di stampa del layer è inferiore" -#: src/libslic3r/PrintConfig.cpp:2250 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "Inclinazione lenta" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" msgstr "Perimetri piccoli" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:293 msgid "Smooth" msgstr "Leviga" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:263 msgid "Smoothing" msgstr "Levigatura" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "Nome istantanea" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Software &Releases" msgstr "Ve&rsioni Software" -#: src/slic3r/GUI/PresetHints.cpp:181 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "riempimento solido" -#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687 -#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Riempimento solido" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "Riempimento solido ogni" -#: src/libslic3r/PrintConfig.cpp:1667 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "Estrusore riempimento solido" -#: src/libslic3r/PrintConfig.cpp:1658 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" msgstr "Area soglia riempimento solido" -#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Layer solidi" -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "Materiale solubile" -#: src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." msgstr "Il materiale solubile è comunemente usato per un supporto solubile." -#: src/libslic3r/PrintConfig.cpp:914 +#: src/libslic3r/PrintConfig.cpp:937 msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Alcuni comandi G/M-code, incluso il controllo di temperatura e altri, non sono universali. Imposta questa opzione nel firmware della tua stampante per ottenere un output compatibile. La versione \"No extrusion\" evita che PrusaSlicer non esporti alcun valore." +#: src/slic3r/GUI/GLCanvas3D.cpp:693 +msgid "Some objects are not visible" +msgstr "Alcuni oggetti non sono visibili" + #: src/slic3r/GUI/GLCanvas3D.cpp:721 msgid "Some objects are not visible when editing supports" msgstr "Alcuni oggetti non sono visibili nel modificare i supporti" -#: src/libslic3r/Print.cpp:1162 +#: src/libslic3r/Print.cpp:1222 msgid "Some objects are too close; your extruder will collide with them." msgstr "Alcuni oggetti sono troppo vicini; l'estrusore li colpirà." -#: src/libslic3r/Print.cpp:1177 +#: src/libslic3r/Print.cpp:1224 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Alcuni oggetti sono troppo alti e non possono essere stampati senza essere colpiti dall'estrusore." -#: src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2815 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Per alcuni oggetti possono bastare pochi piccoli pad invece che un singolo pad grande. Questo parametro definisce quanto può essere lontano il centro di due pad. Se questi sono più vicini, si fonderanno in un unico pad." -#: src/libslic3r/PrintConfig.cpp:2086 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default." msgstr "Alcune stampanti o setup di stampanti possono riscontrare difficoltà a stampare con l'altezza layer variabile. Attivato come predefinito." -#: src/libslic3r/PrintConfig.cpp:1897 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." msgstr "Spaziatura tra le linee di interfaccia. Imposta a zero per ottenere un'interfaccia solida." -#: src/libslic3r/PrintConfig.cpp:1931 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." msgstr "Spaziatura tra le linee del materiale di supporto." -#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512 -#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084 -#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598 -#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698 -#: src/libslic3r/PrintConfig.cpp:2029 +#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 +#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "Velocità" -#: src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "Velocità (baud) USB/Seriale per la connessione stampante." -#: src/libslic3r/GCode/PreviewData.cpp:400 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "Velocità (mm/s)" -#: src/libslic3r/PrintConfig.cpp:872 +#: src/libslic3r/PrintConfig.cpp:920 msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Velocità per il riempimento degli spazi stretti utilizzando brevi movimenti a zig-zag. Mantieni questa velocità ragionevolmente bassa per evitare problemi di oscillazione e risonanza. Imposta a zero per disabilitare il riempimento degli spazi." -#: src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Tab.cpp:1160 msgid "Speed for non-print moves" msgstr "Velocità per i movimenti non di stampa" -#: src/libslic3r/PrintConfig.cpp:1362 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Velocità per i perimetri (contorni, conosciuti anche come gusci verticali). Imposta a zero per automatizzare." -#: src/slic3r/GUI/Tab.cpp:1085 +#: src/slic3r/GUI/Tab.cpp:1148 msgid "Speed for print moves" msgstr "Velocità per i movimenti di stampa" -#: src/libslic3r/PrintConfig.cpp:200 +#: src/libslic3r/PrintConfig.cpp:226 msgid "Speed for printing bridges." msgstr "Velocità di stampa Bridge." -#: src/libslic3r/PrintConfig.cpp:1699 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto." msgstr "La velocità per le regioni di stampa solide (superiore/inferiore/gusci interni orizzontali). Questo valore può essere espresso in percentuale (per esempio: 80%) sulla velocità del riempimento predefinita qui sopra. Imposta a zero per automatizzare." -#: src/libslic3r/PrintConfig.cpp:1906 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed." msgstr "Velocità per la stampa dei layer di interfaccia del materiale di supporto. Se espresso in percentuale (per esempio 50%) sarà calcolato sulla velocità del materiale di supporto." -#: src/libslic3r/PrintConfig.cpp:1940 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." msgstr "Velocità per la stampa del materiale di supporto." -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." msgstr "Velocità per la stampa del riempimento interno. Imposta a zero per auto." -#: src/libslic3r/PrintConfig.cpp:2030 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto." msgstr "Velocità di stampa dei layer solidi superiori (si applica solamente al layer solido esterno più in alto e non ai layer solidi interni). Rallenta questa impostazione per ottenere una superficie più rifinita. Questo valore può essere espresso in percentuale (per esempio: 80%) della velocità del riempimento solido qui sopra. Imposta a zero per auto." -#: src/libslic3r/PrintConfig.cpp:2052 +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "Velocità per movimenti di spostamento (salti tra punti di estrusione distanti)." -#: src/libslic3r/PrintConfig.cpp:627 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "Velocità del primo movimento di raffreddamento" -#: src/libslic3r/PrintConfig.cpp:646 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "Velocità dell'ultimo movimento di raffreddamento" -#: src/libslic3r/PrintConfig.cpp:585 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "Velocità utilizzata all'inizio della fase di caricamento." -#: src/libslic3r/PrintConfig.cpp:577 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "Velocità utilizzata per caricare il filamento sulla torre di spurgo." -#: src/libslic3r/PrintConfig.cpp:593 +#: src/libslic3r/PrintConfig.cpp:624 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Velocità usata per scaricare il filamento sulla wipe tower (non influisce sulla parte iniziale dello scaricamento dopo il ramming)." -#: src/libslic3r/PrintConfig.cpp:602 +#: src/libslic3r/PrintConfig.cpp:633 msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Velocità utilizzata per scaricare la punta del filamento immediatamente dopo il ramming." -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Speed:" msgstr "Velocità:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Sphere" msgstr "Sfera" -#: src/libslic3r/PrintConfig.cpp:1717 +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "Vaso a spirale" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "Vaso a spirale" -#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988 -#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082 +#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 msgid "Split" msgstr "Dividi" -#: src/slic3r/GUI/Plater.cpp:2971 +#: src/slic3r/GUI/Plater.cpp:4028 msgid "Split the selected object" msgstr "Dividi l'oggetto selezionato" -#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988 +#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 msgid "Split the selected object into individual objects" msgstr "Dividi l'oggetto selezionato in singoli oggetti" -#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008 +#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 msgid "Split the selected object into individual sub-parts" msgstr "Dividi l'oggetto selezionato in singole sotto parti" -#: src/slic3r/GUI/GLCanvas3D.cpp:3490 +#: src/slic3r/GUI/GLCanvas3D.cpp:4599 msgid "Split to objects" msgstr "Separa in oggetti" -#: src/slic3r/GUI/Plater.cpp:2796 +#: src/slic3r/GUI/Plater.cpp:2965 msgid "Split to Objects" msgstr "Separa in oggetti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1110 +#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "Dividi in parti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1904 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 msgid "Split to Parts" msgstr "Dividi in parti" @@ -6574,11 +7238,11 @@ msgstr "Dividi in parti" msgid "Standard" msgstr "Standard" -#: src/libslic3r/PrintConfig.cpp:799 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "Stelle" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "Inizia un nuovo progetto" @@ -6586,12 +7250,12 @@ msgstr "Inizia un nuovo progetto" msgid "Start at height" msgstr "Inizia all'altezza" -#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949 -#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "G-code iniziale" -#: src/slic3r/GUI/MainFrame.cpp:403 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "Avvia un nuovo processo di slicing" @@ -6599,23 +7263,23 @@ msgstr "Avvia un nuovo processo di slicing" msgid "Start printing after upload" msgstr "Avvia la stampa dopo il caricamento" -#: src/slic3r/GUI/PrintHostDialogs.cpp:150 +#: src/slic3r/GUI/PrintHostDialogs.cpp:151 msgid "Status" msgstr "Stato" -#: src/slic3r/GUI/FirmwareDialog.cpp:782 +#: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Status:" msgstr "Stato:" -#: src/slic3r/GUI/Tab.cpp:2158 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Stealth" msgstr "Silenzioso" -#: src/slic3r/GUI/Plater.cpp:1084 +#: src/slic3r/GUI/Plater.cpp:1267 msgid "stealth mode" msgstr "modalità silenziosa" -#: src/slic3r/GUI/Plater.cpp:3545 +#: src/slic3r/GUI/Plater.cpp:5001 #, possible-c-format msgid "STL file exported to %s" msgstr "File STL esportato in %s" @@ -6624,736 +7288,803 @@ msgstr "File STL esportato in %s" msgid "Stop at height" msgstr "Ferma all'altezza" -#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 msgid "Success!" msgstr "Successo!" -#: src/slic3r/GUI/PresetHints.cpp:200 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "supporto" -#: src/libslic3r/PrintConfig.cpp:2441 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Support base diameter" msgstr "Diametro della base del supporto" -#: src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2693 msgid "Support base height" msgstr "Altezza della base del supporto" -#: src/libslic3r/PrintConfig.cpp:2566 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base safety distance" msgstr "Distanza di sicurezza base supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Blocker" msgstr "Blocco Supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Enforcer" msgstr "Rinforzo Supporto" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "Generatore Supporti" -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3593 msgid "Support head" msgstr "Testa supporto" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2611 msgid "Support head front diameter" msgstr "Diametro anteriore della testa del supporto" -#: src/libslic3r/PrintConfig.cpp:2378 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head penetration" msgstr "Inserimento testa del supporto" -#: src/libslic3r/PrintConfig.cpp:2387 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head width" msgstr "Larghezza testa del supporto" -#: src/slic3r/GUI/PresetHints.cpp:210 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "interfaccia supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70 -#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236 -#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060 -#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432 -#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786 -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806 -#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887 -#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905 -#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930 -#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939 -#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956 -#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" msgstr "Materiale di supporto" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904 -#: src/libslic3r/GCode/PreviewData.cpp:173 +#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Interfaccia materiale di supporto" -#: src/libslic3r/PrintConfig.cpp:1957 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)." msgstr "Il materiale di supporto non sarà generato per sporgenze con angolo di inclinazione (90°=verticale) superiore al limite impostato. In altre parole, questo valore rappresenta l'inclinazione orizzontale massima (misurata dal piano orizzontale) che puoi stampare senza materiale di supporto. Imposta a zero per un rilevamento automatico (raccomandato)." -#: src/libslic3r/PrintConfig.cpp:1877 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" msgstr "Estrusore materiale di supporto/intefaccia raft" -#: src/libslic3r/PrintConfig.cpp:1851 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" msgstr "Estrusore materiale di supporto/raft/skirt" -#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815 -#: src/libslic3r/PrintConfig.cpp:2423 +#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2665 msgid "Support on build plate only" msgstr "Supporti solo dal piano di stampa" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:991 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 msgid "Support parameter change" msgstr "Modifica parametro del Supporto" -#: src/slic3r/GUI/Tab.cpp:3406 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support pillar" msgstr "Pilastro di supporto" -#: src/libslic3r/PrintConfig.cpp:2407 +#: src/libslic3r/PrintConfig.cpp:2649 msgid "Support pillar connection mode" msgstr "Modalità di connessione dei pilastri di supporto" -#: src/libslic3r/PrintConfig.cpp:2397 +#: src/libslic3r/PrintConfig.cpp:2639 msgid "Support pillar diameter" msgstr "Diametro pilastro di supporto" -#: src/libslic3r/PrintConfig.cpp:2499 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "Support points density" msgstr "Densità punti di supporto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 msgid "Support points edit" msgstr "Edita punti di supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519 -#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397 -#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363 -#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379 -#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398 -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431 -#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490 -#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508 +#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 +#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 +#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 +#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 +#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 +#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 +#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 +#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 +#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 +#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Supports" msgstr "Supporti" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "supports and pad" msgstr "supporti e pad" -#: src/libslic3r/PrintConfig.cpp:1043 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "Supporto Tempo residuo" -#: src/libslic3r/PrintConfig.cpp:1053 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "Supporto modalità silenziosa" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 +#: src/slic3r/GUI/ConfigManipulation.cpp:159 msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" msgstr "I supporti funzionano meglio se le la seguente funzione è attivata:\n- Rileva perimetri ponte" -#: src/slic3r/GUI/Preferences.cpp:76 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets" msgstr "Nascondi i preset \" - default - \"" -#: src/slic3r/GUI/Preferences.cpp:78 +#: src/slic3r/GUI/Preferences.cpp:91 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Nascondi i preset \" - default - \" nelle selezioni Stampa / Filamento / Stampante non appena sono disponibili altri preset validi." -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/DoubleSlider.cpp:1112 +msgid "Switch code to Change extruder" +msgstr "Passa il codice a Cambio estrusore" + +#: src/slic3r/GUI/DoubleSlider.cpp:1147 +msgid "Switch code to Color change (%1%) for:" +msgstr "Passa il codice a Cambio colore (%1%) per:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 msgid "Switch to 3D" msgstr "Passa a 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 msgid "Switch to editing mode" msgstr "Passa alla modalità modifica" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 msgid "Switch to Preview" msgstr "Passa ad Anteprima" -#: src/slic3r/GUI/wxExtensions.cpp:2412 +#: src/slic3r/GUI/wxExtensions.cpp:703 #, possible-c-format msgid "Switch to the %s mode" msgstr "Passa alla modalità %s" -#: src/slic3r/GUI/GUI_App.cpp:752 +#: src/slic3r/GUI/GUI_App.cpp:882 msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." msgstr "Il cambio della lingua necessita il riavvio dell'applicazione.\nVerrà cancellato il contenuto del piano." -#: src/slic3r/GUI/WipeTowerDialog.cpp:327 +#: src/slic3r/GUI/WipeTowerDialog.cpp:365 msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" msgstr "Cambiare alle impostazioni semplici eliminerà tutte le modifiche fatte alle impostazioni complesse!\n\nProcedere?" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1016 msgid "symbolic profile name" msgstr "nome simbolico profilo" -#: src/libslic3r/PrintConfig.cpp:1949 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive." msgstr "Sincronizza i layer di supporto con i layer dell'oggetto stampato. È utile con le stampanti multi-material, dove il cambio estrusore è costoso." -#: src/libslic3r/PrintConfig.cpp:1947 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "Sincronizza con i layer dell'oggetto" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "System &Info" msgstr "&Info di Sistema" -#: src/slic3r/GUI/SysInfoDialog.cpp:44 +#: src/slic3r/GUI/SysInfoDialog.cpp:78 msgid "System Information" msgstr "Informazioni di sistema" -#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970 -#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067 -#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553 +#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 +#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 +#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "Preset di sistema" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" msgstr "Cattura I&stantanea di Configurazione" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Cattura istantanea della configurazione" -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatura" -#: src/libslic3r/PrintConfig.cpp:1727 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped." msgstr "La differenza di temperatura da applicare quando un estrusore non è attivo. Abilita uno skirt \"sacrificale\" a piena altezza su cui l'ugello verrà pulito periodicamente." -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "Variazione di temperatura" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Temperatures" msgstr "Temperature" -#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 msgid "Test" msgstr "Test" -#: src/slic3r/GUI/BedShapeDialog.cpp:171 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "Texture" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." -msgstr "La trama di riempimento %1% non è fatta per lavorare con densità al 100%%." +msgstr "La trama di riempimento %1% non è fatta per lavorare con densità al 100%." -#: src/slic3r/GUI/FirmwareDialog.cpp:530 +#: src/slic3r/GUI/FirmwareDialog.cpp:548 #, possible-c-format msgid "The %s device could not have been found" msgstr "Il dispositivo %s non è stato trovato" -#: src/slic3r/GUI/FirmwareDialog.cpp:417 +#: src/slic3r/GUI/FirmwareDialog.cpp:436 #, possible-c-format msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." msgstr "Il dispositivo %s non è stato trovato.\nSe il dispositivo è connesso, premi il pulsante Reset vicino al connettore USB ..." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." msgstr "L'oggetto modificato corrente è inclinato (angoli di rotazione non multipli di 90°).\nUn ridimensionamento non uniforme di un oggetto inclinato è possibile solamente su un sistema di coordinate reali, non appena la rotazione è inclusa nelle coordinate dell'oggetto." -#: src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2717 msgid "The default angle for connecting support sticks and junctions." msgstr "Angolo predefinito per la connessione delle barre di supporto e le giunzioni." -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:631 msgid "The endings of the support pillars will be deployed on the gap between the object and the pad. 'Support base safety distance' has to be greater than the 'Pad object gap' parameter to avoid this." msgstr "La fine del pilastro di supporto si svilupperà nello spazio tra l'oggetto e il pad. La 'Distanza di sicurezza base di supporto' deve essere più grande del parametro 'Distanza Pad oggetto' per evitare questo." -#: src/libslic3r/PrintConfig.cpp:457 +#: src/libslic3r/PrintConfig.cpp:489 msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders." msgstr "Estrusore da utilizzare (a meno che non siano specificate impostazioni d'estrusore più specifiche). Questo valore scavalca l'estrusore dei perimetri e di riempimento, ma non l'estrusore dei supporti." -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "L'estrusore da utilizzare per la stampa del riempimento." -#: src/libslic3r/PrintConfig.cpp:1341 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "L'estrusore da utilizzare per la stampa dei perimetri e del brim. Il primo estrusore è 1." -#: src/libslic3r/PrintConfig.cpp:1669 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." msgstr "L'estrusore da utilizzare per la stampa del riempimento solido." -#: src/libslic3r/PrintConfig.cpp:1879 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too." msgstr "L'estrusore da utilizzare per la stampa dell'interfaccia del materiale di supporto (1+, 0 per usare l'estrusore attuale per minimizzare il cambio di attrezzo). Questo influenza anche il raft." -#: src/libslic3r/PrintConfig.cpp:1853 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)." msgstr "L'estrusore da utilizzare per la stampa del materiale di supporto, raft e skirt (1+, 0 per utilizzare l'estrusore attuale per minimizzare i cambi di attrezzo)." -#: src/libslic3r/PrintConfig.cpp:695 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "Tipo di materiale da usare nei G-code personalizzati." -#: src/libslic3r/PrintConfig.cpp:3105 +#: src/libslic3r/PrintConfig.cpp:3479 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Il file dove verrà scritto l'output (se non specificato, sarà basato sul file di input)." -#: src/libslic3r/PrintConfig.cpp:1054 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "Il firmware supporta la modalità silenziosa" -#: src/libslic3r/PrintConfig.cpp:351 +#: src/libslic3r/PrintConfig.cpp:377 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "Il primo layer verrà ristretto sul piano XY dal valore configurato, così da compensare per lo schiacciamento del 1° layer, anche noto come effetto Zampa d'elefante." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2726 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 msgid "the following characters are not allowed:" msgstr "non sono permessi i seguenti caratteri:" -#: src/slic3r/GUI/Tab.cpp:3311 +#: src/slic3r/GUI/Tab.cpp:3445 msgid "the following suffix is not allowed:" msgstr "il seguente suffisso non è permesso:" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Lo spazio tra la parte inferiore dell'oggetto e il pad generato nella modalità ad elevazione zero." -#: src/libslic3r/PrintConfig.cpp:2453 +#: src/libslic3r/PrintConfig.cpp:2695 msgid "The height of the pillar base cone" msgstr "Altezza del cono alla base del pilastro" -#: src/libslic3r/PrintConfig.cpp:2481 +#: src/slic3r/GUI/DoubleSlider.cpp:1895 +msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." +msgstr "Gli ultimi dati del cambio colore sono stati salvati per una stampa a estrusore multiplo con cambi di attrezzo per l'intera stampa." + +#: src/slic3r/GUI/DoubleSlider.cpp:1889 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "Gli ultimi dati del cambio colore sono stati salvati per una stampa a estrusore multiplo." + +#: src/slic3r/GUI/DoubleSlider.cpp:1873 +msgid "The last color change data was saved for a multiple extruder printer profile." +msgstr "Gli ultimi dati del cambio colore sono stati salvati per un profilo stampante a estrusore multiplo." + +#: src/slic3r/GUI/DoubleSlider.cpp:1872 +msgid "The last color change data was saved for a single extruder printer profile." +msgstr "Gli ultimi dati del cambio colore sono stati salvati per un profilo stampante a estrusore singolo." + +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." +msgstr "I dati dell'ultimo cambio colore sono stati salvati per la stampa ad estrusore singolo." + +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "La distanza massima tra due pilastri per collegarsi gli uni agli altri. Un valore di zero impedisce i pilastri a cascata." -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/libslic3r/PrintConfig.cpp:2727 msgid "The max length of a bridge" msgstr "La lunghezza massima di un bridge" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2705 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Distanza minima della base del pilastro dal modello in mm. Ha senso con modalità ad elevazione zero in cui viene inserito uno spazio tra modello e pad a seconda di questo parametro." -#: src/libslic3r/PrintConfig.cpp:2176 +#: src/libslic3r/PrintConfig.cpp:175 +msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." +msgstr "Il numero di layer solidi inferiori è aumentato al di sopra di bottom_solid_layers se necessario per soddisfare lo spessore minimo del guscio inferiore." + +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." +msgstr "Il numero di layer solidi superiori è aumentato al di sopra di top_solid_layers se necessario per soddisfare lo spessore minimo del guscio superiore. Questo è utile a prevenire l'effetto cuscinetto con la stampa ad altezza layer variabile." + +#: src/libslic3r/PrintConfig.cpp:2277 msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes." msgstr "L'oggetto verrà allargato/ristretto sul piano XY dal valore configurato (negativo = verso l'interno, positivo = verso l'esterno). Questo può essere utile per regolare la grandezza dei fori." -#: src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "The object will be raised by this number of layers, and support material will be generated under it." msgstr "L'oggetto verrà sollevato per questo numero di layer e verrà generato il materiale di supporto al di sotto di esso." -#: src/libslic3r/PrintConfig.cpp:2259 +#: src/libslic3r/PrintConfig.cpp:2424 msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" msgstr "La percentuale dell'area del piano.\nSe l'area di stampa supera un determinato valore,\nverrà utilizzata l'inclinazione lenta, in caso contrario - l'inclinazione veloce" -#: src/slic3r/GUI/GUI_App.cpp:831 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "Sono stati modificati i preset nelle seguenti schede" -#: src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "La stampante processa diversi filamenti in un singolo hotend." -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Format/3mf.cpp:1630 msgid "The selected 3mf file has been saved with a newer version of %1% and is not compatible." msgstr "Il file 3mf selezionato è stato salvato con una versione più recente di %1% e non è compatibile." -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "The selected amf file has been saved with a newer version of %1% and is not compatible." msgstr "Il file amf selezionato è stato salvato con una versione più recente di %1% e non è compatibile." -#: src/slic3r/GUI/BedShapeDialog.cpp:342 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "Il file selezionato non contiene geometrie." -#: src/slic3r/GUI/BedShapeDialog.cpp:346 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Il file selezionato contiene molteplici aree disgiunte. Non è supportato." -#: src/slic3r/GUI/Plater.cpp:2271 +#: src/slic3r/GUI/Plater.cpp:2954 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "L'oggetto selezionato non può essere diviso perché contiene più di un volume/materiale." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 msgid "The selected object couldn't be split because it contains only one part." msgstr "L'oggetto selezionato non può essere diviso perché contiene solo una parte." -#: src/slic3r/GUI/MainFrame.cpp:410 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "Il progetto selezionato non è più disponibile" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." +msgstr "La stampa sequenziale è attiva.\nNon è possibile applicare alcun G-code personalizzato per oggetti con stampa sequenziale.\nQuesto codice non sarà processato durante la generazione del G-code." + +#: src/libslic3r/PrintConfig.cpp:2837 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "Inclinazione della parete del pad relativa al piano. 90 gradi equivale a pareti dritte." -#: src/libslic3r/PrintConfig.cpp:1544 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used." msgstr "La velocità di caricamento di un filamento nell'estrusore dopo la retrazione (si applica solamente al motore dell'estrusore). Se lasciato a zero, verrà utilizzata la velocità di retrazione." -#: src/libslic3r/PrintConfig.cpp:1536 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "Velocità delle retrazioni (si applica solamente al motore dell'estrusore)." +#: src/slic3r/GUI/ConfigManipulation.cpp:81 +#, no-c-format +msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" +msgstr "La modalità Vaso a spirale necessita:\n-un solo perimetro\n-nessun layer solido superiore\n-densità riempimento 0%\n-nessun materiale di supporto\n-Mantieni spessore guscio verticale attivo\n-Rileva perimetri sottili disattivo" + #: src/slic3r/GUI/ConfigManipulation.cpp:75 #, no-c-format msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" msgstr "La modalità Vaso a spirale richiede:\n- un solo perimetro\n- nessun layer solido superiore\n- densità riempimento 0%\n- nessun materiale di supporto\n- disattivazione \"Mantieni spessore guscio verticale\"" -#: src/libslic3r/Print.cpp:1187 +#: src/libslic3r/Print.cpp:1233 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "L'opzione Vaso a Spirale può essere utilizzata soltanto durante la stampa di un oggetto singolo." -#: src/libslic3r/Print.cpp:1189 +#: src/libslic3r/Print.cpp:1240 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "L'opzione Vaso a Spirale può essere usata solo durante la stampa di oggetti in materiale singolo." -#: src/slic3r/GUI/Tab.cpp:2900 +#: src/slic3r/GUI/Tab.cpp:3052 msgid "The supplied name is empty. It can't be saved." msgstr "Il nome fornito è vuoto. Non può essere salvato." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3449 msgid "The supplied name is not available." msgstr "Il nome fornito non è disponibile." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2725 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278 -#: src/slic3r/GUI/Tab.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:3444 msgid "The supplied name is not valid;" msgstr "Il nome fornito non è valido;" -#: src/libslic3r/Print.cpp:1268 +#: src/libslic3r/Print.cpp:1218 msgid "The supplied settings will cause an empty print." msgstr "Le configurazioni fornite causeranno una stampa vuota." -#: src/libslic3r/PrintConfig.cpp:2524 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "The thickness of the pad and its optional cavity walls." msgstr "Lo spessore del pad e delle intercapedini opzionali." -#: src/libslic3r/PrintConfig.cpp:1825 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Distanza verticale tra oggetto e interfaccia del materiale di supporto. Impostando questo valore a 0 eviterà che Slic3r utilizzi il flusso e velocità bridge per il primo layer dell'oggetto." -#: src/slic3r/GUI/Tab.cpp:2429 +#: src/slic3r/GUI/Tab.cpp:2571 msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" msgstr "La funzione Wipe non è disponibile quando si usa la modalità Retrazione Firmware.\n\nDevo disattivarla per poter abilitare la Retrazione Firmware?" -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "La Torre di Spurgo attualmente non supporta la volumetrica E (use_volumetric_e=0)." -#: src/slic3r/GUI/ConfigManipulation.cpp:107 +#: src/slic3r/GUI/ConfigManipulation.cpp:115 msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "La Torre di Spurgo attualmente è compatibile con i supporti non solubili solamente se questi sono stampati con l'attuale estrusore senza l'innesco di un cambio attrezzo. (entrambi support_material_extruder e support_material_interface_extruder devono essere impostati a 0)." -#: src/libslic3r/Print.cpp:1306 +#: src/libslic3r/Print.cpp:1396 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "La Torre di Spurgo attualmente è compatibile con i supporti non solubili solamente se questi sono stampati con l'attuale estrusore senza l'innesco di un cambio attrezzo. (entrambi support_material_extruder e support_material_interface_extruder devono essere impostati a 0)." -#: src/libslic3r/Print.cpp:1200 +#: src/libslic3r/Print.cpp:1266 +msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." +msgstr "La Torre di spurgo non è al momento supportata per stampe multi-material sequenziali." + +#: src/libslic3r/Print.cpp:1258 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "La torre di spurgo al momento è supportata solo nelle versioni G-code per Marlin, RepRap/Sprinter e Repetier." -#: src/libslic3r/Print.cpp:1202 +#: src/libslic3r/Print.cpp:1260 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Attualmente la Torre di spurgo è supportata solo con l'indirizzamento relativo dell'estrusore (use_relative_e_distances = 1)." -#: src/libslic3r/Print.cpp:1225 +#: src/libslic3r/Print.cpp:1289 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi vengono stampati sullo stesso numero di layer di raft" -#: src/libslic3r/Print.cpp:1227 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi vengono stampati sullo stesso support_material_contact_distance" -#: src/libslic3r/Print.cpp:1229 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi sono processati allo stesso modo." -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1287 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi hanno la stessa altezza layer" -#: src/libslic3r/Print.cpp:1155 +#: src/libslic3r/Print.cpp:1253 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "La torre di spurgo è supportata solo se tutti gli estrusori hanno l'ugello con lo stesso diametro ed utilizzano filamenti con lo stesso diametro." -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1335 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "La Torre di spurgo è supportata solo se tutti gli oggetti hanno la stessa altezza layer variabile" -#: src/slic3r/GUI/UpdateDialogs.cpp:127 +#: src/libslic3r/SLAPrintSteps.cpp:596 +msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." +msgstr "Sono presenti oggetti non stampabili. Prova a regolare le impostazioni dei supporti per rendere gli oggetti stampabili." + +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." +msgstr "È presente un cambio colore per l'estrusore che non è stato usato prima.\nControlla le impostazioni per evitare cambi colore ridondanti." + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." +msgstr "È presente un cambio colore per l'estrusore che non sarà utilizzato fino alla fine del lavoro di stampa.\nQuesto codice non sarà processato durante la generazione del G-code." + +#: src/slic3r/GUI/DoubleSlider.cpp:993 +msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." +msgstr "È presente un cambio estrusore impostato nello stesso estrusore.\nQuesto codice non verrà processato durante la generazione del G-code." + +#: src/slic3r/GUI/UpdateDialogs.cpp:225 #, possible-c-format msgid "This %s version: %s" msgstr "%s versione: %s" -#: src/libslic3r/PrintConfig.cpp:140 +#: src/libslic3r/PrintConfig.cpp:155 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Questo codice è inserito tra gli oggetti quando si utilizza una stampa sequenziale. Come predefinito, la temperatura di estrusione e del piano sono resettate con il comando non-attesa; in ogni caso se nel codice personalizzato vengono rilevati i comandi M104,M109,M140 o M190, Slic3r non aggiungerà i comandi di temperatura. Si fa presente che puoi usare variabili sostitutive per tutte le impostazioni di Slic3r, quindi puoi inserire un comando \"M109 S[first_layer_temperature]\" quando preferisci." -#: src/libslic3r/PrintConfig.cpp:1032 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Questo codice personalizzato è inserito ad ogni cambio layer, subito dopo il movimento Z e prima che l'estrusore si sposti al punto del primo layer. Si fa presente che puoi usare variabili sostitutive per tutte le impostazioni di Slic3r sia per [layer_num] che per [layer_z]." -#: src/libslic3r/PrintConfig.cpp:129 +#: src/libslic3r/PrintConfig.cpp:144 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Questo codice personalizzato è inserito ad ogni cambio layer, subito prima del movimento Z. Si fa presente che puoi usare variabili sostitutive per tutte le impostazioni di Slic3r sia per [layer_num] che per [layer_z]." -#: src/libslic3r/PrintConfig.cpp:2057 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "This custom code is inserted before every toolchange. Placeholder variables for all PrusaSlicer settings as well as {previous_extruder} and {next_extruder} can be used. When a tool-changing command which changes to the correct extruder is included (such as T{next_extruder}), PrusaSlicer will emit no other such command. It is therefore possible to script custom behaviour both before and after the toolchange." msgstr "Questo codice personalizzato è inserito prima di ogni cambio attrezzo. Possono essere usate delle variabili segnaposto per tutte le impostazioni di PrusaSlicer come {previous_extruder} e {next_extruder}. Quando viene incluso un comando di cambio attrezzo che cambia all'estrusore corretto (come T{next_extruder}), PrusaSlicer non emetterà altri comandi simili. È per tanto possibile elaborare un comportamento personalizzato sia prima che dopo il cambio attrezzo." -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:396 msgid "This end procedure is inserted at the end of the output file, before the printer end gcode (and before any toolchange from this filament in case of multimaterial printers). Note that you can use placeholder variables for all PrusaSlicer settings. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Questa procedura finale è inserita alla fine del file di output, prima che la stampante completi il gcode (e prima di qualunque cambio attrezzo da questo filamento in caso di stampanti multi-material). Da notare che è possibile inserire variabili segnaposto per tutte le impostazioni di PrusaSlicer. Se hai estrusori multipli, il gcode è processato nell'ordine degli estrusori." -#: src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:386 msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all PrusaSlicer settings." msgstr "Questa procedura finale è inserita alla fine del file di output. Da notare che è possibile usare variabili segnaposto per tutte le impostazioni di PrusaSlicer." -#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds." msgstr "Questa impostazione sperimentale è utilizzata per limitare la velocità del cambio nel fattore di estrusione. Un valore di 1.8 mm³/s² assicura che un cambio dal fattore di estrusione di 1.8 mm³/s (larghezza estrusione 0.45mm, altezza estrusione di 0.2mm, avanzamento 20 mm/s) a 5.4 mm³/s (avanzamento a 60 mm/s) impiegherà almeno 2 secondi." -#: src/libslic3r/PrintConfig.cpp:1183 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports." msgstr "Questa impostazione sperimentale è utilizzata per impostare la massima velocità volumetrica supportata dal tuo estrusore." -#: src/libslic3r/PrintConfig.cpp:2061 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." msgstr "Questa funziona sperimentale utilizza i comandi G10 e G11 per permettere al firmware la gestione della retrazione. È supportata solo nel Marlin recente." -#: src/libslic3r/PrintConfig.cpp:2075 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Questa impostazione sperimentale produce un valore in uscita di E in millimetri cubici anziché in millimetri lineari. Se il tuo firmware non sa ancora qual'è il diametro del filamento, puoi inserire un comando tipo 'M200 D[filament_diameter_0] T0' nel tuo G-code iniziale in modo da attivare la funzione volumetrica e usare il diametro associato al filamento selezionato su Slic3r. Questa funziona è supportata solo nel Marlin più recente." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2848 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 msgid "This extruder will be set for selected items" msgstr "L'estrusore sarà impostato per gli elementi selezionati" -#: src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Questo valore influenza la quantità di plastica per il bridging. Puoi diminuirlo leggermente per tendere il materiale estruso ed evitare che si afflosci, sebbene le impostazioni predefinite sono generalmente buone ed è consigliabile sperimentare con il raffreddamento (usare la ventola) prima di modificare questo valore." -#: src/libslic3r/PrintConfig.cpp:514 +#: src/libslic3r/PrintConfig.cpp:546 msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Questo valore modifica proporzionalmente il valore del flusso. Dovrai modificare questa impostazione per ottenere una buona finitura superficiale e correggere la larghezza delle pareti singole. Normalmente i valori sono tra 0.9 e 1.1. Se ritieni di dover modificare questo valore ulteriormente, controlla il diametro del filamento e i passi E del tuo firmware." -#: src/libslic3r/PrintConfig.cpp:178 +#: src/libslic3r/PrintConfig.cpp:204 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Questa velocità della ventola verrà forzata durante tutti i bridge e overhang." -#: src/libslic3r/PrintConfig.cpp:944 +#: src/libslic3r/PrintConfig.cpp:992 msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy." msgstr "Questa funzione permette di combinare il riempimento e velocizza il tempo di stampa estrudendo layer di infill più spessi conservando tuttavia i perimetri sottili, e quindi l'accuratezza." -#: src/libslic3r/PrintConfig.cpp:1677 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height." msgstr "Questa funzione permette di forzare un layer solido ogni tot layer. Zero per disabilitare. È possibile impostare qualunque valore (per esempio 9999); Slic3r sceglierà automaticamente il maggior numero possibile di layer da combinare secondo il diametro dell'ugello e l'altezza layer." -#: src/libslic3r/PrintConfig.cpp:1718 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Questa funzione solleverà Z gradualmente durante la stampa di un oggetto a parete singola allo scopo di rimuovere qualunque giunzione. Questa opzione richiede un singolo perimetro, nessun riempimento, nessun layer solido superiore e nessun materiale di supporto. È possibile comunque impostare qualunque numero di layer solidi inferiori così come per i giri di skirt/brim. Non funzionerà stampando più di un oggetto." -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2351 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Non è possibile caricare questo file in modalità semplice. Si desidera passare alla modalità avanzata?" -#: src/slic3r/GUI/Plater.cpp:2361 +#: src/slic3r/GUI/Plater.cpp:2341 msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" msgstr "Questo file contiene numerosi oggetti posizionati ad altezze multiple. Invece di considerarli come oggetti multipli, devo considerare \nquesto file come un oggetto singolo con parti multiple?" -#: src/slic3r/GUI/FirmwareDialog.cpp:313 +#: src/slic3r/GUI/FirmwareDialog.cpp:332 #, possible-c-format msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." msgstr "Questo file hex di firmware non è corretto per il modello della stampante. \nIl file hex è per: %s\nLa stampante è: %s\n\nVuoi continuare ed installare il firmware comunque?\nContinua solo se sei certo che sia la cosa giusta da fare." -#: src/libslic3r/PrintConfig.cpp:278 +#: src/libslic3r/PrintConfig.cpp:304 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Questa funzione abilita il raffreddamento automatico che regola la velocità di stampa e la velocità della ventola in base al tempo di stampa del layer." -#: src/slic3r/GUI/Plater.cpp:448 +#: src/slic3r/GUI/Plater.cpp:533 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "La spunta su questa opzione abilita il brim che verrà stampato attorno ad ogni oggetto nel primo layer." -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "Questo contrassegno forza una retrazione ogni volta che viene effettuato un movimento di Z." -#: src/libslic3r/PrintConfig.cpp:2093 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Questo contrassegno farà spostare l'ugello durante la retrazione in modo da minimizzare il possibile grumo con estrusori che trasudano." -#: src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a default preset." msgstr "Questo è un preset predefinito." -#: src/libslic3r/PrintConfig.cpp:2501 +#: src/libslic3r/PrintConfig.cpp:2757 msgid "This is a relative measure of support points density." msgstr "Questa è una misura relativa della densità dei punti di supporto." -#: src/slic3r/GUI/Tab.cpp:2528 +#: src/slic3r/GUI/Tab.cpp:2334 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Questa è una stampante multi-material ad estrusore singolo, i diametri di tutti gli estrusori verranno impostati al nuovo valore. Vuoi continuare?" -#: src/slic3r/GUI/Tab.cpp:923 +#: src/slic3r/GUI/Tab.cpp:957 msgid "This is a system preset." msgstr "Questo è un preset di sistema." -#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." msgstr "Utilizzato solo nell'interfaccia di Slic3r come aiuto visivo." -#: src/libslic3r/PrintConfig.cpp:300 +#: src/libslic3r/PrintConfig.cpp:326 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Questa è l'accelerazione a cui la stampante sarà reimpostata dopo aver utilizzato un valore di accelerazione per un ruolo specifico (perimetro/riempimento). Imposta a zero per evitare del tutto la reimpostazione dell'accelerazione." -#: src/libslic3r/PrintConfig.cpp:158 +#: src/libslic3r/PrintConfig.cpp:184 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "Questa è l'accelerazione che la tua stampante utilizzerà per i bridge. Impostala a zero per disattivare il controllo dell'accelerazione per i bridge." -#: src/libslic3r/PrintConfig.cpp:813 +#: src/libslic3r/PrintConfig.cpp:860 msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer." msgstr "Questa è l'accelerazione che la stampante utilizzerà per il primo layer. Imposta a zero per disattivare il controllo dell'accelerazione per il primo layer." -#: src/libslic3r/PrintConfig.cpp:934 +#: src/libslic3r/PrintConfig.cpp:982 msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill." msgstr "Questa è l'accelerazione che la stampante utilizzerà per il riempimento. Imposta a zero per disattivare il controllo dell'accelerazione per il riempimento." -#: src/libslic3r/PrintConfig.cpp:1331 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters." msgstr "Questa è l'accelerazione che la stampante utilizzerà per i perimetri. Un valore alto come 9000 solitamente produce dei buoni risultati se l'hardware è all'altezza. Imposta a zero per disattivare il controllo dell'accelerazione per i perimetri." -#: src/libslic3r/PrintConfig.cpp:1262 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "Questo è il diametro dell'ugello dell'estrusore (per esempio: 0.5, 0.35 ecc.)" -#: src/libslic3r/PrintConfig.cpp:1162 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter." msgstr "Questa è la massima altezza layer stampabile per questo estrusore, usata come limite per l'altezza variabile dei layer e l'altezza dei layer di supporto. L'altezza layer massima raccomandata è il 75% della larghezza di estrusione, in modo da ottenere una buona adesione tra i layer. Se impostato a 0, l'altezza layer è limitata al 75% del diametro dell'ugello." -#: src/libslic3r/PrintConfig.cpp:1225 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm." msgstr "Questa è l'altezza minima stampabile per questo estrusore e limita la risoluzione per l'altezza variabile dei layer. Valori tipici sono compresi tra 0.05 mm e 0.1 mm." -#: src/libslic3r/GCode.cpp:630 +#: src/libslic3r/GCode.cpp:639 msgid "This is usually caused by negligibly small extrusions or by a faulty model. Try to repair the model or change its orientation on the bed." msgstr "Questo solitamente è causato da estrusioni molto piccole o da un modello difettoso. Provare a riparare il modello o cambiare il suo orientamento sul piano." -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools." msgstr "Questa matrice descrive il volume (in millimetri cubici) necessario per spurgare il filamento nella torre di spurgo per una qualunque coppia di attrezzi." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 msgid "This operation is irreversible.\nDo you want to proceed?" msgstr "Questa operazione è irreversibile.\nVuoi continuare?" -#: src/libslic3r/PrintConfig.cpp:1372 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." msgstr "Questa opzione imposta il numero di perimetri da generare per ogni layer. Da notare che Slic3r aumenta questo numero automaticamente quando rileva superfici inclinate che potrebbero beneficiare di un aumento del numero dei perimetri se l'opzione Perimetri aggiuntivi è attiva." -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures." msgstr "Questa opzione abbasserà la temperatura degli estrusori inattivi per prevenire oozing (trasudazione). Attiverà automaticamente uno skirt alto e muoverà l'estrusore al di fuori di questo skirt al cambiamento di temperature." -#: src/libslic3r/PrintConfig.cpp:980 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved." msgstr "Questa opzione limiterà il riempimento alle aree che effettivamente hanno bisogno di un supporto per i soffitti (si comporterà come un materiale di supporto interno). Se attivato, rallenterà la generazione del G-code a causa dei molteplici controlli necessari." -#: src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "This option will switch the print order of perimeters and infill, making the latter first." msgstr "Questa opzione sostituirà l'ordine di stampa dei perimetri e del riempimento, realizzando per primo il secondo." -#: src/libslic3r/PrintConfig.cpp:427 +#: src/libslic3r/PrintConfig.cpp:459 msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Questa impostazione separata avrà effetto sulla velocità dei perimetri esterni (quelli visibili). Se espresso in percentuale (per esempio: 80%) verrà calcolato sull'impostazione della velocità dei perimetri qui sopra. Imposta a zero per automatico." -#: src/libslic3r/PrintConfig.cpp:1648 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "Questa impostazione separata influenzerà la velocità dei perimetri con raggio <=6.5mm (solitamente i buchi). Se espresso in percentuale (per esempio: 80%) sarà calcolato sulla velocità dei perimetri qui sopra. Imposta a zero per automatico." -#: src/libslic3r/PrintConfig.cpp:989 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width." msgstr "Questa impostazione applica una sovrapposizione aggiuntiva tra perimetri e riempimento per una migliore unione. Teoricamente non sarebbe necessario, ma i contraccolpi possono causare spazi vuoi. Se espresso in percentuale (per esempio: 15%) viene calcolato sulla larghezza d'estrusione del perimetro." -#: src/libslic3r/PrintConfig.cpp:57 +#: src/libslic3r/PrintConfig.cpp:73 msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print." msgstr "Questa impostazione controlla l'altezza (e quindi il numero totale) degli strati/layer. Un layer più sottile sarà più preciso ma sarà necessario più tempo per stampare." -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "Questa impostazione rappresenta la velocità massima della ventola." -#: src/libslic3r/PrintConfig.cpp:1216 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "Questa impostazione rappresenta la PWM minima (modulazione di larghezza di impulso) che la ventola necessita per lavorare." -#: src/libslic3r/PrintConfig.cpp:1801 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "This start procedure is inserted at the beginning, after any printer start gcode (and after any toolchange to this filament in case of multi-material printers). This is used to override settings for a specific filament. If PrusaSlicer detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Questa procedura di inizio è inserita all'inizio, dopo un qualsiasi gcode iniziale (e dopo un qualunque cambio attrezzo per questo filamento nel caso di stampanti multi-material). Viene utilizzato per scavalcare le impostazioni per un filamento specifico. Se PrusaSlicer rileva M104, M109, M140 o M190 nei codici personalizzati, questi comandi non vengono anteposti automaticamente così si è liberi di personalizzare liberamente l'ordine dei comandi di riscaldamento e altre azioni personalizzate. Da notare che è possibile utilizzare delle variabili segnaposto per tutte le impostazioni di PrusaSlicer, così è possibile inserire un comando \"M109 S[first_layer_temperature]\" ovunque lo si desideri. Se hai estrusori multipli, il gcode è processato nell'ordine degli estrusori." -#: src/libslic3r/PrintConfig.cpp:1786 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If PrusaSlicer detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Questa procedura di inizio è inserita all'inizio, dopo che il piano ha raggiunto la temperatura impostata e appena l'estrusore inizia il riscaldamento, e prima che l'estrusore completi il riscaldamento. Se PrusaSlicer rileva M104 o M190 nel tuo codice personalizzato, questi comandi non vengono anteposti automaticamente così si è liberi di personalizzare l'ordine dei comandi di riscaldamento e altre azioni personalizzate. Da notare che è possibile utilizzare delle variabili segnaposto per tutte le impostazioni di PrusaSlicer, così è possibile inserire un comando \"M109 S[first_layer_temperature]\" ovunque si desideri." -#: src/libslic3r/PrintConfig.cpp:664 +#: src/libslic3r/PrintConfig.cpp:695 msgid "This string is edited by RammingDialog and contains ramming specific parameters." msgstr "Questa stringa viene controllata da RammingDialog e contiene parametri specifici del ramming." -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." msgstr "Questo valore sarà aggiunto (o sottratto) da tutte le coordinate Z nel G-code di output. Viene utilizzato per compensare una posizione di finecorsa Z errata: per esempio, se la posizione minima del finecorsa rimane in realtà 0.3mm lontano dal piano, imposta questo valore a -0.3 (o sistema il finecorsa)." -#: src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." msgstr "Questo vettore salva il volume necessario per cambiare da/a ogni attrezzo usato per la torre di spurgo. Questi valori vengono usati per semplificare la creazione dei volumi di spurgo completi." -#: src/slic3r/GUI/UpdateDialogs.cpp:155 +#: src/slic3r/GUI/UpdateDialogs.cpp:216 #, possible-c-format msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." msgstr "Questa versione di %s non è compatibile con gli attuali gruppi di configurazioni installati.\nProbabilmente è causato dall'esecuzione di una vecchia versione di %s dopo averne utilizzata una più recente.\n\nProva a chiudere %s e riprovare con una versione più recente, o prova ad effettuare nuovamente la configurazione iniziale. Così facendo creerai un'istantanea di backup della configurazione esistente prima di istallare i file compatibili con questo %s." -#: src/libslic3r/PrintConfig.cpp:2284 +#: src/libslic3r/PrintConfig.cpp:2449 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Questo applicherà una correzione gamma ai poligoni 2D rasterizzati. Un valore gamma di zero comporta una calcolo della soglia nel mezzo. Questo comportamento elimina l'antialiasing senza perdere i fori nei poligoni." -#: src/libslic3r/PrintConfig.cpp:1994 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "Thread" -#: src/libslic3r/PrintConfig.cpp:1995 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "I thread sono utilizzati per parallelizzare operazioni di lunga durata. Il numero di thread ottimali è leggermente superiore al numero di core / processori disponibili." -#: src/slic3r/GUI/Tab.cpp:2052 +#: src/slic3r/GUI/Tab.cpp:2091 msgid "Tilt" msgstr "Inclina" -#: src/slic3r/GUI/Tab.cpp:2053 +#: src/slic3r/GUI/Tab.cpp:2092 msgid "Tilt time" msgstr "Tempo di tilt" @@ -7361,157 +8092,187 @@ msgstr "Tempo di tilt" msgid "Time" msgstr "Tempo" -#: src/libslic3r/PrintConfig.cpp:655 +#: src/libslic3r/PrintConfig.cpp:687 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Tempo per il firmware della stampante (o per l'unità Multi Material 2.0) per il caricamento del nuovo filamento durante il cambio attrezzo (quando viene eseguito il T code). Questa durata viene aggiunta alla stima del tempo totale di stampa del G-code." -#: src/libslic3r/PrintConfig.cpp:670 +#: src/libslic3r/PrintConfig.cpp:702 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Tempo per il firmware della stampante (o per l'unità Multi Material 2.0) per lo scaricamento del nuovo filamento durante il cambio attrezzo (quando viene eseguito il T code). Questa durata viene aggiunta alla stima del tempo totale di stampa del G-code." -#: src/libslic3r/PrintConfig.cpp:2242 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "Tempo di inclinazione veloce" -#: src/libslic3r/PrintConfig.cpp:2251 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "Tempo di inclinazione lenta" -#: src/libslic3r/PrintConfig.cpp:610 +#: src/libslic3r/PrintConfig.cpp:641 msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Tempo di attesa dopo lo scarico del filamento. Può aiutare ad ottenere cambi affidabili con materiali flessibili che potrebbero richiedere più tempo per tornare alle dimensioni originali." -#: src/slic3r/GUI/Tab.cpp:916 +#: src/slic3r/GUI/DoubleSlider.cpp:962 +msgid "To add another code use Ctrl + Left click" +msgstr "Per aggiungere un altro codice fai clic Destro+ Sinistro" + +#: src/slic3r/GUI/DoubleSlider.cpp:963 +msgid "To add another code use Right click" +msgstr "Per aggiungere un altro codice fai clic Destro" + +#: src/slic3r/GUI/Tab.cpp:968 msgid "To do that please specify a new name for the preset." msgstr "Per favore specifica un nuovo nome per il preset per effettuare l'operazione." #: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "Ad eccezione della manipolazione ridondante dello strumento,\nIl cambio colore per gli estrusori inutilizzati è stato(e) eliminato" +msgstr "Ad eccezione della manipolazione ridondante dell'attrezzo,\nIl(i) cambio(i) colore per gli estrusori(e) inutilizzati è stato(sono stati) eliminato(i)" -#: src/slic3r/GUI/Plater.cpp:2966 +#: src/slic3r/GUI/Plater.cpp:4023 msgid "To objects" msgstr "In oggetti" -#: src/slic3r/GUI/Plater.cpp:2968 +#: src/slic3r/GUI/Plater.cpp:4025 msgid "To parts" msgstr "In parti" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:212 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 #, possible-c-format msgid "Toggle %c axis mirroring" msgstr "Attiva / disattiva il mirroring dell'asse %c" -#: src/libslic3r/Zipper.cpp:37 +#: src/libslic3r/Zipper.cpp:34 msgid "too many files" msgstr "troppi file" -#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315 -#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404 +#: src/libslic3r/SLAPrintSteps.cpp:154 +msgid "Too much overlapping holes." +msgstr "Troppi fori sovrapposti." + +#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 +#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 +#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Attrezzo" -#: src/slic3r/GUI/WipeTowerDialog.cpp:240 +#: src/slic3r/GUI/WipeTowerDialog.cpp:276 msgid "Tool #" msgstr "Utensile #" -#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006 +#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code cambio attrezzo" -#: src/slic3r/GUI/Tab.cpp:1530 +#: src/slic3r/GUI/Tab.cpp:1493 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parametri di cambio attrezzo per stampanti MM con estrusore singolo" #. TRN To be shown in the main menu View->Top -#: src/slic3r/GUI/MainFrame.cpp:522 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "Superiore" -#: src/libslic3r/PrintConfig.cpp:388 +#: src/slic3r/GUI/PresetHints.cpp:300 +msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "Suggerimento per lo spessore del guscio Superiore / Inferiore: non disponibile a causa di un'altezza dello strato non valida." + +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "Trama riempimento superiore" -#: src/slic3r/GUI/PresetHints.cpp:189 +#: src/slic3r/GUI/PresetHints.cpp:319 +msgid "Top is open." +msgstr "La parte superiore è aperta." + +#: src/slic3r/GUI/PresetHints.cpp:313 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "Il guscio superiore è spesso %1% mm per l'altezza layer %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" msgstr "riempimento solido superiore" -#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017 -#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Riempimento solido superiore" -#: src/libslic3r/PrintConfig.cpp:2046 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" msgstr "Layer solidi superiori" -#: src/slic3r/GUI/MainFrame.cpp:522 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "Vista superiore" -#: src/slic3r/GUI/WipeTowerDialog.cpp:247 +#: src/slic3r/GUI/WipeTowerDialog.cpp:285 msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded." msgstr "Il volume totale di spurgo viene calcolato sommando i due valori sotto, a seconda di quali attrezzi vengono scaricati/caricati." -#: src/slic3r/GUI/WipeTowerDialog.cpp:84 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 msgid "Total rammed volume" msgstr "Volume totale di ramming" -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 +#: src/slic3r/GUI/WipeTowerDialog.cpp:83 msgid "Total ramming time" msgstr "Durata totale di ramming" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:516 msgid "Translate" msgstr "Traduci" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Traduzione" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051 +#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Spostamento" -#: src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "Tiangoli" -#: src/libslic3r/PrintConfig.cpp:3059 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Prova a riparare mesh non-manifold (questa opzione viene aggiunta implicitamente ogni volta che effettuiamo uno slice sul modello per effettuare l'azione richiesta)." -#: src/libslic3r/PrintConfig.cpp:1397 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "Tipologia stampante." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2549 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Type:" msgstr "Tipo:" -#: src/libslic3r/Zipper.cpp:35 +#: src/slic3r/GUI/Plater.cpp:3436 +msgid "Unable to reload:" +msgstr "Impossibile ricaricare:" + +#: src/libslic3r/Zipper.cpp:32 msgid "undefined error" msgstr "errore non definito" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3609 -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Annulla" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Annulla %1$d Azione" msgstr[1] "Annulla %1$d Azioni" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Undo History" msgstr "Storia Annulla" -#: src/libslic3r/Zipper.cpp:59 +#: src/libslic3r/Zipper.cpp:56 msgid "unexpected decompressed size" msgstr "dimensione decompressa imprevista" @@ -7519,96 +8280,102 @@ msgstr "dimensione decompressa imprevista" msgid "Unknown" msgstr "Sconosciuto" -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 msgid "Unknown error occured" msgstr "Si è verificato un errore sconosciuto" -#: src/slic3r/GUI/WipeTowerDialog.cpp:234 +#: src/slic3r/GUI/WipeTowerDialog.cpp:263 msgid "unloaded" msgstr "scaricato" -#: src/libslic3r/PrintConfig.cpp:591 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "Velocità di scaricamento" -#: src/libslic3r/PrintConfig.cpp:600 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "Velocità iniziale di scaricamento" -#: src/slic3r/GUI/Tab.cpp:3069 +#: src/slic3r/GUI/Tab.cpp:3240 msgid "UNLOCKED LOCK" msgstr "LUCCHETTO APERTO" -#: src/slic3r/GUI/Tab.cpp:3362 +#: src/slic3r/GUI/Tab.cpp:3266 msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." msgstr "L'icona del LUCCHETTO APERTO indica che alcune impostazioni sono state modificate e non sono uguali ai valori di sistema (o predefinite) per il gruppo di opzioni corrente.\nClicca qui per reimpostare tutte le impostazioni del gruppo corrente ai valori di sistema (o predefiniti)." -#: src/slic3r/GUI/Tab.cpp:3377 +#: src/slic3r/GUI/Tab.cpp:3281 msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." msgstr "L'icona del LUCCHETTO APERTO indica che il valore è stato cambiato e non è uguale al valore di sistema (o predefinito). Clicca per reimpostare il valore corrente al valore di sistema (o predefinito)." -#: src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Unretractions" msgstr "De-retrazioni" -#: src/slic3r/GUI/Tab.cpp:2785 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "Unsaved Changes" msgstr "Modifiche non salvate" -#: src/slic3r/GUI/GUI_App.cpp:790 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "Preset non salvati" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 msgid "Unselect gizmo / Clear selection" msgstr "Deseleziona gizmo / Ripulisci la selezione" -#: src/libslic3r/Zipper.cpp:63 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "Deseleziona gizmo o pulisci selezione" + +#: src/libslic3r/Zipper.cpp:60 msgid "unsupported central directory size" msgstr "dimensione della directory centrale non supportata" -#: src/libslic3r/Zipper.cpp:43 +#: src/libslic3r/Zipper.cpp:40 msgid "unsupported encryption" msgstr "criptaggio non supportato" -#: src/libslic3r/Zipper.cpp:45 +#: src/libslic3r/Zipper.cpp:42 msgid "unsupported feature" msgstr "caratteristica non supportata" -#: src/libslic3r/Zipper.cpp:41 +#: src/libslic3r/Zipper.cpp:38 msgid "unsupported method" msgstr "metodo non supportato" -#: src/libslic3r/Zipper.cpp:53 +#: src/libslic3r/Zipper.cpp:50 msgid "unsupported multidisk archive" msgstr "archivio multidisk non supportato" -#: src/slic3r/GUI/GUI_App.cpp:305 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "Versione OpenGL non supportata" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 msgid "Unsupported selection" msgstr "Selezione non supportata" -#: src/libslic3r/GCode/PreviewData.cpp:495 +#: src/slic3r/GUI/GLCanvas3D.cpp:960 #, possible-c-format msgid "up to %.2f mm" msgstr "fino a %.2f mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/UpdateDialogs.cpp:38 msgid "Update available" msgstr "Aggiornamento disponibile" -#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 msgid "Update built-in Presets automatically" msgstr "Aggiorna automaticamente i Preset integrati" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Updates" msgstr "Aggiornamenti" -#: src/slic3r/GUI/ConfigWizard.cpp:426 +#: src/slic3r/GUI/ConfigWizard.cpp:785 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Gli aggiornamenti non vengono mai applicati senza il consenso dell'utente e non sovrascrivono mai i settaggi personalizzati dell'utente." @@ -7616,11 +8383,11 @@ msgstr "Gli aggiornamenti non vengono mai applicati senza il consenso dell'utent msgid "Upgrade" msgstr "Aggiorna" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" msgstr "Carica un'immagine del firmware su una stampante basata su Arduino" -#: src/slic3r/Utils/FlashAir.cpp:60 +#: src/slic3r/Utils/FlashAir.cpp:58 msgid "Upload not enabled on FlashAir card." msgstr "Caricamento non attivato sulla scheda FlashAir." @@ -7628,32 +8395,32 @@ msgstr "Caricamento non attivato sulla scheda FlashAir." msgid "Upload to Printer Host with the following filename:" msgstr "Carica all'Host di stampa con il seguente nome file:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:229 +#: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "Caricamento" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 msgid "Upper Layer" msgstr "Layer superiore" -#: src/slic3r/GUI/Tab.cpp:1873 +#: src/slic3r/GUI/Tab.cpp:1898 msgid "USB/Serial connection" msgstr "Connessione USB/Seriale" -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "Porta USB/Seriale per connessione stampante." -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 +#: src/slic3r/GUI/DoubleSlider.cpp:1115 msgid "Use another extruder" msgstr "Usa un altro estrusore" -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:147 msgid "Use custom size for toolbar icons" msgstr "Utilizza dimensione personalizzata per le icone degli strumenti" -#: src/libslic3r/PrintConfig.cpp:2060 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "Usa retrazione firmware" @@ -7661,51 +8428,59 @@ msgstr "Usa retrazione firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Usa la barra ( / ) come separatore di cartella se necessario." -#: src/libslic3r/PrintConfig.cpp:2515 +#: src/slic3r/GUI/Preferences.cpp:129 +msgid "Use free camera" +msgstr "Usa l'inquadratura libera" + +#: src/libslic3r/PrintConfig.cpp:2771 msgid "Use pad" msgstr "Utilizza pad" -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "Use perspective camera" msgstr "Usa la visuale prospettica" -#: src/libslic3r/PrintConfig.cpp:2067 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "Usa distanze E relative" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "Use Retina resolution for the 3D scene" msgstr "Usa risoluzione Retina per la scena 3D" -#: src/libslic3r/PrintConfig.cpp:508 +#: src/libslic3r/PrintConfig.cpp:540 msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)." msgstr "Usa questa opzione per impostare la lettera dell'asse associato all'estrusore della tua stampante (solitamente E, ma alcune stampanti utilizzano A)." -#: src/libslic3r/PrintConfig.cpp:1807 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "Use this setting to rotate the support material pattern on the horizontal plane." msgstr "Usa questa impostazione per ruotare la trama del materiale di supporto sul piano orizzontale." -#: src/libslic3r/PrintConfig.cpp:2074 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "Utilizza E volumetrico" -#: src/slic3r/GUI/Plater.cpp:214 +#: src/slic3r/GUI/DoubleSlider.cpp:1139 +msgid "used" +msgstr "usato" + +#: src/slic3r/GUI/Plater.cpp:239 msgid "Used Filament (g)" msgstr "Filamento usato (g)" -#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041 +#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 msgid "Used Filament (m)" msgstr "Filamento usato (m)" -#: src/slic3r/GUI/Plater.cpp:213 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Filament (mm³)" msgstr "Filamento usato (mm³)" -#: src/slic3r/GUI/Plater.cpp:1015 +#: src/slic3r/GUI/Plater.cpp:1188 msgid "Used Material (ml)" msgstr "Materiale Usato (ml)" -#: src/slic3r/GUI/Plater.cpp:215 +#: src/slic3r/GUI/Plater.cpp:240 msgid "Used Material (unit)" msgstr "Materiale usato (unità)" @@ -7713,117 +8488,117 @@ msgstr "Materiale usato (unità)" msgid "User" msgstr "Utente" -#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071 -#: src/slic3r/GUI/PresetBundle.cpp:1558 +#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 +#: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "Preset utente" -#: src/libslic3r/Zipper.cpp:93 +#: src/libslic3r/Zipper.cpp:90 msgid "validation failed" msgstr "convalida non riuscita" -#: src/slic3r/GUI/ButtonsDescription.cpp:41 +#: src/slic3r/GUI/ButtonsDescription.cpp:36 msgid "Value is the same as the system value" msgstr "Valore uguale a quello di sistema" -#: src/slic3r/GUI/ButtonsDescription.cpp:58 +#: src/slic3r/GUI/ButtonsDescription.cpp:53 msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Il valore è stato modificato e non è uguale al valore di sistema o all'ultimo preset salvato" -#: src/slic3r/GUI/Tab.cpp:2151 +#: src/slic3r/GUI/Tab.cpp:2198 msgid "Values in this column are for Normal mode" msgstr "I valori in questa colonna sono per la modalità Normale" -#: src/slic3r/GUI/Tab.cpp:2157 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Stealth mode" msgstr "I valori in questa colonna sono per la modalità Silenziosa" -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 msgid "Variable layer height" msgstr "Altezza layer variabile" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1713 msgid "Variable layer height - Adaptive" msgstr "Altezza layer variabile - Adattivo" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:604 msgid "Variable layer height - Manual edit" msgstr "Altezza layer variabile - Modifica manuale" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1705 msgid "Variable layer height - Reset" msgstr "Altezza layer variabile - Ripristina" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1721 msgid "Variable layer height - Smooth all" msgstr "Altezza layer variabile - Leviga tutto" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "variants" msgstr "varianti" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 msgid "vendor" msgstr "produttore" -#: src/slic3r/GUI/ConfigWizard.cpp:536 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "Fornitore:" -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "G-code verboso" -#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "Versione" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 msgid "version" msgstr "versione" -#: src/slic3r/GUI/Tab.cpp:1002 +#: src/slic3r/GUI/Tab.cpp:1055 msgid "Vertical shells" msgstr "Gusci verticali" -#: src/slic3r/GUI/GUI_Preview.cpp:209 +#: src/slic3r/GUI/GUI_Preview.cpp:220 msgid "View" msgstr "Vista" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:814 msgid "View mode" msgstr "Modalità Visualizzazione" -#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867 -#: src/libslic3r/SLAPrint.cpp:915 +#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 +#: src/libslic3r/SLAPrintSteps.cpp:430 msgid "Visualizing supports" msgstr "Visualizzazione supporti" -#: src/slic3r/GUI/Plater.cpp:138 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Volume" msgstr "Volume" -#: src/slic3r/GUI/WipeTowerDialog.cpp:248 +#: src/slic3r/GUI/WipeTowerDialog.cpp:286 msgid "Volume to purge (mm³) when the filament is being" msgstr "Il volume di spurgo (mm³) quando il filamento viene" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Volumes in Object reordered" msgstr "Volumi in Oggetto riordinati" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "Volumetrico" -#: src/slic3r/GUI/Tab.cpp:1800 +#: src/slic3r/GUI/Tab.cpp:1593 msgid "Volumetric flow hints not available" msgstr "Suggerimenti sul flusso volumetrico non disponibili" -#: src/slic3r/GUI/GUI_Preview.cpp:216 +#: src/slic3r/GUI/GUI_Preview.cpp:228 msgid "Volumetric flow rate" msgstr "Flusso volumetrico" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "Flusso volumetrico (mm³/s)" @@ -7831,298 +8606,311 @@ msgstr "Flusso volumetrico (mm³/s)" msgid "Volumetric speed" msgstr "Velocità volumetrica" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283 -#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328 +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Wall thickness" +msgstr "Spessore parete" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 +#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Attenzione" -#: src/slic3r/GUI/ConfigWizard.cpp:294 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "Benvenuto" -#: src/slic3r/GUI/ConfigWizard.cpp:296 +#: src/slic3r/GUI/ConfigWizard.cpp:427 #, possible-c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Benvenuto nell'Assistente di Configurazione di %s" -#: src/slic3r/GUI/ConfigWizard.cpp:298 +#: src/slic3r/GUI/ConfigWizard.cpp:429 #, possible-c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Benvenuto nella Configurazione Guidata di %s" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:99 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Quando attivato, i preset di stampa e di filamento vengono mostrati nell'editor dei preset anche se sono segnati come incompatibili con la stampante attiva" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "durante la stampa" -#: src/libslic3r/PrintConfig.cpp:217 +#: src/libslic3r/PrintConfig.cpp:243 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Durante la stampa di oggetti multi-materiali, questa impostazione farà si che Slic3r unisca le parti sovrapposte dell'oggetto (la seconda sarà collegata con la prima, la terza parte sarà collegata con la prima e la seconda ecc..)." -#: src/libslic3r/PrintConfig.cpp:269 +#: src/libslic3r/PrintConfig.cpp:295 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Durante la stampa di oggetti multipli o copie, questa funzione completerà ciascun oggetto prima di spostarsi al prossimo (e iniziando la stampa dal primo layer). Questa funzione è utile per evitare il rischio di stampe rovinate. Slic3r dovrebbe avvisarti e prevenire collisioni con l'estrusore, ma fai attenzione." -#: src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:891 msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height." msgstr "Durante la stampa di layer molto bassi, potresti comunque aver bisogno di stampare layer inferiori più spessi per migliorare l'adesione e la tolleranza per piani di stampa non perfetti. Questo può essere espresso in valore assoluto o in percentuale (per esempio: 150%) sull'altezza layer predefinita." -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Quando viene attivata la retrazione prima del cambio attrezzo, il filamento è ritirato per la quantità specificata (la lunghezza è misurata sul filamento grezzo, prima che questo entri dentro l'estrusore)." -#: src/libslic3r/PrintConfig.cpp:1475 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Quando viene attivata la retrazione, il filamento viene ritirato per la quantità specificata (la lunghezza è misurata sul filamento grezzo, prima che questo entri dentro l'estrusore)." -#: src/libslic3r/PrintConfig.cpp:1347 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." msgstr "Quando impostato a zero, la distanza percorsa dal filamento in posizione di parcheggio durante il caricamento è esattamente uguale a quella contraria durante lo scaricamento. Quando il valore è positivo, viene caricato maggiormente, se il valore è negativo il movimento di caricamento è più corto dello scaricamento." -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow." msgstr "Quando le altre velocità sono impostate a 0, Slic3r calcolerà automaticamente la velocità ottimale in modo da mantenere costante la pressione dell'estrusore. Questa impostazione sperimentale è utilizzata per impostare la velocità massima di stampa che vuoi permettere." -#: src/libslic3r/PrintConfig.cpp:1527 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Quando la retrazione è compensata dopo un cambio di attrezzo, l'estrusore spingerà questa quantità addizionale di filamento." -#: src/libslic3r/PrintConfig.cpp:1519 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Quando la retrazione è compensata dopo un movimento di spostamento, l'estrusore spingerà questa quantità addizionale di filamento. Questa impostazione è raramente necessaria." -#: src/slic3r/GUI/Tab.cpp:3076 +#: src/slic3r/GUI/Tab.cpp:3247 msgid "WHITE BULLET" msgstr "PALLINO BIANCO" -#: src/slic3r/GUI/Tab.cpp:3365 +#: src/slic3r/GUI/Tab.cpp:3269 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "L'icona a forma di PALLINO BIANCO indica un preset non di sistema (o non predefinito)." -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "L'icona a forma di PALLINO BIANCO indica che le impostazioni corrispondono agli ultimi preset salvati per il gruppo di opzioni corrente." -#: src/slic3r/GUI/Tab.cpp:3126 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "L'icona a forma di PALLINO BIANCO indica che il valore è lo stesso dell'ultimo preset salvato." -#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Larghezza" -#: src/libslic3r/GCode/PreviewData.cpp:398 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "Larghezza (mm)" -#: src/libslic3r/PrintConfig.cpp:2389 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "Width from the back sphere center to the front sphere center" msgstr "Spessore dal centro della sfera posteriore al centro della sfera anteriore" -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "Larghezza della torre di spurgo" -#: src/libslic3r/PrintConfig.cpp:2761 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Larghezza delle barre di connessione che collegano l'oggetto e il pad generato." -#: src/libslic3r/PrintConfig.cpp:2203 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "Larghezza del display" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "lavorerà sempre a %1%%%" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "rimarrà spenta." -#: src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction." msgstr "Gonfierà o sgonfierà i poligoni 2D processati in base al segno della correzione." -#: src/libslic3r/PrintConfig.cpp:2160 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "Spurgo in questo oggetto" -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "Spurgo nel riempimento di questo oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:564 src/libslic3r/PrintConfig.cpp:2202 -#: src/libslic3r/PrintConfig.cpp:2210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 +#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Opzioni pulizia" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130 -#: src/libslic3r/GCode/PreviewData.cpp:174 +#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Torre di spurgo" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "wipe tower" msgstr "torre di spurgo" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "Torre di spurgo" -#: src/slic3r/GUI/WipeTowerDialog.cpp:141 +#: src/slic3r/GUI/WipeTowerDialog.cpp:142 msgid "Wipe tower - Purging volume adjustment" msgstr "Torre di spurgo - Regolazione volume di spurgo" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1490 msgid "Wipe tower parameters" msgstr "Parametri torre di spurgo" -#: src/libslic3r/PrintConfig.cpp:2144 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "Angolo di rotazione della torre di spurgo" -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "Angolo di rotazione della torre di spurgo rispetto all'asse X." -#: src/libslic3r/PrintConfig.cpp:2092 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "Pulisci durante la retrazione" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "con una portata volumetrica" -#: src/libslic3r/PrintConfig.cpp:1460 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement." -msgstr "Con estrusori bowden, potrebbe essere saggio effettuare una certa retrazione veloce prima di effettuare un movimento di pulizia." +msgstr "Con estrusori bowden, potrebbe essere conveniente effettuare una certa retrazione veloce prima di effettuare un movimento di pulizia." -#: src/libslic3r/PrintConfig.cpp:1969 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" msgstr "Con guaina attorno al supporto" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:62 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:105 msgid "World coordinates" msgstr "Coordinate reali" -#: src/slic3r/GUI/UpdateDialogs.cpp:76 +#: src/slic3r/GUI/UpdateDialogs.cpp:92 msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" msgstr "Vuoi installarlo?\n\nNota: verrà prima creata un'istantanea della configurazione completa. Potrà essere ripristinata in qualunque momento se dovessero presentarsi problemi con la nuova versione.\n\nGruppo di configurazioni aggiornate:" -#: src/libslic3r/Zipper.cpp:95 +#: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "scrittura richiamo non riuscita" -#: src/libslic3r/PrintConfig.cpp:2993 +#: src/libslic3r/PrintConfig.cpp:3367 msgid "Write information about the model to the console." msgstr "Scrivi informazioni sul modello alla console." -#: src/slic3r/Utils/Duet.cpp:148 +#: src/slic3r/Utils/Duet.cpp:131 msgid "Wrong password" msgstr "Password errata" -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "Coordinata X dell'angolo frontale sinistro di una torre di spurgo" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" msgstr "Separazione XY tra un oggetto e il suo supporto" -#: src/libslic3r/PrintConfig.cpp:1795 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." msgstr "La separazione XY tra l'oggetto e il suo supporto. Se espresso in percentuale (ad esempio 50%), verrà calcolato sulla larghezza del perimetro esterno." -#: src/libslic3r/PrintConfig.cpp:2174 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" msgstr "Compensazione dimensione XY" -#: src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordinata Y dell'angolo frontale sinistro di una torre di spurgo" -#: src/slic3r/GUI/Plater.cpp:992 +#: src/slic3r/GUI/Plater.cpp:1167 msgid "Yes" msgstr "Si" -#: src/libslic3r/PrintConfig.cpp:1252 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "You can put here your personal notes. This text will be added to the G-code header comments." msgstr "È possibile inserire qui le note personali. Questo testo verrà aggiunto nei commenti iniziali del G-code." -#: src/libslic3r/PrintConfig.cpp:557 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "È possibile inserire qui le note riguardanti il filamento." -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "È possibile inserire qui le note riguardanti la stampante." -#: src/libslic3r/PrintConfig.cpp:2332 +#: src/libslic3r/PrintConfig.cpp:2570 msgid "You can put your notes regarding the SLA print material here." msgstr "È possibile inserire qui le proprie note riguardo il materiale di stampa SLA." -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:350 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "È possibile impostare un valore positivo per disattivare completamente la ventola durante i primi layer, così da non peggiorare l'adesione." -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "È possibile utilizzare tutte le opzioni di configurazione come variabili all'interno di questo modello. Ad esempio: [layer_height], [fill_density] ecc. Puoi anche usare [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename ], [nome_filename_input]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 msgid "You can't change a type of the last solid part of the object." msgstr "Non è possibile modificare il tipo dell'ultima parte solida dell'oggetto." -#: src/slic3r/GUI/Plater.cpp:2243 -msgid "You can't load SLA project if there is at least one multi-part object on the bed" -msgstr "Non è possibile caricare il progetto SLA se è presente almeno un oggetto multi-parte sul piano" - -#: src/slic3r/GUI/Plater.cpp:1746 +#: src/slic3r/GUI/Plater.cpp:2374 #, possible-c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Non è possibile aggiungere oggetti da %s perché uno o più sono multi-parte" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:565 +#: src/slic3r/GUI/Plater.cpp:2295 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "Non è possibile caricare un progetto SLA con un oggetto multi-parte sul piano" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" msgstr "Non è possibile utilizzare la modalità di ridimensionamento non uniforme per una selezione di più oggetti/parti" -#: src/slic3r/GUI/ConfigWizard.cpp:1637 +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" msgstr "Devi selezionare almeno un filamento per le stampanti selezionate" -#: src/slic3r/GUI/ConfigWizard.cpp:1643 +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "Devi selezionare almeno un materiale per le stampanti selezionate" -#: src/slic3r/GUI/GUI_App.cpp:300 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "Dovresti aggiornare i driver della scheda video." -#: src/slic3r/GUI/Preferences.cpp:130 +#: src/slic3r/GUI/Preferences.cpp:176 #, possible-c-format msgid "You need to restart %s to make the changes effective." msgstr "È necessario riavviare %s per rendere effettive le modifiche." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 #, possible-c-format msgid "You started your selection with %s Item." msgstr "Hai iniziato la selezione con %s elementi." -#: src/slic3r/GUI/MainFrame.cpp:772 +#: src/slic3r/GUI/DoubleSlider.cpp:1875 +msgid "Your current changes will delete all saved color changes." +msgstr "Le modifiche attuali cancelleranno tutti i cambi colore salvati." + +#: src/slic3r/GUI/DoubleSlider.cpp:1896 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "Le modifiche attuali cancelleranno tutti i cambi estrusore (attrezzo) salvati." + +#: src/slic3r/GUI/MainFrame.cpp:913 msgid "Your file was repaired." msgstr "Il file è stato riparato." -#: src/slic3r/GUI/Plater.cpp:1874 +#: src/slic3r/GUI/Plater.cpp:2512 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "L'oggetto sembra essere troppo grande, è stato quindi ridimensionato automaticamente per entrare nel piano di stampa." -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" msgstr "Offset Z" @@ -8134,37 +8922,47 @@ msgstr "Altezza primo layer a zero non è valida.\n\nL'altezza del primo layer v msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." msgstr "Altezza layer zero non valida.\n\nL'altezza layer verrà reimpostata a 0.01." -#: src/libslic3r/PrintConfig.cpp:2416 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +#: src/slic3r/GUI/Mouse3DController.cpp:326 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +msgid "Zoom" +msgstr "Zoom" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Zoom in" msgstr "Zoom in" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Zoom out" msgstr "Zoom out" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Zoom to all objects in scene, if none selected" msgstr "Zoom su tutti gli oggetti nella scena, se nessuno è selezionato" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Zoom to Bed" msgstr "Zoom sul piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "Zoom to selected object\nor all objects in scene, if none selected" +msgstr "Zoom sull'oggetto selezionato\no tutti gli oggetti in scena, se nessuno è selezionato" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 msgid "Zoom to selected object" msgstr "Zoom sull'oggetto selezionato" -#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733 -#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580 -#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962 -#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463 +#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 +#: src/libslic3r/PrintConfig.cpp:2839 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627 +#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 msgid "°C" msgstr "°C" diff --git a/resources/localization/nl/PrusaSlicer.mo b/resources/localization/nl/PrusaSlicer.mo index e76870c76507aa0702726ef8ea43dd9cc5333bc0..68dab14a0f1b63442270f23e16c0853b52f0353c 100644 GIT binary patch delta 60719 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

(zYL6&N_n6@s{uS{XCtJ0uu#b@!I!RmZ;K&8Z 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 ba-C8aLC|wq|NYa#r>g!%ZQ-qU!uS3+cBvW* delta 47197 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

M8t}{(TQ-&6|2?QEhyt%j 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 diff --git a/resources/localization/nl/PrusaSlicer_nl.po b/resources/localization/nl/PrusaSlicer_nl.po index 504897a1b0..8dbac533e5 100644 --- a/resources/localization/nl/PrusaSlicer_nl.po +++ b/resources/localization/nl/PrusaSlicer_nl.po @@ -1,16 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Language: nl_NL\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-19 13:53+0100\n" +"PO-Revision-Date: 2020-02-20 21:20+0100\n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.8\n" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: Oleksandra Iushchenko \n" -"Language-Team: \n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: Simon Tillema \n" +"Language: nl\n" #: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" @@ -34,7 +40,7 @@ msgstr "" msgid "About %s" msgstr "Over %s" -#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:63 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "Versie" @@ -65,7 +71,7 @@ msgstr "" "Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik, Simon " "Tillema en vele anderen." -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "" "Error parsing PrusaSlicer config file, it is probably corrupted. Try to " "manually delete the file to recover from the error. Your user profiles will " @@ -75,21 +81,7 @@ msgstr "" "de fout handmatig te verwijderen om het te herstellen. Dit heeft geen effect " "op uw gebruikersprofielen." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "" -"To except of redundant tool manipulation, \n" -"Color change(s) for unused extruder(s) was(were) deleted" -msgstr "" -"Kleurveranderingen voor ongebruikte extruders worden verwijderd,\n" -"met uitzondering van overbodige extruders." - -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:101 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3292 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3367 src/slic3r/GUI/Plater.cpp:135 -msgid "Info" -msgstr "Info" - -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:110 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 msgid "" "Copying of the temporary G-code to the output G-code failed. Maybe the SD " "card is write locked?" @@ -97,25 +89,25 @@ msgstr "" "Kopiëren van de tijdelijke G-code naar de output is mislukt. Is de SD-kaart " "geblokkeerd?" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:111 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:461 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 msgid "Running post-processing scripts" msgstr "Uitvoeren van nabewerkingsscripts" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:113 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 msgid "G-code file exported to %1%" msgstr "gcode-bestand geëxporteerd naar %1%" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:117 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:167 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 msgid "Slicing complete" msgstr "Slicen compleet" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:163 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 msgid "Masked SLA file exported to %1%" msgstr "Verborgen SLA-bestand geëxporteerd naar %1%" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:205 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 #, c-format msgid "" "%s has encountered an error. It was likely caused by running out of memory. " @@ -126,38 +118,38 @@ msgstr "" "zeker weet dat u genoeg RAM heeft, kan dit ook een andere systeemfout zijn. " "We waarderen het als u dit meldt." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:463 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Kopiëren van de tijdelijke G-code naar de output is mislukt" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:488 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "" -"Plannen van de upload naar '%1% '. Zie Venster -> Printhost uploadwachtrij" +"Plannen van de upload naar '%1%'. Zie Venster -> Printhost uploadwachtrij" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 src/slic3r/GUI/GUI_ObjectList.cpp:1932 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2055 msgid "Shape" msgstr "Vorm" -#: src/slic3r/GUI/BedShapeDialog.cpp:75 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "Rechthoekig" -#: src/slic3r/GUI/BedShapeDialog.cpp:79 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:154 -#: src/slic3r/GUI/Tab.cpp:2292 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2326 msgid "Size" msgstr "Grootte" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." msgstr "Breedte en diepte van rechthoekig bed." -#: src/slic3r/GUI/BedShapeDialog.cpp:86 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "Nulpunt" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "" "Distance of the 0,0 G-code coordinate from the front left corner of the " "rectangle." @@ -165,52 +157,55 @@ msgstr "" "Afstand vanaf het nulpunt in de G-code tot de linkervoorhoek van de " "rechthoek." -#: src/slic3r/GUI/BedShapeDialog.cpp:91 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "Rond" -#: src/slic3r/GUI/BedShapeDialog.cpp:94 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:926 src/slic3r/GUI/ConfigWizard.cpp:940 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 -#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/slic3r/GUI/wxExtensions.cpp:628 -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:82 -#: src/libslic3r/PrintConfig.cpp:91 src/libslic3r/PrintConfig.cpp:225 -#: src/libslic3r/PrintConfig.cpp:300 src/libslic3r/PrintConfig.cpp:308 -#: src/libslic3r/PrintConfig.cpp:358 src/libslic3r/PrintConfig.cpp:368 -#: src/libslic3r/PrintConfig.cpp:494 src/libslic3r/PrintConfig.cpp:505 -#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:702 -#: src/libslic3r/PrintConfig.cpp:1228 src/libslic3r/PrintConfig.cpp:1289 -#: src/libslic3r/PrintConfig.cpp:1307 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1379 src/libslic3r/PrintConfig.cpp:1389 -#: src/libslic3r/PrintConfig.cpp:1511 src/libslic3r/PrintConfig.cpp:1519 -#: src/libslic3r/PrintConfig.cpp:1560 src/libslic3r/PrintConfig.cpp:1568 -#: src/libslic3r/PrintConfig.cpp:1578 src/libslic3r/PrintConfig.cpp:1586 -#: src/libslic3r/PrintConfig.cpp:1594 src/libslic3r/PrintConfig.cpp:1677 -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:1974 -#: src/libslic3r/PrintConfig.cpp:2008 src/libslic3r/PrintConfig.cpp:2203 -#: src/libslic3r/PrintConfig.cpp:2210 src/libslic3r/PrintConfig.cpp:2217 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2257 -#: src/libslic3r/PrintConfig.cpp:2267 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2600 -#: src/libslic3r/PrintConfig.cpp:2609 src/libslic3r/PrintConfig.cpp:2619 -#: src/libslic3r/PrintConfig.cpp:2663 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2685 src/libslic3r/PrintConfig.cpp:2705 -#: src/libslic3r/PrintConfig.cpp:2715 src/libslic3r/PrintConfig.cpp:2725 -#: src/libslic3r/PrintConfig.cpp:2743 src/libslic3r/PrintConfig.cpp:2758 -#: src/libslic3r/PrintConfig.cpp:2772 src/libslic3r/PrintConfig.cpp:2783 -#: src/libslic3r/PrintConfig.cpp:2796 src/libslic3r/PrintConfig.cpp:2841 -#: src/libslic3r/PrintConfig.cpp:2851 src/libslic3r/PrintConfig.cpp:2860 -#: src/libslic3r/PrintConfig.cpp:2870 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" -#: src/slic3r/GUI/BedShapeDialog.cpp:95 src/libslic3r/PrintConfig.cpp:699 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "Diameter" -#: src/slic3r/GUI/BedShapeDialog.cpp:96 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "" "Diameter of the print bed. It is assumed that origin (0,0) is located in the " "center." @@ -218,73 +213,73 @@ msgstr "" "Diameter van het printbed. Aangenomen wordt dat het nulpunt in het midden " "ligt." -#: src/slic3r/GUI/BedShapeDialog.cpp:100 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Custom" -#: src/slic3r/GUI/BedShapeDialog.cpp:104 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "Laad vorm van STL-bestand..." -#: src/slic3r/GUI/BedShapeDialog.cpp:157 +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Instellingen" -#: src/slic3r/GUI/BedShapeDialog.cpp:174 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "Textuur" -#: src/slic3r/GUI/BedShapeDialog.cpp:184 src/slic3r/GUI/BedShapeDialog.cpp:263 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "Laad..." -#: src/slic3r/GUI/BedShapeDialog.cpp:192 src/slic3r/GUI/BedShapeDialog.cpp:271 -#: src/slic3r/GUI/Tab.cpp:3080 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3114 msgid "Remove" msgstr "Verwijder" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 msgid "Not found: " msgstr "Niet gevonden: " -#: src/slic3r/GUI/BedShapeDialog.cpp:253 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "Model" -#: src/slic3r/GUI/BedShapeDialog.cpp:489 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" msgstr "Kies een STL-bestand om te importeren als vorm van het bed:" -#: src/slic3r/GUI/BedShapeDialog.cpp:496 src/slic3r/GUI/BedShapeDialog.cpp:545 -#: src/slic3r/GUI/BedShapeDialog.cpp:570 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "Ongeldig bestandsformaat." -#: src/slic3r/GUI/BedShapeDialog.cpp:507 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "Fout! Ongeldig model" -#: src/slic3r/GUI/BedShapeDialog.cpp:515 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "Het geselecteerde bestand bevat geen geometrie." -#: src/slic3r/GUI/BedShapeDialog.cpp:519 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "" "The selected file contains several disjoint areas. This is not supported." msgstr "" "Het geselecteerde bestand bevat niet-verbonden delen. Dit wordt niet " "ondersteund." -#: src/slic3r/GUI/BedShapeDialog.cpp:534 +#: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Kies een PNG- of SVG-bestand als textuur voor het bed:" -#: src/slic3r/GUI/BedShapeDialog.cpp:559 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" msgstr "Kies een STL-bestand als vorm voor het bed:" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:885 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "Vorm van het bed" @@ -340,10 +335,10 @@ msgid "" msgstr "" "Een laagdikte van 0 is niet mogelijk.\n" "\n" -"De laagdikte wordt ingesteld op 0,01." +"De laagdikte wordt ingesteld op 0.01." #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1039 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Laagdikte" @@ -358,11 +353,11 @@ msgstr "" "\n" "De laagdikte voor de eerste laag wordt ingesteld op 0,01." -#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:878 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "Laagdikte eerste laag" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 +#: src/slic3r/GUI/ConfigManipulation.cpp:81 #, no-c-format msgid "" "The Spiral Vase mode requires:\n" @@ -370,25 +365,27 @@ msgid "" "- no top solid layers\n" "- 0% fill density\n" "- no support material\n" -"- inactive Ensure vertical shell thickness" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" msgstr "" "De spiraalmodus vereist:\n" "- één perimeter\n" -"- geen toplagen\n" +"- geen dichte toplagen\n" "- vullingsdichtheid van 0%\n" -"- geen support\n" -"- instelling 'Garandeer verticale shelldikte' uit" +"- geen supportmateriaal\n" +"- 'Garandeer verticale shelldikte' aan\n" +"- 'Detecteer dunne wanden' uit" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "" "Moeten deze instellingen aangepast worden om de spiraalmodus te activeren?" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "Spiraalmodus" -#: src/slic3r/GUI/ConfigManipulation.cpp:107 +#: src/slic3r/GUI/ConfigManipulation.cpp:115 msgid "" "The Wipe Tower currently supports the non-soluble supports only\n" "if they are printed with the current extruder without triggering a tool " @@ -402,17 +399,17 @@ msgstr "" "(zowel 'support_material_extruder' als 'support_material_interface_extruder' " "moeten op 0 gezet worden)." -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "" "Moeten deze instellingen aangepast worden om het afveegblok te activeren?" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "Afveegblok" -#: src/slic3r/GUI/ConfigManipulation.cpp:128 +#: src/slic3r/GUI/ConfigManipulation.cpp:136 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers\n" "need to be synchronized with the object layers." @@ -420,13 +417,13 @@ msgstr "" "De supportlagen voor het afveegblok moeten gesynchroniseerd zijn met de\n" "objectlagen om met oplosbaar support te werken." -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "" "Moeten de supportlagen gesynchroniseerd worden om het afveegblok te " "activeren?" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 +#: src/slic3r/GUI/ConfigManipulation.cpp:159 msgid "" "Supports work better, if the following feature is enabled:\n" "- Detect bridging perimeters" @@ -434,49 +431,49 @@ msgstr "" "Support werkt beter als de volgende instellingen aan staan:\n" "- Detecteer brugperimeters" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "Moeten deze instellingen aangepast worden voor het support?" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "Supportgenerator" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Het %1% vullingspatroon werkt niet bij een dichtheid van 100%%." -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "Moet omgeschakeld worden naar een rechtlijnig vulpatroon?" -#: src/slic3r/GUI/ConfigManipulation.cpp:203 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:89 -#: src/slic3r/GUI/GUI_ObjectList.cpp:609 src/slic3r/GUI/Plater.cpp:516 -#: src/slic3r/GUI/Tab.cpp:1071 src/slic3r/GUI/Tab.cpp:1072 -#: src/libslic3r/PrintConfig.cpp:182 src/libslic3r/PrintConfig.cpp:405 -#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:765 -#: src/libslic3r/PrintConfig.cpp:779 src/libslic3r/PrintConfig.cpp:816 -#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:980 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1017 -#: src/libslic3r/PrintConfig.cpp:1036 src/libslic3r/PrintConfig.cpp:1724 -#: src/libslic3r/PrintConfig.cpp:1741 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:522 +#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "Vulling" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "De kopinsteek mag niet groter zijn dan de kopbreedte." -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "Ongeldige kopinsteek" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "De pinkopdiameter moet kleiner zijn dan de pijlerdiameter." -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "Ongeldige pinkopdiameter" @@ -508,7 +505,7 @@ msgstr "Actief" msgid "PrusaSlicer version" msgstr "PrusaSlicer-versie" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1408 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1519 msgid "print" msgstr "print" @@ -516,11 +513,11 @@ msgstr "print" msgid "filaments" msgstr "filamenten" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1412 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1523 msgid "printer" msgstr "printer" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:961 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 msgid "vendor" msgstr "leverancier" @@ -573,41 +570,41 @@ msgstr "Alle standaard" msgid "Standard" msgstr "Standaard" -#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:545 -#: src/slic3r/GUI/Tab.cpp:3130 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3164 msgid "All" msgstr "Alle" -#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:546 -#: src/slic3r/GUI/Plater.cpp:488 src/slic3r/GUI/Plater.cpp:628 +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:494 src/slic3r/GUI/Plater.cpp:634 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Geen" -#: src/slic3r/GUI/ConfigWizard.cpp:412 +#: src/slic3r/GUI/ConfigWizard.cpp:427 #, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Welkom bij de %s configuratie-assistent" -#: src/slic3r/GUI/ConfigWizard.cpp:414 +#: src/slic3r/GUI/ConfigWizard.cpp:429 #, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Welkom bij de %s configuratiewizard" -#: src/slic3r/GUI/ConfigWizard.cpp:416 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "Welkom" -#: src/slic3r/GUI/ConfigWizard.cpp:418 +#: src/slic3r/GUI/ConfigWizard.cpp:433 #, c-format msgid "" "Hello, welcome to %s! This %s helps you with the initial configuration; just " "a few settings and you will be ready to print." msgstr "" -"Hallo, welkom bij %s! Deze %s helpt met de eerste configuratie; nog een paar " +"Hallo, welkom bij %s! Deze '%s' helpt met de eerste setup; nog een paar " "instellingen en de printer kan gebruikt worden." -#: src/slic3r/GUI/ConfigWizard.cpp:423 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "" "Remove user profiles - install from scratch (a snapshot will be taken " "beforehand)" @@ -615,52 +612,52 @@ msgstr "" "Verwijder alle gebruiksprofielen; installeer vanaf scratch (vooraf wordt een " "snapshot genomen)" -#: src/slic3r/GUI/ConfigWizard.cpp:466 +#: src/slic3r/GUI/ConfigWizard.cpp:481 #, c-format msgid "%s Family" msgstr "%s serie" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "Leverancier:" -#: src/slic3r/GUI/ConfigWizard.cpp:538 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "Profiel:" -#: src/slic3r/GUI/ConfigWizard.cpp:575 src/slic3r/GUI/ConfigWizard.cpp:603 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(Alle)" -#: src/slic3r/GUI/ConfigWizard.cpp:704 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "Custom printersetup" -#: src/slic3r/GUI/ConfigWizard.cpp:704 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Custom printer" -#: src/slic3r/GUI/ConfigWizard.cpp:706 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "Definieer een custom-printerprofiel" -#: src/slic3r/GUI/ConfigWizard.cpp:708 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "Custom-profielnaam:" -#: src/slic3r/GUI/ConfigWizard.cpp:732 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "Automatische updates" -#: src/slic3r/GUI/ConfigWizard.cpp:732 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "Updates" -#: src/slic3r/GUI/ConfigWizard.cpp:740 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Controleer op programma-updates" -#: src/slic3r/GUI/ConfigWizard.cpp:744 +#: src/slic3r/GUI/ConfigWizard.cpp:773 #, c-format msgid "" "If enabled, %s checks for new application versions online. When a new " @@ -673,11 +670,11 @@ msgstr "" "volgende keer opstarten (nooit tijdens gebruik van het programma). Dit is " "slechts een melding; er zal geen automatische installatie plaatsvinden." -#: src/slic3r/GUI/ConfigWizard.cpp:750 src/slic3r/GUI/Preferences.cpp:77 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "Update ingebouwde presets automatisch" -#: src/slic3r/GUI/ConfigWizard.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:783 #, c-format msgid "" "If enabled, %s downloads updates of built-in system presets in the " @@ -690,7 +687,7 @@ msgstr "" "locatie. Wanneer een nieuwe versie beschikbaar komt zal deze getoond worden " "bij het opstarten." -#: src/slic3r/GUI/ConfigWizard.cpp:757 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "" "Updates are never applied without user's consent and never overwrite user's " "customized settings." @@ -698,7 +695,7 @@ msgstr "" "Updates worden nooit geïnstalleerd en overschreven zonder toestemming van de " "gebruiker." -#: src/slic3r/GUI/ConfigWizard.cpp:762 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "" "Additionally a backup snapshot of the whole configuration is created before " "an update is applied." @@ -706,11 +703,35 @@ msgstr "" "Voor een update wordt geïnstalleerd wordt daarnaast een backup-snapshot van " "de hele configuratie gemaakt." -#: src/slic3r/GUI/ConfigWizard.cpp:769 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1660 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3950 src/slic3r/GUI/Plater.cpp:3203 +#: src/slic3r/GUI/Plater.cpp:3912 src/slic3r/GUI/Plater.cpp:3941 +msgid "Reload from disk" +msgstr "Herlaad vanaf schijf" + +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "" +"Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "" +"Exporteer hele padnamen van modellen en onderdelen in .3MF- en .AMF-bestanden" + +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file " +"using an open file dialog." +msgstr "" +"Als dit is ingeschakeld kan het 'Herladen van schijf'-commando automatisch " +"bestanden vinden en laden wanneer deze worden opgevraagd.\n" +"Als dit niet is ingeschakeld zal het commando vragen elk bestand te " +"selecteren door een bestandsvenster te openen." + +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "Weergavemodus" -#: src/slic3r/GUI/ConfigWizard.cpp:771 +#: src/slic3r/GUI/ConfigWizard.cpp:815 msgid "" "PrusaSlicer's user interfaces comes in three variants:\n" "Simple, Advanced, and Expert.\n" @@ -718,74 +739,74 @@ msgid "" "regular 3D printing. The other two offer progressively more sophisticated " "fine-tuning, they are suitable for advanced and expert users, respectively." msgstr "" -"De gebruikersinterfaces van PrusaSlicer kent drie varianten:\n" +"De gebruikersinterface van PrusaSlicer kent drie varianten:\n" "Eenvoudig, Geavanceerd en Expert.\n" "De eenvoudige modus laat alleen de meest gebruikte instellingen zien. De " "andere twee bieden meer geavanceerde finetuning. Ze zijn geschikt voor " "respectievelijk gevorderde en deskundige gebruikers." -#: src/slic3r/GUI/ConfigWizard.cpp:776 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "Eenvoudige modus" -#: src/slic3r/GUI/ConfigWizard.cpp:777 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "Geavanceerde modus" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "Expertmodus" -#: src/slic3r/GUI/ConfigWizard.cpp:812 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "Overige leveranciers" -#: src/slic3r/GUI/ConfigWizard.cpp:816 +#: src/slic3r/GUI/ConfigWizard.cpp:860 #, c-format msgid "Pick another vendor supported by %s" -msgstr "Kies een andere leverancier die ondersteunt wordt door %s" +msgstr "Kies een andere leverancier die ondersteund wordt door %s" -#: src/slic3r/GUI/ConfigWizard.cpp:847 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "Firmwaretype" -#: src/slic3r/GUI/ConfigWizard.cpp:847 src/slic3r/GUI/Tab.cpp:1917 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1949 msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:851 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "Kies het firmwaretype dat de printer gebruikt." -#: src/slic3r/GUI/ConfigWizard.cpp:885 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "Grootte en vorm van het bed" -#: src/slic3r/GUI/ConfigWizard.cpp:888 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "Stel de vorm van het printbed in." -#: src/slic3r/GUI/ConfigWizard.cpp:908 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "Filament- en nozzlediameters" -#: src/slic3r/GUI/ConfigWizard.cpp:908 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "Printdiameters" -#: src/slic3r/GUI/ConfigWizard.cpp:922 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Voer de nozzlediameter in." -#: src/slic3r/GUI/ConfigWizard.cpp:925 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "Nozzlediameter:" -#: src/slic3r/GUI/ConfigWizard.cpp:935 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "Voer de filamentdiameter in." -#: src/slic3r/GUI/ConfigWizard.cpp:936 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "" "Good precision is required, so use a caliper and do multiple measurements " "along the filament, then compute the average." @@ -793,35 +814,35 @@ msgstr "" "Nauwkeurigheid is belangrijk. Gebruik een schuifmaat en meet de diameter op " "meerdere plekken over de gehele rol. Bereken daarna het gemiddelde." -#: src/slic3r/GUI/ConfigWizard.cpp:939 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "Filamentdiameter:" -#: src/slic3r/GUI/ConfigWizard.cpp:973 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "Extruder- en bedtemperaturen" -#: src/slic3r/GUI/ConfigWizard.cpp:973 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "Temperaturen" -#: src/slic3r/GUI/ConfigWizard.cpp:989 +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "Voer de benodigde temperatuur in om het filament te extruderen." -#: src/slic3r/GUI/ConfigWizard.cpp:990 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Een vuistregel is 180 - 230 °C voor PLA en 220 - 260 °C voor ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:993 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "Extrusietemperatuur:" -#: src/slic3r/GUI/ConfigWizard.cpp:994 src/slic3r/GUI/ConfigWizard.cpp:1008 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" -#: src/slic3r/GUI/ConfigWizard.cpp:1003 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "" "Enter the bed temperature needed for getting your filament to stick to your " "heated bed." @@ -829,7 +850,7 @@ msgstr "" "Voer de temperatuur van het bed in om het filament goed te laten hechten aan " "het bed." -#: src/slic3r/GUI/ConfigWizard.cpp:1004 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "" "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have " "no heated bed." @@ -837,122 +858,452 @@ msgstr "" "Een vuistregel is 60 °C voor PLA en 110 °C voor ABS. Stel in op 0 als de " "printer geen verwarmd bed heeft." -#: src/slic3r/GUI/ConfigWizard.cpp:1007 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "Bedtemperatuur:" -#: src/slic3r/GUI/ConfigWizard.cpp:1426 src/slic3r/GUI/ConfigWizard.cpp:1862 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "Filamenten" -#: src/slic3r/GUI/ConfigWizard.cpp:1426 src/slic3r/GUI/ConfigWizard.cpp:1864 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "SLA-materialen" -#: src/slic3r/GUI/ConfigWizard.cpp:1480 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" -msgstr "FDM-technologie printers" +msgstr "FFF-technologie printers" -#: src/slic3r/GUI/ConfigWizard.cpp:1485 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "SLA-technologie printers" -#: src/slic3r/GUI/ConfigWizard.cpp:1625 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1903 +#: src/slic3r/GUI/DoubleSlider.cpp:1924 src/slic3r/GUI/GUI.cpp:240 +msgid "Notice" +msgstr "Let op" + +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" msgstr "Selecteer tenminste één filament voor de geselecteerde printer(s)" -#: src/slic3r/GUI/ConfigWizard.cpp:1631 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "Wilt u automatisch de standaard filamenten selecteren?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "Selecteer tenminste één materiaal voor de geselecteerde printer(s)" -#: src/slic3r/GUI/ConfigWizard.cpp:1831 +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "Wilt u automatisch de standaard materialen selecteren?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "Selecteer alle standaard printers" -#: src/slic3r/GUI/ConfigWizard.cpp:1834 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "< Terug" -#: src/slic3r/GUI/ConfigWizard.cpp:1835 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "Volgende >" -#: src/slic3r/GUI/ConfigWizard.cpp:1836 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "Voltooien" -#: src/slic3r/GUI/ConfigWizard.cpp:1837 src/slic3r/GUI/FirmwareDialog.cpp:151 -#: src/slic3r/GUI/ProgressStatusBar.cpp:27 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Annuleren" -#: src/slic3r/GUI/ConfigWizard.cpp:1850 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" -msgstr "Prusa FDM-technologie printers" +msgstr "Prusa FFF-technologie printers" -#: src/slic3r/GUI/ConfigWizard.cpp:1853 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Prusa MSLA-technologie printers" -#: src/slic3r/GUI/ConfigWizard.cpp:1862 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "Profielselectie voor filament" -#: src/slic3r/GUI/ConfigWizard.cpp:1862 src/slic3r/GUI/GUI_ObjectList.cpp:3415 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3549 msgid "Type:" msgstr "Type:" -#: src/slic3r/GUI/ConfigWizard.cpp:1864 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "Profielselectie voor SLA materialen" -#: src/slic3r/GUI/ConfigWizard.cpp:1864 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "Laagdikte:" -#: src/slic3r/GUI/ConfigWizard.cpp:1962 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "Configuratie-assistent" -#: src/slic3r/GUI/ConfigWizard.cpp:1963 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "Configuratie-assistent" -#: src/slic3r/GUI/ConfigWizard.cpp:1965 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "Configuratiewizard" -#: src/slic3r/GUI/ConfigWizard.cpp:1966 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" msgstr "Configuratiewizard" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "Plaats inserts in gaten en ga door met printen" + +#: src/slic3r/GUI/DoubleSlider.cpp:948 +msgid "One layer mode" +msgstr "Een-laagsmodus" + +#: src/slic3r/GUI/DoubleSlider.cpp:950 +msgid "Discard all custom changes" +msgstr "Alle aangepaste wijzigingen afwijzen" + +#: src/slic3r/GUI/DoubleSlider.cpp:953 +#, c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "Ga naar hoogte %s of stel extrudervolgorde voor de hele print in" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 src/slic3r/GUI/DoubleSlider.cpp:1527 +#: src/slic3r/GUI/DoubleSlider.cpp:1649 +msgid "Jump to height" +msgstr "Ga naar hoogte" + +#: src/slic3r/GUI/DoubleSlider.cpp:958 +msgid "Edit current color - Right click the colored slider segment" +msgstr "Wijzig huidige kleur; klik op het gekleurde segment" + +#: src/slic3r/GUI/DoubleSlider.cpp:968 +msgid "Print mode" +msgstr "Printmodus" + +#: src/slic3r/GUI/DoubleSlider.cpp:982 +msgid "Add extruder change - Left click" +msgstr "Voeg extruderwissel toe; linkermuisknop" + +#: src/slic3r/GUI/DoubleSlider.cpp:984 +msgid "" +"Add color change - Left click for predefined color or Shift + Left click for " +"custom color selection" +msgstr "" +"Voeg kleurwissel toe; linkermuisknop voor ingestelde kleur of SHIFT + " +"linkermuisknop voor custom kleurselectie" + +#: src/slic3r/GUI/DoubleSlider.cpp:986 +msgid "Add color change - Left click" +msgstr "Voeg kleurwissel toe; linkermuisknop" + +#: src/slic3r/GUI/DoubleSlider.cpp:987 +msgid "or press \"+\" key" +msgstr "of druk op de '+'-toets" + +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" +msgstr "Voeg nog een code toe; CTRL + linkermuisknop" + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" +msgstr "Voeg nog een code toe; rechtermuisknop" + +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing " +"sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Het achtereenvolgens printen staat aan.\n" +"Het is niet mogelijk om custom G-codes aan objecten toe te voegen voor het " +"achtereenvolgens printen.\n" +"Deze code wordt niet uitgevoerd bij de generatie van de G-code." + +#: src/slic3r/GUI/DoubleSlider.cpp:1003 +msgid "Color change (\"%1%\")" +msgstr "Kleurwissel (%1%)" + +#: src/slic3r/GUI/DoubleSlider.cpp:1004 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "Kleurwissel (%1%) voor extruder %2%" + +#: src/slic3r/GUI/DoubleSlider.cpp:1007 +msgid "Pause print (\"%1%\")" +msgstr "Pauzeer print (%1%)" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "Extruder (tool) is veranderd naar extruder %1%" + +#: src/slic3r/GUI/DoubleSlider.cpp:1017 +msgid "Note" +msgstr "Let op" + +#: src/slic3r/GUI/DoubleSlider.cpp:1019 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"De G-code die is gekoppeld aan deze markering is in strijd met de " +"printmodus.\n" +"Dit aanpassen zal de gegevens van de schuif ook aanpassen." + +#: src/slic3r/GUI/DoubleSlider.cpp:1022 +msgid "" +"There is a color change for extruder that won't be used till the end of " +"print job.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Er is een kleurwissel voor een extruder die niet wordt gebruikt tot het eind " +"van de print.\n" +"Deze code wordt niet toegevoegd bij de generatie van de G-code." + +#: src/slic3r/GUI/DoubleSlider.cpp:1025 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Er is een extruderwissel naar dezelfde extruder ingesteld.\n" +"Deze code wordt niet toegevoegd bij de generatie van de G-code." + +#: src/slic3r/GUI/DoubleSlider.cpp:1028 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"Er is een kleurwissel voor een extruder die niet eerder gebruikt is.\n" +"Controleer de instellingen om overbodige kleurwisselingen te voorkomen." + +#: src/slic3r/GUI/DoubleSlider.cpp:1033 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "Verwijder markering; linkermuisknop of druk op de '-'-knop" + +#: src/slic3r/GUI/DoubleSlider.cpp:1035 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "Bewerk markering; CTRL + linkermuisknop" + +#: src/slic3r/GUI/DoubleSlider.cpp:1036 +msgid "Edit tick mark - Right click" +msgstr "Bewerk markering; rechtermuisknop" + +#: src/slic3r/GUI/DoubleSlider.cpp:1132 src/slic3r/GUI/DoubleSlider.cpp:1168 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1700 +#: src/slic3r/GUI/Tab.cpp:2322 src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format +msgid "Extruder %d" +msgstr "Extruder %d" + +#: src/slic3r/GUI/DoubleSlider.cpp:1133 src/slic3r/GUI/GUI_ObjectList.cpp:1701 +msgid "active" +msgstr "actief" + +#: src/slic3r/GUI/DoubleSlider.cpp:1142 +msgid "Switch code to Change extruder" +msgstr "Code om van extruder te wisselen" + +#: src/slic3r/GUI/DoubleSlider.cpp:1142 src/slic3r/GUI/GUI_ObjectList.cpp:1667 +msgid "Change extruder" +msgstr "Wissel extruder" + +#: src/slic3r/GUI/DoubleSlider.cpp:1143 +msgid "Change extruder (N/A)" +msgstr "Wissel extruder (n.v.t.)" + +#: src/slic3r/GUI/DoubleSlider.cpp:1145 +msgid "Use another extruder" +msgstr "Gebruik een andere extruder" + +#: src/slic3r/GUI/DoubleSlider.cpp:1169 +msgid "used" +msgstr "gebruikt" + +#: src/slic3r/GUI/DoubleSlider.cpp:1177 +msgid "Switch code to Color change (%1%) for:" +msgstr "Code om naar kleur %1% te wisselen voor:" + +#: src/slic3r/GUI/DoubleSlider.cpp:1178 +msgid "Add color change (%1%) for:" +msgstr "Voeg kleurwissel (%1%) toe voor:" + +#: src/slic3r/GUI/DoubleSlider.cpp:1475 +msgid "Add color change" +msgstr "Voeg kleurwissel toe" + +#: src/slic3r/GUI/DoubleSlider.cpp:1485 +msgid "Add pause print" +msgstr "Voeg printpauze toe" + +#: src/slic3r/GUI/DoubleSlider.cpp:1488 +msgid "Add custom G-code" +msgstr "Voeg custom G-code toe" + +#: src/slic3r/GUI/DoubleSlider.cpp:1506 +msgid "Edit color" +msgstr "Bewerk kleur" + +#: src/slic3r/GUI/DoubleSlider.cpp:1507 +msgid "Edit pause print message" +msgstr "Bewerk printpauze-bericht" + +#: src/slic3r/GUI/DoubleSlider.cpp:1508 +msgid "Edit custom G-code" +msgstr "Bewerk custom G-code" + +#: src/slic3r/GUI/DoubleSlider.cpp:1514 +msgid "Delete color change" +msgstr "Verwijder kleurwissel" + +#: src/slic3r/GUI/DoubleSlider.cpp:1515 +msgid "Delete tool change" +msgstr "Verwijder toolwissel" + +#: src/slic3r/GUI/DoubleSlider.cpp:1516 +msgid "Delete pause print" +msgstr "Verwijder printpauze" + +#: src/slic3r/GUI/DoubleSlider.cpp:1517 +msgid "Delete custom G-code" +msgstr "Verwijder custom G-code" + +#: src/slic3r/GUI/DoubleSlider.cpp:1530 +msgid "Set extruder sequence for the entire print" +msgstr "Stel extrudervolgorde in voor de hele print" + +#: src/slic3r/GUI/DoubleSlider.cpp:1616 +msgid "Enter custom G-code used on current layer" +msgstr "Voer custom G-code in voor de huidige laag" + +#: src/slic3r/GUI/DoubleSlider.cpp:1617 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "Custom G-code voor huidige laag (%1% mm)." + +#: src/slic3r/GUI/DoubleSlider.cpp:1632 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "" +"Voer een kort bericht in om te tonen op het printscherm tijdens een pauze" + +#: src/slic3r/GUI/DoubleSlider.cpp:1633 +msgid "Message for pause print on current layer (%1% mm)." +msgstr "Kort bericht voor printpauze bij huidige laag (%1% mm)." + +#: src/slic3r/GUI/DoubleSlider.cpp:1648 +msgid "Enter the height you want to jump to" +msgstr "Voer de hoogte in waar u naartoe wilt" + +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." +msgstr "" +"De laatste gegevens van de kleurwissel zijn opgeslagen voor enkel-" +"extruderprinters." + +#: src/slic3r/GUI/DoubleSlider.cpp:1898 src/slic3r/GUI/DoubleSlider.cpp:1914 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "" +"De laatste gegevens van de kleurwissel zijn opgeslagen voor een multi-" +"extruderprinter." + +#: src/slic3r/GUI/DoubleSlider.cpp:1900 +msgid "Your current changes will delete all saved color changes." +msgstr "De huidige wijzigingen zullen alle kleurwisselingen verwijderen." + +#: src/slic3r/GUI/DoubleSlider.cpp:1901 src/slic3r/GUI/DoubleSlider.cpp:1922 +msgid "Are you sure you want to continue?" +msgstr "Weet u zeker dat u wilt doorgaan?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1915 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged" +msgstr "" +"Selecteer JA als u alle opgeslagen toolwisselingen wilt verwijdere,\n" +"Selecteer NEE als u alle toolwisselingen wil omzetten in kleurwisselingen\n" +"of Annuleer om het ongewijzigd te laten" + +#: src/slic3r/GUI/DoubleSlider.cpp:1918 +msgid "Do you want to delete all saved tool changes?" +msgstr "Wilt u alle opgeslagen toolwisselingen verwijderen?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1920 +msgid "" +"The last color change data was saved for a multi extruder printing with tool " +"changes for whole print." +msgstr "" +"De laatste gegevens van de kleurwisseling zijn opgeslagen voor een multi-" +"extruderprinter met toolwisselingen voor de hele print." + +#: src/slic3r/GUI/DoubleSlider.cpp:1921 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "" +"De huidige wijzigingen worden verwijderd voor alle extruder " +"(tool)wisselingen." + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:23 +msgid "Set extruder sequence" +msgstr "Stel extrudervolgorde in" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:39 +msgid "Set extruder change for every" +msgstr "Stel toolwissel in voor elke" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 +msgid "layers" +msgstr "lagen" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 +msgid "Set extruder(tool) sequence" +msgstr "Stel toolvolgorde in" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 +msgid "Remove extruder from sequence" +msgstr "Verwijder extruder uit de reeks" + +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 +msgid "Add extruder to sequence" +msgstr "Voeg extruder toe aan de reeks" + +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "standaardwaarde" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "parameternaam" -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:570 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "n.v.t." -#: src/slic3r/GUI/Field.cpp:170 +#: src/slic3r/GUI/Field.cpp:175 #, c-format msgid "%s doesn't support percentage" msgstr "%s ondersteunt geen percentage" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Ongeldige numerieke invoer." -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "Ingevoerde waarde valt buiten het bereik" -#: src/slic3r/GUI/Field.cpp:235 +#: src/slic3r/GUI/Field.cpp:240 #, c-format msgid "" "Do you mean %s%% instead of %s %s?\n" @@ -963,7 +1314,7 @@ msgstr "" "Selecteer JA als de waarden aangepast moeten worden naar %s%%\n" "of NEE als %s %s is de juiste waarde." -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "Parametervalidatie" @@ -1049,8 +1400,8 @@ msgstr "Firmwareflasher" msgid "Firmware image:" msgstr "Firmwarebestand:" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1635 -#: src/slic3r/GUI/Tab.cpp:1691 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 +#: src/slic3r/GUI/Tab.cpp:1723 msgid "Browse" msgstr "Zoek" @@ -1083,6 +1434,7 @@ msgid "Advanced: Output log" msgstr "Geavanceerd: Output logboek" #: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Sluit" @@ -1103,95 +1455,99 @@ msgstr "Bevestiging" msgid "Cancelling..." msgstr "Annuleren..." -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4568 msgid "Variable layer height" msgstr "Variabele laagdikte" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "Linkermuisknop:" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "Voeg detail toe" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "Rechtermuisknop:" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "Verwijder detail" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "Shift + linkermuisknop:" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "Reset" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "Shift + rechtermuisknop:" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "Egaliseren" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "Scrollwieltje:" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "Vergroot/verklein bewerkgebied" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "Adaptief" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "Drempelwaarde (mm)" +#: src/slic3r/GUI/GLCanvas3D.cpp:273 +msgid "Quality / Speed" +msgstr "Kwaliteit / Snelheid" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 +msgid "Higher print quality versus higher print speed." +msgstr "Hogere printkwaliteit tegenover een hogere printsnelheid." + +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "Egaliseer" -#: src/slic3r/GUI/GLCanvas3D.cpp:291 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Radius" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "Behoud min" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "Reset" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "Variabele laagdikte - handmatig bewerken" -#: src/slic3r/GUI/GLCanvas3D.cpp:794 +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "Er is een object buiten het printbereik gedetecteerd" -#: src/slic3r/GUI/GLCanvas3D.cpp:795 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "Er is een printbeweging buiten het printbereik gedetecteerd" -#: src/slic3r/GUI/GLCanvas3D.cpp:796 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "Er is SLA-support buiten het printbereik gedetecteerd" -#: src/slic3r/GUI/GLCanvas3D.cpp:797 -msgid "Some objects are not visible when editing supports" -msgstr "Sommige objecten zijn niet zichtbaar als het support bewerkt wordt" +#: src/slic3r/GUI/GLCanvas3D.cpp:688 +msgid "Some objects are not visible" +msgstr "Sommige objecten zijn niet zichtbaar" -#: src/slic3r/GUI/GLCanvas3D.cpp:799 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "" "An object outside the print area was detected\n" "Resolve the current problem to continue slicing" @@ -1199,161 +1555,171 @@ msgstr "" "Er is een object buiten het printbereik gedetecteerd\n" "Los dit probleem op om door te gaan met slicen" -#: src/slic3r/GUI/GLCanvas3D.cpp:1014 src/slic3r/GUI/GLCanvas3D.cpp:1042 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "Standaard printkleur" -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "Pauzeer de print of voer custom G-code in" -#: src/slic3r/GUI/GLCanvas3D.cpp:1064 +#: src/slic3r/GUI/GLCanvas3D.cpp:955 #, c-format msgid "up to %.2f mm" msgstr "tot %.2f mm" -#: src/slic3r/GUI/GLCanvas3D.cpp:1068 +#: src/slic3r/GUI/GLCanvas3D.cpp:959 #, c-format msgid "above %.2f mm" msgstr "boven %.2f mm" -#: src/slic3r/GUI/GLCanvas3D.cpp:1072 +#: src/slic3r/GUI/GLCanvas3D.cpp:963 #, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" -#: src/slic3r/GUI/GLCanvas3D.cpp:1086 src/slic3r/GUI/Tab.cpp:2288 -#: src/slic3r/GUI/wxExtensions.cpp:3170 src/slic3r/GUI/wxExtensions.cpp:3421 -#: src/libslic3r/GCode/PreviewData.cpp:451 -#, c-format -msgid "Extruder %d" -msgstr "Extruder %d" - -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 +#: src/slic3r/GUI/GLCanvas3D.cpp:990 #, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Kleurwissel voor extruder %d op %.2f mm" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1300 +msgid "Seq." +msgstr "Volgorde" + +#: src/slic3r/GUI/GLCanvas3D.cpp:1696 msgid "Variable layer height - Reset" msgstr "Variabele laagdikte - reset" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1704 msgid "Variable layer height - Adaptive" msgstr "Variabele laagdikte - adaptief" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1712 msgid "Variable layer height - Smooth all" msgstr "Variable laagdikte - egaliseer alles" -#: src/slic3r/GUI/GLCanvas3D.cpp:2026 +#: src/slic3r/GUI/GLCanvas3D.cpp:2048 msgid "Mirror Object" msgstr "Spiegel object" -#: src/slic3r/GUI/GLCanvas3D.cpp:3297 +#: src/slic3r/GUI/GLCanvas3D.cpp:2916 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +msgid "Gizmo-Move" +msgstr "Verplaatsen" + +#: src/slic3r/GUI/GLCanvas3D.cpp:2996 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +msgid "Gizmo-Rotate" +msgstr "Roteren" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3500 msgid "Move Object" msgstr "Verplaats object" -#: src/slic3r/GUI/GLCanvas3D.cpp:3843 +#: src/slic3r/GUI/GLCanvas3D.cpp:4042 msgid "Undo History" msgstr "Geschiedenis ongedaan maken" -#: src/slic3r/GUI/GLCanvas3D.cpp:3843 +#: src/slic3r/GUI/GLCanvas3D.cpp:4042 msgid "Redo History" msgstr "Geschiedenis opnieuw doen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3861 +#: src/slic3r/GUI/GLCanvas3D.cpp:4060 #, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Maak %1$d actie ongedaan" msgstr[1] "Maak %1$d acties ongedaan" -#: src/slic3r/GUI/GLCanvas3D.cpp:3861 +#: src/slic3r/GUI/GLCanvas3D.cpp:4060 #, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Doe %1$d actie opnieuw" msgstr[1] "Doe %1$d acties opnieuw" -#: src/slic3r/GUI/GLCanvas3D.cpp:4259 +#: src/slic3r/GUI/GLCanvas3D.cpp:4462 msgid "Add..." msgstr "Voeg toe..." -#: src/slic3r/GUI/GLCanvas3D.cpp:4267 src/slic3r/GUI/GUI_ObjectList.cpp:1592 -#: src/slic3r/GUI/Plater.cpp:3712 src/slic3r/GUI/Plater.cpp:3734 -#: src/slic3r/GUI/Tab.cpp:3080 +#: src/slic3r/GUI/GLCanvas3D.cpp:4470 src/slic3r/GUI/GUI_ObjectList.cpp:1714 +#: src/slic3r/GUI/Plater.cpp:3909 src/slic3r/GUI/Plater.cpp:3931 +#: src/slic3r/GUI/Tab.cpp:3114 msgid "Delete" msgstr "Verwijder" -#: src/slic3r/GUI/GLCanvas3D.cpp:4276 src/slic3r/GUI/Plater.cpp:4410 +#: src/slic3r/GUI/GLCanvas3D.cpp:4479 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4647 msgid "Delete all" msgstr "Verwijder alles" -#: src/slic3r/GUI/GLCanvas3D.cpp:4285 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2758 +#: src/slic3r/GUI/GLCanvas3D.cpp:4488 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2732 msgid "Arrange" msgstr "Schikken" -#: src/slic3r/GUI/GLCanvas3D.cpp:4285 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4488 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "Schik selectie" -#: src/slic3r/GUI/GLCanvas3D.cpp:4297 +#: src/slic3r/GUI/GLCanvas3D.cpp:4500 msgid "Copy" msgstr "Kopieer" -#: src/slic3r/GUI/GLCanvas3D.cpp:4306 +#: src/slic3r/GUI/GLCanvas3D.cpp:4509 msgid "Paste" msgstr "Plak" -#: src/slic3r/GUI/GLCanvas3D.cpp:4318 src/slic3r/GUI/Plater.cpp:3569 -#: src/slic3r/GUI/Plater.cpp:3581 src/slic3r/GUI/Plater.cpp:3721 +#: src/slic3r/GUI/GLCanvas3D.cpp:4521 src/slic3r/GUI/Plater.cpp:3766 +#: src/slic3r/GUI/Plater.cpp:3778 src/slic3r/GUI/Plater.cpp:3918 msgid "Add instance" msgstr "Voeg instantie toe" -#: src/slic3r/GUI/GLCanvas3D.cpp:4329 src/slic3r/GUI/Plater.cpp:3723 +#: src/slic3r/GUI/GLCanvas3D.cpp:4532 src/slic3r/GUI/Plater.cpp:3920 msgid "Remove instance" msgstr "Verwijder instantie" -#: src/slic3r/GUI/GLCanvas3D.cpp:4342 +#: src/slic3r/GUI/GLCanvas3D.cpp:4545 msgid "Split to objects" msgstr "Verdeel in objecten" -#: src/slic3r/GUI/GLCanvas3D.cpp:4352 src/slic3r/GUI/GUI_ObjectList.cpp:1424 +#: src/slic3r/GUI/GLCanvas3D.cpp:4555 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "Verdeel in onderdelen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4416 src/slic3r/GUI/MainFrame.cpp:571 +#: src/slic3r/GUI/GLCanvas3D.cpp:4619 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Maak ongedaan" -#: src/slic3r/GUI/GLCanvas3D.cpp:4416 src/slic3r/GUI/GLCanvas3D.cpp:4449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4619 src/slic3r/GUI/GLCanvas3D.cpp:4652 msgid "Click right mouse button to open History" msgstr "Open de geschiedenis met de rechtermuisknop" -#: src/slic3r/GUI/GLCanvas3D.cpp:4433 +#: src/slic3r/GUI/GLCanvas3D.cpp:4636 msgid "Next Undo action: %1%" msgstr "Volgende ongedaan maken: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:4449 src/slic3r/GUI/MainFrame.cpp:574 +#: src/slic3r/GUI/GLCanvas3D.cpp:4652 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Doe opnieuw" -#: src/slic3r/GUI/GLCanvas3D.cpp:4465 +#: src/slic3r/GUI/GLCanvas3D.cpp:4668 msgid "Next Redo action: %1%" msgstr "Volgende opnieuw doen: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:6380 +#: src/slic3r/GUI/GLCanvas3D.cpp:6593 msgid "Selection-Add from rectangle" msgstr "Selectie - Voeg toe van boxselectie" -#: src/slic3r/GUI/GLCanvas3D.cpp:6399 +#: src/slic3r/GUI/GLCanvas3D.cpp:6612 msgid "Selection-Remove from rectangle" msgstr "Selectie - Verwijder van boxselectie" -#: src/slic3r/GUI/GLCanvas3DManager.cpp:283 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 #, c-format msgid "" "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" @@ -1362,11 +1728,11 @@ msgstr "" "PrusaSlicer vereist een grafische driver die OpenGL 2.0 kan draaien,\n" "terwijl OpenGL-versie %s, render %s, leverancier %s is gedetecteerd." -#: src/slic3r/GUI/GLCanvas3DManager.cpp:286 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "U moet mogelijk uw grafische kaart updaten." -#: src/slic3r/GUI/GLCanvas3DManager.cpp:289 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "" "As a workaround, you may run PrusaSlicer with a software rendered 3D " "graphics by running prusa-slicer.exe with the --sw_renderer parameter." @@ -1375,28 +1741,28 @@ msgstr "" "renderprogramma door prusa-slicer.exe uit te voeren met de --sw_renderer " "parameter." -#: src/slic3r/GUI/GLCanvas3DManager.cpp:291 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "Niet-ondersteunde OpenGL-versie" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:40 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:145 src/libslic3r/PrintConfig.cpp:3329 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "Snij door" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:150 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "Behoud bovenste deel" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:151 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "Behoud onderste deel" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:152 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "Roteer onderste deel naar boven" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:155 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "Toepassen" @@ -1404,42 +1770,101 @@ msgstr "Toepassen" msgid "Place on face" msgstr "Plaats op vlak" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "Dit object uithollen" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "Toon voorbeeld van uitgehold model met gat" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "Shelldikte" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "Kwaliteit" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 +msgid "Closing distance" +msgstr "Sluitafstand" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "Gatdiameter" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "Gatdiepte" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "Verwijder geselecteerde gaten" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "Verwijder alle gaten" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 +msgid "Clipping of view" +msgstr "Weergave samenvoegen" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 +msgid "Reset direction" +msgstr "Reset-richting" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "Toon support" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +msgid "Add drainage hole" +msgstr "Voeg afvoergat toe" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +msgid "Delete drainage hole" +msgstr "Verwijder afvoergat" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:798 +msgid "Hollowing parameter change" +msgstr "Verandering van uitholparameter" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:870 +msgid "Change drainage hole diameter" +msgstr "Verander afvoergatdiameter" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" +msgstr "Uithollen en gat toevoegen" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1040 +msgid "Move drainage hole" +msgstr "Verplaats afvoergat" + #: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" msgstr "Verplaats" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "Positie (mm)" - -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "Verplaatsing (mm)" - #: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3378 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "Roteer" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:482 -msgid "Rotation (deg)" -msgstr "Rotatie (°)" - #: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3393 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "Verschaal" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:292 -msgid "Scale (%)" -msgstr "Verschaling (%)" - #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "Kopdiameter" @@ -1449,7 +1874,7 @@ msgid "Lock supports under new islands" msgstr "Vergrendel support onder nieuwe eilanden" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1286 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 msgid "Remove selected points" msgstr "Verwijder geselecteerde punten" @@ -1458,12 +1883,12 @@ msgid "Remove all points" msgstr "Verwijdere alle punten" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1289 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 msgid "Apply changes" msgstr "Wijzigingen toepassen" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1290 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 msgid "Discard changes" msgstr "Wijzigingen afwijzen" @@ -1472,12 +1897,12 @@ msgid "Minimal points distance" msgstr "Minimale puntafstand" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "Dichtheid van supportpunten" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1292 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 msgid "Auto-generate points" msgstr "Genereer automatisch punten" @@ -1485,170 +1910,150 @@ msgstr "Genereer automatisch punten" msgid "Manual editing" msgstr "Handmatig bewerken" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 -msgid "Clipping of view" -msgstr "Weergave samenvoegen" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 -msgid "Reset direction" -msgstr "Reset-richting" - -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:442 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 msgid "Add support point" msgstr "Voeg supportpunt toe" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:578 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 msgid "Delete support point" msgstr "Verwijder supportpunt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:754 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 msgid "Change point head diameter" msgstr "Wijzig puntkopdiameter" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 msgid "Support parameter change" msgstr "Wijzig supportparameter" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:929 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 msgid "SLA Support Points" msgstr "SLA-supportpunten" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:950 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 msgid "SLA gizmo turned on" msgstr "SLA Gizmo aangezet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:972 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 msgid "Do you want to save your manually edited support points?" msgstr "Wilt u handmatig aangepaste supportpunten opslaan?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:973 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 msgid "Save changes?" msgstr "Wijzigingen opslaan?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:985 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 msgid "SLA gizmo turned off" msgstr "SLA Gizmo uitgezet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1022 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 msgid "Move support point" msgstr "Verplaats supportpunt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1121 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 msgid "Support points edit" msgstr "Bewerk supportpunten" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 msgid "Autogeneration will erase all manually edited points." msgstr "" "Automatisch genereren zal alle handmatig aangepaste punten verwijderen." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 msgid "Are you sure you want to do it?" msgstr "Weet u zeker dat u dit wilt doen?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1192 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3040 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 +#: src/slic3r/GUI/Tab.cpp:3074 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Waarschuwing" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1195 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 msgid "Autogenerate support points" msgstr "Automatisch gegenereerde supportpunten" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 msgid "SLA gizmo keyboard shortcuts" msgstr "SLA sneltoetsen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1260 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Let op: sommige sneltoetsen werken alleen in bewerkmodus." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1278 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1281 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Left click" msgstr "Linkermuisknop" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1278 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 msgid "Add point" msgstr "Voeg punt toe" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1279 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Right click" msgstr "Rechtermuisknop" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1279 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Remove point" msgstr "Verwijder punt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1280 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1283 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1284 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Drag" msgstr "Versleep" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1280 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 msgid "Move point" msgstr "Verplaats punt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1281 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Add point to selection" msgstr "Voeg punt toe aan selectie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Remove point from selection" msgstr "Verwijder punt uit selectie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1283 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 msgid "Select by rectangle" msgstr "Selecteer met boxselectie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1284 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Deselect by rectangle" msgstr "Deselecteer met boxselectie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1285 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 msgid "Select all points" msgstr "Selecteer alle punten" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1287 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Mouse wheel" msgstr "Scrollwieltje" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1287 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Move clipping plane" msgstr "Verplaats snijvlak" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1288 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 msgid "Reset clipping plane" msgstr "Reset snijvlak" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1291 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 msgid "Switch to editing mode" msgstr "Schakel over naar bewerkmodus" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:477 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 msgid "Gizmo-Place on Face" msgstr "Plaats op vlak" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:550 -msgid "Gizmo-Move" -msgstr "Verplaatsen" - -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:552 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 msgid "Gizmo-Scale" msgstr "Verschalen" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:554 -msgid "Gizmo-Rotate" -msgstr "Roteren" - -#: src/slic3r/GUI/GUI.cpp:240 -msgid "Notice" -msgstr "Let op" - -#: src/slic3r/GUI/GUI_App.cpp:137 +#: src/slic3r/GUI/GUI_App.cpp:138 #, c-format msgid "" "%s has encountered an error. It was likely caused by running out of memory. " @@ -1663,178 +2068,187 @@ msgstr "" "\n" "Het programma zal nu afsluiten." -#: src/slic3r/GUI/GUI_App.cpp:140 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "Fatale fout" -#: src/slic3r/GUI/GUI_App.cpp:450 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "Veranderen van de taal van het programma" -#: src/slic3r/GUI/GUI_App.cpp:458 src/slic3r/GUI/GUI_App.cpp:467 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "Opnieuw aanmaken" -#: src/slic3r/GUI/GUI_App.cpp:471 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "Laden van huidige presets" -#: src/slic3r/GUI/GUI_App.cpp:479 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "Laden van de weergavemodus" -#: src/slic3r/GUI/GUI_App.cpp:560 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "Kies een 3MF- of AMF-bestand:" -#: src/slic3r/GUI/GUI_App.cpp:572 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Kies één of meer STL-, OBJ-, AMF-, 3MF-, of PRUSA-bestanden:" -#: src/slic3r/GUI/GUI_App.cpp:634 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "Selecteer taal" -#: src/slic3r/GUI/GUI_App.cpp:634 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "Taal" -#: src/slic3r/GUI/GUI_App.cpp:802 +#: src/slic3r/GUI/GUI_App.cpp:797 #, c-format msgid "Run %s" msgstr "Voer %s uit" -#: src/slic3r/GUI/GUI_App.cpp:805 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" msgstr "Configuratiesnapshots" -#: src/slic3r/GUI/GUI_App.cpp:805 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "Inspecteer/activeer configuratiesnapshots" -#: src/slic3r/GUI/GUI_App.cpp:806 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" msgstr "Neem configuratiesnapshot" -#: src/slic3r/GUI/GUI_App.cpp:806 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "Neem een configuratiesnapshot op" -#: src/slic3r/GUI/GUI_App.cpp:809 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "Controleer op updates" + +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "Controleer op configuratie-updates" + +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "Voorkeuren" -#: src/slic3r/GUI/GUI_App.cpp:815 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Programmavoorkeuren" -#: src/slic3r/GUI/GUI_App.cpp:818 src/slic3r/GUI/wxExtensions.cpp:3824 +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "Eenvoudig" -#: src/slic3r/GUI/GUI_App.cpp:818 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "Eenvoudige weergave" -#: src/slic3r/GUI/GUI_App.cpp:819 src/slic3r/GUI/GUI_ObjectList.cpp:97 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/slic3r/GUI/Tab.cpp:1067 -#: src/slic3r/GUI/Tab.cpp:1082 src/slic3r/GUI/Tab.cpp:1181 -#: src/slic3r/GUI/Tab.cpp:1184 src/slic3r/GUI/Tab.cpp:1450 -#: src/slic3r/GUI/Tab.cpp:1937 src/slic3r/GUI/Tab.cpp:3614 -#: src/slic3r/GUI/wxExtensions.cpp:3825 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:202 src/libslic3r/PrintConfig.cpp:365 -#: src/libslic3r/PrintConfig.cpp:1026 src/libslic3r/PrintConfig.cpp:2253 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 +#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 +#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 +#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 +#: src/slic3r/GUI/Tab.cpp:1969 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "Geavanceerd" -#: src/slic3r/GUI/GUI_App.cpp:819 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "Geavanceerde weergave" -#: src/slic3r/GUI/GUI_App.cpp:820 src/slic3r/GUI/wxExtensions.cpp:3826 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/GUI_App.cpp:820 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "Expertweergave" -#: src/slic3r/GUI/GUI_App.cpp:825 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" msgstr "Modus" -#: src/slic3r/GUI/GUI_App.cpp:825 +#: src/slic3r/GUI/GUI_App.cpp:820 #, c-format msgid "%s View Mode" msgstr "%s-weergavemodus" -#: src/slic3r/GUI/GUI_App.cpp:827 -msgid "Change Application &Language" -msgstr "Wijzig programmataal" +#: src/slic3r/GUI/GUI_App.cpp:822 +msgid "&Language" +msgstr "Taal" -#: src/slic3r/GUI/GUI_App.cpp:829 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" msgstr "Flash printerfirmware" -#: src/slic3r/GUI/GUI_App.cpp:829 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" msgstr "Upload een firmwarebestand op een Arduino-gebaseerde printer" -#: src/slic3r/GUI/GUI_App.cpp:841 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Neem configuratiesnapshot" -#: src/slic3r/GUI/GUI_App.cpp:841 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "Snapshotnaam" -#: src/slic3r/GUI/GUI_App.cpp:884 +#: src/slic3r/GUI/GUI_App.cpp:882 msgid "" "Switching the language will trigger application restart.\n" "You will lose content of the plater." msgstr "" "Het veranderen van de taal zorgt dat het programma opnieuw opstart.\n" -"U verliest de geladen inhoud zoals getoond in de modelweergave." +"U verliest de geladen inhoud zoals getoond in de 3D-weergave." -#: src/slic3r/GUI/GUI_App.cpp:886 +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "Weet u zeker dat u door wilt gaan?" -#: src/slic3r/GUI/GUI_App.cpp:887 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "Taalselectie" -#: src/slic3r/GUI/GUI_App.cpp:910 +#: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" msgstr "Configuratie" -#: src/slic3r/GUI/GUI_App.cpp:934 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "De instellingen in de volgende tabs zijn aangepast" -#: src/slic3r/GUI/GUI_App.cpp:934 src/slic3r/GUI/Tab.cpp:2902 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2936 msgid "Discard changes and continue anyway?" msgstr "Wijzigingen afwijzen en doorgaan?" -#: src/slic3r/GUI/GUI_App.cpp:937 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "Niet-opgeslagen presets" -#: src/slic3r/GUI/GUI_App.cpp:1083 src/slic3r/GUI/Tab.cpp:2914 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2948 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" "Het is niet mogelijk meerdelige objecten te printen met de SLA-technologie." -#: src/slic3r/GUI/GUI_App.cpp:1084 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Controleer en repareer de objectenlijst." -#: src/slic3r/GUI/GUI_App.cpp:1085 src/slic3r/GUI/Plater.cpp:2317 -#: src/slic3r/GUI/Tab.cpp:2916 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2291 +#: src/slic3r/GUI/Tab.cpp:2950 msgid "Attention!" msgstr "Attentie!" -#: src/slic3r/GUI/GUI_App.cpp:1102 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Selecteer een gcode-bestand:" @@ -1854,37 +2268,38 @@ msgstr "Verwijder laagbereik" msgid "Add layer range" msgstr "Voeg laagbereik toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:88 -#: src/slic3r/GUI/GUI_ObjectList.cpp:608 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:397 -#: src/libslic3r/PrintConfig.cpp:459 src/libslic3r/PrintConfig.cpp:467 -#: src/libslic3r/PrintConfig.cpp:879 src/libslic3r/PrintConfig.cpp:1064 -#: src/libslic3r/PrintConfig.cpp:1369 src/libslic3r/PrintConfig.cpp:1436 -#: src/libslic3r/PrintConfig.cpp:1617 src/libslic3r/PrintConfig.cpp:2063 -#: src/libslic3r/PrintConfig.cpp:2122 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 +#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "Lagen en perimeters" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:610 src/slic3r/GUI/GUI_Preview.cpp:245 -#: src/slic3r/GUI/Tab.cpp:1100 src/slic3r/GUI/Tab.cpp:1101 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:349 -#: src/libslic3r/PrintConfig.cpp:1497 src/libslic3r/PrintConfig.cpp:1855 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:1869 -#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1891 -#: src/libslic3r/PrintConfig.cpp:1899 src/libslic3r/PrintConfig.cpp:1914 -#: src/libslic3r/PrintConfig.cpp:1935 src/libslic3r/PrintConfig.cpp:1947 -#: src/libslic3r/PrintConfig.cpp:1963 src/libslic3r/PrintConfig.cpp:1972 -#: src/libslic3r/PrintConfig.cpp:1981 src/libslic3r/PrintConfig.cpp:1992 -#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2014 -#: src/libslic3r/PrintConfig.cpp:2015 src/libslic3r/PrintConfig.cpp:2024 -#: src/libslic3r/PrintConfig.cpp:2032 src/libslic3r/PrintConfig.cpp:2046 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" msgstr "Support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/libslic3r/PrintConfig.cpp:2229 -#: src/libslic3r/PrintConfig.cpp:2237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 +#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Afveegopties" @@ -1908,510 +2323,508 @@ msgstr "Voeg supportforcering toe" msgid "Add support blocker" msgstr "Voeg supportblokkering toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:91 src/slic3r/GUI/GUI_ObjectList.cpp:611 -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/Tab.cpp:1125 -#: src/libslic3r/PrintConfig.cpp:214 src/libslic3r/PrintConfig.cpp:447 -#: src/libslic3r/PrintConfig.cpp:908 src/libslic3r/PrintConfig.cpp:1037 -#: src/libslic3r/PrintConfig.cpp:1426 src/libslic3r/PrintConfig.cpp:1663 -#: src/libslic3r/PrintConfig.cpp:1712 src/libslic3r/PrintConfig.cpp:1764 -#: src/libslic3r/PrintConfig.cpp:2107 +#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "Snelheid" -#: src/slic3r/GUI/GUI_ObjectList.cpp:92 src/slic3r/GUI/GUI_ObjectList.cpp:612 -#: src/slic3r/GUI/Tab.cpp:1160 src/slic3r/GUI/Tab.cpp:1808 -#: src/libslic3r/PrintConfig.cpp:477 src/libslic3r/PrintConfig.cpp:991 -#: src/libslic3r/PrintConfig.cpp:1404 src/libslic3r/PrintConfig.cpp:1733 -#: src/libslic3r/PrintConfig.cpp:1927 src/libslic3r/PrintConfig.cpp:1954 +#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "Extruders" -#: src/slic3r/GUI/GUI_ObjectList.cpp:93 src/slic3r/GUI/GUI_ObjectList.cpp:613 -#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:544 -#: src/libslic3r/PrintConfig.cpp:866 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1413 src/libslic3r/PrintConfig.cpp:1753 -#: src/libslic3r/PrintConfig.cpp:1936 src/libslic3r/PrintConfig.cpp:2095 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "Extrusiebreedte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:619 -#: src/slic3r/GUI/Plater.cpp:484 src/slic3r/GUI/Tab.cpp:3564 -#: src/slic3r/GUI/Tab.cpp:3565 src/libslic3r/PrintConfig.cpp:2582 -#: src/libslic3r/PrintConfig.cpp:2589 src/libslic3r/PrintConfig.cpp:2598 -#: src/libslic3r/PrintConfig.cpp:2607 src/libslic3r/PrintConfig.cpp:2617 -#: src/libslic3r/PrintConfig.cpp:2643 src/libslic3r/PrintConfig.cpp:2650 -#: src/libslic3r/PrintConfig.cpp:2661 src/libslic3r/PrintConfig.cpp:2671 -#: src/libslic3r/PrintConfig.cpp:2680 src/libslic3r/PrintConfig.cpp:2693 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2712 -#: src/libslic3r/PrintConfig.cpp:2722 src/libslic3r/PrintConfig.cpp:2733 -#: src/libslic3r/PrintConfig.cpp:2741 +#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 +#: src/slic3r/GUI/Plater.cpp:490 src/slic3r/GUI/Tab.cpp:3594 +#: src/slic3r/GUI/Tab.cpp:3595 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "Support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:620 -#: src/slic3r/GUI/Plater.cpp:624 src/slic3r/GUI/Tab.cpp:3596 -#: src/slic3r/GUI/Tab.cpp:3597 src/libslic3r/PrintConfig.cpp:2749 -#: src/libslic3r/PrintConfig.cpp:2756 src/libslic3r/PrintConfig.cpp:2770 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2791 -#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2824 -#: src/libslic3r/PrintConfig.cpp:2831 src/libslic3r/PrintConfig.cpp:2838 -#: src/libslic3r/PrintConfig.cpp:2849 src/libslic3r/PrintConfig.cpp:2858 -#: src/libslic3r/PrintConfig.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 +#: src/slic3r/GUI/Plater.cpp:630 src/slic3r/GUI/Tab.cpp:3626 +#: src/slic3r/GUI/Tab.cpp:3627 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "Basisplaat" -#: src/slic3r/GUI/GUI_ObjectList.cpp:262 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3644 +#: src/slic3r/GUI/Tab.cpp:3645 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 +msgid "Hollowing" +msgstr "Uithollen" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:268 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Naam" -#: src/slic3r/GUI/GUI_ObjectList.cpp:270 src/slic3r/GUI/Tab.cpp:1414 -#: src/slic3r/GUI/wxExtensions.cpp:549 src/libslic3r/PrintConfig.cpp:476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:274 src/slic3r/GUI/GUI_ObjectList.cpp:386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 msgid "Editing" msgstr "Bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:337 #, c-format msgid "Auto-repaired (%d errors):" msgstr "Automatisch gerepareerd (%d fouten):" -#: src/slic3r/GUI/GUI_ObjectList.cpp:338 +#: src/slic3r/GUI/GUI_ObjectList.cpp:344 msgid "degenerate facets" msgstr "vlakken gedegenereerd" -#: src/slic3r/GUI/GUI_ObjectList.cpp:339 +#: src/slic3r/GUI/GUI_ObjectList.cpp:345 msgid "edges fixed" msgstr "randen vastgezet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:340 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "facets removed" msgstr "vlakken verwijderd" -#: src/slic3r/GUI/GUI_ObjectList.cpp:341 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "facets added" msgstr "vlakken toegevoegd" -#: src/slic3r/GUI/GUI_ObjectList.cpp:342 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets reversed" msgstr "vlakken omgekeerd" -#: src/slic3r/GUI/GUI_ObjectList.cpp:343 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "backwards edges" msgstr "omgekeerde lijnen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:351 +#: src/slic3r/GUI/GUI_ObjectList.cpp:357 msgid "Right button click the icon to fix STL through Netfabb" msgstr "" "Rechtermuisklik op het pictogram om het STL-bestand met NetFabb te repareren" -#: src/slic3r/GUI/GUI_ObjectList.cpp:388 +#: src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Right button click the icon to change the object settings" msgstr "Rechtermuisklik op het icoontje om de objectinstellingen te wijzigen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:390 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Click the icon to change the object settings" msgstr "Klik op het pictogram om de objectinstellingen te wijzigen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:400 msgid "Right button click the icon to change the object printable property" msgstr "Rechtermuisklik op het pictogram om de printinstellingen te wijzigen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Click the icon to change the object printable property" msgstr "Klik op het pictogram om de printinstellingen te wijzigen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:449 src/slic3r/GUI/GUI_ObjectList.cpp:461 -#: src/slic3r/GUI/GUI_ObjectList.cpp:907 src/slic3r/GUI/GUI_ObjectList.cpp:3822 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3832 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3867 src/slic3r/GUI/wxExtensions.cpp:734 -#: src/slic3r/GUI/wxExtensions.cpp:791 src/slic3r/GUI/wxExtensions.cpp:816 -#: src/slic3r/GUI/wxExtensions.cpp:1024 src/slic3r/GUI/wxExtensions.cpp:2240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3961 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4006 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 msgid "default" msgstr "standaard" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:534 msgid "Change Extruder" msgstr "Wijzig extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:543 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Object" msgstr "Hernoem object" -#: src/slic3r/GUI/GUI_ObjectList.cpp:543 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Sub-object" msgstr "Hernoem subobject" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3643 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Instances to Separated Objects" msgstr "Zet instanties om in objecten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Volumes in Object reordered" msgstr "Volumes in object opnieuw geordend" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Object reordered" msgstr "Object opnieuw geordend" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1141 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1460 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1723 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1845 #, c-format msgid "Quick Add Settings (%s)" msgstr "Snel instellingen toevoegen (%s)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1218 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 msgid "Select showing settings" msgstr "Selecteer getoonde instellingen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1267 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 msgid "Add Settings for Layers" msgstr "Voeg laaginstellingen toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 msgid "Add Settings for Sub-object" msgstr "Voeg instellingen voor subobject toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1269 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Object" msgstr "Voeg instellingen voor object toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1330 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 msgid "Add Settings Bundle for Height range" msgstr "Voeg instellingen voor hoogtebereik toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 msgid "Add Settings Bundle for Sub-object" msgstr "Voeg instellingen voor subobject toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1332 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Object" msgstr "Voeg instellingen voor een object toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1371 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 msgid "Load" msgstr "Laad" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1376 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1407 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 msgid "Box" msgstr "Blok" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1376 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Cylinder" msgstr "Cilinder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1376 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Sphere" msgstr "Bol" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1376 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Slab" msgstr "Plaat" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1431 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 msgid "Height range Modifier" msgstr "Modificator voor hoogtebereik" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1439 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 msgid "Add settings" msgstr "Voeg instellingen toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 msgid "Change type" msgstr "Wijzig type" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1514 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1595 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1607 msgid "Set as a Separated Object" msgstr "Stel in als apart object" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1520 -msgid "Printable" -msgstr "Printbaar" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1527 -msgid "Rename" -msgstr "Hernoem" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1538 -msgid "Fix through the Netfabb" -msgstr "Repareer met NetFabb" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1548 src/slic3r/GUI/Plater.cpp:3747 -msgid "Export as STL" -msgstr "Exporteer als STL-bestand" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1555 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 -msgid "Reload from disk" -msgstr "Herlaad vanaf schijf" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1555 src/slic3r/GUI/Plater.cpp:3715 -msgid "Reload the selected volumes from disk" -msgstr "Herlaad de geselecteerde volumes vanaf schijf" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1561 src/slic3r/GUI/wxExtensions.cpp:3176 -#: src/slic3r/GUI/wxExtensions.cpp:3432 -msgid "Change extruder" -msgstr "Wijzig extruder" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1580 src/slic3r/GUI/wxExtensions.cpp:3170 -#: src/slic3r/GUI/wxExtensions.cpp:3421 src/libslic3r/PrintConfig.cpp:314 -msgid "Default" -msgstr "Standaard" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1586 -msgid "Select new extruder for the object/part" -msgstr "Selecteer nieuwe extruder voor het object/onderdeel" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1598 -msgid "Scale to print volume" -msgstr "Verschaal tot printvolume" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1598 -msgid "Scale the selected object to fit the print volume" -msgstr "Verschaal het geselecteerde object tot deze in het printvolume past" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1607 msgid "Set as a Separated Objects" msgstr "Stel in als aparte objecten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1678 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1924 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1617 +msgid "Printable" +msgstr "Printbaar" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1632 +msgid "Rename" +msgstr "Hernoem" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1643 +msgid "Fix through the Netfabb" +msgstr "Repareer met NetFabb" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1653 src/slic3r/GUI/Plater.cpp:3944 +msgid "Export as STL" +msgstr "Exporteer als STL-bestand" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1660 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3950 src/slic3r/GUI/Plater.cpp:3912 +msgid "Reload the selected volumes from disk" +msgstr "Herlaad de geselecteerde volumes vanaf schijf" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1667 +msgid "Set extruder for selected items" +msgstr "Stel extruder in voor de geselecteerde items" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1700 src/libslic3r/PrintConfig.cpp:335 +msgid "Default" +msgstr "Standaard" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1720 +msgid "Scale to print volume" +msgstr "Verschaal tot printvolume" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1720 +msgid "Scale the selected object to fit the print volume" +msgstr "Verschaal het geselecteerde object tot deze in het printvolume past" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1789 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2047 msgid "Add Shape" msgstr "Voeg vorm toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1752 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1875 msgid "Load Part" msgstr "Laad onderdeel" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1791 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1914 msgid "Error!" msgstr "Fout!" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1866 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1989 msgid "Add Generic Subobject" msgstr "Voeg algemene subobjecten toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1895 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2018 msgid "Generic" msgstr "Algemeen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2013 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2115 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2136 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2238 msgid "Last instance of an object cannot be deleted." msgstr "Laatste instantie van een object kan niet verwijderd worden." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2148 msgid "Delete Settings" msgstr "Verwijder instellingen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2049 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2172 msgid "Delete All Instances from Object" msgstr "Verwijder alle instanties van het object" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2065 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2188 msgid "Delete Height Range" msgstr "Verwijder hoogtebereik" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2096 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2219 msgid "From Object List You can't delete the last solid part from object." msgstr "Het laatste onderdeel van de objectenlijst kan niet verwijderd worden." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2100 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "Delete Subobject" msgstr "Verwijder subobject" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2119 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Delete Instance" msgstr "Verwijder instantie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2143 src/slic3r/GUI/Plater.cpp:2914 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2266 src/slic3r/GUI/Plater.cpp:2956 msgid "" "The selected object couldn't be split because it contains only one part." msgstr "" "Het geselecteerde object kan niet opgedeeld worden omdat het maar één " "geometrie bevat." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2147 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 msgid "Split to Parts" -msgstr "Verdeel in onderdelen" +msgstr "Splits naar onderdelen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2195 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2324 msgid "Add Layers" msgstr "Voeg lagen toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2321 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2450 msgid "Group manipulation" msgstr "Groep bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2333 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2462 msgid "Object manipulation" msgstr "Object bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2475 msgid "Object Settings to modify" msgstr "Objectinstellingen om te bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Part Settings to modify" msgstr "Onderdeelinstellingen om te bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2355 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2484 msgid "Layer range Settings to modify" msgstr "Laagbereikinstellingen om te bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2361 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2490 msgid "Part manipulation" msgstr "Onderdeel bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2367 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2496 msgid "Instance manipulation" msgstr "Instantie bewerken" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2374 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2503 msgid "Height ranges" msgstr "Hoogtebereik" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2374 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2503 msgid "Settings for height range" msgstr "Instellingen voor hoogtebereik" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2560 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2689 msgid "Delete Selected Item" msgstr "Verwijder geselecteerd item" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2697 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2826 msgid "Delete Selected" msgstr "Verwijder selectie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2763 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2792 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2810 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2921 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2939 msgid "Add Height Range" msgstr "Voeg hoogtebereik toe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2869 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2999 msgid "Edit Height Range" msgstr "Bewerk hoogtebereik" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3153 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3287 msgid "Selection-Remove from list" msgstr "Selectie - Verwijder van lijst" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3161 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3295 msgid "Selection-Add from list" msgstr "Selectie - Voeg toe aan lijst" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3413 msgid "Object or Instance" msgstr "Object of instantie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3280 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3413 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Part" msgstr "Onderdeel" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3280 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3414 msgid "Layer" msgstr "Laag" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3416 msgid "Unsupported selection" msgstr "Niet-ondersteunde selectie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3283 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 #, c-format msgid "You started your selection with %s Item." msgstr "De selectie is gestart met item %s." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3284 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 #, c-format msgid "In this mode you can select only other %s Items%s" msgstr "In deze modus kunt u alleen andere %s items %s selecteren" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3287 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 msgid "of a current Object" msgstr "van het huidige object" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3408 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3426 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3501 src/slic3r/GUI/Plater.cpp:141 +msgid "Info" +msgstr "Info" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3542 msgid "You can't change a type of the last solid part of the object." msgstr "" "U kunt het type van het laatste onderdeel van een object niet wijzigen." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3413 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Modifier" msgstr "Modificator" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3413 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Support Enforcer" msgstr "Supportforcering" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3413 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 msgid "Support Blocker" msgstr "Supportblokkering" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3549 msgid "Select type of part" msgstr "Selecteer onderdeeltype" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3554 msgid "Change Part Type" msgstr "Wijzig onderdeeltype" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3665 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3799 msgid "Enter new name" msgstr "Voer nieuwe naam in" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3665 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3799 msgid "Renaming" msgstr "Hernoemen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3681 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3788 src/slic3r/GUI/Tab.cpp:3412 -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3815 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3922 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:3450 msgid "The supplied name is not valid;" msgstr "De ingevoerde naam is niet geldig;" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3682 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3789 src/slic3r/GUI/Tab.cpp:3413 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3816 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3923 src/slic3r/GUI/Tab.cpp:3447 msgid "the following characters are not allowed:" msgstr "de volgende karakters zijn niet toegestaan:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3812 -msgid "Set extruder for selected items" -msgstr "Stel extruder in voor de geselecteerde items" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3813 -msgid "Select extruder number for selected objects and/or parts" -msgstr "" -"Selecteer extrudernummer voor de geselecteerde objecten en/of onderdelen" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3826 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3965 msgid "Select extruder number:" msgstr "Selecteer extrudernummer:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3827 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3966 msgid "This extruder will be set for selected items" msgstr "Deze extruder wordt ingesteld voor de geselecteerde items" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3991 msgid "Change Extruders" msgstr "Wijzig extruders" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3942 src/slic3r/GUI/Selection.cpp:1473 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4088 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Stel in op printbaar" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3942 src/slic3r/GUI/Selection.cpp:1473 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4088 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Stel in op niet-printbaar" @@ -2430,7 +2843,7 @@ msgid "Select coordinate space, in which the transformation will be performed." msgstr "" "Stel een coördinatenstelsel in. Hierin wordt de verandering uitgevoerd." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:634 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "Objectnaam" @@ -2441,8 +2854,8 @@ msgstr "Positie" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 -#: src/slic3r/GUI/Mouse3DController.cpp:274 -#: src/slic3r/GUI/Mouse3DController.cpp:287 +#: src/slic3r/GUI/Mouse3DController.cpp:304 +#: src/slic3r/GUI/Mouse3DController.cpp:321 msgid "Rotation" msgstr "Rotatie" @@ -2540,392 +2953,491 @@ msgstr "Verwijder optie %s" msgid "Change Option %s" msgstr "Wijzig optie %s" -#: src/slic3r/GUI/GUI_Preview.cpp:217 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "Weergave" -#: src/slic3r/GUI/GUI_Preview.cpp:220 src/slic3r/GUI/GUI_Preview.cpp:577 -#: src/libslic3r/GCode/PreviewData.cpp:360 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Objecttype" -#: src/slic3r/GUI/GUI_Preview.cpp:221 src/libslic3r/PrintConfig.cpp:489 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Hoogte" -#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:2215 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Breedte" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1437 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" msgstr "Ventilatorsnelheid" -#: src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "Volumetrisch debiet" -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/GUI_Preview.cpp:334 -#: src/slic3r/GUI/GUI_Preview.cpp:523 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:772 src/libslic3r/GCode/PreviewData.cpp:372 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Tool" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:574 -#: src/libslic3r/GCode/PreviewData.cpp:374 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Kleurenprint" -#: src/slic3r/GUI/GUI_Preview.cpp:230 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "Toon" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/slic3r/GUI/GUI_Preview.cpp:234 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "Featuretypes" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Perimeter" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Buitenste perimeter" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Overhangende perimeter" -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Inwendige vulling" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:314 -#: src/libslic3r/PrintConfig.cpp:1752 src/libslic3r/PrintConfig.cpp:1763 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Dichte vulling" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:315 -#: src/libslic3r/PrintConfig.cpp:2094 src/libslic3r/PrintConfig.cpp:2106 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Bovenste dichte vulling" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Brugvulling" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:317 -#: src/libslic3r/PrintConfig.cpp:907 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Gatenvulling" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/Tab.cpp:1091 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1113 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Skirt" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:320 -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Supportinterface" -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1193 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Afveegblok" -#: src/slic3r/GUI/GUI_Preview.cpp:252 src/libslic3r/PrintConfig.cpp:2129 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Beweging" -#: src/slic3r/GUI/GUI_Preview.cpp:253 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "Retracties" -#: src/slic3r/GUI/GUI_Preview.cpp:254 +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "Deretracties" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "Shells" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "Legenda" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:684 +#: src/slic3r/GUI/Job.hpp:123 +msgid "ERROR: not enough resources to execute a new job." +msgstr "Fout: niet genoeg middelen om nieuwe job te starten." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "Sneltoetsen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "" -"Open STL-, OBJ-, AMF- of 3MF-bestanden (met configuratie) en verwijder " -"geladen bestanden" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "" -"Importeer STL-, OBJ-, AMF- of 3MF-bestanden (zonder configuratie) en behoud " -"geladen bestanden" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "Laad INI-, AMF-, 3MF- of gcode-configuratiebestand" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:858 -#: src/slic3r/GUI/Plater.cpp:5142 src/libslic3r/PrintConfig.cpp:3280 -msgid "Export G-code" -msgstr "Exporteer gcode-bestand" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 -msgid "Save project (3MF)" -msgstr "Sla 3MF-project op" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "Laad INI-, AMF-, 3MF- of gcode-configuratiebestand en verenig" +msgid "New project, clear plater" +msgstr "Nieuw project, verwijder huidige modellen" #: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "" +"Open STL-, OBJ-, AMF- of 3MF-project met configuratie, verwijder huidige " +"modellen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "3MF-project opslaan" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "3MF-project opslaan als" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "(Her)slice" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 -msgid "Select Plater Tab" -msgstr "Selecteer modelweergave" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "" +"Importeer STL-, OBJ-, AMF- of 3MF-bestanden zonder configuratie en behoud " +"modellen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "Importeer configuratie van INI-, AMF-, 3MF- of gcode-bestanden" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "" +"Laad configuratie van INI-, AMF-, 3MF- of gcode-bestanden en voeg samen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:886 +#: src/slic3r/GUI/Plater.cpp:5496 src/libslic3r/PrintConfig.cpp:3353 +msgid "Export G-code" +msgstr "Exporteer gcode-bestand" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5497 +msgid "Send G-code" +msgstr "Stuur G-code" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "Exporteer configuratie" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" +msgstr "Selecteer alle objecten" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "Deselecteer alle" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +msgid "Delete selected" +msgstr "Verwijder selectie" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 +msgid "Copy to clipboard" +msgstr "Kopieer naar klembord" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 +msgid "Paste from clipboard" +msgstr "Plak van klembord" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "Herlaad modellen van schijf" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 +msgid "Select Plater Tab" +msgstr "Selecteer 3D-weergave" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "Selecteer printinstellingentab" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "Selecteer filamentinstellingentab" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "Selecteer printerinstellingentab" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "Schakel over naar 3D" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" msgstr "Schakel over naar voorbeeldweergave" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 -msgid "Preferences" -msgstr "Voorkeuren" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Printhost uploadwachtrij" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "Weergave" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 -msgid "Add Instance of the selected object" -msgstr "Voeg instantie van het geselecteerde object toe" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +msgid "Show/Hide object/instance labels" +msgstr "Toon/verberg objecten-/instantie-labels" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 -msgid "Remove Instance of the selected object" -msgstr "Verwijder instanties van het geselecteerde object" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 +msgid "Preferences" +msgstr "Voorkeuren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "Toon lijst met sneltoetsen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "" -"Druk in om meerdere objecten te selecteren en verplaats de objecten met de " -"muis" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "Belangrijkste sneltoetsen" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 -msgid "Select All objects" -msgstr "Selecteer alle objecten" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 -msgid "Delete selected" -msgstr "Verwijder selectie" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "Verwijder alles" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 -msgid "Copy to clipboard" -msgstr "Kopieer naar klembord" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 -msgid "Paste from clipboard" -msgstr "Plak van klembord" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 -msgid "Gizmo move" -msgstr "Verplaatsen" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 -msgid "Gizmo scale" -msgstr "Verschalen" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 -msgid "Gizmo rotate" -msgstr "Roteren" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Gizmo cut" -msgstr "Snijden" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 -msgid "Gizmo Place face on bed" -msgstr "Plaats vlak op bed" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 -msgid "Gizmo SLA support points" -msgstr "SLA-supportpunten" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "" -"Press to activate selection rectangle\n" -"or to snap by 5% in Gizmo scale\n" -"or to snap by 1mm in Gizmo move" -msgstr "" -"Druk in om boxselectie te activeren\n" -"of te snappen op 5% in de verschaling\n" -"of te snappen op 1mm in de verplaatsing" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "" -"Press to scale selection to fit print volume\n" -"in Gizmo scale" -msgstr "Druk in om de selectie te verschalen tot printvolume" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "" -"Press to activate deselection rectangle\n" -"or to scale or rotate selected objects\n" -"around their own center" -msgstr "" -"Druk in om de deselectiebox te activeren\n" -"of de selectie te schalen of roteren\n" -"rond zijn middelpunt" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 -msgid "Press to activate one direction scaling in Gizmo scale" -msgstr "Druk in om verschaling toepassen in één richting te activeren" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:154 -msgid "Change camera type (perspective, orthographic)" -msgstr "Wijzig weergavetype (perspectief of orthografisch)" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 -msgid "Zoom to Bed" -msgstr "Zoom in op bed" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "Zoom in op alle niet-geselecteerde objecten" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "Zoom in op geselecteerde objecten" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 -msgid "Zoom in" -msgstr "Zoom in" +msgid "Commands" +msgstr "Commando's" #: src/slic3r/GUI/KBShortcutsDialog.cpp:159 -msgid "Zoom out" -msgstr "Zoom uit" +msgid "Add Instance of the selected object" +msgstr "Voeg instantie van het geselecteerde object toe" #: src/slic3r/GUI/KBShortcutsDialog.cpp:160 -msgid "Show/Hide 3Dconnexion devices settings dialog" -msgstr "Toon/verberg 3Dconnexion-apparaten instellingen-dialoogvenster" +msgid "Remove Instance of the selected object" +msgstr "Verwijder instanties van het geselecteerde object" #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Unselect gizmo / Clear selection" -msgstr "Selectie ongedaan maken" +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"Druk om meerdere objecten te selecteren\n" +"of beweeg meerdere objecten met de muis" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 -msgid "Plater Shortcuts" -msgstr "Sneltoetsen voor modelweergave" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "Druk om selectiebox te activeren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "Druk om deselectiebox te activeren" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "Pijltje naar boven" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 -msgid "Upper Layer" -msgstr "Bovenste laag" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "Verplaats selectie +10 mm in Y-richting" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "Pijltje naar beneden" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Lower Layer" -msgstr "Onderste laag" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "Verplaats selectie -10 mm in Y-richting" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -msgid "Show/Hide (L)egend" -msgstr "Toon/verberg legenda" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 -msgid "Preview Shortcuts" -msgstr "Toon sneltoetsen" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:194 -msgid "Move current slider thumb Up" -msgstr "Verplaats huidige schuif naar boven" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 -msgid "Move current slider thumb Down" -msgstr "Verplaats huidige schuif naar beneden" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "Pijltje naar links" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 -msgid "Set upper thumb to current slider thumb" -msgstr "Stel de bovenste schuif in op het huidige punt" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "Verplaats selectie -10 mm in X-richting" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "Pijltje naar rechts" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "Verplaats selectie +10 mm in X-richting" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "Elke pijl" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "Verplaatsingsstap instellen op 1 mm" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "Verplaatsing in cameraruimte" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "Page Up" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "Roteer selectie 45° tegen de klok in" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "Page Down" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "Roteer selectie 45° met de klok mee" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 +msgid "Gizmo move" +msgstr "Verplaats" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +msgid "Gizmo scale" +msgstr "Verschaal" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +msgid "Gizmo rotate" +msgstr "Roteer" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 +msgid "Gizmo cut" +msgstr "Snijden" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +msgid "Gizmo Place face on bed" +msgstr "Plaats vlak op bed" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "SLA uithollen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 +msgid "Gizmo SLA support points" +msgstr "SLA-supportpunten" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "Deselecteer gizmo of selectie" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 +msgid "Change camera type (perspective, orthographic)" +msgstr "Wijzig weergavetype (perspectief of orthografisch)" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 +msgid "Zoom to Bed" +msgstr "Zoom in op bed" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"Zoom in op geselecteerde objecten\n" +"of alle objecten in de 3D-weergave als niets is geselecteerd" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +msgid "Zoom in" +msgstr "Zoom in" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +msgid "Zoom out" +msgstr "Zoom uit" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +msgid "Show/Hide 3Dconnexion devices settings dialog" +msgstr "Toon/verberg 3Dconnexion-apparaten instellingen-dialoogvenster" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 +msgid "Plater" +msgstr "3D-weergave" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Druk om stapsgewijs per 5% te verschalen\n" +"of om per 1 mm te verplaatsen" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" +"Zorg dat selectie past in het printvolume\n" +"door te verschalen" + #: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +msgid "Press to activate one direction scaling in Gizmo scale" +msgstr "Druk in om verschaling toepassen in één richting te activeren" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"Druk om de selectie te verschalen of roteren\n" +"om hun eigen middelpunt" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "Gizmo's" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 +msgid "Upper Layer" +msgstr "Bovenste laag" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 +msgid "Lower Layer" +msgstr "Onderste laag" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "Toon/verberg legenda" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Tab.cpp:2392 +msgid "Preview" +msgstr "Voorbeeldweergave" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 +msgid "Move current slider thumb Up" +msgstr "Verplaats huidige schuif naar boven" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 +msgid "Move current slider thumb Down" +msgstr "Verplaats huidige schuif naar beneden" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 +msgid "Set upper thumb to current slider thumb" +msgstr "Stel de bovenste schuif in op het huidige punt" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "Stel de onderste schuif in op het huidige punt" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "Voeg kleurwisseling toe voor de huidige laag" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "Verwijder kleurwisseling voor de huidige laag" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 -msgid "Layers Slider Shortcuts" -msgstr "Sneltoetsen schuifregelaar" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "Schuif voor lagen" -#: src/slic3r/GUI/MainFrame.cpp:65 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "Sneltoetsen" + +#: src/slic3r/GUI/MainFrame.cpp:66 msgid "" " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/" "releases" @@ -2933,588 +3445,608 @@ msgstr "" " - Vergeet niet op updates te checken op http://github.com/prusa3d/" "PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:160 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "gebaseerd op Slic3r" -#: src/slic3r/GUI/MainFrame.cpp:190 -msgid "Plater" -msgstr "Modelweergave" - -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "Nieuw project" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "Start nieuw project" -#: src/slic3r/GUI/MainFrame.cpp:404 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "Open project" -#: src/slic3r/GUI/MainFrame.cpp:404 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "Open een projectbestand" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "Huidige projecten" -#: src/slic3r/GUI/MainFrame.cpp:418 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "Het geselecteerde project is niet meer beschikbaar" -#: src/slic3r/GUI/MainFrame.cpp:418 src/slic3r/GUI/MainFrame.cpp:761 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Fout" -#: src/slic3r/GUI/MainFrame.cpp:442 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "Project opslaan" -#: src/slic3r/GUI/MainFrame.cpp:442 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "Projectbestand opslaan" -#: src/slic3r/GUI/MainFrame.cpp:446 src/slic3r/GUI/MainFrame.cpp:448 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "Project opslaan als" -#: src/slic3r/GUI/MainFrame.cpp:446 src/slic3r/GUI/MainFrame.cpp:448 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "Projectbestand opslaan als" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importeer STL-, OBJ-, AMF- of 3MF-bestanden" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "Laad een model" -#: src/slic3r/GUI/MainFrame.cpp:460 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "Importeer configuratie" -#: src/slic3r/GUI/MainFrame.cpp:460 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "Laad geëxporteerd configuratiebestand" -#: src/slic3r/GUI/MainFrame.cpp:462 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "Importeer configuratie van project" -#: src/slic3r/GUI/MainFrame.cpp:462 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "Laad configuratie van projectbestand" -#: src/slic3r/GUI/MainFrame.cpp:465 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "Importeer configuratiebundel" -#: src/slic3r/GUI/MainFrame.cpp:465 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "Laad presets van een bundel" -#: src/slic3r/GUI/MainFrame.cpp:467 +#: src/slic3r/GUI/MainFrame.cpp:474 msgid "&Import" msgstr "Importeer" -#: src/slic3r/GUI/MainFrame.cpp:470 src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" msgstr "Exporteer G-code" -#: src/slic3r/GUI/MainFrame.cpp:470 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "Exporteer huidige modellen als gcode-bestand" -#: src/slic3r/GUI/MainFrame.cpp:474 src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" msgstr "Stuur G-code" -#: src/slic3r/GUI/MainFrame.cpp:474 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "Stuur huidige weergave als G-code" -#: src/slic3r/GUI/MainFrame.cpp:479 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" msgstr "Exporteer huidige modellen als STL-bestand" -#: src/slic3r/GUI/MainFrame.cpp:479 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "Exporteer huidige modellen als STL-bestand" -#: src/slic3r/GUI/MainFrame.cpp:482 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" msgstr "Exporteer modellen met support als STL-bestand" -#: src/slic3r/GUI/MainFrame.cpp:482 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" msgstr "Exporteer huidige modellen met support als STL-bestand" -#: src/slic3r/GUI/MainFrame.cpp:485 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" msgstr "Exporteer huidige modellen als AMF-bestand" -#: src/slic3r/GUI/MainFrame.cpp:485 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "Exporteer huidige modellen als AMF-bestand" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Exporteer paden als OBJ-bestand" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" -msgstr "Exporteer paden als OBJ-bestand" +msgstr "Exporteer toolpaden als OBJ-bestand" -#: src/slic3r/GUI/MainFrame.cpp:493 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "Exporteer configuratie" -#: src/slic3r/GUI/MainFrame.cpp:493 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "Exporteer huidige configuratie naar bestand" -#: src/slic3r/GUI/MainFrame.cpp:495 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "Exporteer configuratiebundel" -#: src/slic3r/GUI/MainFrame.cpp:495 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "Exporteer alle presets naar bestand" -#: src/slic3r/GUI/MainFrame.cpp:497 +#: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "Exporteer" -#: src/slic3r/GUI/MainFrame.cpp:503 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "Snel slicen" -#: src/slic3r/GUI/MainFrame.cpp:503 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "Slice naar een gcode-bestand" -#: src/slic3r/GUI/MainFrame.cpp:509 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "Snel slicen en opslaan als" -#: src/slic3r/GUI/MainFrame.cpp:509 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "Slice naar gcode-bestand, opslaan als" -#: src/slic3r/GUI/MainFrame.cpp:515 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "Herhaal laatste snelle slice" -#: src/slic3r/GUI/MainFrame.cpp:515 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "Herhaal laatste snelle slice" -#: src/slic3r/GUI/MainFrame.cpp:523 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(Her)slice nu" -#: src/slic3r/GUI/MainFrame.cpp:523 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "Start nieuw sliceproces" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "Repareer STL-bestand" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "Automatisch een STL-bestand repareren" -#: src/slic3r/GUI/MainFrame.cpp:530 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "Afsluiten" -#: src/slic3r/GUI/MainFrame.cpp:530 +#: src/slic3r/GUI/MainFrame.cpp:540 #, c-format msgid "Quit %s" msgstr "%s afsluiten" -#: src/slic3r/GUI/MainFrame.cpp:555 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "Selecteer alle" -#: src/slic3r/GUI/MainFrame.cpp:556 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "Selecteer alle objecten" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "Deselecteer alles" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "Deselecteer alle objecten" -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" msgstr "Verwijder selectie" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "Verwijdert huidige selectie" -#: src/slic3r/GUI/MainFrame.cpp:565 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "Verwijder alles" -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "Verwijdert alle objecten" -#: src/slic3r/GUI/MainFrame.cpp:570 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "Maak ongedaan" -#: src/slic3r/GUI/MainFrame.cpp:573 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "Doe opnieuw" -#: src/slic3r/GUI/MainFrame.cpp:578 +#: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" msgstr "Kopieer" -#: src/slic3r/GUI/MainFrame.cpp:579 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "Kopieer selectie naar klembord" -#: src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "Plak" -#: src/slic3r/GUI/MainFrame.cpp:582 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "Plak van klembord" -#: src/slic3r/GUI/MainFrame.cpp:591 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "Herlaad van schijf" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "Herlaad modellen van schijf" + +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" -msgstr "Modelweergavetab" +msgstr "3D-weergavetab" -#: src/slic3r/GUI/MainFrame.cpp:591 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" -msgstr "Toon de modelweergave" +msgstr "Toon de 3D-weergave" -#: src/slic3r/GUI/MainFrame.cpp:598 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "Printinstellingentab" -#: src/slic3r/GUI/MainFrame.cpp:598 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "Toon de printinstellingen" -#: src/slic3r/GUI/MainFrame.cpp:600 src/slic3r/GUI/MainFrame.cpp:728 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "Filamentinstellingentab" -#: src/slic3r/GUI/MainFrame.cpp:600 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "Toon de filamentinstellingentab" -#: src/slic3r/GUI/MainFrame.cpp:603 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "Printerinstellingentab" -#: src/slic3r/GUI/MainFrame.cpp:603 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "Toon de printerinstellingen" -#: src/slic3r/GUI/MainFrame.cpp:607 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3D" -#: src/slic3r/GUI/MainFrame.cpp:607 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "Toon de 3D-bewerkingsweergave" -#: src/slic3r/GUI/MainFrame.cpp:610 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "Voorbeeld" -#: src/slic3r/GUI/MainFrame.cpp:610 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "Toon de 3D-weergave van de slice" -#: src/slic3r/GUI/MainFrame.cpp:629 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "Printhost uploadwachtrij" -#: src/slic3r/GUI/MainFrame.cpp:629 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "Toon het venster van de printhost uploadwachtrij" -#: src/slic3r/GUI/MainFrame.cpp:638 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "Isometrisch" -#: src/slic3r/GUI/MainFrame.cpp:638 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "Isometrisch aanzicht" #. TRN To be shown in the main menu View->Top #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:642 src/libslic3r/PrintConfig.cpp:2121 +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "Bovenkant" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "Bovenaanzicht" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" -#: src/slic3r/GUI/MainFrame.cpp:645 src/libslic3r/PrintConfig.cpp:164 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "Onderkant" -#: src/slic3r/GUI/MainFrame.cpp:645 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" msgstr "Onderaanzicht" -#: src/slic3r/GUI/MainFrame.cpp:647 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "Voorkant" -#: src/slic3r/GUI/MainFrame.cpp:647 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "Vooraanzicht" -#: src/slic3r/GUI/MainFrame.cpp:649 src/libslic3r/PrintConfig.cpp:1627 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "Achterkant" -#: src/slic3r/GUI/MainFrame.cpp:649 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "Achteraanzicht" -#: src/slic3r/GUI/MainFrame.cpp:651 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "Links" -#: src/slic3r/GUI/MainFrame.cpp:651 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "Linkerzijaanzicht" -#: src/slic3r/GUI/MainFrame.cpp:653 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "Rechts" -#: src/slic3r/GUI/MainFrame.cpp:653 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "Rechterzijaanzicht" -#: src/slic3r/GUI/MainFrame.cpp:660 +#: src/slic3r/GUI/MainFrame.cpp:676 +msgid "Show &labels" +msgstr "Toon labels" + +#: src/slic3r/GUI/MainFrame.cpp:676 +msgid "Show object/instance labels in 3D scene" +msgstr "Toon object-/instantielabels in de 3D weergave" + +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" msgstr "Prusa 3D stuurprogramma" -#: src/slic3r/GUI/MainFrame.cpp:660 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Open de Prusa3D drivers-downloadpagina in uw browser" -#: src/slic3r/GUI/MainFrame.cpp:662 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" msgstr "Software-uitgaven" -#: src/slic3r/GUI/MainFrame.cpp:662 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "Open de software-uitgaven pagina in uw browser" -#: src/slic3r/GUI/MainFrame.cpp:668 +#: src/slic3r/GUI/MainFrame.cpp:692 #, c-format msgid "%s &Website" msgstr "%s-website" -#: src/slic3r/GUI/MainFrame.cpp:669 +#: src/slic3r/GUI/MainFrame.cpp:693 #, c-format msgid "Open the %s website in your browser" msgstr "Open de %s website in uw browser" -#: src/slic3r/GUI/MainFrame.cpp:675 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "Systeeminfo" -#: src/slic3r/GUI/MainFrame.cpp:675 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "Toon systeeminformatie" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" msgstr "Toon configuratiemap" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "Toon gebruikersconfiguratiemap (datadir)" -#: src/slic3r/GUI/MainFrame.cpp:679 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" msgstr "Rapporteer een fout" -#: src/slic3r/GUI/MainFrame.cpp:679 +#: src/slic3r/GUI/MainFrame.cpp:703 #, c-format msgid "Report an issue on %s" msgstr "Rapporteer een fout op %s" -#: src/slic3r/GUI/MainFrame.cpp:681 +#: src/slic3r/GUI/MainFrame.cpp:705 #, c-format msgid "&About %s" msgstr "Over %s" -#: src/slic3r/GUI/MainFrame.cpp:681 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "Toon Over-dialoogvenster" -#: src/slic3r/GUI/MainFrame.cpp:684 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "Toon de lijst met sneltoetsen" -#: src/slic3r/GUI/MainFrame.cpp:697 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "Bestand" -#: src/slic3r/GUI/MainFrame.cpp:698 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" msgstr "Bewerk" -#: src/slic3r/GUI/MainFrame.cpp:699 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" msgstr "Venster" -#: src/slic3r/GUI/MainFrame.cpp:700 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" -msgstr "Weergave" +msgstr "Toon" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "Help" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "Exporteer" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "Stuur om te printen" -#: src/slic3r/GUI/MainFrame.cpp:728 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "Materiaalinstellingentab" -#: src/slic3r/GUI/MainFrame.cpp:749 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Kies een STL-, OBJ-, AMF-, 3MF- of PRUSA-bestand om te slicen:" -#: src/slic3r/GUI/MainFrame.cpp:760 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "Niet eerder gesliced bestand." -#: src/slic3r/GUI/MainFrame.cpp:766 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "Eerder gesliced bestand (" -#: src/slic3r/GUI/MainFrame.cpp:766 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ") niet gevonden." -#: src/slic3r/GUI/MainFrame.cpp:767 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "Bestand niet gevonden" -#: src/slic3r/GUI/MainFrame.cpp:802 +#: src/slic3r/GUI/MainFrame.cpp:826 #, c-format msgid "Save %s file as:" msgstr "%s-bestand opslaan als:" -#: src/slic3r/GUI/MainFrame.cpp:802 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/MainFrame.cpp:802 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/MainFrame.cpp:814 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "ZIP-bestand opslaan als:" -#: src/slic3r/GUI/MainFrame.cpp:823 src/slic3r/GUI/Plater.cpp:3058 -#: src/slic3r/GUI/Plater.cpp:4781 src/slic3r/GUI/Tab.cpp:1201 -#: src/slic3r/GUI/Tab.cpp:3615 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:5085 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3652 msgid "Slicing" msgstr "Slicen" #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:825 +#: src/slic3r/GUI/MainFrame.cpp:849 #, c-format msgid "Processing %s" msgstr "%s verwerken" -#: src/slic3r/GUI/MainFrame.cpp:848 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " succesvol gesliced." -#: src/slic3r/GUI/MainFrame.cpp:850 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "Slicen klaar!" -#: src/slic3r/GUI/MainFrame.cpp:865 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "Selecteer het STL-bestand om te repareren:" -#: src/slic3r/GUI/MainFrame.cpp:875 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "OBJ-bestand opslaan als:" -#: src/slic3r/GUI/MainFrame.cpp:887 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "Het bestand is gerepareerd." -#: src/slic3r/GUI/MainFrame.cpp:887 src/libslic3r/PrintConfig.cpp:3374 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "Repareer" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "Configuratie opslaan als:" -#: src/slic3r/GUI/MainFrame.cpp:920 src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "Selecteer configuratie om te laden:" -#: src/slic3r/GUI/MainFrame.cpp:956 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "Presetbundel opslaan als:" -#: src/slic3r/GUI/MainFrame.cpp:1003 +#: src/slic3r/GUI/MainFrame.cpp:1027 #, c-format msgid "%d presets successfully imported." msgstr "%d presets succesvol geïmporteerd." -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "3Dconnexion-instellingen" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "Apparaat:" -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "Snelheid:" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:300 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Translation" msgstr "Verplaatsing" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +msgid "Zoom" +msgstr "Zoom" + +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "Deadzone:" @@ -3528,157 +4060,184 @@ msgstr "%s fout" msgid "%s has encountered an error" msgstr "%s heeft een fout veroorzaakt" -#: src/slic3r/GUI/OptionsGroup.cpp:249 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 +msgid "Instances" +msgstr "Instanties" + +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 +#, c-format +msgid "Instance %d" +msgstr "Instantie %d" + +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3502 +#: src/slic3r/GUI/Tab.cpp:3590 +msgid "Layers" +msgstr "Lagen" + +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +msgid "Range" +msgstr "Bereik" + +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" -msgstr "Boven" +msgstr "Bovenkant" -#: src/slic3r/GUI/OptionsGroup.cpp:249 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" -msgstr "Bodem" +msgstr "Onderkant" -#: src/slic3r/GUI/Plater.cpp:155 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "Volume" -#: src/slic3r/GUI/Plater.cpp:156 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "Vlakken" -#: src/slic3r/GUI/Plater.cpp:157 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "Materialen" -#: src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "Gesloten model" -#: src/slic3r/GUI/Plater.cpp:210 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "Slice info" -#: src/slic3r/GUI/Plater.cpp:229 src/slic3r/GUI/Plater.cpp:1179 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1224 msgid "Used Filament (m)" msgstr "Filamentverbruik (m)" -#: src/slic3r/GUI/Plater.cpp:230 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "Filamentverbruik (mm³)" -#: src/slic3r/GUI/Plater.cpp:231 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "Filamentverbruik (g)" -#: src/slic3r/GUI/Plater.cpp:232 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "Materiaalverbruik (eenheid)" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "Kosten (€)" -#: src/slic3r/GUI/Plater.cpp:234 src/slic3r/GUI/Plater.cpp:1166 -#: src/slic3r/GUI/Plater.cpp:1208 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1211 +#: src/slic3r/GUI/Plater.cpp:1253 msgid "Estimated printing time" msgstr "Geschatte printtijd" -#: src/slic3r/GUI/Plater.cpp:235 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "Aantal toolwisselingen" -#: src/slic3r/GUI/Plater.cpp:332 +#: src/slic3r/GUI/Plater.cpp:338 msgid "Click to edit preset" msgstr "Klik om de preset te wijzigen" -#: src/slic3r/GUI/Plater.cpp:487 +#: src/slic3r/GUI/Plater.cpp:493 msgid "Select what kind of support do you need" msgstr "Selecteer welk type support nodig is" -#: src/slic3r/GUI/Plater.cpp:489 src/libslic3r/PrintConfig.cpp:1890 -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/slic3r/GUI/Plater.cpp:495 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "Support alleen op het bed" -#: src/slic3r/GUI/Plater.cpp:490 src/slic3r/GUI/Plater.cpp:613 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:619 msgid "For support enforcers only" msgstr "Alleen voor supportforceringen" -#: src/slic3r/GUI/Plater.cpp:491 +#: src/slic3r/GUI/Plater.cpp:497 msgid "Everywhere" msgstr "Overal" -#: src/slic3r/GUI/Plater.cpp:523 src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Plater.cpp:529 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "Brim" -#: src/slic3r/GUI/Plater.cpp:525 +#: src/slic3r/GUI/Plater.cpp:531 msgid "" "This flag enables the brim that will be printed around each object on the " "first layer." msgstr "Door dit aan te vinken zal een brim rond elke object geprint worden." -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:539 msgid "Purging volumes" msgstr "Afveegvolume" -#: src/slic3r/GUI/Plater.cpp:627 +#: src/slic3r/GUI/Plater.cpp:633 msgid "Select what kind of pad do you need" msgstr "Selecteer welk soort basisplaat nodig is" -#: src/slic3r/GUI/Plater.cpp:629 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Below object" msgstr "Onder het object" -#: src/slic3r/GUI/Plater.cpp:630 +#: src/slic3r/GUI/Plater.cpp:636 msgid "Around object" msgstr "Rondom het object" -#: src/slic3r/GUI/Plater.cpp:802 +#: src/slic3r/GUI/Plater.cpp:810 msgid "Print settings" msgstr "Printinstellingen" -#: src/slic3r/GUI/Plater.cpp:803 src/slic3r/GUI/Tab.cpp:1405 -#: src/slic3r/GUI/Tab.cpp:1406 +#: src/slic3r/GUI/Plater.cpp:811 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Plater.cpp:804 +#: src/slic3r/GUI/Plater.cpp:812 msgid "SLA print settings" msgstr "SLA-printinstellingen" -#: src/slic3r/GUI/Plater.cpp:805 src/slic3r/GUI/Preset.cpp:1411 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Preset.cpp:1522 msgid "SLA material" msgstr "SLA-materiaal" -#: src/slic3r/GUI/Plater.cpp:806 +#: src/slic3r/GUI/Plater.cpp:814 msgid "Printer" msgstr "Printer" -#: src/slic3r/GUI/Plater.cpp:856 src/slic3r/GUI/Plater.cpp:5143 +#: src/slic3r/GUI/Plater.cpp:873 src/slic3r/GUI/Plater.cpp:5497 msgid "Send to printer" msgstr "Stuur naar printer" -#: src/slic3r/GUI/Plater.cpp:859 src/slic3r/GUI/Plater.cpp:3058 -#: src/slic3r/GUI/Plater.cpp:4784 +#: src/slic3r/GUI/Plater.cpp:874 +msgid "Remove device" +msgstr "Verwijder schijf" + +#: src/slic3r/GUI/Plater.cpp:875 +msgid "Export to SD card / Flash drive" +msgstr "Exporteer naar SD-kaart / USB-stick" + +#: src/slic3r/GUI/Plater.cpp:887 src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:5088 msgid "Slice now" msgstr "Slice nu" -#: src/slic3r/GUI/Plater.cpp:999 +#: src/slic3r/GUI/Plater.cpp:1037 msgid "Hold Shift to Slice & Export G-code" msgstr "Houdt shift ingedrukt om te slicen en de G-code te exporteren" -#: src/slic3r/GUI/Plater.cpp:1102 +#: src/slic3r/GUI/Plater.cpp:1147 #, c-format msgid "%d (%d shells)" msgstr "%d (%d shells)" -#: src/slic3r/GUI/Plater.cpp:1107 +#: src/slic3r/GUI/Plater.cpp:1152 #, c-format msgid "Auto-repaired (%d errors)" msgstr "Automatisch gerepareerd (%d fouten)" -#: src/slic3r/GUI/Plater.cpp:1110 +#: src/slic3r/GUI/Plater.cpp:1155 #, c-format msgid "" "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d " @@ -3687,86 +4246,78 @@ msgstr "" "%d degenereer vlakken, %d randen vastgezet, %d vlakken verwijderd, %d " "vlakken toegevoegd, %d vlakken omgekeerd, %d randen omgekeerd" -#: src/slic3r/GUI/Plater.cpp:1120 +#: src/slic3r/GUI/Plater.cpp:1165 msgid "Yes" -msgstr "Ja" +msgstr "JA" -#: src/slic3r/GUI/Plater.cpp:1141 +#: src/slic3r/GUI/Plater.cpp:1186 msgid "Used Material (ml)" msgstr "Materiaalgebruik (ml)" -#: src/slic3r/GUI/Plater.cpp:1144 +#: src/slic3r/GUI/Plater.cpp:1189 msgid "object(s)" msgstr "object(en)" -#: src/slic3r/GUI/Plater.cpp:1144 +#: src/slic3r/GUI/Plater.cpp:1189 msgid "supports and pad" msgstr "support en basisplaat" -#: src/slic3r/GUI/Plater.cpp:1181 src/slic3r/GUI/Plater.cpp:1196 +#: src/slic3r/GUI/Plater.cpp:1226 src/slic3r/GUI/Plater.cpp:1240 msgid "objects" msgstr "objecten" -#: src/slic3r/GUI/Plater.cpp:1181 src/slic3r/GUI/Plater.cpp:1196 +#: src/slic3r/GUI/Plater.cpp:1226 src/slic3r/GUI/Plater.cpp:1240 msgid "wipe tower" msgstr "afveegblok" -#: src/slic3r/GUI/Plater.cpp:1194 src/libslic3r/PrintConfig.cpp:749 -#: src/libslic3r/PrintConfig.cpp:2478 src/libslic3r/PrintConfig.cpp:2479 +#: src/slic3r/GUI/Plater.cpp:1238 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "Kosten" -#: src/slic3r/GUI/Plater.cpp:1211 +#: src/slic3r/GUI/Plater.cpp:1256 msgid "normal mode" msgstr "normale modus" -#: src/slic3r/GUI/Plater.cpp:1215 src/slic3r/GUI/Plater.cpp:1224 -#: src/libslic3r/PrintConfig.cpp:572 +#: src/slic3r/GUI/Plater.cpp:1260 src/slic3r/GUI/Plater.cpp:1269 +#: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Kleur" -#: src/slic3r/GUI/Plater.cpp:1220 +#: src/slic3r/GUI/Plater.cpp:1265 msgid "stealth mode" msgstr "stille modus" -#: src/slic3r/GUI/Plater.cpp:1324 +#: src/slic3r/GUI/Plater.cpp:1373 msgid "Load File" msgstr "Laad bestand" -#: src/slic3r/GUI/Plater.cpp:1328 +#: src/slic3r/GUI/Plater.cpp:1377 msgid "Load Files" msgstr "Laad bestanden" -#: src/slic3r/GUI/Plater.cpp:1561 -msgid "ERROR: not enough resources to execute a new job." -msgstr "Fout: niet genoeg middelen om nieuwe job te starten." - -#: src/slic3r/GUI/Plater.cpp:2158 +#: src/slic3r/GUI/Plater.cpp:2129 msgid "New Project" msgstr "Nieuw project" -#: src/slic3r/GUI/Plater.cpp:2277 +#: src/slic3r/GUI/Plater.cpp:2251 msgid "Loading" msgstr "Aan het laden" -#: src/slic3r/GUI/Plater.cpp:2287 +#: src/slic3r/GUI/Plater.cpp:2261 #, c-format msgid "Processing input file %s" msgstr "Verwerken van inputbestand %s" -#: src/slic3r/GUI/Plater.cpp:2315 -msgid "" -"You can't load SLA project if there is at least one multi-part object on the " -"bed" -msgstr "" -"U kan geen SLA-project laden als er tenminste één meerdelig object op het " -"bed is" +#: src/slic3r/GUI/Plater.cpp:2289 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "U kunt geen SLA-project laden met een meerdelig object op het bed" -#: src/slic3r/GUI/Plater.cpp:2316 src/slic3r/GUI/Tab.cpp:2915 +#: src/slic3r/GUI/Plater.cpp:2290 src/slic3r/GUI/Tab.cpp:2949 msgid "Please check your object list before preset changing." msgstr "Controleer de objectenlijst voor het wijzigen van de preset." -#: src/slic3r/GUI/Plater.cpp:2361 +#: src/slic3r/GUI/Plater.cpp:2335 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -3778,11 +4329,11 @@ msgstr "" "onderdelen\n" "in plaats van als meerdere objecten?" -#: src/slic3r/GUI/Plater.cpp:2364 src/slic3r/GUI/Plater.cpp:2417 +#: src/slic3r/GUI/Plater.cpp:2338 src/slic3r/GUI/Plater.cpp:2391 msgid "Multi-part object detected" msgstr "Meerdelig object gedetecteerd" -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2345 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" @@ -3790,11 +4341,11 @@ msgstr "" "Dit bestand kan niet geladen worden in eenvoudige modus. Wilt u overstappen " "op geavanceerde modus?" -#: src/slic3r/GUI/Plater.cpp:2372 +#: src/slic3r/GUI/Plater.cpp:2346 msgid "Detected advanced data" msgstr "Geavanceerde data gedetecteerd" -#: src/slic3r/GUI/Plater.cpp:2394 +#: src/slic3r/GUI/Plater.cpp:2368 #, c-format msgid "" "You can't to add the object(s) from %s because of one or some of them " @@ -3803,7 +4354,7 @@ msgstr "" "U kan geen objecten toevoegen van %s, omdat sommige daarvan meerdelig kunnen " "zijn" -#: src/slic3r/GUI/Plater.cpp:2414 +#: src/slic3r/GUI/Plater.cpp:2388 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -3813,11 +4364,11 @@ msgstr "" "Moeten deze objecten beschouwd worden als één object\n" "met meerdere onderdelen, of als meerdere objecten?" -#: src/slic3r/GUI/Plater.cpp:2430 +#: src/slic3r/GUI/Plater.cpp:2404 msgid "Loaded" msgstr "Geladen" -#: src/slic3r/GUI/Plater.cpp:2532 +#: src/slic3r/GUI/Plater.cpp:2506 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." @@ -3825,67 +4376,87 @@ msgstr "" "Het object is te groot. Daarom is het automatisch verschaald tot de grootte " "van het printbed." -#: src/slic3r/GUI/Plater.cpp:2533 +#: src/slic3r/GUI/Plater.cpp:2507 msgid "Object too large?" msgstr "Object te groot?" -#: src/slic3r/GUI/Plater.cpp:2595 +#: src/slic3r/GUI/Plater.cpp:2569 msgid "Export STL file:" msgstr "Exporteer STL-bestand:" -#: src/slic3r/GUI/Plater.cpp:2602 +#: src/slic3r/GUI/Plater.cpp:2576 msgid "Export AMF file:" msgstr "Exporteer AMF-bestand:" -#: src/slic3r/GUI/Plater.cpp:2608 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Save file as:" msgstr "Bestand opslaan als:" -#: src/slic3r/GUI/Plater.cpp:2614 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Export OBJ file:" msgstr "Exporteer OBJ-bestand:" -#: src/slic3r/GUI/Plater.cpp:2716 +#: src/slic3r/GUI/Plater.cpp:2690 msgid "Delete Object" msgstr "Verwijder object" -#: src/slic3r/GUI/Plater.cpp:2727 +#: src/slic3r/GUI/Plater.cpp:2701 msgid "Reset Project" msgstr "Reset project" -#: src/slic3r/GUI/Plater.cpp:2765 +#: src/slic3r/GUI/Plater.cpp:2738 +msgid "Hollow" +msgstr "Uithollen" + +#: src/slic3r/GUI/Plater.cpp:2745 msgid "Optimize Rotation" msgstr "Optimaliseer rotatie" -#: src/slic3r/GUI/Plater.cpp:2811 +#: src/slic3r/GUI/Plater.cpp:2791 msgid "Arranging" msgstr "Schikken" -#: src/slic3r/GUI/Plater.cpp:2833 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Kan modellen niet schikken. Sommige vormen kunnen ongeldig zijn." -#: src/slic3r/GUI/Plater.cpp:2839 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Arranging canceled." msgstr "Schikken geannuleerd." -#: src/slic3r/GUI/Plater.cpp:2840 +#: src/slic3r/GUI/Plater.cpp:2820 msgid "Arranging done." msgstr "Schikken voltooid." -#: src/slic3r/GUI/Plater.cpp:2856 +#: src/slic3r/GUI/Plater.cpp:2836 msgid "Searching for optimal orientation" msgstr "Zoeken naar optimale oriëntatie" -#: src/slic3r/GUI/Plater.cpp:2889 +#: src/slic3r/GUI/Plater.cpp:2869 msgid "Orientation search canceled." msgstr "Oriëntatie zoeken geannuleerd." -#: src/slic3r/GUI/Plater.cpp:2890 +#: src/slic3r/GUI/Plater.cpp:2870 msgid "Orientation found." msgstr "Oriëntatie gevonden." -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2900 +msgid "Indexing hollowed object" +msgstr "Uitgehold object indexeren" + +#: src/slic3r/GUI/Plater.cpp:2904 +msgid "Hollowing cancelled." +msgstr "Uithollen geannuleerd." + +#: src/slic3r/GUI/Plater.cpp:2905 +msgid "Hollowing done." +msgstr "Uithollen voltooid." + +#: src/slic3r/GUI/Plater.cpp:2907 +msgid "Hollowing failed." +msgstr "Uithollen mislukt." + +#: src/slic3r/GUI/Plater.cpp:2948 msgid "" "The selected object can't be split because it contains more than one volume/" "material." @@ -3893,140 +4464,164 @@ msgstr "" "Het geselecteerde object kan niet opgedeeld worden omdat het meer dan één " "volume bevat." -#: src/slic3r/GUI/Plater.cpp:2917 +#: src/slic3r/GUI/Plater.cpp:2959 msgid "Split to Objects" -msgstr "Verdeel in objecten" +msgstr "Splits op naar objecten" -#: src/slic3r/GUI/Plater.cpp:3043 +#: src/slic3r/GUI/Plater.cpp:3084 msgid "Invalid data" msgstr "Ongeldige data" -#: src/slic3r/GUI/Plater.cpp:3052 +#: src/slic3r/GUI/Plater.cpp:3093 msgid "Ready to slice" msgstr "Klaar om te slicen" -#: src/slic3r/GUI/Plater.cpp:3090 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3131 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Annuleren" -#: src/slic3r/GUI/Plater.cpp:3107 +#: src/slic3r/GUI/Plater.cpp:3148 msgid "Another export job is currently running." msgstr "Een andere export loopt op dit moment." -#: src/slic3r/GUI/Plater.cpp:3276 +#: src/slic3r/GUI/Plater.cpp:3264 +msgid "Please select the file to reload" +msgstr "Selecteer het bestand om te herladen" + +#: src/slic3r/GUI/Plater.cpp:3299 +msgid "It is not allowed to change the file to reload" +msgstr "Het is niet toegestaan om het te laden bestand te wijzigen" + +#: src/slic3r/GUI/Plater.cpp:3299 +msgid "Do you want to retry" +msgstr "Wilt u dit opnieuw proberen" + +#: src/slic3r/GUI/Plater.cpp:3317 +msgid "Reload from: " +msgstr "Herlaad van: " + +#: src/slic3r/GUI/Plater.cpp:3406 +msgid "Unable to reload:" +msgstr "Niet in staat om te herladen:" + +#: src/slic3r/GUI/Plater.cpp:3411 +msgid "Error during reload" +msgstr "Fout tijdens herladen" + +#: src/slic3r/GUI/Plater.cpp:3430 +msgid "Reload all from disk" +msgstr "Herlaad alles van schijf" + +#: src/slic3r/GUI/Plater.cpp:3451 msgid "Fix Throught NetFabb" msgstr "Repareer met NetFabb" -#: src/slic3r/GUI/Plater.cpp:3467 +#: src/slic3r/GUI/Plater.cpp:3642 msgid "Export failed" msgstr "Exporteren mislukt" -#: src/slic3r/GUI/Plater.cpp:3472 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3647 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Geannuleerd" -#: src/slic3r/GUI/Plater.cpp:3712 src/slic3r/GUI/Plater.cpp:3734 +#: src/slic3r/GUI/Plater.cpp:3909 src/slic3r/GUI/Plater.cpp:3931 msgid "Remove the selected object" msgstr "Verwijder het geselecteerde object" -#: src/slic3r/GUI/Plater.cpp:3721 +#: src/slic3r/GUI/Plater.cpp:3918 msgid "Add one more instance of the selected object" msgstr "Voeg een instantie van het geselecteerde object toe" -#: src/slic3r/GUI/Plater.cpp:3723 +#: src/slic3r/GUI/Plater.cpp:3920 msgid "Remove one instance of the selected object" msgstr "Verwijder een instantie van het geselecteerde object" -#: src/slic3r/GUI/Plater.cpp:3725 +#: src/slic3r/GUI/Plater.cpp:3922 msgid "Set number of instances" msgstr "Stel aantal instanties in" -#: src/slic3r/GUI/Plater.cpp:3725 +#: src/slic3r/GUI/Plater.cpp:3922 msgid "Change the number of instances of the selected object" msgstr "Wijzig het aantal instanties van het geselecteerde object" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3941 msgid "Reload the selected object from disk" msgstr "Herlaad het geselecteerde object van de schijf" -#: src/slic3r/GUI/Plater.cpp:3747 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Export the selected object as STL file" msgstr "Exporteer de geselecteerde objecten als STL-bestand" -#: src/slic3r/GUI/Plater.cpp:3772 +#: src/slic3r/GUI/Plater.cpp:3973 msgid "Along X axis" msgstr "Over de X-as" -#: src/slic3r/GUI/Plater.cpp:3772 +#: src/slic3r/GUI/Plater.cpp:3973 msgid "Mirror the selected object along the X axis" msgstr "Spiegel het geselecteerde object over de X-as" -#: src/slic3r/GUI/Plater.cpp:3774 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Along Y axis" msgstr "Over de Y-as" -#: src/slic3r/GUI/Plater.cpp:3774 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Mirror the selected object along the Y axis" msgstr "Spiegel het geselecteerde object over de Y-as" -#: src/slic3r/GUI/Plater.cpp:3776 +#: src/slic3r/GUI/Plater.cpp:3977 msgid "Along Z axis" msgstr "Over de Z-as" -#: src/slic3r/GUI/Plater.cpp:3776 +#: src/slic3r/GUI/Plater.cpp:3977 msgid "Mirror the selected object along the Z axis" msgstr "Spiegel het geselecteerde object over de Z-as" -#: src/slic3r/GUI/Plater.cpp:3779 +#: src/slic3r/GUI/Plater.cpp:3980 msgid "Mirror" msgstr "Spiegelen" -#: src/slic3r/GUI/Plater.cpp:3779 +#: src/slic3r/GUI/Plater.cpp:3980 msgid "Mirror the selected object" msgstr "Spiegel het geselecteerde object" -#: src/slic3r/GUI/Plater.cpp:3791 +#: src/slic3r/GUI/Plater.cpp:3992 msgid "To objects" msgstr "Aan objecten" -#: src/slic3r/GUI/Plater.cpp:3791 src/slic3r/GUI/Plater.cpp:3811 +#: src/slic3r/GUI/Plater.cpp:3992 src/slic3r/GUI/Plater.cpp:4012 msgid "Split the selected object into individual objects" msgstr "Verdeel het geselecteerde object in individuele objecten" -#: src/slic3r/GUI/Plater.cpp:3793 +#: src/slic3r/GUI/Plater.cpp:3994 msgid "To parts" msgstr "Aan onderdelen" -#: src/slic3r/GUI/Plater.cpp:3793 src/slic3r/GUI/Plater.cpp:3825 +#: src/slic3r/GUI/Plater.cpp:3994 src/slic3r/GUI/Plater.cpp:4026 msgid "Split the selected object into individual sub-parts" msgstr "Deel het geselecteerde object op in meerdere subonderdelen" -#: src/slic3r/GUI/Plater.cpp:3796 src/slic3r/GUI/Plater.cpp:3811 -#: src/slic3r/GUI/Plater.cpp:3825 src/libslic3r/PrintConfig.cpp:3398 +#: src/slic3r/GUI/Plater.cpp:3997 src/slic3r/GUI/Plater.cpp:4012 +#: src/slic3r/GUI/Plater.cpp:4026 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "Verdeel" -#: src/slic3r/GUI/Plater.cpp:3796 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Split the selected object" msgstr "Verdeel het geselecteerde object" -#: src/slic3r/GUI/Plater.cpp:3817 +#: src/slic3r/GUI/Plater.cpp:4018 msgid "Optimize orientation" msgstr "Optimaliseer oriëntatie" -#: src/slic3r/GUI/Plater.cpp:3817 +#: src/slic3r/GUI/Plater.cpp:4018 msgid "Optimize the rotation of the object for better print results." msgstr "Optimaliseer de rotatie van het object voor betere printresultaten." -#: src/slic3r/GUI/Plater.cpp:3857 +#: src/slic3r/GUI/Plater.cpp:4075 msgid "3D editor view" msgstr "3D bewerkingsweergave" -#: src/slic3r/GUI/Plater.cpp:3865 src/slic3r/GUI/Tab.cpp:2358 -msgid "Preview" -msgstr "Voorbeeldweergave" - -#: src/slic3r/GUI/Plater.cpp:4144 +#: src/slic3r/GUI/Plater.cpp:4378 msgid "" "%1% printer was active at the time the target Undo / Redo snapshot was " "taken. Switching to %1% printer requires reloading of %1% presets." @@ -4035,98 +4630,94 @@ msgstr "" "doen'-snapshot werd genomen. Schakelen naar %1% printer vereist herladen van " "%1% presets." -#: src/slic3r/GUI/Plater.cpp:4319 +#: src/slic3r/GUI/Plater.cpp:4553 msgid "Load Project" msgstr "Laad project" -#: src/slic3r/GUI/Plater.cpp:4347 +#: src/slic3r/GUI/Plater.cpp:4581 msgid "Import Object" msgstr "Importeer object" -#: src/slic3r/GUI/Plater.cpp:4351 +#: src/slic3r/GUI/Plater.cpp:4585 msgid "Import Objects" msgstr "Importeer objecten" -#: src/slic3r/GUI/Plater.cpp:4410 -msgid "All objects will be removed, continue ?" -msgstr "Alle objecten worden verwijderd. Weet u zeker dat u wilt doorgaan?" +#: src/slic3r/GUI/Plater.cpp:4647 +msgid "All objects will be removed, continue?" +msgstr "Alle objecten worden verwijderd. Doorgaan?" -#: src/slic3r/GUI/Plater.cpp:4418 +#: src/slic3r/GUI/Plater.cpp:4655 msgid "Delete Selected Objects" msgstr "Verwijder geselecteerde objecten" -#: src/slic3r/GUI/Plater.cpp:4426 +#: src/slic3r/GUI/Plater.cpp:4663 msgid "Increase Instances" msgstr "Verhoog aantal instanties" -#: src/slic3r/GUI/Plater.cpp:4461 +#: src/slic3r/GUI/Plater.cpp:4698 msgid "Decrease Instances" msgstr "Verlaag aantal instanties" -#: src/slic3r/GUI/Plater.cpp:4497 +#: src/slic3r/GUI/Plater.cpp:4734 #, c-format msgid "Set numbers of copies to %d" msgstr "Stel aantal kopieën in voor %d" -#: src/slic3r/GUI/Plater.cpp:4527 +#: src/slic3r/GUI/Plater.cpp:4764 msgid "Cut by Plane" msgstr "Snij met behulp van vlak" -#: src/slic3r/GUI/Plater.cpp:4559 +#: src/slic3r/GUI/Plater.cpp:4817 msgid "Save G-code file as:" msgstr "gcode-bestand opslaan als:" -#: src/slic3r/GUI/Plater.cpp:4559 +#: src/slic3r/GUI/Plater.cpp:4817 msgid "Save SL1 file as:" msgstr "SL1-bestand opslaan als:" -#: src/slic3r/GUI/Plater.cpp:4671 +#: src/slic3r/GUI/Plater.cpp:4963 #, c-format msgid "STL file exported to %s" msgstr "STL-bestand geëxporteerd naar %s" -#: src/slic3r/GUI/Plater.cpp:4687 +#: src/slic3r/GUI/Plater.cpp:4980 #, c-format msgid "AMF file exported to %s" msgstr "AMF-bestand geëxporteerd naar %s" -#: src/slic3r/GUI/Plater.cpp:4690 +#: src/slic3r/GUI/Plater.cpp:4983 #, c-format msgid "Error exporting AMF file %s" msgstr "Fout bij het exporteren van AMF-bestand %s" -#: src/slic3r/GUI/Plater.cpp:4722 +#: src/slic3r/GUI/Plater.cpp:5016 #, c-format msgid "3MF file exported to %s" msgstr "3MF-bestand geëxporteerd naar %s" -#: src/slic3r/GUI/Plater.cpp:4727 +#: src/slic3r/GUI/Plater.cpp:5021 #, c-format msgid "Error exporting 3MF file %s" msgstr "Fout bij het exporteren van 3MF-bestand %s" -#: src/slic3r/GUI/Plater.cpp:5142 +#: src/slic3r/GUI/Plater.cpp:5496 msgid "Export" msgstr "Exporteer" -#: src/slic3r/GUI/Plater.cpp:5143 -msgid "Send G-code" -msgstr "Stuur G-code" - -#: src/slic3r/GUI/Plater.cpp:5227 +#: src/slic3r/GUI/Plater.cpp:5581 msgid "Paste From Clipboard" msgstr "Plak van klembord" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1766 -#: src/slic3r/GUI/Tab.cpp:2010 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1798 +#: src/slic3r/GUI/Tab.cpp:2042 msgid "General" msgstr "Algemeen" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "Onthoud de outputmap" -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "" "If this is enabled, Slic3r will prompt the last output directory instead of " "the one containing the input files." @@ -4134,22 +4725,22 @@ msgstr "" "Als dit is ingeschakeld zal PrusaSlicer de laatst gebruikte exportmap " "gebruiken in plaats van de importmap." -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "Centreer onderdelen automatisch" -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "" "If this is enabled, Slic3r will auto-center objects around the print bed " "center." msgstr "" "Als dit is ingeschakeld zal PrusaSlicer objecten rondom het midden centreren." -#: src/slic3r/GUI/Preferences.cpp:60 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Achtergrondverwerking" -#: src/slic3r/GUI/Preferences.cpp:62 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "" "If this is enabled, Slic3r will pre-process objects as soon as they're " "loaded in order to save time when exporting G-code." @@ -4157,7 +4748,7 @@ msgstr "" "Als dit is ingeschakeld zal PrusaSlicer objecten voorbewerken zodra deze " "zijn geladen om tijd te besparen bij het exporteren van de G-code." -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:66 msgid "" "If enabled, PrusaSlicer will check for the new versions of itself online. " "When a new version becomes available a notification is displayed at the next " @@ -4169,7 +4760,19 @@ msgstr "" "volgende keer opstarten. Dit is slechts een melding; er wordt niets " "automatisch geïnstalleerd." -#: src/slic3r/GUI/Preferences.cpp:79 +#: src/slic3r/GUI/Preferences.cpp:72 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "Exporteer de volledige padnamen naar 3MF- en AMF-bestanden" + +#: src/slic3r/GUI/Preferences.cpp:74 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and " +"load the files when invoked." +msgstr "" +"Als dit is ingeschakeld is het 'herladen van de schijf'-commando toegestaan " +"om automatisch bestanden te vinden en laden als deze worden aangeroepen." + +#: src/slic3r/GUI/Preferences.cpp:82 msgid "" "If enabled, Slic3r downloads updates of built-in system presets in the " "background. These updates are downloaded into a separate temporary location. " @@ -4181,11 +4784,11 @@ msgstr "" "locatie. Als een nieuwe preset beschikbaar komt, zal dit gemeld worden bij " "de eerstvolgende keer opstarten." -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "Verberg 'standaard'-presets" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "" "Suppress \" - default - \" presets in the Print / Filament / Printer " "selections once there are any other valid presets available." @@ -4193,11 +4796,11 @@ msgstr "" "Verberg 'standaard'-presets in de print-, filament- en printerselecties als " "er andere geldige presets beschikbaar zijn." -#: src/slic3r/GUI/Preferences.cpp:92 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "Toon incompatibele print- en filamentpresets" -#: src/slic3r/GUI/Preferences.cpp:94 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "" "When checked, the print and filament presets are shown in the preset editor " "even if they are marked as incompatible with the active printer" @@ -4205,11 +4808,11 @@ msgstr "" "Als dit aan staat worden de print- en filamentpresets getoond in de presets-" "editor, zelfs als ze als incompatibel met de actieve printer zijn gemarkeerd" -#: src/slic3r/GUI/Preferences.cpp:101 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "Gebruik hoge resolutie voor de 3D-scène" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "" "If enabled, the 3D scene will be rendered in Retina resolution. If you are " "experiencing 3D performance problems, disabling this option may help." @@ -4218,75 +4821,93 @@ msgstr "" "Als u problemen ondervindt met de prestaties kan het uitschakelen van deze " "optie mogelijk helpen." -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:113 +msgid "Camera" +msgstr "Camera" + +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "Gebruik perspectiefweergave" -#: src/slic3r/GUI/Preferences.cpp:112 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "" "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "" "Als dit is ingeschakeld zal de weergave op perspectief worden gezet. Anders " "wordt een orthografische weergave gebruikt." -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:126 +msgid "Use free camera" +msgstr "Gebruik vrij beweegbare camera" + +#: src/slic3r/GUI/Preferences.cpp:128 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "" +"Als dit is ingeschakeld wordt de vrij beweegbare camera gebruikt, anders een " +"vaste camera." + +#: src/slic3r/GUI/Preferences.cpp:133 +msgid "GUI" +msgstr "GUI" + +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "Gebruik een aangepaste grootte voor werkbalkpictogrammen" -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "" "Grootte van werkbalkpictogrammen handmatig instellen als dit is ingeschakeld." -#: src/slic3r/GUI/Preferences.cpp:144 +#: src/slic3r/GUI/Preferences.cpp:172 #, c-format msgid "You need to restart %s to make the changes effective." msgstr "U moet %s opnieuw opstarten om wijzigingen door te voeren." -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "Pictogramgrootte vergeleken met de originele grootte" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "Selecteer werkbalk-pictogramgrootte in verhouding tot de originele." -#: src/slic3r/GUI/Preset.cpp:237 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "aangepast" -#: src/slic3r/GUI/Preset.cpp:1034 src/slic3r/GUI/Preset.cpp:1081 -#: src/slic3r/GUI/Preset.cpp:1157 src/slic3r/GUI/Preset.cpp:1191 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1660 +#: src/slic3r/GUI/Preset.cpp:1107 src/slic3r/GUI/Preset.cpp:1162 +#: src/slic3r/GUI/Preset.cpp:1240 src/slic3r/GUI/Preset.cpp:1282 +#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "Systeempresets" -#: src/slic3r/GUI/Preset.cpp:1085 src/slic3r/GUI/Preset.cpp:1195 -#: src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1166 src/slic3r/GUI/Preset.cpp:1286 +#: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "Presets van de gebruiker" -#: src/slic3r/GUI/Preset.cpp:1116 src/slic3r/GUI/Tab.cpp:243 -msgid "Add a new printer" -msgstr "Voeg een nieuwe printer toe" - -#: src/slic3r/GUI/Preset.cpp:1118 +#: src/slic3r/GUI/Preset.cpp:1199 msgid "Add/Remove materials" msgstr "Verwijder of voeg materialen toe" -#: src/slic3r/GUI/Preset.cpp:1409 +#: src/slic3r/GUI/Preset.cpp:1201 +msgid "Add/Remove printers" +msgstr "Voeg toe/verwijder printers" + +#: src/slic3r/GUI/Preset.cpp:1520 msgid "filament" msgstr "filament" -#: src/slic3r/GUI/Preset.cpp:1410 +#: src/slic3r/GUI/Preset.cpp:1521 msgid "SLA print" msgstr "SLA-print" -#: src/slic3r/GUI/PresetBundle.cpp:1676 +#: src/slic3r/GUI/PresetBundle.cpp:1697 msgid "Add/Remove filaments" msgstr "Verwijder of voeg filamenten toe" -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "" "If estimated layer time is below ~%1%s, fan will run at %2%%% and print " "speed will be reduced so that no less than %3%s are spent on that layer " @@ -4296,7 +4917,7 @@ msgstr "" "%2%%% en de printsnelheid wordt zover gereduceerd dat niet meer dan %3%s " "worden gebruikt op die laag (echter nooit langzamer dan %4%mm/s)." -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "" "If estimated layer time is greater, but still below ~%1%s, fan will run at a " "proportionally decreasing speed between %2%%% and %3%%%." @@ -4305,92 +4926,92 @@ msgstr "" "ventilator draaien op een proportioneel verlagende snelheid tussen %2%%% en " "%3%%%." -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "Tijdens de overige lagen, ventilator" -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "Ventilator" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "zal altijd draaien op %1%%%" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." -msgstr "behalve voor de eerste %s% lagen." +msgstr "behalve voor de eerste %1% lagen." -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "behalve voor de eerste laag." -#: src/slic3r/GUI/PresetHints.cpp:54 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "wordt uitgeschakeld." -#: src/slic3r/GUI/PresetHints.cpp:155 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" msgstr "buitenperimeters" -#: src/slic3r/GUI/PresetHints.cpp:164 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" msgstr "perimeters" -#: src/slic3r/GUI/PresetHints.cpp:173 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "vulling" -#: src/slic3r/GUI/PresetHints.cpp:183 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "dichte vulling" -#: src/slic3r/GUI/PresetHints.cpp:191 +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" msgstr "bovenste dichte vulling" -#: src/slic3r/GUI/PresetHints.cpp:202 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "support" -#: src/slic3r/GUI/PresetHints.cpp:212 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "supportinterface" -#: src/slic3r/GUI/PresetHints.cpp:218 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "Eerste laag volumetrisch" -#: src/slic3r/GUI/PresetHints.cpp:218 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "Volumetrische bruggen" -#: src/slic3r/GUI/PresetHints.cpp:218 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "Volumetrisch" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" -msgstr "Debiet is gemaximaliseerd" +msgstr "debiet is gemaximaliseerd" -#: src/slic3r/GUI/PresetHints.cpp:222 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "door het printprofiel maximaal" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "tijdens het printen" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "met een volumetrische ratio" -#: src/slic3r/GUI/PresetHints.cpp:228 +#: src/slic3r/GUI/PresetHints.cpp:229 #, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s met een filamentsnelheid van %3.2f mm/s." -#: src/slic3r/GUI/PresetHints.cpp:246 +#: src/slic3r/GUI/PresetHints.cpp:247 msgid "" "Recommended object thin wall thickness: Not available due to invalid layer " "height." @@ -4398,15 +5019,52 @@ msgstr "" "Aanbevolen minimale wanddikte. Niet beschikbaar in verband met ongeldige " "laagdikte." -#: src/slic3r/GUI/PresetHints.cpp:262 +#: src/slic3r/GUI/PresetHints.cpp:263 #, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" -msgstr "Aanbevolen objecten met dunne wanden voor laagdikte %.2f en" +msgstr "Aanbevolen objecten met dunne wanden voor laagdikte %.2fmm en" -#: src/slic3r/GUI/PresetHints.cpp:268 +#: src/slic3r/GUI/PresetHints.cpp:270 #, c-format msgid "%d lines: %.2f mm" -msgstr "%d lijnen: %.2f mm" +msgstr "%d lijnen: %.2fmm" + +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "" +"Recommended object thin wall thickness: Not available due to excessively " +"small extrusion width." +msgstr "" +"Aanbevolen dunne wanden: not beschikbaar door extreem smalle extrusiebreedte." + +#: src/slic3r/GUI/PresetHints.cpp:304 +msgid "" +"Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "" +"Top/bodem-shelldikte hint: niet beschikbaar door een ongeldige laagdikte." + +#: src/slic3r/GUI/PresetHints.cpp:317 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "Topshell is %1% mm dik bij een laagdikte van %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:320 +msgid "Minimum top shell thickness is %1% mm." +msgstr "Minimale topshelldikte is %1% mm." + +#: src/slic3r/GUI/PresetHints.cpp:323 +msgid "Top is open." +msgstr "Bovenzijde is open." + +#: src/slic3r/GUI/PresetHints.cpp:336 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "Bodemshell is %1% mm dik bij een laagdikte van %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:339 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "Minimale bodemshelldikte is %1% mm." + +#: src/slic3r/GUI/PresetHints.cpp:342 +msgid "Bottom is open." +msgstr "Onderzijde is open." #: src/slic3r/GUI/PrintHostDialogs.cpp:33 msgid "Send G-Code to printer host" @@ -4483,12 +5141,12 @@ msgid "Time" msgstr "Tijd" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 -#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:678 -#: src/libslic3r/PrintConfig.cpp:693 src/libslic3r/PrintConfig.cpp:2385 -#: src/libslic3r/PrintConfig.cpp:2394 src/libslic3r/PrintConfig.cpp:2495 -#: src/libslic3r/PrintConfig.cpp:2503 src/libslic3r/PrintConfig.cpp:2511 -#: src/libslic3r/PrintConfig.cpp:2518 src/libslic3r/PrintConfig.cpp:2526 -#: src/libslic3r/PrintConfig.cpp:2534 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "s" @@ -4496,8 +5154,8 @@ msgstr "s" msgid "Volumetric speed" msgstr "Volumetrische snelheid" -#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:591 -#: src/libslic3r/PrintConfig.cpp:1247 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" @@ -4537,11 +5195,11 @@ msgstr "Selectie - Verwijder alle" msgid "Scale To Fit" msgstr "Verschaal tot het past" -#: src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" msgstr "Stel printbare instanties in" -#: src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" msgstr "Stel instantie in op niet-printbaar" @@ -4553,7 +5211,7 @@ msgstr "Systeeminformatie" msgid "Copy to Clipboard" msgstr "Kopieer naar klembord" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "Compatibele printers" @@ -4561,7 +5219,7 @@ msgstr "Compatibele printers" msgid "Select the printers this profile is compatible with." msgstr "Selecteer de printers die compatibel met dit profiel zijn." -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:259 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "Compatibele printprofielen" @@ -4587,19 +5245,23 @@ msgstr "" "Beweeg de cursor over de knoppen voor meer informatie\n" "of klik op deze knop." -#: src/slic3r/GUI/Tab.cpp:943 +#: src/slic3r/GUI/Tab.cpp:243 +msgid "Add a new printer" +msgstr "Voeg een nieuwe printer toe" + +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a default preset." msgstr "Dit is een standaard preset." -#: src/slic3r/GUI/Tab.cpp:945 +#: src/slic3r/GUI/Tab.cpp:957 msgid "This is a system preset." msgstr "Dit is een systeempreset." -#: src/slic3r/GUI/Tab.cpp:947 +#: src/slic3r/GUI/Tab.cpp:959 msgid "Current preset is inherited from the default preset." msgstr "Huidige preset is gebaseerd op de standaard preset." -#: src/slic3r/GUI/Tab.cpp:950 +#: src/slic3r/GUI/Tab.cpp:962 #, c-format msgid "" "Current preset is inherited from:\n" @@ -4608,258 +5270,262 @@ msgstr "" "Huidige preset is gebaseerd op:\n" "\t%s" -#: src/slic3r/GUI/Tab.cpp:954 +#: src/slic3r/GUI/Tab.cpp:966 msgid "It can't be deleted or modified." msgstr "Kan niet verwijderd of aangepast worden." -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:967 msgid "" "Any modifications should be saved as a new preset inherited from this one." msgstr "" "Eventuele wijzigingen moet worden opgeslagen als een nieuwe preset die is " "gebaseerd op de huidige." -#: src/slic3r/GUI/Tab.cpp:956 +#: src/slic3r/GUI/Tab.cpp:968 msgid "To do that please specify a new name for the preset." msgstr "Geef daarvoor een nieuwe naam aan de preset." -#: src/slic3r/GUI/Tab.cpp:960 +#: src/slic3r/GUI/Tab.cpp:972 msgid "Additional information:" msgstr "Additionele informatie:" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:978 msgid "printer model" msgstr "printermodel" -#: src/slic3r/GUI/Tab.cpp:974 +#: src/slic3r/GUI/Tab.cpp:986 msgid "default print profile" msgstr "standaard printprofiel" -#: src/slic3r/GUI/Tab.cpp:977 +#: src/slic3r/GUI/Tab.cpp:989 msgid "default filament profile" msgstr "standaard filamentprofiel" -#: src/slic3r/GUI/Tab.cpp:991 +#: src/slic3r/GUI/Tab.cpp:1003 msgid "default SLA material profile" msgstr "standaard SLA-materiaalprofiel" -#: src/slic3r/GUI/Tab.cpp:995 +#: src/slic3r/GUI/Tab.cpp:1007 msgid "default SLA print profile" msgstr "standaard SLA-printprofiel" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1015 msgid "full profile name" msgstr "volledige profielnaam" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1016 msgid "symbolic profile name" msgstr "symbolische profielnaam" -#: src/slic3r/GUI/Tab.cpp:1038 src/slic3r/GUI/Tab.cpp:3558 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3588 msgid "Layers and perimeters" msgstr "Lagen en perimeters" -#: src/slic3r/GUI/Tab.cpp:1043 +#: src/slic3r/GUI/Tab.cpp:1055 msgid "Vertical shells" msgstr "Verticale shells" -#: src/slic3r/GUI/Tab.cpp:1054 +#: src/slic3r/GUI/Tab.cpp:1066 msgid "Horizontal shells" msgstr "Horizontale shells" -#: src/slic3r/GUI/Tab.cpp:1055 src/libslic3r/PrintConfig.cpp:1776 +#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Dichte lagen" -#: src/slic3r/GUI/Tab.cpp:1060 +#: src/slic3r/GUI/Tab.cpp:1071 +msgid "Minimum shell thickness" +msgstr "Minimale shelldikte" + +#: src/slic3r/GUI/Tab.cpp:1082 msgid "Quality (slower slicing)" msgstr "Kwaliteit (slicen kan langer duren)" -#: src/slic3r/GUI/Tab.cpp:1078 +#: src/slic3r/GUI/Tab.cpp:1100 msgid "Reducing printing time" msgstr "Printtijd verkorten" -#: src/slic3r/GUI/Tab.cpp:1090 +#: src/slic3r/GUI/Tab.cpp:1112 msgid "Skirt and brim" msgstr "Skirt en brim" -#: src/slic3r/GUI/Tab.cpp:1107 +#: src/slic3r/GUI/Tab.cpp:1129 msgid "Raft" msgstr "Raft" -#: src/slic3r/GUI/Tab.cpp:1111 +#: src/slic3r/GUI/Tab.cpp:1133 msgid "Options for support material and raft" msgstr "Opties voor support en raft" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1148 msgid "Speed for print moves" msgstr "Snelheid voor printbewegingen" -#: src/slic3r/GUI/Tab.cpp:1138 +#: src/slic3r/GUI/Tab.cpp:1160 msgid "Speed for non-print moves" msgstr "Snelheid voor niet-print bewegingen" -#: src/slic3r/GUI/Tab.cpp:1141 +#: src/slic3r/GUI/Tab.cpp:1163 msgid "Modifiers" msgstr "Modificators" -#: src/slic3r/GUI/Tab.cpp:1144 +#: src/slic3r/GUI/Tab.cpp:1166 msgid "Acceleration control (advanced)" msgstr "Acceleraties (geavanceerd)" -#: src/slic3r/GUI/Tab.cpp:1151 +#: src/slic3r/GUI/Tab.cpp:1173 msgid "Autospeed (advanced)" msgstr "Automatische snelheid (geavanceerd)" -#: src/slic3r/GUI/Tab.cpp:1159 +#: src/slic3r/GUI/Tab.cpp:1181 msgid "Multiple Extruders" msgstr "Meerdere extruders" -#: src/slic3r/GUI/Tab.cpp:1167 +#: src/slic3r/GUI/Tab.cpp:1189 msgid "Ooze prevention" msgstr "Druippreventie" -#: src/slic3r/GUI/Tab.cpp:1185 +#: src/slic3r/GUI/Tab.cpp:1207 msgid "Extrusion width" msgstr "Extrusiebreedte" -#: src/slic3r/GUI/Tab.cpp:1195 +#: src/slic3r/GUI/Tab.cpp:1217 msgid "Overlap" msgstr "Overlapping" -#: src/slic3r/GUI/Tab.cpp:1198 +#: src/slic3r/GUI/Tab.cpp:1220 msgid "Flow" msgstr "Stroom" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1229 msgid "Other" msgstr "Overige" -#: src/slic3r/GUI/Tab.cpp:1210 src/slic3r/GUI/Tab.cpp:3618 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3655 msgid "Output options" msgstr "Output-opties" -#: src/slic3r/GUI/Tab.cpp:1211 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Sequential printing" msgstr "Achtereenvolgens printen" -#: src/slic3r/GUI/Tab.cpp:1213 +#: src/slic3r/GUI/Tab.cpp:1235 msgid "Extruder clearance (mm)" msgstr "Extruderruimte (mm)" -#: src/slic3r/GUI/Tab.cpp:1222 src/slic3r/GUI/Tab.cpp:3619 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3656 msgid "Output file" msgstr "Outputbestand" -#: src/slic3r/GUI/Tab.cpp:1229 src/libslic3r/PrintConfig.cpp:1448 +#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Scripts voor nabewerking" -#: src/slic3r/GUI/Tab.cpp:1235 src/slic3r/GUI/Tab.cpp:1236 -#: src/slic3r/GUI/Tab.cpp:1517 src/slic3r/GUI/Tab.cpp:1518 -#: src/slic3r/GUI/Tab.cpp:1982 src/slic3r/GUI/Tab.cpp:1983 -#: src/slic3r/GUI/Tab.cpp:2096 src/slic3r/GUI/Tab.cpp:2097 -#: src/slic3r/GUI/Tab.cpp:3495 src/slic3r/GUI/Tab.cpp:3496 +#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 +#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 +#: src/slic3r/GUI/Tab.cpp:2014 src/slic3r/GUI/Tab.cpp:2015 +#: src/slic3r/GUI/Tab.cpp:2130 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3525 src/slic3r/GUI/Tab.cpp:3526 msgid "Notes" msgstr "Opmerkingen" -#: src/slic3r/GUI/Tab.cpp:1242 src/slic3r/GUI/Tab.cpp:1525 -#: src/slic3r/GUI/Tab.cpp:1989 src/slic3r/GUI/Tab.cpp:2103 -#: src/slic3r/GUI/Tab.cpp:3503 src/slic3r/GUI/Tab.cpp:3624 +#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 +#: src/slic3r/GUI/Tab.cpp:2021 src/slic3r/GUI/Tab.cpp:2137 +#: src/slic3r/GUI/Tab.cpp:3533 src/slic3r/GUI/Tab.cpp:3661 msgid "Dependencies" msgstr "Afhankelijkheden" -#: src/slic3r/GUI/Tab.cpp:1243 src/slic3r/GUI/Tab.cpp:1526 -#: src/slic3r/GUI/Tab.cpp:1990 src/slic3r/GUI/Tab.cpp:2104 -#: src/slic3r/GUI/Tab.cpp:3504 src/slic3r/GUI/Tab.cpp:3625 +#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 +#: src/slic3r/GUI/Tab.cpp:2022 src/slic3r/GUI/Tab.cpp:2138 +#: src/slic3r/GUI/Tab.cpp:3534 src/slic3r/GUI/Tab.cpp:3662 msgid "Profile dependencies" msgstr "Profielafhankelijkheden" -#: src/slic3r/GUI/Tab.cpp:1303 src/slic3r/GUI/Tab.cpp:1358 +#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 msgid "Filament Overrides" msgstr "Overschrijven door filament" -#: src/slic3r/GUI/Tab.cpp:1304 src/slic3r/GUI/Tab.cpp:1363 -#: src/slic3r/GUI/Tab.cpp:2338 +#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 +#: src/slic3r/GUI/Tab.cpp:2372 msgid "Retraction" msgstr "Retractie" -#: src/slic3r/GUI/Tab.cpp:1413 src/libslic3r/PrintConfig.cpp:2056 +#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatuur" -#: src/slic3r/GUI/Tab.cpp:1419 +#: src/slic3r/GUI/Tab.cpp:1441 msgid "Bed" msgstr "Bed" -#: src/slic3r/GUI/Tab.cpp:1424 +#: src/slic3r/GUI/Tab.cpp:1446 msgid "Cooling" msgstr "Koeling" -#: src/slic3r/GUI/Tab.cpp:1425 src/libslic3r/PrintConfig.cpp:1350 -#: src/libslic3r/PrintConfig.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Toestaan" -#: src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/Tab.cpp:1458 msgid "Fan settings" msgstr "Ventilatorinstellingen" -#: src/slic3r/GUI/Tab.cpp:1445 +#: src/slic3r/GUI/Tab.cpp:1467 msgid "Cooling thresholds" msgstr "Koeldrempels" -#: src/slic3r/GUI/Tab.cpp:1451 +#: src/slic3r/GUI/Tab.cpp:1473 msgid "Filament properties" msgstr "Filamenteigenschappen" -#: src/slic3r/GUI/Tab.cpp:1455 +#: src/slic3r/GUI/Tab.cpp:1480 msgid "Print speed override" msgstr "Printsnelheid overschrijven" -#: src/slic3r/GUI/Tab.cpp:1465 +#: src/slic3r/GUI/Tab.cpp:1490 msgid "Wipe tower parameters" msgstr "Afveegblokparameters" -#: src/slic3r/GUI/Tab.cpp:1468 +#: src/slic3r/GUI/Tab.cpp:1493 msgid "Toolchange parameters with single extruder MM printers" msgstr "Toolwisselparameter voor multi-materialprinters met één extruder" -#: src/slic3r/GUI/Tab.cpp:1482 +#: src/slic3r/GUI/Tab.cpp:1507 msgid "Ramming settings" msgstr "Ramming-instellingen" -#: src/slic3r/GUI/Tab.cpp:1504 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1977 msgid "Custom G-code" msgstr "Custom G-code" -#: src/slic3r/GUI/Tab.cpp:1505 src/slic3r/GUI/Tab.cpp:1946 -#: src/libslic3r/PrintConfig.cpp:1802 src/libslic3r/PrintConfig.cpp:1817 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Start G-code" -#: src/slic3r/GUI/Tab.cpp:1511 src/slic3r/GUI/Tab.cpp:1952 -#: src/libslic3r/PrintConfig.cpp:374 src/libslic3r/PrintConfig.cpp:384 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1984 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "Eind G-code" -#: src/slic3r/GUI/Tab.cpp:1568 +#: src/slic3r/GUI/Tab.cpp:1593 msgid "Volumetric flow hints not available" msgstr "Volumetrische stroom - opmerkingen niet beschikbaar" -#: src/slic3r/GUI/Tab.cpp:1654 src/slic3r/GUI/Tab.cpp:1885 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1917 msgid "Test" msgstr "Test" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1689 msgid "Could not get a valid Printer Host reference" msgstr "Kan geen geldige printerhost-referentie krijgen" -#: src/slic3r/GUI/Tab.cpp:1670 src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1930 msgid "Success!" msgstr "Gelukt!" -#: src/slic3r/GUI/Tab.cpp:1685 +#: src/slic3r/GUI/Tab.cpp:1715 msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." @@ -4867,15 +5533,15 @@ msgstr "" "HTTPS-CA-bestand is optioneel. Het is alleen nodig als u werkt met een zelf " "ondertekend certificaat." -#: src/slic3r/GUI/Tab.cpp:1698 +#: src/slic3r/GUI/Tab.cpp:1730 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Certificaatbestanden (*.crt, *.pem)|*.crt;*.pem|Alle betanden|*.*" -#: src/slic3r/GUI/Tab.cpp:1699 +#: src/slic3r/GUI/Tab.cpp:1731 msgid "Open CA certificate file" msgstr "Open een CA-certificaatbestand" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1759 #, c-format msgid "" "HTTPS CA File:\n" @@ -4890,24 +5556,24 @@ msgstr "" " \tOm een aangepast CA-bestand te gebruiken moet uw CA-bestand in de " "Certificate Store of Keychain geïmporteerd worden." -#: src/slic3r/GUI/Tab.cpp:1767 src/slic3r/GUI/Tab.cpp:2011 +#: src/slic3r/GUI/Tab.cpp:1799 src/slic3r/GUI/Tab.cpp:2043 msgid "Size and coordinates" msgstr "Grootte en coördinaten" -#: src/slic3r/GUI/Tab.cpp:1772 src/slic3r/GUI/Tab.cpp:2016 -#: src/slic3r/GUI/Tab.cpp:3132 +#: src/slic3r/GUI/Tab.cpp:1804 src/slic3r/GUI/Tab.cpp:2048 +#: src/slic3r/GUI/Tab.cpp:3166 msgid "Set" msgstr "Stel in" -#: src/slic3r/GUI/Tab.cpp:1804 +#: src/slic3r/GUI/Tab.cpp:1836 msgid "Capabilities" msgstr "Mogelijkheden" -#: src/slic3r/GUI/Tab.cpp:1809 +#: src/slic3r/GUI/Tab.cpp:1841 msgid "Number of extruders of the printer." msgstr "Aantal extruders van de printer." -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1869 msgid "" "Single Extruder Multi Material is selected, \n" "and all extruders must have the same diameter.\n" @@ -4919,120 +5585,120 @@ msgstr "" "Wilt u de diameters voor alle extruders aanpassen gelijk aan die van de " "eerste extruder?" -#: src/slic3r/GUI/Tab.cpp:1840 src/slic3r/GUI/Tab.cpp:2308 -#: src/libslic3r/PrintConfig.cpp:1323 +#: src/slic3r/GUI/Tab.cpp:1872 src/slic3r/GUI/Tab.cpp:2342 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Nozzlediameter" -#: src/slic3r/GUI/Tab.cpp:1870 +#: src/slic3r/GUI/Tab.cpp:1902 msgid "USB/Serial connection" msgstr "USB/seriële verbinding" -#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:1656 +#: src/slic3r/GUI/Tab.cpp:1903 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Seriële poort" -#: src/slic3r/GUI/Tab.cpp:1876 +#: src/slic3r/GUI/Tab.cpp:1908 msgid "Rescan serial ports" msgstr "Seriële poorten opnieuw scannen" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1930 msgid "Connection to printer works correctly." msgstr "Verbinding met de printer werkt naar behoren." -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1933 msgid "Connection failed." msgstr "Verbinding mislukt." -#: src/slic3r/GUI/Tab.cpp:1914 src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:1946 src/slic3r/GUI/Tab.cpp:2125 msgid "Print Host upload" msgstr "Printhost upload" -#: src/slic3r/GUI/Tab.cpp:1958 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1990 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "G-code die komt vóór de laagwisseling" -#: src/slic3r/GUI/Tab.cpp:1964 src/libslic3r/PrintConfig.cpp:1069 +#: src/slic3r/GUI/Tab.cpp:1996 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-code die komt na de laagwisseling" -#: src/slic3r/GUI/Tab.cpp:1970 src/libslic3r/PrintConfig.cpp:2082 +#: src/slic3r/GUI/Tab.cpp:2002 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "Toolwisseling G-code" -#: src/slic3r/GUI/Tab.cpp:1976 +#: src/slic3r/GUI/Tab.cpp:2008 msgid "Between objects G-code (for sequential printing)" msgstr "G-code die komt tussen objecten (bij achtereenvolgens printen)" -#: src/slic3r/GUI/Tab.cpp:2048 +#: src/slic3r/GUI/Tab.cpp:2080 msgid "Display" msgstr "Scherm" -#: src/slic3r/GUI/Tab.cpp:2063 +#: src/slic3r/GUI/Tab.cpp:2095 msgid "Tilt" msgstr "Kanteling" -#: src/slic3r/GUI/Tab.cpp:2064 +#: src/slic3r/GUI/Tab.cpp:2096 msgid "Tilt time" msgstr "Kanteltijd" -#: src/slic3r/GUI/Tab.cpp:2070 src/slic3r/GUI/Tab.cpp:3477 +#: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:3509 msgid "Corrections" msgstr "Correcties" -#: src/slic3r/GUI/Tab.cpp:2085 src/slic3r/GUI/Tab.cpp:3473 +#: src/slic3r/GUI/Tab.cpp:2119 src/slic3r/GUI/Tab.cpp:3505 msgid "Exposure" msgstr "Belichtingstijd" -#: src/slic3r/GUI/Tab.cpp:2156 src/slic3r/GUI/Tab.cpp:2241 -#: src/libslic3r/PrintConfig.cpp:1119 src/libslic3r/PrintConfig.cpp:1137 -#: src/libslic3r/PrintConfig.cpp:1155 src/libslic3r/PrintConfig.cpp:1172 -#: src/libslic3r/PrintConfig.cpp:1183 src/libslic3r/PrintConfig.cpp:1194 -#: src/libslic3r/PrintConfig.cpp:1205 +#: src/slic3r/GUI/Tab.cpp:2190 src/slic3r/GUI/Tab.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "Machinelimieten" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Normal mode" msgstr "Waarden in deze kolom zijn voor de normale modus" -#: src/slic3r/GUI/Tab.cpp:2171 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Normal" msgstr "Normaal" -#: src/slic3r/GUI/Tab.cpp:2176 +#: src/slic3r/GUI/Tab.cpp:2210 msgid "Values in this column are for Stealth mode" msgstr "Waarden in deze kolom zijn voor de stille modus" -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2211 msgid "Stealth" msgstr "Stille modus" -#: src/slic3r/GUI/Tab.cpp:2185 +#: src/slic3r/GUI/Tab.cpp:2219 msgid "Maximum feedrates" msgstr "Maximale voedingssnelheden" -#: src/slic3r/GUI/Tab.cpp:2190 +#: src/slic3r/GUI/Tab.cpp:2224 msgid "Maximum accelerations" msgstr "Maximale acceleraties" -#: src/slic3r/GUI/Tab.cpp:2197 +#: src/slic3r/GUI/Tab.cpp:2231 msgid "Jerk limits" msgstr "Ruklimieten" -#: src/slic3r/GUI/Tab.cpp:2202 +#: src/slic3r/GUI/Tab.cpp:2236 msgid "Minimum feedrates" msgstr "Minimale voedingssnelheden" -#: src/slic3r/GUI/Tab.cpp:2266 src/slic3r/GUI/Tab.cpp:2274 +#: src/slic3r/GUI/Tab.cpp:2300 src/slic3r/GUI/Tab.cpp:2308 msgid "Single extruder MM setup" msgstr "Multi-materialsetup met één extruder" -#: src/slic3r/GUI/Tab.cpp:2275 +#: src/slic3r/GUI/Tab.cpp:2309 msgid "Single extruder multimaterial parameters" msgstr "Parameter voor multi-material met één extruder" -#: src/slic3r/GUI/Tab.cpp:2306 +#: src/slic3r/GUI/Tab.cpp:2340 msgid "" "This is a single extruder multimaterial printer, diameters of all extruders " "will be set to the new value. Do you want to proceed?" @@ -5041,19 +5707,19 @@ msgstr "" "extruders worden ingesteld op de nieuwe waarde. Weet u zeker dat u wilt " "doorgaan?" -#: src/slic3r/GUI/Tab.cpp:2330 +#: src/slic3r/GUI/Tab.cpp:2364 msgid "Layer height limits" msgstr "Laagdiktelimieten" -#: src/slic3r/GUI/Tab.cpp:2335 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Position (for multi-extruder printers)" msgstr "Positie (voor multi-extruderprinters)" -#: src/slic3r/GUI/Tab.cpp:2341 +#: src/slic3r/GUI/Tab.cpp:2375 msgid "Only lift Z" msgstr "Beweeg alleen Z omhoog" -#: src/slic3r/GUI/Tab.cpp:2354 +#: src/slic3r/GUI/Tab.cpp:2388 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " "setups)" @@ -5061,11 +5727,11 @@ msgstr "" "Retractie als de tool uit staat (geavanceerde instelling voor multi-" "extrudersetups)" -#: src/slic3r/GUI/Tab.cpp:2362 +#: src/slic3r/GUI/Tab.cpp:2396 msgid "Reset to Filament Color" msgstr "Reset naar filamentkleur" -#: src/slic3r/GUI/Tab.cpp:2543 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "" "The Wipe option is not available when using the Firmware Retraction mode.\n" "\n" @@ -5075,89 +5741,89 @@ msgstr "" "\n" "Moet deze uitgezet worden om firmwareretractie te gebruiken?" -#: src/slic3r/GUI/Tab.cpp:2545 +#: src/slic3r/GUI/Tab.cpp:2579 msgid "Firmware Retraction" msgstr "Firmwareretractie" -#: src/slic3r/GUI/Tab.cpp:2875 +#: src/slic3r/GUI/Tab.cpp:2909 #, c-format msgid "Default preset (%s)" msgstr "Standaard preset (%s)" -#: src/slic3r/GUI/Tab.cpp:2876 +#: src/slic3r/GUI/Tab.cpp:2910 #, c-format msgid "Preset (%s)" msgstr "Preset (%s)" -#: src/slic3r/GUI/Tab.cpp:2893 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "has the following unsaved changes:" msgstr "heeft de volgende niet-opgeslagen wijzigingen:" -#: src/slic3r/GUI/Tab.cpp:2896 +#: src/slic3r/GUI/Tab.cpp:2930 msgid "is not compatible with printer" msgstr "is niet compatibel met printer" -#: src/slic3r/GUI/Tab.cpp:2897 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "is not compatible with print profile" msgstr "is niet compatibel met printprofiel" -#: src/slic3r/GUI/Tab.cpp:2899 +#: src/slic3r/GUI/Tab.cpp:2933 msgid "and it has the following unsaved changes:" msgstr "en het heeft de volgende niet-opgeslagen wijzigingen:" -#: src/slic3r/GUI/Tab.cpp:2903 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "Unsaved Changes" msgstr "Niet-opgeslagen wijzigingen" -#: src/slic3r/GUI/Tab.cpp:3001 +#: src/slic3r/GUI/Tab.cpp:3035 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - Kopie" -#: src/slic3r/GUI/Tab.cpp:3024 +#: src/slic3r/GUI/Tab.cpp:3058 msgid "The supplied name is empty. It can't be saved." msgstr "De ingevoerde naam is leeg. Kan niet opgeslagen worden." -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3063 msgid "Cannot overwrite a system profile." msgstr "Een systeemprofiel kan niet overschreven worden." -#: src/slic3r/GUI/Tab.cpp:3033 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Cannot overwrite an external profile." msgstr "Een extern profiel kan niet overschreven worden." -#: src/slic3r/GUI/Tab.cpp:3038 -msgid "Preset with name \"%1%\" already exist." -msgstr "Preset met de naam '%s% bestaat al." +#: src/slic3r/GUI/Tab.cpp:3072 +msgid "Preset with name \"%1%\" already exists." +msgstr "Preset met de naam '%1%' bestaat al." -#: src/slic3r/GUI/Tab.cpp:3039 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Replace?" msgstr "Vervangen?" -#: src/slic3r/GUI/Tab.cpp:3077 +#: src/slic3r/GUI/Tab.cpp:3111 msgid "remove" msgstr "verwijderen" -#: src/slic3r/GUI/Tab.cpp:3077 +#: src/slic3r/GUI/Tab.cpp:3111 msgid "delete" msgstr "verwijderen" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3079 +#: src/slic3r/GUI/Tab.cpp:3113 msgid "Are you sure you want to %1% the selected preset?" msgstr "Weet u zeker dat u de geselecteerde preset %1% wilt?" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3082 +#: src/slic3r/GUI/Tab.cpp:3116 msgid "%1% Preset" msgstr "Preset %1%" -#: src/slic3r/GUI/Tab.cpp:3208 +#: src/slic3r/GUI/Tab.cpp:3242 msgid "LOCKED LOCK" msgstr "Vergrendeld" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3210 +#: src/slic3r/GUI/Tab.cpp:3244 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" @@ -5165,12 +5831,12 @@ msgstr "" "geeft aan dat de instellingen gelijk zijn aan de systeemwaarden voor de " "huidige optiegroep" -#: src/slic3r/GUI/Tab.cpp:3212 +#: src/slic3r/GUI/Tab.cpp:3246 msgid "UNLOCKED LOCK" msgstr "Ontgrendeld" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3214 +#: src/slic3r/GUI/Tab.cpp:3248 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -5182,12 +5848,12 @@ msgstr "" "Klik op het ontgrendeld-pictogram om de instelling te resetten naar de " "systeemwaarden voor de huidige optiegroep." -#: src/slic3r/GUI/Tab.cpp:3219 +#: src/slic3r/GUI/Tab.cpp:3253 msgid "WHITE BULLET" msgstr "Wit bolletje" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3221 +#: src/slic3r/GUI/Tab.cpp:3255 msgid "" "for the left button: \tindicates a non-system (or non-default) preset,\n" "for the right button: \tindicates that the settings hasn't been modified." @@ -5195,12 +5861,12 @@ msgstr "" "linker knop: \tgeeft een niet-systeempreset aan,\n" "rechter knop: \tgeeft aan dat de instelling niet veranderd is." -#: src/slic3r/GUI/Tab.cpp:3224 +#: src/slic3r/GUI/Tab.cpp:3258 msgid "BACK ARROW" msgstr "Pijltje terug" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3226 +#: src/slic3r/GUI/Tab.cpp:3260 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -5212,7 +5878,7 @@ msgstr "" "Klik op het pijltje-terug-pictogram om alle instellingen te resetten naar de " "laatst opgeslagen preset voor de huidige optiegroep." -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3270 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" @@ -5220,7 +5886,7 @@ msgstr "" "Vergrendeld-pictogram geeft aan dat de instellingen gelijk zijn aan de " "systeemwaarde van de huidige optiegroep" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -5232,11 +5898,11 @@ msgstr "" "Klik om alle instellingen voor de huidige optiegroep te resetten naar " "systeemwaarden." -#: src/slic3r/GUI/Tab.cpp:3241 +#: src/slic3r/GUI/Tab.cpp:3275 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "Het witte bolletje geeft aan dat het geen systeempreset betreft." -#: src/slic3r/GUI/Tab.cpp:3244 +#: src/slic3r/GUI/Tab.cpp:3278 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." @@ -5244,7 +5910,7 @@ msgstr "" "Het witte bolletje geeft aan dat de instelling gelijk is aan de laatst " "opgeslagen preset voor de huidige optiegroep." -#: src/slic3r/GUI/Tab.cpp:3246 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -5257,14 +5923,14 @@ msgstr "" "Klik om alle instellingen terug te zetten voor de huidige optiegroep naar de " "laatst opgeslagen preset." -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3286 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" "Vergrendeld-pictogram geeft aan dat de waarde gelijk is aan de systeemwaarde." -#: src/slic3r/GUI/Tab.cpp:3253 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" @@ -5274,7 +5940,7 @@ msgstr "" "aan de systeemwaarde.\n" "Klik om de huidige waarde te resetten naar de systeemwaarde." -#: src/slic3r/GUI/Tab.cpp:3259 +#: src/slic3r/GUI/Tab.cpp:3293 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." @@ -5282,7 +5948,7 @@ msgstr "" "Het witte bolletje geeft aan dat de waarde gelijk is aan de laatst " "opgeslagen preset." -#: src/slic3r/GUI/Tab.cpp:3260 +#: src/slic3r/GUI/Tab.cpp:3294 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -5293,61 +5959,56 @@ msgstr "" "Klik om de waarde te resetten naar de laatst opgeslagen preset." #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3373 +#: src/slic3r/GUI/Tab.cpp:3407 #, c-format msgid "Save %s as:" msgstr "%s opslaan als:" -#: src/slic3r/GUI/Tab.cpp:3417 +#: src/slic3r/GUI/Tab.cpp:3451 msgid "the following suffix is not allowed:" msgstr "het volgende achtervoegsel is niet toegestaan:" -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3455 msgid "The supplied name is not available." msgstr "De ingevoerde naam is niet beschikbaar." -#: src/slic3r/GUI/Tab.cpp:3434 src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/Tab.cpp:3468 src/slic3r/GUI/Tab.cpp:3470 msgid "Material" msgstr "Materiaal" -#: src/slic3r/GUI/Tab.cpp:3470 src/slic3r/GUI/Tab.cpp:3560 -#: src/slic3r/GUI/wxExtensions.cpp:601 -msgid "Layers" -msgstr "Lagen" - -#: src/slic3r/GUI/Tab.cpp:3568 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support head" msgstr "Supportkop" -#: src/slic3r/GUI/Tab.cpp:3573 +#: src/slic3r/GUI/Tab.cpp:3603 msgid "Support pillar" msgstr "Supportpijler" -#: src/slic3r/GUI/Tab.cpp:3587 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Connection of the support sticks and junctions" msgstr "Verbindingen van de supporttakken en kruisingen" -#: src/slic3r/GUI/Tab.cpp:3592 +#: src/slic3r/GUI/Tab.cpp:3622 msgid "Automatic generation" msgstr "Automatisch genereren" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:427 +#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 msgid "Print Settings" msgstr "Printinstellingen" -#: src/slic3r/GUI/Tab.hpp:352 +#: src/slic3r/GUI/Tab.hpp:354 msgid "Filament Settings" msgstr "Filamentinstellingen" -#: src/slic3r/GUI/Tab.hpp:388 +#: src/slic3r/GUI/Tab.hpp:390 msgid "Printer Settings" msgstr "Printerinstellingen" -#: src/slic3r/GUI/Tab.hpp:412 +#: src/slic3r/GUI/Tab.hpp:415 msgid "Material Settings" msgstr "Materiaalinstellingen" -#: src/slic3r/GUI/Tab.hpp:439 +#: src/slic3r/GUI/Tab.hpp:442 msgid "Save preset" msgstr "Preset opslaan" @@ -5373,6 +6034,7 @@ msgid "Changelog && Download" msgstr "Wijzigingslogboek && Download" #: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "Open wijzigingslogboekpagina" @@ -5384,7 +6046,7 @@ msgstr "Open downloadpagina" msgid "Don't notify about new releases any more" msgstr "Geef geen meldingen over nieuwe versies meer" -#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:205 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "Configuratie-update" @@ -5408,21 +6070,48 @@ msgstr "" "\n" "Geüpdatete configuratiebundels:" -#: src/slic3r/GUI/UpdateDialogs.cpp:113 +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "Opmerking:" -#: src/slic3r/GUI/UpdateDialogs.cpp:149 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 #, c-format msgid "%s incompatibility" msgstr "%s incompatibiliteit" -#: src/slic3r/GUI/UpdateDialogs.cpp:150 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Is necessary to install a configuration update. " +msgstr "Het is noodzakelijk een configuratie-update te installeren. " + +#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then " +"be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%s zal nu updates starten, anders is het niet mogelijk dit programma correct " +"te draaien.\n" +"\n" +"Vooraf wordt een volledige configuratiesnapshot gemaakt. Het kan dan altijd " +"hersteld worden, mochten de updates problemen geven met de nieuwe versie.\n" +"\n" +"Geüpdatete configuratiebundels:" + +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 +#, c-format +msgid "Exit %s" +msgstr "%s afsluiten" + +#: src/slic3r/GUI/UpdateDialogs.cpp:211 #, c-format msgid "%s configuration is incompatible" msgstr "%s configuratie is niet compatibel" -#: src/slic3r/GUI/UpdateDialogs.cpp:155 +#: src/slic3r/GUI/UpdateDialogs.cpp:216 #, c-format msgid "" "This version of %s is not compatible with currently installed configuration " @@ -5444,25 +6133,20 @@ msgstr "" "wordt een backup-snapshot gemaakt van de bestaande configuratie voor het " "installeren van bestanden die compatibel zijn met deze %s." -#: src/slic3r/GUI/UpdateDialogs.cpp:164 +#: src/slic3r/GUI/UpdateDialogs.cpp:225 #, c-format msgid "This %s version: %s" msgstr "Deze %s versie: %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:169 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "Incompatibele bundels:" -#: src/slic3r/GUI/UpdateDialogs.cpp:185 -#, c-format -msgid "Exit %s" -msgstr "%s afsluiten" - -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "Herconfigureer" -#: src/slic3r/GUI/UpdateDialogs.cpp:209 +#: src/slic3r/GUI/UpdateDialogs.cpp:270 #, c-format msgid "" "%s now uses an updated configuration structure.\n" @@ -5489,10 +6173,23 @@ msgstr "" "Ga verdere met de %s die volgt om de nieuwe presets in te stellen en om te " "kiezen of automatische presets moeten worden ingeschakeld." -#: src/slic3r/GUI/UpdateDialogs.cpp:225 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Voor meer informatie kunt u naar onze wiki-pagina gaan:" +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "Configuratie-updates" + +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates aviable" +msgstr "Geen updates beschikbaar" + +#: src/slic3r/GUI/UpdateDialogs.cpp:308 +#, c-format +msgid "%s has no configuration updates aviable." +msgstr "%s heeft geen beschikbare configuratie-updates." + #: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "Ramming aanpassen" @@ -5598,251 +6295,54 @@ msgstr "Toon eenvoudige instellingen" msgid "Show advanced settings" msgstr "Toon geavanceerde instellingen" -#: src/slic3r/GUI/wxExtensions.cpp:590 -msgid "Instances" -msgstr "Instanties" - -#: src/slic3r/GUI/wxExtensions.cpp:594 src/slic3r/GUI/wxExtensions.cpp:750 -#, c-format -msgid "Instance %d" -msgstr "Instantie %d" - -#: src/slic3r/GUI/wxExtensions.cpp:628 -msgid "Range" -msgstr "Bereik" - -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "Plaats inserts en ga door" - -#: src/slic3r/GUI/wxExtensions.cpp:3075 -msgid "One layer mode" -msgstr "Een-laags-modus" - -#: src/slic3r/GUI/wxExtensions.cpp:3078 -msgid "Discard all custom changes" -msgstr "Alle aangepaste wijzigingen afwijzen" - -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "Stel extrudervolgorde in voor de hele print" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "Voor het toevoegen van een kleurwissel gebruikt u de linkermuisknop" - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "Voor het toevoegen van een toolwissel gebruikt u de linkermuisknop" - -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "Voor het toevoegen van een andere code gebruikt u de rechtermuisknop" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "" -"For Delete color change use left mouse button click\n" -"For Edit color use right mouse button click" -msgstr "" -"Voor het verwijderen van een kleurwissel gebruikt u de linkermuisknop\n" -"Voor het bewerken gebruikt u de rechtermuisknop" - -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "Kleurverandering verwijderen voor extruder %1%" - -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "Extruderwissel verwijderen naar '%1%'" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "" -"For Delete \"%1%\" code use left mouse button click\n" -"For Edit \"%1%\" code use right mouse button click" -msgstr "" -"Voor het verwijderen van de '%1%'-code gebruikt u de linkermuisknop\n" -"Voor het bewerken van de '%1%'-code gebruikt u de rechtermuisknop" - -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 -msgid "Use another extruder" -msgstr "Gebruik een andere extruder" - -#: src/slic3r/GUI/wxExtensions.cpp:3435 -msgid "Add color change (%1%) for:" -msgstr "Voeg kleurwissel (%1%) toe voor:" - -#: src/slic3r/GUI/wxExtensions.cpp:3441 -msgid "Add color change" -msgstr "Voeg kleurwissel toe" - -#: src/slic3r/GUI/wxExtensions.cpp:3444 -msgid "Add pause print" -msgstr "Voeg printpauze toe" - -#: src/slic3r/GUI/wxExtensions.cpp:3447 -msgid "Add custom G-code" -msgstr "Voeg custom G-code toe" - -#: src/slic3r/GUI/wxExtensions.cpp:3460 -msgid "Edit color" -msgstr "Bewerk kleur" - -#: src/slic3r/GUI/wxExtensions.cpp:3461 -msgid "Edit pause print message" -msgstr "Bewerk printpauze-bericht" - -#: src/slic3r/GUI/wxExtensions.cpp:3462 -msgid "Edit custom G-code" -msgstr "Bewerk custom G-code" - -#: src/slic3r/GUI/wxExtensions.cpp:3465 -msgid "Delete color change" -msgstr "Verwijder kleurwissel" - -#: src/slic3r/GUI/wxExtensions.cpp:3466 -msgid "Delete pause print" -msgstr "Verwijder printpauze" - -#: src/slic3r/GUI/wxExtensions.cpp:3467 -msgid "Delete custom G-code" -msgstr "Verwijder custom G-code" - -#: src/slic3r/GUI/wxExtensions.cpp:3499 -msgid "Enter custom G-code used on current layer" -msgstr "Voer custom G-code in voor de huidige laag" - -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "Custom G-code op de huidige laag (%1% mm)." - -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "" -"Voer kort bericht in dat op het printerscherm wordt getoond tijdens de " -"printpauze" - -#: src/slic3r/GUI/wxExtensions.cpp:3514 -msgid "Message for pause print on current layer (%1% mm)." -msgstr "Kort bericht voor printpauze bij huidige laag (%1% mm)." - -#: src/slic3r/GUI/wxExtensions.cpp:3774 +#: src/slic3r/GUI/wxExtensions.cpp:703 #, c-format msgid "Switch to the %s mode" msgstr "Schakel over naar de %s modus" -#: src/slic3r/GUI/wxExtensions.cpp:3775 +#: src/slic3r/GUI/wxExtensions.cpp:704 #, c-format msgid "Current mode is %s" msgstr "Huidige modus is: %s" -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:23 -msgid "Set extruder sequence" -msgstr "Stel extrudervolgorde in" - -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:39 -msgid "Set extruder change for every" -msgstr "Stel toolwissel in voor elke" - -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:341 src/libslic3r/PrintConfig.cpp:983 -#: src/libslic3r/PrintConfig.cpp:1500 src/libslic3r/PrintConfig.cpp:1685 -#: src/libslic3r/PrintConfig.cpp:1746 src/libslic3r/PrintConfig.cpp:1919 -#: src/libslic3r/PrintConfig.cpp:1965 -msgid "layers" -msgstr "lagen" - -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 -msgid "Set extruder(tool) sequence" -msgstr "Stel toolvolgorde in" - -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 -msgid "Remove extruder from sequence" -msgstr "Verwijder extruder uit de reeks" - -#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 -msgid "Add extruder to sequence" -msgstr "Voeg extruder toe aan de reeks" - -#: src/slic3r/Utils/Duet.cpp:51 -msgid "Connection to Duet works correctly." -msgstr "Verbinding met Duet werkt naar behoren." - -#: src/slic3r/Utils/Duet.cpp:56 -msgid "Could not connect to Duet" -msgstr "Kan niet verbinden met Duet" - -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 -#: src/slic3r/Utils/FlashAir.cpp:115 src/slic3r/Utils/FlashAir.cpp:132 -msgid "Unknown error occured" -msgstr "Onbekende fout opgetreden" - -#: src/slic3r/Utils/Duet.cpp:148 -msgid "Wrong password" -msgstr "Verkeerd wachtwoord" - -#: src/slic3r/Utils/Duet.cpp:151 -msgid "Could not get resources to create a new connection" -msgstr "Kan geen middelen krijgen om nieuwe verbinding te maken" - -#: src/slic3r/Utils/OctoPrint.cpp:70 +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 #, c-format msgid "Mismatched type of print host: %s" msgstr "Onjuist type printhost: %s" -#: src/slic3r/Utils/OctoPrint.cpp:85 -msgid "Connection to OctoPrint works correctly." -msgstr "Verbinding met OctoPrint werkt naar behoren." +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "Verbinding met AstroBox werkt naar behoren." -#: src/slic3r/Utils/OctoPrint.cpp:91 -msgid "Could not connect to OctoPrint" -msgstr "Kan niet verbinden met OctoPrint" +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "Kan niet verbinden met AstroBox" -#: src/slic3r/Utils/OctoPrint.cpp:91 -msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "Let op: de minimaal vereiste versie van OctoPrint is 1.1.0." +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "Let op: AstroBox-versie 1.1.0 is tenminste vereist." -#: src/slic3r/Utils/OctoPrint.cpp:196 -msgid "Connection to Prusa SL1 works correctly." -msgstr "Verbinding met Prusa SL1 werkt naar behoren." +#: src/slic3r/Utils/Duet.cpp:49 +msgid "Connection to Duet works correctly." +msgstr "Verbinding met Duet werkt naar behoren." -#: src/slic3r/Utils/OctoPrint.cpp:201 -msgid "Could not connect to Prusa SLA" -msgstr "Kan niet verbinden met Prusa SLA" +#: src/slic3r/Utils/Duet.cpp:54 +msgid "Could not connect to Duet" +msgstr "Kan niet verbinden met Duet" -#: src/slic3r/Utils/FlashAir.cpp:60 -msgid "Upload not enabled on FlashAir card." -msgstr "Uploaden naar een FlashAir-kaart niet toegestaan." +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 +msgid "Unknown error occured" +msgstr "Onbekende fout opgetreden" -#: src/slic3r/Utils/FlashAir.cpp:70 -msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "Verbinding met FlashAir werkt naar behoren en uploaden is toegestaan." +#: src/slic3r/Utils/Duet.cpp:131 +msgid "Wrong password" +msgstr "Verkeerd wachtwoord" -#: src/slic3r/Utils/FlashAir.cpp:75 -msgid "Could not connect to FlashAir" -msgstr "Kan niet verbinden met FlashAir" - -#: src/slic3r/Utils/FlashAir.cpp:75 -msgid "" -"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " -"is required." -msgstr "" -"Let op: FlashAir met firmware 2.00.02 (of nieuwer) en een geactiveerde " -"upload zijn vereist." - -#: src/slic3r/Utils/PresetUpdater.cpp:632 -#, c-format -msgid "requires min. %s and max. %s" -msgstr "vereist minimaal %s en maximaal %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:637 -#, c-format -msgid "requires min. %s" -msgstr "vereist minimaal %s" - -#: src/slic3r/Utils/PresetUpdater.cpp:639 -#, c-format -msgid "requires max. %s" -msgstr "vereist maximaal %s" +#: src/slic3r/Utils/Duet.cpp:134 +msgid "Could not get resources to create a new connection" +msgstr "Kan geen middelen krijgen om nieuwe verbinding te maken" #: src/slic3r/Utils/FixModelByWin10.cpp:219 #: src/slic3r/Utils/FixModelByWin10.cpp:359 @@ -5925,7 +6425,62 @@ msgstr "Model repareren met de NetFabb-service" msgid "Model repair failed:" msgstr "Model repareren mislukt:" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/slic3r/Utils/FlashAir.cpp:58 +msgid "Upload not enabled on FlashAir card." +msgstr "Uploaden naar een FlashAir-kaart niet toegestaan." + +#: src/slic3r/Utils/FlashAir.cpp:68 +msgid "Connection to FlashAir works correctly and upload is enabled." +msgstr "Verbinding met FlashAir werkt naar behoren en uploaden is toegestaan." + +#: src/slic3r/Utils/FlashAir.cpp:73 +msgid "Could not connect to FlashAir" +msgstr "Kan niet verbinden met FlashAir" + +#: src/slic3r/Utils/FlashAir.cpp:73 +msgid "" +"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " +"is required." +msgstr "" +"Let op: FlashAir met firmware 2.00.02 (of nieuwer) en een geactiveerde " +"upload zijn vereist." + +#: src/slic3r/Utils/OctoPrint.cpp:83 +msgid "Connection to OctoPrint works correctly." +msgstr "Verbinding met OctoPrint werkt naar behoren." + +#: src/slic3r/Utils/OctoPrint.cpp:89 +msgid "Could not connect to OctoPrint" +msgstr "Kan niet verbinden met OctoPrint" + +#: src/slic3r/Utils/OctoPrint.cpp:89 +msgid "Note: OctoPrint version at least 1.1.0 is required." +msgstr "Let op: de minimaal vereiste versie van OctoPrint is 1.1.0." + +#: src/slic3r/Utils/OctoPrint.cpp:176 +msgid "Connection to Prusa SL1 works correctly." +msgstr "Verbinding met Prusa SL1 werkt naar behoren." + +#: src/slic3r/Utils/OctoPrint.cpp:181 +msgid "Could not connect to Prusa SLA" +msgstr "Kan niet verbinden met Prusa SLA" + +#: src/slic3r/Utils/PresetUpdater.cpp:705 +#, c-format +msgid "requires min. %s and max. %s" +msgstr "vereist minimaal %s en maximaal %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:710 +#, c-format +msgid "requires min. %s" +msgstr "vereist minimaal %s" + +#: src/slic3r/Utils/PresetUpdater.cpp:713 +#, c-format +msgid "requires max. %s" +msgstr "vereist maximaal %s" + +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "Brimgrootte is te klein voor de huidige configuratie." @@ -6057,15 +6612,15 @@ msgstr "terugschrijven mislukt" msgid "Error with zip archive" msgstr "Fout bij ZIP-archief" -#: src/libslic3r/GCode.cpp:633 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "Lege lagen gedetecteerd. De output is mogelijk niet-printbaar." -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Print Z" -#: src/libslic3r/GCode.cpp:635 +#: src/libslic3r/GCode.cpp:639 msgid "" "This is usually caused by negligibly small extrusions or by a faulty model. " "Try to repair the model or change its orientation on the bed." @@ -6077,7 +6632,14 @@ msgstr "" msgid "Mixed" msgstr "Gemengd" -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Flow.cpp:61 +msgid "" +"Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "" +"Kan de extrusiebreedte niet berekenen voor %1%: Variabele '%2%' niet " +"beschikbaar." + +#: src/libslic3r/Format/3mf.cpp:1630 msgid "" "The selected 3mf file has been saved with a newer version of %1% and is not " "compatible." @@ -6085,7 +6647,7 @@ msgstr "" "Het geselecteerde 3MF-bestand is opgeslagen in een nieuwere versie van %1% " "en is niet compatibel." -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "" "The selected amf file has been saved with a newer version of %1% and is not " "compatible." @@ -6093,39 +6655,39 @@ msgstr "" "Het geselecteerde AMF-bestand is opgeslagen in een nieuwere versie van %1% " "en is niet compatibel." -#: src/libslic3r/Print.cpp:1168 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "Alle objecten bevinden zich buiten het printvolume." -#: src/libslic3r/Print.cpp:1171 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "De ingevoerde instellingen resulteren in een lege print." -#: src/libslic3r/Print.cpp:1198 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "" "Sommige objecten staan te dicht op elkaar. De extruder zal er tegenaan " "botsen." -#: src/libslic3r/Print.cpp:1213 +#: src/libslic3r/Print.cpp:1228 msgid "" "Some objects are too tall and cannot be printed without extruder collisions." msgstr "" "Sommige objecten zijn te groot en kunnen niet geprint worden zonder " "botsingen." -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "De spiraalmodus kan alleen gebruikt worden voor enkeldelige objecten." -#: src/libslic3r/Print.cpp:1230 +#: src/libslic3r/Print.cpp:1244 msgid "" "The Spiral Vase option can only be used when printing single material " "objects." msgstr "" "De spiraalmodus kan alleen gebruikt worden met enkel-materiaal objecten." -#: src/libslic3r/Print.cpp:1243 +#: src/libslic3r/Print.cpp:1257 msgid "" "The wipe tower is only supported if all extruders have the same nozzle " "diameter and use filaments of the same diameter." @@ -6133,7 +6695,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt als alle extruders dezelfde nozzle- " "en filamentdiameter hebben." -#: src/libslic3r/Print.cpp:1248 +#: src/libslic3r/Print.cpp:1262 msgid "" "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter " "and Repetier G-code flavors." @@ -6141,7 +6703,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt in Marlin, RepRap/Sprinter en " "Repetier G-code-soorten." -#: src/libslic3r/Print.cpp:1250 +#: src/libslic3r/Print.cpp:1264 msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." @@ -6149,19 +6711,27 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt met de relatieve extruderinstelling " "('use_relative_e_distances' = 1)." -#: src/libslic3r/Print.cpp:1252 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "" "Druippreventie wordt niet ondersteund als het afveegblok is geactiveerd." -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1268 msgid "" "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "" "Het afveegblok niet ondersteunt bij volumetrische extrusiewaarden " "('use_volumetric_e' = 0)." -#: src/libslic3r/Print.cpp:1275 +#: src/libslic3r/Print.cpp:1270 +msgid "" +"The Wipe Tower is currently not supported for multimaterial sequential " +"prints." +msgstr "" +"Het afveegblok wordt momenteel niet ondersteund voor multi-materiaal " +"achtereenvolgens printen." + +#: src/libslic3r/Print.cpp:1291 msgid "" "The Wipe Tower is only supported for multiple objects if they have equal " "layer heights" @@ -6169,7 +6739,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als deze een " "gelijke laagdikte hebben" -#: src/libslic3r/Print.cpp:1277 +#: src/libslic3r/Print.cpp:1293 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "over an equal number of raft layers" @@ -6177,7 +6747,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als deze op " "een gelijk aantal raftlagen zijn geplaatst" -#: src/libslic3r/Print.cpp:1279 +#: src/libslic3r/Print.cpp:1295 msgid "" "The Wipe Tower is only supported for multiple objects if they are printed " "with the same support_material_contact_distance" @@ -6185,7 +6755,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als de " "instelling 'support_material_contact_distance' gelijk staat" -#: src/libslic3r/Print.cpp:1281 +#: src/libslic3r/Print.cpp:1297 msgid "" "The Wipe Tower is only supported for multiple objects if they are sliced " "equally." @@ -6193,7 +6763,7 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt voor meerdere objecten als ze " "tegelijk gesliced worden." -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1339 msgid "" "The Wipe tower is only supported if all objects have the same variable layer " "height" @@ -6201,22 +6771,22 @@ msgstr "" "Het afveegblok wordt alleen ondersteunt als alle objecten dezelfde variabele " "laagdikte hebben" -#: src/libslic3r/Print.cpp:1349 +#: src/libslic3r/Print.cpp:1365 msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" "Een of meer objecten staan ingesteld op een extruder die de printer niet " "heeft." -#: src/libslic3r/Print.cpp:1358 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm is te weinig om te printen bij een laagdikte van %3% mm" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Te veel %1%=%2% mm om te printen met een nozzlediameter van %3% mm" -#: src/libslic3r/Print.cpp:1372 +#: src/libslic3r/Print.cpp:1388 msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current extruder (support_material_extruder == 0 " @@ -6228,7 +6798,7 @@ msgstr "" "dezelfde diameter hebben ('support_material_extruder' = 0 of " "'support_material_interface_extruder' = 0)." -#: src/libslic3r/Print.cpp:1380 +#: src/libslic3r/Print.cpp:1396 msgid "" "For the Wipe Tower to work with the soluble supports, the support layers " "need to be synchronized with the object layers." @@ -6236,7 +6806,7 @@ msgstr "" "Om het afveegblok te laten samenwerken met oplosbare support, moeten de " "supportlagen gesynchroniseerd worden met de objectlagen." -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1400 msgid "" "The Wipe Tower currently supports the non-soluble supports only if they are " "printed with the current extruder without triggering a tool change. (both " @@ -6247,64 +6817,36 @@ msgstr "" "worden met de huidige extruder zonder toolwissel (Zet zowel " "'support_material_extruder' en 'support_material_interface_extruder' op 0)." -#: src/libslic3r/Print.cpp:1406 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "" "Laagdikte van de eerste laag kan niet groter zijn dan de nozzlediameter" -#: src/libslic3r/Print.cpp:1411 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "Laagdikte kan niet groter zijn dan de nozzlediameter" -#: src/libslic3r/Print.cpp:1566 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "Vullingslagen" -#: src/libslic3r/Print.cpp:1582 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "Skirt genereren" -#: src/libslic3r/Print.cpp:1590 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "Brim genereren" -#: src/libslic3r/Print.cpp:1614 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "G-code exporteren" -#: src/libslic3r/Print.cpp:1618 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "G-code genereren" -#: src/libslic3r/SLAPrint.cpp:66 -msgid "Slicing model" -msgstr "Model slicen" - -#: src/libslic3r/SLAPrint.cpp:67 src/libslic3r/SLAPrint.cpp:905 -msgid "Generating support points" -msgstr "Supportpunten genereren" - -#: src/libslic3r/SLAPrint.cpp:68 -msgid "Generating support tree" -msgstr "Supportboom genereren" - -#: src/libslic3r/SLAPrint.cpp:69 -msgid "Generating pad" -msgstr "Basisplaat genereren" - -#: src/libslic3r/SLAPrint.cpp:70 -msgid "Slicing supports" -msgstr "Support slicen" - -#: src/libslic3r/SLAPrint.cpp:87 -msgid "Merging slices and calculating statistics" -msgstr "Slices samenvoegen en statistieken berekenen" - -#: src/libslic3r/SLAPrint.cpp:88 -msgid "Rasterizing layers" -msgstr "Lagen roosteren" - -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:613 msgid "" "Cannot proceed without support points! Add support points or disable support " "generation." @@ -6312,7 +6854,7 @@ msgstr "" "Kan niet doorgaan zonder supportpunten! Voeg supportpunten toe of schakel " "supportgeneratie uit." -#: src/libslic3r/SLAPrint.cpp:682 +#: src/libslic3r/SLAPrint.cpp:625 msgid "" "Elevation is too low for object. Use the \"Pad around object\" feature to " "print the object without elevation." @@ -6320,7 +6862,7 @@ msgstr "" "Verhoging is te klein voor het object. Gebruik de 'Basisplaat rondom object'-" "optie om het object zonder verhoging te printen." -#: src/libslic3r/SLAPrint.cpp:688 +#: src/libslic3r/SLAPrint.cpp:631 msgid "" "The endings of the support pillars will be deployed on the gap between the " "object and the pad. 'Support base safety distance' has to be greater than " @@ -6330,34 +6872,90 @@ msgstr "" "de basisplaat. De instelling 'Veilige afstand voor supportbasis' moet groter " "zijn dan de 'Basisplaat-objectgat'-parameter hiervoor." -#: src/libslic3r/SLAPrint.cpp:703 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "De belichtingstijd valt buiten de grenzen van het printerprofiel." -#: src/libslic3r/SLAPrint.cpp:710 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "Initiële belichtingstijd valt buiten de printerprofielgrenzen." -#: src/libslic3r/SLAPrint.cpp:794 +#: src/libslic3r/SLAPrint.cpp:760 +msgid "Slicing done" +msgstr "Slicen voltooid" + +#: src/libslic3r/SLAPrintSteps.cpp:43 +msgid "Hollowing model" +msgstr "Model uithollen" + +#: src/libslic3r/SLAPrintSteps.cpp:44 +msgid "Drilling holes into model." +msgstr "Afvoergaten toevoegen." + +#: src/libslic3r/SLAPrintSteps.cpp:45 +msgid "Slicing model" +msgstr "Model slicen" + +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 +msgid "Generating support points" +msgstr "Supportpunten genereren" + +#: src/libslic3r/SLAPrintSteps.cpp:47 +msgid "Generating support tree" +msgstr "Supportboom genereren" + +#: src/libslic3r/SLAPrintSteps.cpp:48 +msgid "Generating pad" +msgstr "Basisplaat genereren" + +#: src/libslic3r/SLAPrintSteps.cpp:49 +msgid "Slicing supports" +msgstr "Support slicen" + +#: src/libslic3r/SLAPrintSteps.cpp:64 +msgid "Merging slices and calculating statistics" +msgstr "Slices samenvoegen en statistieken berekenen" + +#: src/libslic3r/SLAPrintSteps.cpp:65 +msgid "Rasterizing layers" +msgstr "Lagen roosteren" + +#: src/libslic3r/SLAPrintSteps.cpp:190 +msgid "Too much overlapping holes." +msgstr "Te veel overlappende gaten." + +#: src/libslic3r/SLAPrintSteps.cpp:199 +msgid "" +"Drilling holes into the mesh failed. This is usually caused by broken model. " +"Try to fix it first." +msgstr "" +"Afvoergaten toevoegen mislukt. Dit komt meestal door een incorrect model. " +"Probeer die eerst te repareren." + +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "" "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "" "Slicen moest gestopt worden door een interne fout: inconsistente slice-index." -#: src/libslic3r/SLAPrint.cpp:964 src/libslic3r/SLAPrint.cpp:973 -#: src/libslic3r/SLAPrint.cpp:1018 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "Visualiseer support" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "" "Met de huidige configuratie kan voor dit model geen basisplaat gegenereerd " "worden" -#: src/libslic3r/SLAPrint.cpp:1554 -msgid "Slicing done" -msgstr "Slicen voltooid" +#: src/libslic3r/SLAPrintSteps.cpp:621 +msgid "" +"There are unprintable objects. Try to adjust support settings to make the " +"objects printable." +msgstr "" +"Er zijn niet-printbare objecten. Probeer de supportinstellingen te " +"veranderen om het object printbaar te maken." #: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." @@ -6454,11 +7052,23 @@ msgstr "" "OctoPrint verbindingen in CRT/PEM-formaat. Als er niets wordt ingevuld, " "wordt de standaard OS-CA-certificaatopslaglocatie gebruikt." -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:118 +msgid "Elephant foot compensation" +msgstr "Squishcompensatie" + +#: src/libslic3r/PrintConfig.cpp:120 +msgid "" +"The first layer will be shrunk in the XY plane by the configured value to " +"compensate for the 1st layer squish aka an Elephant Foot effect." +msgstr "" +"De eerste laag wordt verkleind in horizontale richting met de ingestelde " +"waarde ter compensatie van het platdrukken." + +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "Vermijd kruisende perimeters" -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "" "Optimize travel moves in order to minimize the crossing of perimeters. This " "is mostly useful with Bowden extruders which suffer from oozing. This " @@ -6468,11 +7078,11 @@ msgstr "" "handig bij Bowden-extruders die gevoelig zijn voor druipen. Deze aanpassing " "vertraagd zowel de print als de G-code-generatie." -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2053 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Overige lagen" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "" "Bed temperature for layers after the first one. Set this to zero to disable " "bed temperature control commands in the output." @@ -6480,11 +7090,11 @@ msgstr "" "Bedtemperatuur voor lagen na de eerste laag. Als dit ingesteld is op 0, " "worden bedverwarmingscommando's uitgezet." -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "Bedtemperatuur" -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "" "This custom code is inserted at every layer change, right before the Z move. " "Note that you can use placeholder variables for all Slic3r settings as well " @@ -6494,11 +7104,11 @@ msgstr "" "beweging. U kunt hier variabelen gebruiken voor alle instellingen zoals " "'layer_num' en 'layer_z'." -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "G-code die komt tussen objecten" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "" "This code is inserted between objects when using sequential printing. By " "default extruder and bed temperature are reset using non-wait command; " @@ -6513,19 +7123,31 @@ msgstr "" "gedetecteerd zal PrusaSlicer deze commando's niet meenemen. Merk op dat " "variabelen voor alle instellingen gebruikt kunnen worden." -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." -msgstr "Aantal te genereren dichte lagen voor bodemvlakken." +msgstr "Aantal te genereren dichte lagen voor ondervlakken." -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "Dichte bodemlagen" -#: src/libslic3r/PrintConfig.cpp:172 +#: src/libslic3r/PrintConfig.cpp:185 +msgid "" +"The number of bottom solid layers is increased above bottom_solid_layers if " +"necessary to satisfy minimum thickness of bottom shell." +msgstr "" +"Het aantal dichte bodemlagen wordt verhoogd als blijkt dat het nodig is om " +"de minimale bodemshelldikte te garanderen." + +#: src/libslic3r/PrintConfig.cpp:187 +msgid "Minimum bottom shell thickness" +msgstr "Minimale shelldikte aan de onderzijde" + +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "Brug" -#: src/libslic3r/PrintConfig.cpp:173 +#: src/libslic3r/PrintConfig.cpp:194 msgid "" "This is the acceleration your printer will use for bridges. Set zero to " "disable acceleration control for bridges." @@ -6533,18 +7155,18 @@ msgstr "" "Deze acceleratie zal uw printer gebruiken voor bruggen. Als dit ingesteld is " "op 0, wordt de acceleratie-instelling voor bruggen uitgezet." -#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:318 -#: src/libslic3r/PrintConfig.cpp:851 src/libslic3r/PrintConfig.cpp:973 -#: src/libslic3r/PrintConfig.cpp:1143 src/libslic3r/PrintConfig.cpp:1196 -#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1398 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:181 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "Brughoek" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:204 msgid "" "Bridging angle override. If left to zero, the bridging angle will be " "calculated automatically. Otherwise the provided angle will be used for all " @@ -6554,34 +7176,34 @@ msgstr "" "automatisch berekend, anders wordt de opgegeven hoek voor alle bruggen " "gebruikt. 180° staat gelijk aan 0°." -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:769 -#: src/libslic3r/PrintConfig.cpp:1635 src/libslic3r/PrintConfig.cpp:1645 -#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:2038 -#: src/libslic3r/PrintConfig.cpp:2224 src/libslic3r/PrintConfig.cpp:2695 -#: src/libslic3r/PrintConfig.cpp:2816 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "Ventilatorsnelheid voor bruggen" -#: src/libslic3r/PrintConfig.cpp:193 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Deze ventilatorsnelheid wordt aangehouden bij bruggen en overhanging." -#: src/libslic3r/PrintConfig.cpp:194 src/libslic3r/PrintConfig.cpp:781 -#: src/libslic3r/PrintConfig.cpp:1216 src/libslic3r/PrintConfig.cpp:1279 -#: src/libslic3r/PrintConfig.cpp:1527 src/libslic3r/PrintConfig.cpp:2402 -#: src/libslic3r/PrintConfig.cpp:2735 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 +#: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/libslic3r/PrintConfig.cpp:201 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "Brugextrusieverhouding" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:224 msgid "" "This factor affects the amount of plastic for bridging. You can decrease it " "slightly to pull the extrudates and prevent sagging, although default " @@ -6593,32 +7215,32 @@ msgstr "" "voorkomen. Hoewel de systeemwaarden goed zijn, kan geëxperimenteerd worden " "met de koeling voor dit aangepast wordt." -#: src/libslic3r/PrintConfig.cpp:213 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "Bruggen" -#: src/libslic3r/PrintConfig.cpp:215 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "Printsnelheid voor bruggen." -#: src/libslic3r/PrintConfig.cpp:216 src/libslic3r/PrintConfig.cpp:599 -#: src/libslic3r/PrintConfig.cpp:607 src/libslic3r/PrintConfig.cpp:616 -#: src/libslic3r/PrintConfig.cpp:624 src/libslic3r/PrintConfig.cpp:651 -#: src/libslic3r/PrintConfig.cpp:670 src/libslic3r/PrintConfig.cpp:911 -#: src/libslic3r/PrintConfig.cpp:1039 src/libslic3r/PrintConfig.cpp:1125 -#: src/libslic3r/PrintConfig.cpp:1161 src/libslic3r/PrintConfig.cpp:1174 -#: src/libslic3r/PrintConfig.cpp:1185 src/libslic3r/PrintConfig.cpp:1238 -#: src/libslic3r/PrintConfig.cpp:1297 src/libslic3r/PrintConfig.cpp:1428 -#: src/libslic3r/PrintConfig.cpp:1602 src/libslic3r/PrintConfig.cpp:1611 -#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 +#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 +#: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 +#: src/libslic3r/PrintConfig.cpp:1050 src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1181 +#: src/libslic3r/PrintConfig.cpp:1191 src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1300 src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/PrintConfig.cpp:2154 msgid "mm/s" msgstr "mm/s" -#: src/libslic3r/PrintConfig.cpp:223 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "Breedte van de brim" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:245 msgid "" "Horizontal width of the brim that will be printed around each object on the " "first layer." @@ -6626,11 +7248,11 @@ msgstr "" "Horizontale breedte van de brim die rond elk object op de eerste laag wordt " "geprint." -#: src/libslic3r/PrintConfig.cpp:231 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "Meerdelige objecten samenvoegen" -#: src/libslic3r/PrintConfig.cpp:232 +#: src/libslic3r/PrintConfig.cpp:253 msgid "" "When printing multi-material objects, this settings will make Slic3r to clip " "the overlapping object parts one by the other (2nd part will be clipped by " @@ -6640,19 +7262,19 @@ msgstr "" "dat PrusaSlicer de overlappende delen met de vorige in de reeks combineert " "(2e deel wordt gecombineerd met het 1e, 3e deel met het 1e en 2e, etc)." -#: src/libslic3r/PrintConfig.cpp:239 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "Kleurenprinthoogte" -#: src/libslic3r/PrintConfig.cpp:240 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "Hoogte waarbij de filamentwissel plaatsvindt." -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "Voorwaarden compatibele printers" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:272 msgid "" "A boolean expression using the configuration values of an active printer " "profile. If this expression evaluates to true, this profile is considered " @@ -6662,11 +7284,11 @@ msgstr "" "een actief printerprofiel. Als deze aanduiding op waar staat, wordt dit " "profiel beschouwd als compatibel met het actieve printerprofiel." -#: src/libslic3r/PrintConfig.cpp:265 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "Voorwaarden compatibele printprofielen" -#: src/libslic3r/PrintConfig.cpp:266 +#: src/libslic3r/PrintConfig.cpp:287 msgid "" "A boolean expression using the configuration values of an active print " "profile. If this expression evaluates to true, this profile is considered " @@ -6676,11 +7298,11 @@ msgstr "" "een actief printprofiel. Als deze aanduiding op waar staat, wordt dit " "profiel beschouwd als compatibel met het actieve printprofiel." -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "Voltooi individuele objecten" -#: src/libslic3r/PrintConfig.cpp:284 +#: src/libslic3r/PrintConfig.cpp:305 msgid "" "When printing multiple objects or copies, this feature will complete each " "object before moving onto next one (and starting it from its bottom layer). " @@ -6692,11 +7314,11 @@ msgstr "" "PrusaSlicer voorkomt botsingen van de extruder tegen eerder geprinte " "objecten en zal u daar ook voor waarschuwen, maar blijf wel alert." -#: src/libslic3r/PrintConfig.cpp:292 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "Automatisch koelen toestaan" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:314 msgid "" "This flag enables the automatic cooling logic that adjusts print speed and " "fan speed according to layer printing time." @@ -6704,24 +7326,24 @@ msgstr "" "Dit vinkje zorgt dat automatisch gekoeld wordt; de print- en " "ventilatorsnelheid worden aangepast op basis van de laagprinttijd." -#: src/libslic3r/PrintConfig.cpp:298 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "Koelbuispositie" -#: src/libslic3r/PrintConfig.cpp:299 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Afstand vanaf de nozzle tot het middelpunt van de koelbuis." -#: src/libslic3r/PrintConfig.cpp:306 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "Koelbuislengte" -#: src/libslic3r/PrintConfig.cpp:307 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "" "Lengte van de koelbuis om de ruimte voor koelbewegingen daarin te beperken." -#: src/libslic3r/PrintConfig.cpp:315 +#: src/libslic3r/PrintConfig.cpp:336 msgid "" "This is the acceleration your printer will be reset to after the role-" "specific acceleration values are used (perimeter/infill). Set zero to " @@ -6731,11 +7353,11 @@ msgstr "" "acceleratiewaarde (perimeters/vulling). Als dit ingesteld is op 0, worden " "geen acceleratiewaarden opnieuw ingesteld." -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "Standaard filamentprofiel" -#: src/libslic3r/PrintConfig.cpp:325 +#: src/libslic3r/PrintConfig.cpp:346 msgid "" "Default filament profile associated with the current printer profile. On " "selection of the current printer profile, this filament profile will be " @@ -6745,12 +7367,12 @@ msgstr "" "Bij selectie van het huidige printerprofiel wordt dit filamentprofiel " "geactiveerd." -#: src/libslic3r/PrintConfig.cpp:331 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "Standaard printprofiel" -#: src/libslic3r/PrintConfig.cpp:332 src/libslic3r/PrintConfig.cpp:2560 -#: src/libslic3r/PrintConfig.cpp:2571 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "" "Default print profile associated with the current printer profile. On " "selection of the current printer profile, this print profile will be " @@ -6759,11 +7381,11 @@ msgstr "" "Standaard printprofiel dat geassocieerd wordt met huidig printerprofiel. Bij " "selectie van het huidige printerprofiel wordt dit printprofiel geactiveerd." -#: src/libslic3r/PrintConfig.cpp:338 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "Zet ventilator uit voor de eerste" -#: src/libslic3r/PrintConfig.cpp:339 +#: src/libslic3r/PrintConfig.cpp:360 msgid "" "You can set this to a positive value to disable fan at all during the first " "layers, so that it does not make adhesion worse." @@ -6771,38 +7393,26 @@ msgstr "" "U kunt dit instellen op een positieve waarde om de ventilator uit te " "schakelen tijdens het printen van de eerste lagen voor een betere adhesie." -#: src/libslic3r/PrintConfig.cpp:348 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "Geen support voor bruggen" -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:371 msgid "" "Experimental option for preventing support material from being generated " "under bridged areas." msgstr "Experimentele optie om support onder brugvlakken te vermijden." -#: src/libslic3r/PrintConfig.cpp:356 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "Ruimte tussen kopieën" -#: src/libslic3r/PrintConfig.cpp:357 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "" "Afstand die gebruikt wordt tussen objecten bij automatisch rangschikken." -#: src/libslic3r/PrintConfig.cpp:364 -msgid "Elephant foot compensation" -msgstr "Squishcompensatie" - -#: src/libslic3r/PrintConfig.cpp:366 -msgid "" -"The first layer will be shrunk in the XY plane by the configured value to " -"compensate for the 1st layer squish aka an Elephant Foot effect." -msgstr "" -"De eerste laag wordt verkleind in horizontale richting met de ingestelde " -"waarde ter compensatie van het platdrukken." - -#: src/libslic3r/PrintConfig.cpp:375 +#: src/libslic3r/PrintConfig.cpp:386 msgid "" "This end procedure is inserted at the end of the output file. Note that you " "can use placeholder variables for all PrusaSlicer settings." @@ -6810,7 +7420,7 @@ msgstr "" "Deze eindprocedure wordt aan het eind van het outputbestand ingevoegd. Merk " "op dat variabelen voor alle instellingen gebruikt kunnen worden." -#: src/libslic3r/PrintConfig.cpp:385 +#: src/libslic3r/PrintConfig.cpp:396 msgid "" "This end procedure is inserted at the end of the output file, before the " "printer end gcode (and before any toolchange from this filament in case of " @@ -6823,11 +7433,11 @@ msgstr "" "alle instellingen gebruikt kunnen worden. Als de printer meerdere extruders " "heeft, wordt deze G-code in de extrudervolgorde uitgevoerd." -#: src/libslic3r/PrintConfig.cpp:396 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" msgstr "Garandeer verticale shelldikte" -#: src/libslic3r/PrintConfig.cpp:398 +#: src/libslic3r/PrintConfig.cpp:409 msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " "thickness (top+bottom solid layers)." @@ -6835,11 +7445,11 @@ msgstr "" "Voeg dichte vulling toe bij hellende vlakken om de verticale shelldikte te " "garanderen." -#: src/libslic3r/PrintConfig.cpp:404 +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "Vulpatroon voor bovenzijde" -#: src/libslic3r/PrintConfig.cpp:406 +#: src/libslic3r/PrintConfig.cpp:417 msgid "" "Fill pattern for top infill. This only affects the top visible layer, and " "not its adjacent solid shells." @@ -6847,32 +7457,32 @@ msgstr "" "Vullingspatroon voor bovenste lagen. Dit heeft alleen invloed op de bovenste " "zichtbare laag en niet de aangrenzende horizontale dichte shells." -#: src/libslic3r/PrintConfig.cpp:414 src/libslic3r/PrintConfig.cpp:832 -#: src/libslic3r/PrintConfig.cpp:1998 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "Rechtlijnig" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:838 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "Concentrisch" -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:842 +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "Hilbert-kromme" -#: src/libslic3r/PrintConfig.cpp:417 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "Archimedes-spiraal" -#: src/libslic3r/PrintConfig.cpp:418 src/libslic3r/PrintConfig.cpp:844 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "Octagramspiraal" -#: src/libslic3r/PrintConfig.cpp:424 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "Vulpatroon voor onderzijde" -#: src/libslic3r/PrintConfig.cpp:426 +#: src/libslic3r/PrintConfig.cpp:437 msgid "" "Fill pattern for bottom infill. This only affects the bottom external " "visible layer, and not its adjacent solid shells." @@ -6880,11 +7490,11 @@ msgstr "" "Vulpatroon voor de bodemlaag. Dit heeft alleen invloed op de onderste " "zichtbare laag en niet de aangrenzende horizontale dichte shells." -#: src/libslic3r/PrintConfig.cpp:435 src/libslic3r/PrintConfig.cpp:446 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" msgstr "Buitenste perimeters" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:448 msgid "" "Set this to a non-zero value to set a manual extrusion width for external " "perimeters. If left zero, default extrusion width will be used if set, " @@ -6896,16 +7506,16 @@ msgstr "" "breedte instellen op 1,125x de nozzlediameter. Als dit is uitgedrukt als " "percentage, wordt dit berekend over de laagdikte." -#: src/libslic3r/PrintConfig.cpp:440 src/libslic3r/PrintConfig.cpp:549 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:884 -#: src/libslic3r/PrintConfig.cpp:1004 src/libslic3r/PrintConfig.cpp:1030 -#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 -#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1940 -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mm of %" -#: src/libslic3r/PrintConfig.cpp:448 +#: src/libslic3r/PrintConfig.cpp:459 msgid "" "This separate setting will affect the speed of external perimeters (the " "visible ones). If expressed as percentage (for example: 80%) it will be " @@ -6916,28 +7526,28 @@ msgstr "" "perimeters. Als dit ingesteld is op 0, wordt een automatische snelheid " "genomen." -#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:893 -#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 -#: src/libslic3r/PrintConfig.cpp:1984 src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s of %" -#: src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" msgstr "Buitenste perimeters eerst" -#: src/libslic3r/PrintConfig.cpp:460 +#: src/libslic3r/PrintConfig.cpp:471 msgid "" "Print contour perimeters from the outermost one to the innermost one instead " "of the default inverse order." msgstr "" "Print de buitenste perimeters eerder dan de binnenste in plaats van andersom." -#: src/libslic3r/PrintConfig.cpp:466 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "Extra perimeters indien nodig" -#: src/libslic3r/PrintConfig.cpp:468 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "" "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r " @@ -6948,7 +7558,7 @@ msgstr "" "hellende wanden. PrusaSlicer blijft perimeters toevoegen tot meer dan 70% " "van de perimeters daarboven direct is ondersteund." -#: src/libslic3r/PrintConfig.cpp:478 +#: src/libslic3r/PrintConfig.cpp:489 msgid "" "The extruder to use (unless more specific extruder settings are specified). " "This value overrides perimeter and infill extruders, but not the support " @@ -6958,7 +7568,7 @@ msgstr "" "extruderinstellingen zijn aangegeven). Deze waarde overschrijft de " "perimeter- en vullingsextruder, maar niet de supportextruders." -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:501 msgid "" "Set this to the vertical distance between your nozzle tip and (usually) the " "X carriage rods. In other words, this is the height of the clearance " @@ -6970,7 +7580,7 @@ msgstr "" "rond de extruder en geeft de maximale diepte weer die de extruder kan halen " "zonder te botsen met eerder geprinte objecten." -#: src/libslic3r/PrintConfig.cpp:501 +#: src/libslic3r/PrintConfig.cpp:512 msgid "" "Set this to the clearance radius around your extruder. If the extruder is " "not centered, choose the largest value for safety. This setting is used to " @@ -6978,24 +7588,24 @@ msgid "" msgstr "" "Stel dit in als vrijloopradius rond de extruder. Kies de hoogste waarde " "(voor de veiligheid) als de extruder niet is gecentreerd. Deze instelling " -"wordt gebruikt om te controleren op botsingen en om te tonen in de " -"modelweergave." +"wordt gebruikt om te controleren op botsingen en om te tonen in de 3D-" +"weergave." -#: src/libslic3r/PrintConfig.cpp:511 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "Extruderkleur" -#: src/libslic3r/PrintConfig.cpp:512 src/libslic3r/PrintConfig.cpp:573 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." msgstr "" "Dit wordt alleen gebruikt in de PrusaSlicer-interface als een visueel " "hulpmiddel." -#: src/libslic3r/PrintConfig.cpp:518 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "Extruder-offset" -#: src/libslic3r/PrintConfig.cpp:519 +#: src/libslic3r/PrintConfig.cpp:530 msgid "" "If your firmware doesn't handle the extruder displacement you need the G-" "code to take it into account. This option lets you specify the displacement " @@ -7008,11 +7618,11 @@ msgstr "" "positieve coördinaten nodig (die worden van de X- en Y-coördinaten " "afgetrokken)." -#: src/libslic3r/PrintConfig.cpp:528 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "Extrusie-as" -#: src/libslic3r/PrintConfig.cpp:529 +#: src/libslic3r/PrintConfig.cpp:540 msgid "" "Use this option to set the axis letter associated to your printer's extruder " "(usually E but some printers use A)." @@ -7020,11 +7630,11 @@ msgstr "" "Gebruik deze optie om de naam van de as van de extruder in te stellen " "(normaal gesproken E, maar soms A)." -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "Extrusie vermenigvuldigingsfactor" -#: src/libslic3r/PrintConfig.cpp:535 +#: src/libslic3r/PrintConfig.cpp:546 msgid "" "This factor changes the amount of flow proportionally. You may need to tweak " "this setting to get nice surface finish and correct single wall widths. " @@ -7036,11 +7646,11 @@ msgstr "" "0.9 en 1.1. Check eventueel de filamentdiameter en de extruderstappen (uit " "de firmware) als u denkt dat dit aangepast moet worden." -#: src/libslic3r/PrintConfig.cpp:543 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "Standaard extrusiebreedte" -#: src/libslic3r/PrintConfig.cpp:545 +#: src/libslic3r/PrintConfig.cpp:556 msgid "" "Set this to a non-zero value to allow a manual extrusion width. If left to " "zero, Slic3r derives extrusion widths from the nozzle diameter (see the " @@ -7053,11 +7663,11 @@ msgstr "" "van de nozzlediameter. Als dit is uitgedrukt als percentage, wordt dit " "berekend over de laagdikte." -#: src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:566 msgid "Keep fan always on" msgstr "Laat ventilator altijd aan" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:567 msgid "" "If this is enabled, fan will never be disabled and will be kept running at " "least at its minimum speed. Useful for PLA, harmful for ABS." @@ -7065,11 +7675,11 @@ msgstr "" "Als dit is ingeschakeld zal de ventilator nooit uitgezet worden, maar " "tenminste de ingestelde minimale snelheid aanhouden." -#: src/libslic3r/PrintConfig.cpp:561 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" msgstr "Schakel de ventilator in bij een printtijd korter dan" -#: src/libslic3r/PrintConfig.cpp:562 +#: src/libslic3r/PrintConfig.cpp:573 msgid "" "If layer print time is estimated below this number of seconds, fan will be " "enabled and its speed will be calculated by interpolating the minimum and " @@ -7079,23 +7689,23 @@ msgstr "" "ventilator aangezet worden en wordt de snelheid berekend door te " "interpoleren tussen de minimale en maximale snelheid." -#: src/libslic3r/PrintConfig.cpp:564 src/libslic3r/PrintConfig.cpp:1703 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "geschat aantal seconden" -#: src/libslic3r/PrintConfig.cpp:578 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "Filamentopmerkingen" -#: src/libslic3r/PrintConfig.cpp:579 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "Hier kunt u opmerkingen over het filament plaatsen." -#: src/libslic3r/PrintConfig.cpp:587 src/libslic3r/PrintConfig.cpp:1244 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "Maximale volumetrische snelheid" -#: src/libslic3r/PrintConfig.cpp:588 +#: src/libslic3r/PrintConfig.cpp:598 msgid "" "Maximum volumetric speed allowed for this filament. Limits the maximum " "volumetric speed of a print to the minimum of print and filament volumetric " @@ -7106,27 +7716,27 @@ msgstr "" "maximale volumetrische snelheid van de print en het filament. Als dit " "ingesteld is op 0, geldt er geen limiet." -#: src/libslic3r/PrintConfig.cpp:597 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "Laadsnelheid" -#: src/libslic3r/PrintConfig.cpp:598 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "Snelheid die gebruikt wordt voor het afveegblok." -#: src/libslic3r/PrintConfig.cpp:605 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "Laadsnelheid aan het begin" -#: src/libslic3r/PrintConfig.cpp:606 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "Snelheid die gebruikt wordt aan het begin van de laadfase." -#: src/libslic3r/PrintConfig.cpp:613 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "Ontlaadsnelheid" -#: src/libslic3r/PrintConfig.cpp:614 +#: src/libslic3r/PrintConfig.cpp:624 msgid "" "Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." @@ -7134,22 +7744,22 @@ msgstr "" "Snelheid die gebruikt wordt voor het ontladen van het afveegblok (heeft geen " "effect op het initiële onderdeel van het ontladen direct na de ramming)." -#: src/libslic3r/PrintConfig.cpp:622 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "Ontlaadsnelheid in het begin" -#: src/libslic3r/PrintConfig.cpp:623 +#: src/libslic3r/PrintConfig.cpp:633 msgid "" "Speed used for unloading the tip of the filament immediately after ramming." msgstr "" "Snelheid die gebruikt wordt voor het ontladen van het filament direct na de " "ramming." -#: src/libslic3r/PrintConfig.cpp:630 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "Vertraging na het ontladen" -#: src/libslic3r/PrintConfig.cpp:631 +#: src/libslic3r/PrintConfig.cpp:641 msgid "" "Time to wait after the filament is unloaded. May help to get reliable " "toolchanges with flexible materials that may need more time to shrink to " @@ -7159,11 +7769,11 @@ msgstr "" "toolwisselingen te krijgen met flexibele materialen die meer tijd nodig " "hebben om te krimpen naar de originele afmetingen." -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "Aantal koelbewegingen" -#: src/libslic3r/PrintConfig.cpp:641 +#: src/libslic3r/PrintConfig.cpp:651 msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " "Specify desired number of these moves." @@ -7171,20 +7781,20 @@ msgstr "" "Het filament wordt gekoeld tijdens het terug en voorwaarts bewegen in de " "koelbuis. Specificeer het benodigd aantal bewegingen." -#: src/libslic3r/PrintConfig.cpp:649 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "Snelheid voor de eerste koelbeweging" -#: src/libslic3r/PrintConfig.cpp:650 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "" "Koelbewegingen worden gelijkmatig versneld, beginnend vanaf deze snelheid." -#: src/libslic3r/PrintConfig.cpp:657 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "Minimale afstand op afveegblok" -#: src/libslic3r/PrintConfig.cpp:658 +#: src/libslic3r/PrintConfig.cpp:668 msgid "" "After a tool change, the exact position of the newly loaded filament inside " "the nozzle may not be known, and the filament pressure is likely not yet " @@ -7198,23 +7808,23 @@ msgstr "" "afvegen aan het afveegblok om vervolgens de vulling of overige objecten goed " "te kunnen printen." -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:668 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "Snelheid voor de laatste koelbeweging" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Koelbewegingen versnellen gelijkmatig tot aan deze snelheid." -#: src/libslic3r/PrintConfig.cpp:676 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "Laadtijd van het filament" -#: src/libslic3r/PrintConfig.cpp:677 +#: src/libslic3r/PrintConfig.cpp:687 msgid "" "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new " "filament during a tool change (when executing the T code). This time is " @@ -7224,11 +7834,11 @@ msgstr "" "tijdens een toolwissel (tijdens het uitvoeren van de T-code). Deze tijd " "wordt toegevoegd aan de totale printtijd in de tijdsschatting." -#: src/libslic3r/PrintConfig.cpp:684 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "Rammingparameters" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:695 msgid "" "This string is edited by RammingDialog and contains ramming specific " "parameters." @@ -7236,11 +7846,11 @@ msgstr "" "Deze frase is bewerkt door het Rammingdialoog en bevat parameters voor de " "ramming." -#: src/libslic3r/PrintConfig.cpp:691 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "Ontlaadtijd voor filament" -#: src/libslic3r/PrintConfig.cpp:692 +#: src/libslic3r/PrintConfig.cpp:702 msgid "" "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a " "filament during a tool change (when executing the T code). This time is " @@ -7250,7 +7860,7 @@ msgstr "" "een toolwissel (tijdens het uitvoeren van de T-code). Deze tijd wordt " "toegevoegd aan de totale printtijd in de tijdsschatting." -#: src/libslic3r/PrintConfig.cpp:700 +#: src/libslic3r/PrintConfig.cpp:710 msgid "" "Enter your filament diameter here. Good precision is required, so use a " "caliper and do multiple measurements along the filament, then compute the " @@ -7260,12 +7870,12 @@ msgstr "" "daarom een schuifmaat en doe meerdere metingen over het hele filament. " "Bereken vervolgens het gemiddelde." -#: src/libslic3r/PrintConfig.cpp:707 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "Dichtheid" -#: src/libslic3r/PrintConfig.cpp:708 +#: src/libslic3r/PrintConfig.cpp:718 msgid "" "Enter your filament density here. This is only for statistical information. " "A decent way is to weigh a known length of filament and compute the ratio of " @@ -7277,27 +7887,27 @@ msgstr "" "volume[cm³]. Formule voor volume: volume[cm³] = 1000 * (diameter[mm])² * π / " "4 * lengte[mm]. Bepaal het gewicht door te wegen en het volume door te meten." -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:716 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "Filamenttype" -#: src/libslic3r/PrintConfig.cpp:717 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "Het filamenttype voor het gebruik van de custom G-codes." -#: src/libslic3r/PrintConfig.cpp:743 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "Oplosbaar materiaal" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." msgstr "Oplosbaar materiaal wordt vaak gebruikt voor oplosbaar support." -#: src/libslic3r/PrintConfig.cpp:750 +#: src/libslic3r/PrintConfig.cpp:761 msgid "" "Enter your filament cost per kg here. This is only for statistical " "information." @@ -7305,19 +7915,19 @@ msgstr "" "Voer hier de filamentkosten per kilogram in. Dit is alleen voor statistische " "informatie." -#: src/libslic3r/PrintConfig.cpp:751 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "€/kg" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(Onbekend)" -#: src/libslic3r/PrintConfig.cpp:764 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "Vullingshoek" -#: src/libslic3r/PrintConfig.cpp:766 +#: src/libslic3r/PrintConfig.cpp:777 msgid "" "Default base angle for infill orientation. Cross-hatching will be applied to " "this. Bridges will be infilled using the best direction Slic3r can detect, " @@ -7327,61 +7937,61 @@ msgstr "" "geprint. Bruggen worden geprint met de optimale richting. Deze instelling " "zal die richting niet beïnvloeden." -#: src/libslic3r/PrintConfig.cpp:778 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "Vullingsdichtheid" -#: src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "" "Dichtheid van inwendige vulling, uitgedrukt in een percentage (0 - 100%)" -#: src/libslic3r/PrintConfig.cpp:815 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "Vullingspatroon" -#: src/libslic3r/PrintConfig.cpp:817 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "Vulpatroon voor algemene lagere-dichtheidsvulling." -#: src/libslic3r/PrintConfig.cpp:833 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "Raster" -#: src/libslic3r/PrintConfig.cpp:834 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "Driehoeken" -#: src/libslic3r/PrintConfig.cpp:835 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "Sterren" -#: src/libslic3r/PrintConfig.cpp:836 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "Kubisch" -#: src/libslic3r/PrintConfig.cpp:837 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "Lijnen" -#: src/libslic3r/PrintConfig.cpp:839 src/libslic3r/PrintConfig.cpp:2000 +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Honingraat" -#: src/libslic3r/PrintConfig.cpp:840 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "3D-honingraat" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "Gyroïde" -#: src/libslic3r/PrintConfig.cpp:848 src/libslic3r/PrintConfig.cpp:857 -#: src/libslic3r/PrintConfig.cpp:865 src/libslic3r/PrintConfig.cpp:899 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "Eerste laag" -#: src/libslic3r/PrintConfig.cpp:849 +#: src/libslic3r/PrintConfig.cpp:860 msgid "" "This is the acceleration your printer will use for first layer. Set zero to " "disable acceleration control for first layer." @@ -7389,7 +7999,7 @@ msgstr "" "Deze acceleratie zal uw printer gebruiken voor de eerste laag. Als dit " "ingesteld is op 0, wordt de standaard acceleratie gebruikt." -#: src/libslic3r/PrintConfig.cpp:858 +#: src/libslic3r/PrintConfig.cpp:869 msgid "" "Heated build plate temperature for the first layer. Set this to zero to " "disable bed temperature control commands in the output." @@ -7397,7 +8007,7 @@ msgstr "" "Temperatuur van het verwarmd bed voor de eerste laag. Als dit ingesteld is " "op 0, worden bedtemperatuur-commando's weggelaten in de output." -#: src/libslic3r/PrintConfig.cpp:867 +#: src/libslic3r/PrintConfig.cpp:878 msgid "" "Set this to a non-zero value to set a manual extrusion width for first " "layer. You can use this to force fatter extrudates for better adhesion. If " @@ -7410,7 +8020,7 @@ msgstr "" "wordt dit berekend over de laagdikte van de eerste laag. Als dit is " "ingesteld op 0, wordt de standaard extrusiebreedte gebruikt." -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:891 msgid "" "When printing with very low layer heights, you might still want to print a " "thicker bottom layer to improve adhesion and tolerance for non perfect build " @@ -7420,13 +8030,13 @@ msgstr "" "Als geprint wordt met hele kleine laagdiktes, moet de eerste laag iets " "dikker geprint worden voor een betere bedhechting en tolerantie voor " "imperfecte printplatformen. Dit kan uitgedrukt worden als een absolute " -"waarde of als percentage (bijvoorbeeld 150%) over de standaard laaghoogte." +"waarde of als percentage (bijvoorbeeld 150%) over de standaard laagdikte." -#: src/libslic3r/PrintConfig.cpp:889 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "Snelheid eerste laag" -#: src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:901 msgid "" "If expressed as absolute value in mm/s, this speed will be applied to all " "the print moves of the first layer, regardless of their type. If expressed " @@ -7437,7 +8047,7 @@ msgstr "" "van het type. Als dit is uitgedrukt als percentage, wordt dit berekend over " "de standaardsnelheid." -#: src/libslic3r/PrintConfig.cpp:900 +#: src/libslic3r/PrintConfig.cpp:911 msgid "" "Extruder temperature for first layer. If you want to control temperature " "manually during print, set this to zero to disable temperature control " @@ -7446,21 +8056,21 @@ msgstr "" "Printtemperatuur voor de eerste laag. Als dit ingesteld is op 0, worden " "extrudertemperatuur-commando's weggelaten in de output." -#: src/libslic3r/PrintConfig.cpp:909 +#: src/libslic3r/PrintConfig.cpp:920 msgid "" "Speed for filling small gaps using short zigzag moves. Keep this reasonably " "low to avoid too much shaking and resonance issues. Set zero to disable gaps " "filling." msgstr "" "Printsnelheid voor het gatvullen waarbij zigzag-bewegingen worden gebruikt. " -"Houdt dit laag om schudden te voorkomen (wat resulteert in " +"Houd dit laag om schudden te voorkomen (wat resulteert in " "resonantieproblemen). Als dit is ingesteld op 0, worden gaten niet gevuld." -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "Opmerkingen in G-code" -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:929 msgid "" "Enable this to get a commented G-code file, with each line explained by a " "descriptive text. If you print from SD card, the additional weight of the " @@ -7470,11 +8080,11 @@ msgstr "" "een opmerking geplaatst. Als u print vanaf een SD-kaart, kan de extra " "grootte van het bestand de firmware vertragen." -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "G-code-variant" -#: src/libslic3r/PrintConfig.cpp:926 +#: src/libslic3r/PrintConfig.cpp:937 msgid "" "Some G/M-code commands, including temperature control and others, are not " "universal. Set this option to your printer's firmware to get a compatible " @@ -7485,15 +8095,15 @@ msgstr "" "compatibele uitvoer te krijgen voor uw printer. De 'Geen extrusie'-" "instelling kan gebruikt worden om te printen zonder materiaal te extruderen." -#: src/libslic3r/PrintConfig.cpp:949 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "Geen extrusie" -#: src/libslic3r/PrintConfig.cpp:954 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "Label objecten" -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:966 msgid "" "Enable this to add comments into the G-Code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " @@ -7505,11 +8115,11 @@ msgstr "" "Deze instelling is NIET compatibel met een multi-materialsetup met één " "extruder en 'Afvegen in object' en 'Afvegen in vulling'." -#: src/libslic3r/PrintConfig.cpp:962 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "Hoge stroomsterkte bij extruder voor filamentwissel" -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:974 msgid "" "It may be beneficial to increase the extruder motor current during the " "filament exchange sequence to allow for rapid ramming feed rates and to " @@ -7520,7 +8130,7 @@ msgstr "" "maken en om weerstand te overwinnen tijdens het laden van filament met een " "misvormde kop." -#: src/libslic3r/PrintConfig.cpp:971 +#: src/libslic3r/PrintConfig.cpp:982 msgid "" "This is the acceleration your printer will use for infill. Set zero to " "disable acceleration control for infill." @@ -7528,11 +8138,11 @@ msgstr "" "Deze acceleratie zal uw printer gebruiken voor de vulling. Als dit is " "ingesteld op 0, wordt de acceleratiecontrole uitgeschakeld." -#: src/libslic3r/PrintConfig.cpp:979 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "Combineer vulling elke" -#: src/libslic3r/PrintConfig.cpp:981 +#: src/libslic3r/PrintConfig.cpp:992 msgid "" "This feature allows to combine infill and speed up your print by extruding " "thicker infill layers while preserving thin perimeters, thus accuracy." @@ -7541,19 +8151,19 @@ msgstr "" "de vullingslagen stapsgewijs dikker te maken, terwijl de laagdikte van " "perimeters behouden wordt." -#: src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "Combineer vulling elke n lagen" -#: src/libslic3r/PrintConfig.cpp:990 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "Vullingsextruder" -#: src/libslic3r/PrintConfig.cpp:992 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "De extruder die gebruikt wordt voor het printen van de vulling." -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "" "Set this to a non-zero value to set a manual extrusion width for infill. If " "left zero, default extrusion width will be used if set, otherwise 1.125 x " @@ -7567,11 +8177,11 @@ msgstr "" "printen en het onderdeel sterker maken met deze optie. Als dit is uitgedrukt " "als percentage, wordt dit berekend over de laagdikte." -#: src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "Vulling vóór perimeters" -#: src/libslic3r/PrintConfig.cpp:1011 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "" "This option will switch the print order of perimeters and infill, making the " "latter first." @@ -7579,11 +8189,11 @@ msgstr "" "Deze optie verandert de printvolgorde van perimeters en vulling; de " "laatstgenoemde eerst." -#: src/libslic3r/PrintConfig.cpp:1016 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "Alleen vulling waar nodig" -#: src/libslic3r/PrintConfig.cpp:1018 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "" "This option will limit infill to the areas actually needed for supporting " "ceilings (it will act as internal support material). If enabled, slows down " @@ -7593,11 +8203,11 @@ msgstr "" "ondersteuning van bovenvlakken (het fungeert als inwendig support). Let op: " "deze optie vertraagt de G-code-generatie." -#: src/libslic3r/PrintConfig.cpp:1025 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "Overlapping van vulling/perimeters" -#: src/libslic3r/PrintConfig.cpp:1027 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "" "This setting applies an additional overlap between infill and perimeters for " "better bonding. Theoretically this shouldn't be needed, but backlash might " @@ -7609,25 +8219,25 @@ msgstr "" "maar terugslag kan zorgen voor gaten. Als dit is uitgedrukt als percentage, " "wordt dit berekend over de extrusiebreedte van de perimeters." -#: src/libslic3r/PrintConfig.cpp:1038 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." msgstr "" "Printsnelheid voor vulling. Als dit ingesteld is op 0, wordt de snelheid " "automatisch berekend." -#: src/libslic3r/PrintConfig.cpp:1046 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "Afgeleid profiel" -#: src/libslic3r/PrintConfig.cpp:1047 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "Profielnaam waar profiel op is gebaseerd." -#: src/libslic3r/PrintConfig.cpp:1060 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "Interfaceshells" -#: src/libslic3r/PrintConfig.cpp:1061 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " @@ -7637,7 +8247,7 @@ msgstr "" "volumes. Dit is handig voor multi-extruderprints met transparante materialen " "of handmatig oplosbaar support." -#: src/libslic3r/PrintConfig.cpp:1070 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "" "This custom code is inserted at every layer change, right after the Z move " "and before the extruder moves to the first layer point. Note that you can " @@ -7648,11 +8258,11 @@ msgstr "" "beweging en voor de extruder naar het volgende punt beweegt. Hier kunt u " "variabelen gebruiken voor alle instellingen zoals 'layer_num' en 'layer_z'." -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "Ondersteunt resterende tijd" -#: src/libslic3r/PrintConfig.cpp:1082 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "" "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute " "intervals into the G-code to let the firmware show accurate remaining time. " @@ -7664,151 +8274,151 @@ msgstr "" "nu herkent de Prusa i3 MK3 de M73-commando's. Ook ondersteunt de i3 MK3 " "firmware M73 Qxx Sxx voor de stille modus." -#: src/libslic3r/PrintConfig.cpp:1090 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "Ondersteunt stille modus" -#: src/libslic3r/PrintConfig.cpp:1091 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "De firmware ondersteunt stille modus" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" msgstr "Maximale voedingssnelheid van de X-as" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" msgstr "Maximale voedingssnelheid van de Y-as" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" msgstr "Maximale voedingssnelheid van de Z-as" -#: src/libslic3r/PrintConfig.cpp:1118 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" msgstr "Maximale extrusievoedingssnelheid" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" msgstr "Maximale voedingssnelheid van de X-as" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" msgstr "Maximale voedingssnelheid van de Y-as" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" msgstr "Maximale voedingssnelheid van de Z-as" -#: src/libslic3r/PrintConfig.cpp:1124 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" msgstr "Maximale extrusievoedingssnelheid" -#: src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "Maximale acceleratie X" -#: src/libslic3r/PrintConfig.cpp:1134 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Maximale acceleratie Y" -#: src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Maximale acceleratie Z" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "Maximale acceleratie E" -#: src/libslic3r/PrintConfig.cpp:1139 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "Maximale acceleratie van de X-as" -#: src/libslic3r/PrintConfig.cpp:1140 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "Maximale acceleratie van de Y-as" -#: src/libslic3r/PrintConfig.cpp:1141 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Maximale acceleratie van de Z-as" -#: src/libslic3r/PrintConfig.cpp:1142 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "Maximale extrusie-acceleratie" -#: src/libslic3r/PrintConfig.cpp:1151 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Maximale ruk X" -#: src/libslic3r/PrintConfig.cpp:1152 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Maximale ruk Y" -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Maximale ruk Z" -#: src/libslic3r/PrintConfig.cpp:1154 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Maximale ruk E" -#: src/libslic3r/PrintConfig.cpp:1157 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "Maximale ruk van de X-as" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Maximale ruk van de Y-as" -#: src/libslic3r/PrintConfig.cpp:1159 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Maximale ruk van de Z-as" -#: src/libslic3r/PrintConfig.cpp:1160 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "Maximale extrusie-ruk" -#: src/libslic3r/PrintConfig.cpp:1171 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" msgstr "Minimale voedingssnelheid tijdens extruderen" -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" msgstr "Minimale voedingssnelheid tijdens extruderen (M205 S)" -#: src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" msgstr "Minimale voedingssnelheid voor bewegingen" -#: src/libslic3r/PrintConfig.cpp:1184 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" msgstr "Minimale voedingssnelheid voor bewegingen (M205 T)" -#: src/libslic3r/PrintConfig.cpp:1193 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" msgstr "Maximale acceleratie tijdens extruderen" -#: src/libslic3r/PrintConfig.cpp:1195 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" msgstr "Maximale acceleratie tijdens extruderen (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "Maximale acceleratie tijdens retracten" -#: src/libslic3r/PrintConfig.cpp:1206 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "Maximale acceleratie tijdens retracten (M204 T)" -#: src/libslic3r/PrintConfig.cpp:1214 src/libslic3r/PrintConfig.cpp:1223 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "Max" -#: src/libslic3r/PrintConfig.cpp:1215 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "Deze instelling gaat over de maximale snelheid van uw ventilator." -#: src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "" "This is the highest printable layer height for this extruder, used to cap " @@ -7822,11 +8432,11 @@ msgstr "" "krijgen. Als dit ingesteld is op 0, wordt de waarde op 75% van de " "nozzlediameter genomen." -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "Maximale printsnelheid" -#: src/libslic3r/PrintConfig.cpp:1235 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "" "When setting other speed settings to 0 Slic3r will autocalculate the optimal " "speed in order to keep constant extruder pressure. This experimental setting " @@ -7837,7 +8447,7 @@ msgstr "" "experimentele instelling wordt gebruikt voor de hoogste printsnelheid die u " "toestaat." -#: src/libslic3r/PrintConfig.cpp:1245 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "" "This experimental setting is used to set the maximum volumetric speed your " "extruder supports." @@ -7845,11 +8455,11 @@ msgstr "" "Deze experimentele instelling wordt gebruikt voor de maximale volumetrische " "snelheid van de extruder." -#: src/libslic3r/PrintConfig.cpp:1254 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "Maximale volumetrische stijging" -#: src/libslic3r/PrintConfig.cpp:1255 src/libslic3r/PrintConfig.cpp:1266 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "" "This experimental setting is used to limit the speed of change in extrusion " "rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate " @@ -7861,25 +8471,25 @@ msgstr "" "s (0,45mm extrusiebreedte, 0,2mm laagdikte, 20mm/s voedingssnelheid) tot " "5.4mm³/s (60mm/s voedingssnelheid). Dit duurt ten minste 2sec." -#: src/libslic3r/PrintConfig.cpp:1259 src/libslic3r/PrintConfig.cpp:1270 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/libslic3r/PrintConfig.cpp:1265 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "Maximale volumetrische daling" -#: src/libslic3r/PrintConfig.cpp:1277 src/libslic3r/PrintConfig.cpp:1286 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Min" -#: src/libslic3r/PrintConfig.cpp:1278 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "" "Deze instelling geeft de minimale snelheid van uw ventilator aan waarbij de " "ventilator draait." -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "" "This is the lowest printable layer height for this extruder and limits the " "resolution for variable layer height. Typical values are between 0.05 mm and " @@ -7889,20 +8499,20 @@ msgstr "" "resolutie voor variabele laagdikte. Typische waarden zijn tussen 0,05 en 0,1 " "mm." -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "Minimale printsnelheid" -#: src/libslic3r/PrintConfig.cpp:1296 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." msgstr "" "PrusaSlicer zal de printsnelheid niet verlagen tot onder deze snelheid." -#: src/libslic3r/PrintConfig.cpp:1303 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "Minimale extrusielengte" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "" "Generate no less than the number of skirt loops required to consume the " "specified amount of filament on the bottom layer. For multi-extruder " @@ -7912,11 +8522,11 @@ msgstr "" "hoeveelheid filament op de eerste laag te verbruiken. Voor multi-" "extruderprinters is dit het minimum voor elke extruder." -#: src/libslic3r/PrintConfig.cpp:1313 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "Configuratie-opmerkingen" -#: src/libslic3r/PrintConfig.cpp:1314 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "" "You can put here your personal notes. This text will be added to the G-code " "header comments." @@ -7924,16 +8534,16 @@ msgstr "" "Hier kunt u eigen opmerkingen plaatsen. Deze tekst wordt bovenin de G-code " "toegevoegd." -#: src/libslic3r/PrintConfig.cpp:1324 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "" "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "Dit is de diameter van uw extruder-nozzle (bijvoorbeeld 0.4)" -#: src/libslic3r/PrintConfig.cpp:1329 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "Hosttype" -#: src/libslic3r/PrintConfig.cpp:1330 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "" "Slic3r can upload G-code files to a printer host. This field must contain " "the kind of the host." @@ -7941,11 +8551,11 @@ msgstr "" "PrusaSlicer kan gcode-bestanden uploaden naar een printerhost. Dit veld moet " "het type host bevatten." -#: src/libslic3r/PrintConfig.cpp:1343 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "Alleen retracten bij kruisende perimeters" -#: src/libslic3r/PrintConfig.cpp:1344 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "" "Disables retraction when the travel path does not exceed the upper layer's " "perimeters (and thus any ooze will be probably invisible)." @@ -7953,7 +8563,7 @@ msgstr "" "Schakelt retracten uit als de bewegingsroute de perimeters van de bovenste " "laag niet overschrijdt (en maakt eventueel druipen dus onzichtbaar)." -#: src/libslic3r/PrintConfig.cpp:1351 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "" "This option will drop the temperature of the inactive extruders to prevent " "oozing. It will enable a tall skirt automatically and move extruders outside " @@ -7963,11 +8573,11 @@ msgstr "" "voorkomen. Het staat een smalle skirt automatisch toe en beweegt extruders " "buiten zo'n skirt als de temperatuur verandert." -#: src/libslic3r/PrintConfig.cpp:1358 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "Formaat van bestandsnaam" -#: src/libslic3r/PrintConfig.cpp:1359 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "" "You can use all configuration options as variables inside this template. For " "example: [layer_height], [fill_density] etc. You can also use [timestamp], " @@ -7979,11 +8589,11 @@ msgstr "" "'year', 'month', 'day', 'hour', 'minute', 'second', 'version', " "'input_filename', 'input_filename_base', etc." -#: src/libslic3r/PrintConfig.cpp:1368 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "Detecteer brugperimeters" -#: src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "" "Experimental option to adjust flow for overhangs (bridge flow will be used), " "to apply bridge speed to them and enable fan." @@ -7991,11 +8601,11 @@ msgstr "" "Experimentele optie om het debiet voor overhanging aan te passen. Het debiet " "voor bruggen wordt aangehouden, evenals de printsnelheid en de koeling." -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "Filament parkeerpositie" -#: src/libslic3r/PrintConfig.cpp:1377 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "" "Distance of the extruder tip from the position where the filament is parked " "when unloaded. This should match the value in printer firmware." @@ -8004,11 +8614,11 @@ msgstr "" "wanneer dat niet geladen is. Deze moet overeenkomen met de waarde in de " "firmware." -#: src/libslic3r/PrintConfig.cpp:1385 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "Extra laadafstand" -#: src/libslic3r/PrintConfig.cpp:1386 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " @@ -8020,12 +8630,12 @@ msgstr "" "teruggetrokken wordt. Als de waarde positief is, zal het verder geladen " "worden. Als het negatief is, is de laadafstand dus korter." -#: src/libslic3r/PrintConfig.cpp:1394 src/libslic3r/PrintConfig.cpp:1412 -#: src/libslic3r/PrintConfig.cpp:1425 src/libslic3r/PrintConfig.cpp:1435 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "Perimeters" -#: src/libslic3r/PrintConfig.cpp:1395 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "" "This is the acceleration your printer will use for perimeters. A high value " "like 9000 usually gives good results if your hardware is up to the job. Set " @@ -8034,17 +8644,17 @@ msgstr "" "Deze acceleratie zal uw printer gebruiken voor perimeters. Als dit ingesteld " "is op 0, worden acceleratie-instellingen voor perimeters uitgezet." -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "Perimeterextruder" -#: src/libslic3r/PrintConfig.cpp:1405 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "" "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "" "De extruder die gebruikt wordt voor het printen van perimeters en de brim." -#: src/libslic3r/PrintConfig.cpp:1414 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "" "Set this to a non-zero value to set a manual extrusion width for perimeters. " "You may want to use thinner extrudates to get more accurate surfaces. If " @@ -8058,15 +8668,14 @@ msgstr "" "nozzlediameter. Als dit is uitgedrukt als percentage, wordt dit berekend " "over de laagdikte." -#: src/libslic3r/PrintConfig.cpp:1427 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "" "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "" -"Snelheid voor de perimeters (contouren, ook wel bekend als verticale " -"shells). Als dit ingesteld is op 0, wordt de snelheid automatisch " -"gedetecteerd." +"Printnelheid voor de perimeters (contouren, ook wel bekend als verticale " +"shells). Als dit ingesteld is op 0, wordt een automatische snelheid genomen." -#: src/libslic3r/PrintConfig.cpp:1437 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "" "This option sets the number of perimeters to generate for each layer. Note " "that Slic3r may increase this number automatically when it detects sloping " @@ -8078,11 +8687,11 @@ msgstr "" "een hoger aantal perimeters als de optie voor extra perimeters is " "ingeschakeld." -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(minimum)" -#: src/libslic3r/PrintConfig.cpp:1449 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "" "If you want to process the output G-code through custom scripts, just list " "their absolute paths here. Separate multiple scripts with a semicolon. " @@ -8095,35 +8704,35 @@ msgstr "" "krijgen als eerste argument het pad naar het gcode-bestand. Ze hebben ook " "toegang tot de configuratie-instellingen door het lezen van variabelen." -#: src/libslic3r/PrintConfig.cpp:1461 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "Printertype" -#: src/libslic3r/PrintConfig.cpp:1462 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "Type van de printer." -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "Printeropmerkingen" -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "Hier kunnen opmerkingen over de printer geplaatst worden." -#: src/libslic3r/PrintConfig.cpp:1476 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "Printerleverancier" -#: src/libslic3r/PrintConfig.cpp:1477 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "Naam van de printerleverancier." -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "Printervariant" -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "" "Name of the printer variant. For example, the printer variants may be " "differentiated by a nozzle diameter." @@ -8131,11 +8740,11 @@ msgstr "" "Naam van de printervariant. De nozzlediameter kan bijvoorbeeld afwijken voor " "verschillende varianten." -#: src/libslic3r/PrintConfig.cpp:1496 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" msgstr "Raftlagen" -#: src/libslic3r/PrintConfig.cpp:1498 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "" "The object will be raised by this number of layers, and support material " "will be generated under it." @@ -8143,11 +8752,11 @@ msgstr "" "Het object wordt verhoogd met dit aantal lagen. Support wordt onder het " "object gegenereerd." -#: src/libslic3r/PrintConfig.cpp:1506 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "Resolutie" -#: src/libslic3r/PrintConfig.cpp:1507 +#: src/libslic3r/PrintConfig.cpp:1512 msgid "" "Minimum detail resolution, used to simplify the input file for speeding up " "the slicing job and reducing memory usage. High-resolution models often " @@ -8159,22 +8768,22 @@ msgstr "" "een hoge resolutie vragen meer van een printer dan mogelijk. Als dit " "ingesteld is op 0, wordt simplificatie uitgeschakeld." -#: src/libslic3r/PrintConfig.cpp:1517 +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "Minimale beweging na retracten" -#: src/libslic3r/PrintConfig.cpp:1518 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "" "Retraction is not triggered when travel moves are shorter than this length." msgstr "" "Retracten is niet geactiveerd als bewegingen korter zijn dan de hier " "ingevoerde lengte." -#: src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "Retracthoeveelheid voor het afvegen" -#: src/libslic3r/PrintConfig.cpp:1525 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "" "With bowden extruders, it may be wise to do some amount of quick retract " "before doing the wipe movement." @@ -8182,23 +8791,23 @@ msgstr "" "Met Bowden-extruders is het verstandig om een aantal maal snel te retracten " "voor het afvegen." -#: src/libslic3r/PrintConfig.cpp:1532 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" msgstr "Retracten bij laagwisselingen" -#: src/libslic3r/PrintConfig.cpp:1533 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "Dit vinkje geeft aan of wordt teruggetrokken bij een Z-beweging." -#: src/libslic3r/PrintConfig.cpp:1538 src/libslic3r/PrintConfig.cpp:1546 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "Lengte" -#: src/libslic3r/PrintConfig.cpp:1539 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "Retractielengte" -#: src/libslic3r/PrintConfig.cpp:1540 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "" "When retraction is triggered, filament is pulled back by the specified " "amount (the length is measured on raw filament, before it enters the " @@ -8207,15 +8816,15 @@ msgstr "" "Als retracten is geactiveerd, wordt filament teruggetrokken op de ingestelde " "waarde (filamentlengte voor het de extruder in gaat)." -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" msgstr "mm (stel in op 0 om uit te schakelen)" -#: src/libslic3r/PrintConfig.cpp:1547 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "Retractielengte (toolwissel)" -#: src/libslic3r/PrintConfig.cpp:1548 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "" "When retraction is triggered before changing tool, filament is pulled back " "by the specified amount (the length is measured on raw filament, before it " @@ -8225,11 +8834,11 @@ msgstr "" "teruggetrokken op de ingestelde waarde (filamentlengte voor het de extruder " "in gaat)." -#: src/libslic3r/PrintConfig.cpp:1556 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "Beweeg Z omhoog" -#: src/libslic3r/PrintConfig.cpp:1557 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "" "If you set this to a positive value, Z is quickly raised every time a " "retraction is triggered. When using multiple extruders, only the setting for " @@ -8239,15 +8848,15 @@ msgstr "" "enigszins omhoog bij het retracten. Als meerdere extruders worden gebruikt, " "wordt alleen de instelling van de eerste extruder aangehouden." -#: src/libslic3r/PrintConfig.cpp:1564 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Boven Z" -#: src/libslic3r/PrintConfig.cpp:1565 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "Beweeg Z alleen omhoog boven" -#: src/libslic3r/PrintConfig.cpp:1566 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "" "If you set this to a positive value, Z lift will only take place above the " "specified absolute Z. You can tune this setting for skipping lift on the " @@ -8257,15 +8866,15 @@ msgstr "" "ingestelde waarde omhoog bewegen voor het retracten. Deze kan aangepast " "worden om warping te voorkomen bij de eerste lagen." -#: src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "Onder Z" -#: src/libslic3r/PrintConfig.cpp:1574 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Beweeg Z alleen omhoog onder" -#: src/libslic3r/PrintConfig.cpp:1575 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "" "If you set this to a positive value, Z lift will only take place below the " "specified absolute Z. You can tune this setting for limiting lift to the " @@ -8274,11 +8883,11 @@ msgstr "" "Als dit ingesteld is op een positieve waarde, zal de nozzle alleen onder de " "ingestelde waarde omhoog bewegen bij het retracten." -#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "Extra lengte bij een herstart" -#: src/libslic3r/PrintConfig.cpp:1584 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "" "When the retraction is compensated after the travel move, the extruder will " "push this additional amount of filament. This setting is rarely needed." @@ -8286,7 +8895,7 @@ msgstr "" "Als retracten wordt gecompenseerd na een beweging, wordt deze extra " "hoeveelheid filament geëxtrudeerd. Deze instelling is zelden van toepassing." -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "" "When the retraction is compensated after changing tool, the extruder will " "push this additional amount of filament." @@ -8294,19 +8903,19 @@ msgstr "" "Als retracten wordt gecompenseerd na een toolwisseling, wordt deze extra " "hoeveelheid filament geëxtrudeerd." -#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "Retractiesnelheid" -#: src/libslic3r/PrintConfig.cpp:1601 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "De snelheid voor retracties (geldt alleen voor de extrudermotor)." -#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "Deretractiesnelheid" -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "" "The speed for loading of a filament into extruder after retraction (it only " "applies to the extruder motor). If left to zero, the retraction speed is " @@ -8316,68 +8925,68 @@ msgstr "" "voor de extrudermotor). Als dit ingesteld is op 0, wordt de " "retractiesnelheid gebruikt." -#: src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "Naadpositie" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Startpuntpositie van perimeters." -#: src/libslic3r/PrintConfig.cpp:1624 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "Willekeurig" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "Dichstbijzijnd" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "Uitgelijnd" -#: src/libslic3r/PrintConfig.cpp:1634 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "Richting" -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "Richtingsvoorkeur voor de naad" -#: src/libslic3r/PrintConfig.cpp:1637 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "Richtingsvoorkeur voor de naad" -#: src/libslic3r/PrintConfig.cpp:1644 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "Jitter" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "Voorkeursrichting voor de naad - jitter" -#: src/libslic3r/PrintConfig.cpp:1647 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "Voorkeursrichting voor de naad - jitter" -#: src/libslic3r/PrintConfig.cpp:1657 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "USB/seriële poort voor verbinding met de printer." -#: src/libslic3r/PrintConfig.cpp:1664 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "Snelheid van de seriële poort" -#: src/libslic3r/PrintConfig.cpp:1665 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "" "Snelheid (baud) van de USB/seriële poort voor de verbinding met de printer." -#: src/libslic3r/PrintConfig.cpp:1674 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "Afstand vanaf het object" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "" "Distance between skirt and object(s). Set this to zero to attach the skirt " "to the object(s) and get a brim for better adhesion." @@ -8385,11 +8994,11 @@ msgstr "" "Afstand tussen skirt en object. Als dit ingesteld is op 0, wordt de skirt " "aan het object vastgemaakt; het fungeert dan als brim." -#: src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "Skirthoogte" -#: src/libslic3r/PrintConfig.cpp:1683 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "" "Height of skirt expressed in layers. Set this to a tall value to use skirt " "as a shield against drafts." @@ -8397,29 +9006,29 @@ msgstr "" "Hoogte van de skirt uitgedrukt in het aantal lagen. Stel in op een hoge " "waarde om te gebruiken als afscherming tegen tocht." -#: src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "Rondjes (minimaal)" -#: src/libslic3r/PrintConfig.cpp:1691 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "Rondjes voor de skirt" -#: src/libslic3r/PrintConfig.cpp:1692 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "" "Number of loops for the skirt. If the Minimum Extrusion Length option is " "set, the number of loops might be greater than the one configured here. Set " "this to zero to disable skirt completely." msgstr "" -"Het aantal rondjes van de skirt. Als de 'minimale extrusielengte'-optie is " -"ingesteld kan dit aantal rondjes groter zijn dan hier is ingesteld. Als dit " -"ingesteld is op 0, wordt de skirt uitgeschakeld." +"Het aantal rondjes van de skirt. Als de minimale extrusielengte is ingesteld " +"kan dit aantal rondjes groter zijn dan hier is ingesteld. Als dit ingesteld " +"is op 0, wordt de skirt uitgeschakeld." -#: src/libslic3r/PrintConfig.cpp:1700 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "Vertraag bij een kortere laagprinttijd dan" -#: src/libslic3r/PrintConfig.cpp:1701 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "" "If layer print time is estimated below this number of seconds, print moves " "speed will be scaled down to extend duration to this value." @@ -8427,26 +9036,26 @@ msgstr "" "Als de laagprinttijd wordt berekend onder dit aantal seconden, wordt de " "printsnelheid verlaagd om de laagprinttijd te verlengen." -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" msgstr "Smalle perimeters" -#: src/libslic3r/PrintConfig.cpp:1713 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "" "This separate setting will affect the speed of perimeters having radius <= " "6.5mm (usually holes). If expressed as percentage (for example: 80%) it will " "be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "" -"Deze instelling heeft effect op de snelheid van perimeters met een radius <= " -"6.5mm. Als dit is uitgedrukt als percentage, wordt deze genomen over de " -"snelheid van de perimeters. Als dit ingesteld is op 0, wordt een " -"automatische snelheid genomen." +"Deze instelling heeft effect op de snelheid van perimeters met een radius " +"die kleiner of gelijk is aan 6.5mm. Als dit is uitgedrukt als percentage, " +"wordt deze genomen over de snelheid van de perimeters. Als dit ingesteld is " +"op 0, wordt een automatische snelheid genomen." -#: src/libslic3r/PrintConfig.cpp:1723 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" msgstr "Dichte vulling bij oppervlak" -#: src/libslic3r/PrintConfig.cpp:1725 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "" "Force solid infill for regions having a smaller area than the specified " "threshold." @@ -8454,23 +9063,23 @@ msgstr "" "Forceer dichte vulling voor delen met een kleiner doorsnee-oppervlak dan de " "hier ingestelde waarde." -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1730 msgid "mm²" msgstr "mm²" -#: src/libslic3r/PrintConfig.cpp:1732 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "Extruder voor dichte vulling" -#: src/libslic3r/PrintConfig.cpp:1734 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." msgstr "De extruder die gebruikt wordt voor het printen van dichte vullingen." -#: src/libslic3r/PrintConfig.cpp:1740 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "Dichte vulling elke" -#: src/libslic3r/PrintConfig.cpp:1742 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "" "This feature allows to force a solid layer every given number of layers. " "Zero to disable. You can set this to any value (for example 9999); Slic3r " @@ -8482,7 +9091,7 @@ msgstr "" "waarde; PrusaSlicer zal dan automatisch het maximaal aantal lagen kiezen om " "te combineren op basis van de nozzlediameter en de laagdikte." -#: src/libslic3r/PrintConfig.cpp:1754 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "" "Set this to a non-zero value to set a manual extrusion width for infill for " "solid surfaces. If left zero, default extrusion width will be used if set, " @@ -8494,25 +9103,29 @@ msgstr "" "breedte instellen op 1,125x de nozzlediameter. Als dit is uitgedrukt als " "percentage, wordt dit berekend over de laagdikte." -#: src/libslic3r/PrintConfig.cpp:1765 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "" "Speed for printing solid regions (top/bottom/internal horizontal shells). " "This can be expressed as a percentage (for example: 80%) over the default " "infill speed above. Set to zero for auto." msgstr "" -"Printsnelheid voor dichte delen. Als dit is uitgedrukt als percentage, wordt " +"Printsnelheid van dichte delen. Als dit is uitgedrukt als percentage, wordt " "dit berekend over de standaard vullingssnelheid. Als dit ingesteld is op 0, " "worden automatische waarden genomen." -#: src/libslic3r/PrintConfig.cpp:1777 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." msgstr "Aantal te genereren dichte lagen voor boven- en ondervlakken." -#: src/libslic3r/PrintConfig.cpp:1783 +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "Minimale dikte van top-/bodemshell" + +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "Spiraalmodus" -#: src/libslic3r/PrintConfig.cpp:1784 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "" "This feature will raise Z gradually while printing a single-walled object in " "order to remove any visible seam. This option requires a single perimeter, " @@ -8520,17 +9133,17 @@ msgid "" "any number of bottom solid layers as well as skirt/brim loops. It won't work " "when printing more than an object." msgstr "" -"Deze optie zorgt dat Z stapsgewijs omhoog gaat als een object met een enkele " -"perimeter geprint wordt om een naadlijn te voorkomen. Voor deze optie is een " -"enkele perimeter nodig; vulling, bovenlagen en support zijn niet mogelijk. " -"Bodemlagen zijn wel mogelijk, evenals een skirt en brim. Werkt niet bij het " -"printen van meerdere objecten tegelijk." +"Deze optie zorgt dat de Z-as geleidelijk omhoog gaat als een object met een " +"enkele perimeter geprint wordt om een naadlijn te voorkomen. Voor deze optie " +"is een enkele perimeter nodig; vulling, bovenlagen en support zijn niet " +"mogelijk. Bodemlagen zijn wel mogelijk, evenals een skirt en brim. Dit werkt " +"niet bij het printen van meerdere objecten tegelijk." -#: src/libslic3r/PrintConfig.cpp:1792 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "Temperatuurverschil" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "" "Temperature difference to be applied when an extruder is not active. Enables " "a full-height \"sacrificial\" skirt on which the nozzles are periodically " @@ -8539,7 +9152,7 @@ msgstr "" "Temperatuurverschil dat wordt toegepast als een extruder niet actief is. Dit " "genereert een afveegblok waarop de nozzle wordt schoongeveegd." -#: src/libslic3r/PrintConfig.cpp:1803 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "" "This start procedure is inserted at the beginning, after bed has reached the " "target temperature and extruder just started heating, and before extruder " @@ -8557,7 +9170,7 @@ msgstr "" "andere aangepaste acties aan te passen. Merk op dat u voor alle PrusaSlicer-" "instellingen variabelen kunt gebruiken." -#: src/libslic3r/PrintConfig.cpp:1818 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "" "This start procedure is inserted at the beginning, after any printer start " "gcode (and after any toolchange to this filament in case of multi-material " @@ -8580,19 +9193,19 @@ msgstr "" "meerdere extruders hebt, wordt de G-code in de volgorde van de extruders " "verwerkt." -#: src/libslic3r/PrintConfig.cpp:1834 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" msgstr "Multi-material met één extruder" -#: src/libslic3r/PrintConfig.cpp:1835 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "De printer mengt filament in een enkele extruder." -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "Veeg alle printextruders af" -#: src/libslic3r/PrintConfig.cpp:1841 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "" "If enabled, all printing extruders will be primed at the front edge of the " "print bed at the start of the print." @@ -8600,11 +9213,11 @@ msgstr "" "Alle extruders worden afgeveegd aan de voorzijde van het printbed aan het " "begin van de print als dit aanstaat." -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" msgstr "Geen smalle lagen (experimenteel)" -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "" "If enabled, the wipe tower will not be printed on layers with no " "toolchanges. On layers with a toolchange, extruder will travel downward to " @@ -8616,19 +9229,19 @@ msgstr "" "bewegen naar het afveegblok. De gebruiker is verantwoordelijk voor eventuele " "botsingen met de print." -#: src/libslic3r/PrintConfig.cpp:1854 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "Genereer support" -#: src/libslic3r/PrintConfig.cpp:1856 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "Sta de generatie van support toe." -#: src/libslic3r/PrintConfig.cpp:1860 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "Automatisch gegenereerd support" -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "" "If checked, supports will be generated automatically based on the overhang " "threshold value. If unchecked, supports will be generated inside the " @@ -8637,11 +9250,11 @@ msgstr "" "Support wordt automatisch gegenereerd als dit aan staat. Als dit niet " "aanstaat zal support alleen bij supportforceringen gegenereerd worden." -#: src/libslic3r/PrintConfig.cpp:1868 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" -msgstr "Horizontale ruimte tussen object en support" +msgstr "Horizontale ruimte tussen het object en het support" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "" "XY separation between an object and its support. If expressed as percentage " "(for example 50%), it will be calculated over external perimeter width." @@ -8649,17 +9262,17 @@ msgstr "" "Horizontale ruimte tussen object en support. Als dit is uitgedrukt als " "percentage, wordt deze berekend over de breedte van de buitenste perimeter." -#: src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "Patroonhoek" -#: src/libslic3r/PrintConfig.cpp:1882 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "" "Use this setting to rotate the support material pattern on the horizontal " "plane." msgstr "Gebruik deze instelling om het patroon van het support te draaien." -#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:2644 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "" "Only create support if it lies on a build plate. Don't create support on a " "print." @@ -8667,11 +9280,11 @@ msgstr "" "Genereer alleen support als dit op het bed geplaatst wordt, dus niet op de " "print zelf." -#: src/libslic3r/PrintConfig.cpp:1898 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Contact Z-afstand" -#: src/libslic3r/PrintConfig.cpp:1900 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "" "The vertical distance between object and support material interface. Setting " "this to 0 will also prevent Slic3r from using bridge flow and speed for the " @@ -8681,39 +9294,39 @@ msgstr "" "PrusaSlicer bruginstellingen gebruikt voor de eerste laag boven het " "supportdak." -#: src/libslic3r/PrintConfig.cpp:1907 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (oplosbaar)" -#: src/libslic3r/PrintConfig.cpp:1908 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0.2 (losbreekbaar)" -#: src/libslic3r/PrintConfig.cpp:1913 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "Forceer support voor de eerste" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "" "Generate support material for the specified number of layers counting from " "bottom, regardless of whether normal support material is enabled or not and " "regardless of any angle threshold. This is useful for getting more adhesion " "of objects having a very thin or poor footprint on the build plate." msgstr "" -"Genereer support voor het ingevoerde aantal lagen, tellend vanaf de bodem, " +"Genereer support voor het ingevoerd aantal lagen, tellend vanaf de bodem, " "ongeacht de plekken waar standaard support al dan niet is toegestaan, " "waarbij de ingesteld hoek wordt aangehouden. Dit is handig om meer hechting " "op het bed te verkrijgen bij objecten met een klein contactoppervlak." -#: src/libslic3r/PrintConfig.cpp:1920 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" msgstr "Forceer support voor de eerste n lagen" -#: src/libslic3r/PrintConfig.cpp:1926 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" msgstr "Extruder voor support/raft/skirt" -#: src/libslic3r/PrintConfig.cpp:1928 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "" "The extruder to use when printing support material, raft and skirt (1+, 0 to " "use the current extruder to minimize tool changes)." @@ -8721,7 +9334,7 @@ msgstr "" "De extruder die gebruikt wordt voor support, raft en skirt (stel in op 1 of " "op 0 om de huidige extruder te gebruiken)." -#: src/libslic3r/PrintConfig.cpp:1937 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "" "Set this to a non-zero value to set a manual extrusion width for support " "material. If left zero, default extrusion width will be used if set, " @@ -8733,22 +9346,22 @@ msgstr "" "zelf bepalen op basis van de nozzlediameter. Als dit is uitgedrukt als " "percentage, wordt dit berekend over de laagdikte." -#: src/libslic3r/PrintConfig.cpp:1946 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" msgstr "Interface rondjes" -#: src/libslic3r/PrintConfig.cpp:1948 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "" "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "" -"Bedek de bovenste interfacelagen van het support met rondjes. Staat " +"Bedek de bovenste interfacelagen van het support met rondjes. Dit staat " "standaard uit." -#: src/libslic3r/PrintConfig.cpp:1953 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" msgstr "Extruder voor supportdak en de bovenlaag van de raft" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "" "The extruder to use when printing support material interface (1+, 0 to use " "the current extruder to minimize tool changes). This affects raft too." @@ -8757,27 +9370,27 @@ msgstr "" "dan 1 of op 0 om de huidige extruder te gebruiken voor minder " "toolwisselingen). Dit heeft ook effect op de raft." -#: src/libslic3r/PrintConfig.cpp:1962 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "Supportinterface-lagen" -#: src/libslic3r/PrintConfig.cpp:1964 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "" "Number of interface layers to insert between the object(s) and support " "material." msgstr "Aantal interface-lagen tussen het support en het object." -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" msgstr "Tussenafstand voor interface" -#: src/libslic3r/PrintConfig.cpp:1973 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." msgstr "" "Ruimte tussen lijnen van supportinterface. Als dit ingesteld is op 0, wordt " -"een dicht supportinterface gegenereerd." +"een dichte supportinterface gegenereerd." -#: src/libslic3r/PrintConfig.cpp:1982 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "" "Speed for printing support material interface layers. If expressed as " "percentage (for example 50%) it will be calculated over support material " @@ -8786,35 +9399,35 @@ msgstr "" "Printsnelheid van supportinterface-lagen. Als dit is uitgedrukt als " "percentage, wordt dit berekend over de snelheid van het support." -#: src/libslic3r/PrintConfig.cpp:1991 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "Patroon" -#: src/libslic3r/PrintConfig.cpp:1993 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "Patroon dat gebruikt wordt voor het support." -#: src/libslic3r/PrintConfig.cpp:1999 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "Rechtlijnig raster" -#: src/libslic3r/PrintConfig.cpp:2005 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" msgstr "Tussenafstand van het patroon" -#: src/libslic3r/PrintConfig.cpp:2007 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." msgstr "Afstand tussen supportlijnen." -#: src/libslic3r/PrintConfig.cpp:2016 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." -msgstr "Printsnelheid van support." +msgstr "Printsnelheid voor support." -#: src/libslic3r/PrintConfig.cpp:2023 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "Synchroniseer met objectlagen" -#: src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "" "Synchronize support layers with the object print layers. This is useful with " "multi-material printers, where the extruder switch is expensive." @@ -8822,11 +9435,11 @@ msgstr "" "Synchroniseer de supportlagen met de objectlagen. Dit is handig voor multi-" "materialprinters waar een toolwissel duur is." -#: src/libslic3r/PrintConfig.cpp:2031 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "Maximale overhanghoek" -#: src/libslic3r/PrintConfig.cpp:2033 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "" "Support material will not be generated for overhangs whose slope angle (90° " "= vertical) is above the given threshold. In other words, this value " @@ -8839,11 +9452,11 @@ msgstr "" "geprint moet worden met support. Als dit ingesteld is op 0, wordt dit " "automatisch gedetecteerd (aanbevolen)." -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" msgstr "Met schild rond het support" -#: src/libslic3r/PrintConfig.cpp:2047 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "" "Add a sheath (a single perimeter line) around the base support. This makes " "the support more reliable, but also more difficult to remove." @@ -8851,7 +9464,7 @@ msgstr "" "Voeg een schild (één perimeterlijn) rondom het support toe. Dit maakt het " "support betrouwbaarder maar ook moeilijker te verwijderen." -#: src/libslic3r/PrintConfig.cpp:2054 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "" "Extruder temperature for layers after the first one. Set this to zero to " "disable temperature control commands in the output." @@ -8859,11 +9472,11 @@ msgstr "" "Extrudertemperatuur voor lager direct na de eerste laag. Als dit ingesteld " "is op 0, voorkomt dit een verschil in de output." -#: src/libslic3r/PrintConfig.cpp:2062 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "Detecteer dunne wanden" -#: src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "" "Detect single-width walls (parts where two extrusions don't fit and we need " "to collapse them into a single trace)." @@ -8871,11 +9484,11 @@ msgstr "" "Detecteer éénlijnige wanden (delen waar 2 extrusielijnen niet passen en dit " "geprint moet worden met 1 lijn)." -#: src/libslic3r/PrintConfig.cpp:2070 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "Meerdere processen" -#: src/libslic3r/PrintConfig.cpp:2071 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "" "Threads are used to parallelize long-running tasks. Optimal threads number " "is slightly above the number of available cores/processors." @@ -8884,7 +9497,7 @@ msgstr "" "draaien. Het optimaal aantal processen is vlak boven het aanwezige aantal " "kernen/processoren." -#: src/libslic3r/PrintConfig.cpp:2083 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "" "This custom code is inserted before every toolchange. Placeholder variables " "for all PrusaSlicer settings as well as {previous_extruder} and " @@ -8900,7 +9513,7 @@ msgstr "" "commando invoegen. Het is daarom mogelijk om voor én na de toolwissel een " "custom script te draaien." -#: src/libslic3r/PrintConfig.cpp:2096 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "" "Set this to a non-zero value to set a manual extrusion width for infill for " "top surfaces. You may want to use thinner extrudates to fill all narrow " @@ -8913,7 +9526,7 @@ msgstr "" "extrudaat in smalle gebieden voor een gladdere afwerking. Als dit is " "uitgedrukt als percentage, wordt dit berekend over de laagdikte." -#: src/libslic3r/PrintConfig.cpp:2108 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "" "Speed for printing top solid layers (it only applies to the uppermost " "external layers and not to their internal solid layers). You may want to " @@ -8927,23 +9540,37 @@ msgstr "" "vullingssnelheid. Als dit ingesteld is op 0, wordt een automatische snelheid " "genomen." -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." msgstr "Aantal te genereren dichte lagen voor bovenvlakken." -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" msgstr "Bovenste dichte vulling" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "" +"The number of top solid layers is increased above top_solid_layers if " +"necessary to satisfy minimum thickness of top shell. This is useful to " +"prevent pillowing effect when printing with variable layer height." +msgstr "" +"Het aantal dichte bovenlagen wordt verhoogd als blijkt dat dit nodig is om " +"de minimale shelldikte te garanderen. Dit is handig om kussenvorming te " +"voorkomen bij het printen met variabele laagdikte." + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "Minimale shelldikte aan de bovenzijde" + +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "Bewegingssnelheid als niet geëxtrudeerd wordt." -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "Gebruik de firmware-retractie" -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " "handle the retraction. This is only supported in recent Marlin." @@ -8952,11 +9579,11 @@ msgstr "" "retracten in de firmware. Dit wordt alleen ondersteunt bij de recente Marlin-" "variant." -#: src/libslic3r/PrintConfig.cpp:2145 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "Gebruik relatieve E-waarden" -#: src/libslic3r/PrintConfig.cpp:2146 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "" "If your firmware requires relative E values, check this, otherwise leave it " "unchecked. Most firmwares use absolute values." @@ -8964,11 +9591,11 @@ msgstr "" "Als uw firmware relatieve extrusiewaarden nodig heeft, vink dit dan aan. " "Laat het ander uit staan. De meeste firmware gebruiken absolute waarden." -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "Gebruik volumetrische E-waarden" -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "" "This experimental setting uses outputs the E values in cubic millimeters " "instead of linear millimeters. If your firmware doesn't already know " @@ -8985,11 +9612,11 @@ msgstr "" "filamentinstellingen. Dit wordt alleen ondersteund in de recente Marlin-" "variant." -#: src/libslic3r/PrintConfig.cpp:2163 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "Sta variabele laagdikte toe" -#: src/libslic3r/PrintConfig.cpp:2164 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "" "Some printers or printer setups may have difficulties printing with a " "variable layer height. Enabled by default." @@ -8997,11 +9624,11 @@ msgstr "" "Sommige printers of printersetups kunnen niet printen met een variabele " "laagdikte. Staat standaard aan." -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "Veeg af bij het retracten" -#: src/libslic3r/PrintConfig.cpp:2171 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "" "This flag will move the nozzle while retracting to minimize the possible " "blob on leaky extruders." @@ -9009,7 +9636,7 @@ msgstr "" "Als u dit aanvinkt beweegt de nozzle tijdens het retracten om een blob of " "lekkende extruders tegen te gaan." -#: src/libslic3r/PrintConfig.cpp:2178 +#: src/libslic3r/PrintConfig.cpp:2201 msgid "" "Multi material printers may need to prime or purge extruders on tool " "changes. Extrude the excess material into the wipe tower." @@ -9017,11 +9644,11 @@ msgstr "" "Multi-materialprinters moeten afvegen bij toolwisselingen. Extrudeer het " "overtollige materiaal op het afveegblok." -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "Afveegvolume - laad/ontlaad volumes" -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "" "This vector saves required volumes to change from/to each tool used on the " "wipe tower. These values are used to simplify creation of the full purging " @@ -9032,11 +9659,11 @@ msgstr "" "het creëren van de onderstaande volledige reinigingsvolumes te " "vereenvoudigen." -#: src/libslic3r/PrintConfig.cpp:2191 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "Afveegvolume - matrix" -#: src/libslic3r/PrintConfig.cpp:2192 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "" "This matrix describes volumes (in cubic milimetres) required to purge the " "new filament on the wipe tower for any given pair of tools." @@ -9044,39 +9671,39 @@ msgstr "" "Deze matrix beschrijft volume (in mm³) dat is vereist om nieuw filament af " "te vegen aan het afveegblok voor elk paar van extruders." -#: src/libslic3r/PrintConfig.cpp:2201 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "X-positie" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "X-coördinaat van de linkervoorhoek van het afveegblok" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Y-positie" -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Y-coördinaat van de linkervoorhoek van het afveegblok" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "Breedte van het afveegblok" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "Rotatie van het afveegblok" -#: src/libslic3r/PrintConfig.cpp:2223 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "Rotatie van het afveegblok ten opzichte van de X-as." -#: src/libslic3r/PrintConfig.cpp:2230 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "Afvegen in de vulling van het object" -#: src/libslic3r/PrintConfig.cpp:2231 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "" "Purging after toolchange will done inside this object's infills. This lowers " "the amount of waste but may result in longer print time due to additional " @@ -9085,11 +9712,11 @@ msgstr "" "Het afvegen na de toolwissel wordt gedaan in de vulling van het object. Dit " "reduceert de hoeveelheid afval, maar kan leiden tot een langere printtijd." -#: src/libslic3r/PrintConfig.cpp:2238 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "Afvegen in dit object" -#: src/libslic3r/PrintConfig.cpp:2239 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "" "Object will be used to purge the nozzle after a toolchange to save material " "that would otherwise end up in the wipe tower and decrease print time. " @@ -9099,19 +9726,19 @@ msgstr "" "materiaal dat anders in het afveegblok gebruikt wordt te besparen. Kleuren " "kunnen dan gemengd worden." -#: src/libslic3r/PrintConfig.cpp:2245 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "Maximale brugafstand" -#: src/libslic3r/PrintConfig.cpp:2246 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "Maximale afstand tussen support op dunne vullingsdelen." -#: src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" msgstr "Compensatie voor X- en Y-grootte" -#: src/libslic3r/PrintConfig.cpp:2254 +#: src/libslic3r/PrintConfig.cpp:2277 msgid "" "The object will be grown/shrunk in the XY plane by the configured value " "(negative = inwards, positive = outwards). This might be useful for fine-" @@ -9121,11 +9748,11 @@ msgstr "" "waarde (negatief = naar binnen, positief = naar buiten). Dit kan handig zijn " "voor het verfijnen van gaten." -#: src/libslic3r/PrintConfig.cpp:2262 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" msgstr "Z-hoogte" -#: src/libslic3r/PrintConfig.cpp:2263 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "" "This value will be added (or subtracted) from all the Z coordinates in the " "output G-code. It is used to compensate for bad Z endstop position: for " @@ -9137,63 +9764,63 @@ msgstr "" "eindstop bijvoorbeeld een waarde gebruikt die 0.3mm van het printbed is, kan " "dit ingesteld worden op -0.3mm." -#: src/libslic3r/PrintConfig.cpp:2330 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "Schermbreedte" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "Breedte van het scherm" -#: src/libslic3r/PrintConfig.cpp:2336 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "Schermhoogte" -#: src/libslic3r/PrintConfig.cpp:2337 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "Hoogte van het scherm" -#: src/libslic3r/PrintConfig.cpp:2342 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "Aantal pixels" -#: src/libslic3r/PrintConfig.cpp:2344 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Aantal pixels in de breedte" -#: src/libslic3r/PrintConfig.cpp:2350 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Aantal pixels in de hoogte" -#: src/libslic3r/PrintConfig.cpp:2355 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "Scherm horizontaal spiegelen" -#: src/libslic3r/PrintConfig.cpp:2356 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "Spiegel horizontaal" -#: src/libslic3r/PrintConfig.cpp:2357 +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "Horizontaal spiegelen" -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "Scherm verticaal spiegelen" -#: src/libslic3r/PrintConfig.cpp:2363 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "Verticaal spiegelen" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "Verticaal spiegelen" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "Schermoriëntatie" -#: src/libslic3r/PrintConfig.cpp:2370 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "" "Set the actual LCD display orientation inside the SLA printer. Portrait mode " "will flip the meaning of display width and height parameters and the output " @@ -9203,43 +9830,43 @@ msgstr "" "Staande modus zal de breedte- en hoogteparameters omwisselen en de output " "wordt 90 graden gedraaid." -#: src/libslic3r/PrintConfig.cpp:2376 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "Liggend" -#: src/libslic3r/PrintConfig.cpp:2377 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "Staand" -#: src/libslic3r/PrintConfig.cpp:2382 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "Snel" -#: src/libslic3r/PrintConfig.cpp:2383 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "Snelle kanteling" -#: src/libslic3r/PrintConfig.cpp:2384 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "Tijd van de snelle kanteling" -#: src/libslic3r/PrintConfig.cpp:2391 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "Langzaam" -#: src/libslic3r/PrintConfig.cpp:2392 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "Langzaam kantelen" -#: src/libslic3r/PrintConfig.cpp:2393 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "Tijd van de langzame kanteling" -#: src/libslic3r/PrintConfig.cpp:2400 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "Vulgebied" -#: src/libslic3r/PrintConfig.cpp:2401 +#: src/libslic3r/PrintConfig.cpp:2424 msgid "" "The percentage of the bed area. \n" "If the print area exceeds the specified value, \n" @@ -9249,16 +9876,16 @@ msgstr "" "Als het printgebied buiten een specifieke waarde valt \n" "wordt een korte kanteling gebruikt, anders een snelle kanteling" -#: src/libslic3r/PrintConfig.cpp:2408 src/libslic3r/PrintConfig.cpp:2409 -#: src/libslic3r/PrintConfig.cpp:2410 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "Verschalingscorrectie voor printer" -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "Absolute correctie voor printer" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "" "Will inflate or deflate the sliced 2D polygons according to the sign of the " "correction." @@ -9266,11 +9893,20 @@ msgstr "" "Zal de geslicede veelhoeken uitrekken of laten krimpen, afhankelijk van de " "correctiewaarde." -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "Squishcompensatiebreedte" + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "" +"Minimum width of features to maintain when doing elephant foot compensation." +msgstr "Minimale breedte van delen waarop squishcompensatie wordt toegepast." + +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "Gammacorrectie voor printer" -#: src/libslic3r/PrintConfig.cpp:2426 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "" "This will apply a gamma correction to the rasterized 2D polygons. A gamma " "value of zero means thresholding with the threshold in the middle. This " @@ -9280,43 +9916,43 @@ msgstr "" "betekent een waarde die in het midden ligt. Dit gedrag elimineert anti-" "aliasing zonder dat gaten in de veelhoeken verloren gaan." -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "SLA-materiaaltype" -#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "Laagdikte eerste laag" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "Flesinhoud (volume)" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "Flesinhoud (gewicht)" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "€/fles" -#: src/libslic3r/PrintConfig.cpp:2485 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "Transitielagen" -#: src/libslic3r/PrintConfig.cpp:2486 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "" "Number of the layers needed for the exposure time fade from initial exposure " "time to the exposure time" @@ -9324,91 +9960,91 @@ msgstr "" "Aantal lagen waarin de initiële belichtingstijd stapsgewijs wordt " "teruggebracht naar de standaard belichtingstijd" -#: src/libslic3r/PrintConfig.cpp:2493 src/libslic3r/PrintConfig.cpp:2494 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "Minimale belichtingstijd" -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "Maximale belichtingstijd" -#: src/libslic3r/PrintConfig.cpp:2509 src/libslic3r/PrintConfig.cpp:2510 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "Belichtingstijd" -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "Minimale initiële belichtingstijd" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "Maximale initiële belichtingstijd" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "Initiële belichtingstijd" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "Vergrotingscorrectie" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "SLA-printmateriaal opmerkingen" -#: src/libslic3r/PrintConfig.cpp:2547 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "U kunt hier opmerkingen plaatsen wat betreft het SLA-materiaal." -#: src/libslic3r/PrintConfig.cpp:2559 src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "Standaard SLA-materiaalprofiel" -#: src/libslic3r/PrintConfig.cpp:2581 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "Genereer support" -#: src/libslic3r/PrintConfig.cpp:2583 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "Genereer support voor de modellen" -#: src/libslic3r/PrintConfig.cpp:2588 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "Supportkopdiameter" -#: src/libslic3r/PrintConfig.cpp:2590 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "Diameter van de puntige zijde van de kop" -#: src/libslic3r/PrintConfig.cpp:2597 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "Supportkopinsteek" -#: src/libslic3r/PrintConfig.cpp:2599 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "Hoe ver de supportkop in het model moet steken" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "Supportkopbreedte" -#: src/libslic3r/PrintConfig.cpp:2608 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "Centerafstand van de achterste tot de voorste bol" -#: src/libslic3r/PrintConfig.cpp:2616 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "Supportpijler - diameter" -#: src/libslic3r/PrintConfig.cpp:2618 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "Diameter van de supportpijlers (in mm)" -#: src/libslic3r/PrintConfig.cpp:2626 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "Supportpijler - verbindingsmodus" -#: src/libslic3r/PrintConfig.cpp:2627 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "" "Controls the bridge type between two neighboring pillars. Can be zig-zag, " "cross (double zig-zag) or dynamic which will automatically switch between " @@ -9418,23 +10054,23 @@ msgstr "" "kruisend (dubbele zigzag) of dynamisch zijn. Dynamisch houdt in dat wordt " "geschakeld tussen de eerste twee, afhankelijk van de pijlerafstand." -#: src/libslic3r/PrintConfig.cpp:2635 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "Zigzag" -#: src/libslic3r/PrintConfig.cpp:2636 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "Kruisend" -#: src/libslic3r/PrintConfig.cpp:2637 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "Dynamisch" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "Pijlervergrotingsfactor" -#: src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "" "Merging bridges or pillars into another pillars can increase the radius. " "Zero means no increase, one means full increase." @@ -9442,27 +10078,27 @@ msgstr "" "Bruggen of pijlers samenvoegen met andere pijlers kan de radius vergroten. 0 " "betekent geen vergroting, 1 betekent volle vergroting." -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "Supportbasis - diameter" -#: src/libslic3r/PrintConfig.cpp:2662 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "Diameter van de pijlerbasis (in mm)" -#: src/libslic3r/PrintConfig.cpp:2670 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "Supportbasis - hoogte" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "Hoogte van de pijlerbasiskegel" -#: src/libslic3r/PrintConfig.cpp:2679 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "Supportbasis - veilige afstand" -#: src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "" "The minimum distance of the pillar base from the model in mm. Makes sense in " "zero elevation mode where a gap according to this parameter is inserted " @@ -9472,27 +10108,27 @@ msgstr "" "modus zonder verhoging waar een gat volgens deze parameter wordt ingevoegd " "tussen het model en de basisplaat." -#: src/libslic3r/PrintConfig.cpp:2692 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "Kritische hoek" -#: src/libslic3r/PrintConfig.cpp:2694 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "De standaardhoek voor de verbinding van supporttakken en kruisingen." -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "Maximale bruglengte" -#: src/libslic3r/PrintConfig.cpp:2704 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "Maximale bruglengte" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "Maximale pijler-verbindafstand" -#: src/libslic3r/PrintConfig.cpp:2713 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "" "The max distance of two pillars to get linked with each other. A zero value " "will prohibit pillar cascading." @@ -9500,11 +10136,11 @@ msgstr "" "Maximale verbindingsafstand van twee pijlers. Een waarde van 0 schakelt aan " "elkaar verbonden pijlers uit." -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "Objectverhoging" -#: src/libslic3r/PrintConfig.cpp:2723 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "" "How much the supports should lift up the supported object. If \"Pad around " "object\" is enabled, this value is ignored." @@ -9512,39 +10148,39 @@ msgstr "" "Hoe veel het support omhoog moet bewegen op het ondersteunde object. Als " "'Basisplaat rondom object' is ingeschakeld wordt deze waarde genegeerd." -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "Relatieve waarde van de dichtheid van supportpunten." -#: src/libslic3r/PrintConfig.cpp:2740 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "Minimale supportpuntafstand" -#: src/libslic3r/PrintConfig.cpp:2742 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "Minimale afstand tussen supportpunten." -#: src/libslic3r/PrintConfig.cpp:2748 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "Gebruik basisplaat" -#: src/libslic3r/PrintConfig.cpp:2750 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "Voeg een basisplaat toe onder het model met support" -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "Basisplaat - wanddikte" -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "Dikte van de basisplaat en optionele wanden." -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "Basisplaat - wandhoogte" -#: src/libslic3r/PrintConfig.cpp:2766 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "" "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful " "when enabling this feature, as some resins may produce an extreme suction " @@ -9556,19 +10192,19 @@ msgstr "" "sommige resins een sterk zuigeffect in de holte produceren, wat het afpellen " "van de print van het folie lastig kan maken." -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "Basisplaat - expansie" -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "Hoe ver de basisplaat moet uitsteken buiten de geometrie" -#: src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "Maximale combineerafstand" -#: src/libslic3r/PrintConfig.cpp:2792 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "" "Some objects can get along with a few smaller pads instead of a single big " "one. This parameter defines how far the center of two smaller pads should " @@ -9578,11 +10214,11 @@ msgstr "" "van één grote. Deze parameter bepaalt hoe ver de tussenafstand van de " "kleinere basisplaten mogen zijn." -#: src/libslic3r/PrintConfig.cpp:2812 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "Basisplaat - zijhoek" -#: src/libslic3r/PrintConfig.cpp:2814 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "" "The slope of the pad wall relative to the bed plane. 90 degrees means " "straight walls." @@ -9590,27 +10226,27 @@ msgstr "" "Hoek van de basisplaatzijde ten opzichte van het bed. 90 graden betekent een " "rechte zijkant." -#: src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "Basisplaat rondom object" -#: src/libslic3r/PrintConfig.cpp:2825 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "Genereer basisplaat rondom object en schakel objectverhoging uit" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "Overal basisplaat rondom object" -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "Forceer basisplaat overal rondom het object" -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "Basisplaat - gat" -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "" "The gap between the object bottom and the generated pad in zero elevation " "mode." @@ -9618,11 +10254,11 @@ msgstr "" "Het gat tussen de onderkant van het object en de gegenereerde basisplaat in " "de modus zonder verhoging." -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "Basisplaat - verbindingstakafstand" -#: src/libslic3r/PrintConfig.cpp:2850 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "" "Distance between two connector sticks which connect the object and the " "generated pad." @@ -9630,146 +10266,188 @@ msgstr "" "Afstand tussen twee verbindingstakken die het object verbinden aan de " "basisplaat." -#: src/libslic3r/PrintConfig.cpp:2857 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "Basisplaat - verbindingstakbreedte" -#: src/libslic3r/PrintConfig.cpp:2859 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "" "Width of the connector sticks which connect the object and the generated pad." msgstr "" "Breedte van de verbindingstakken die het object en de basisplaat met elkaar " "verbinden." -#: src/libslic3r/PrintConfig.cpp:2866 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "Basisplaat - Verbindingstakinsteek" -#: src/libslic3r/PrintConfig.cpp:2869 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Hoe ver de verbindingstakken in het model steken." -#: src/libslic3r/PrintConfig.cpp:3247 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Enable hollowing" +msgstr "Uithollen toestaan" + +#: src/libslic3r/PrintConfig.cpp:2910 +msgid "Hollow out a model to have an empty interior" +msgstr "Hol een model uit voor een leeg binnenste" + +#: src/libslic3r/PrintConfig.cpp:2915 +msgid "Wall thickness" +msgstr "Wanddikte" + +#: src/libslic3r/PrintConfig.cpp:2917 +msgid "Minimum wall thickness of a hollowed model." +msgstr "Minimale wanddikte van een uitgehold model." + +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Accuracy" +msgstr "Nauwkeurigheid" + +#: src/libslic3r/PrintConfig.cpp:2927 +msgid "" +"Performance vs accuracy of calculation. Lower values may produce unwanted " +"artifacts." +msgstr "" +"Prestatie tegenover nauwkeurigheid van berekenen. Lagere waarde kunnen " +"ongewenste artefacten produceren." + +#: src/libslic3r/PrintConfig.cpp:2937 +msgid "" +"Hollowing is done in two steps: first, an imaginary interior is calculated " +"deeper (offset plus the closing distance) in the object and then it's " +"inflated back to the specified offset. A greater closing distance makes the " +"interior more rounded. At zero, the interior will resemble the exterior the " +"most." +msgstr "" +"Uithollen voltooid in twee stappen: eerst is een denkbeeldig binnenste in " +"het model berekend (wanddikte + sluitafstand). Daarna is het opgeblazen, " +"terug naar de aangegeven wanddikte. Een grotere sluitafstand maakt het " +"binnenste ronder. Bij een waarde van 0 is het binnenste vrijwel gelijk aan " +"de buitenzijde." + +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "Exporteer OBJ" -#: src/libslic3r/PrintConfig.cpp:3248 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "Exporteer de modellen als OBJ-bestand." -#: src/libslic3r/PrintConfig.cpp:3259 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "Exporteer SLA" -#: src/libslic3r/PrintConfig.cpp:3260 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Slice het model en exporteer SLA-printlagen als PNG-bestanden." -#: src/libslic3r/PrintConfig.cpp:3265 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "Exporteer 3MF" -#: src/libslic3r/PrintConfig.cpp:3266 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "Exporteer de modellen als 3MF-bestanden." -#: src/libslic3r/PrintConfig.cpp:3270 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "Exporteer AMF" -#: src/libslic3r/PrintConfig.cpp:3271 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "Exporteer de modellen als AMF-bestanden." -#: src/libslic3r/PrintConfig.cpp:3275 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "Exporteer STL" -#: src/libslic3r/PrintConfig.cpp:3276 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "Exporteer de modellen als STL-bestand." -#: src/libslic3r/PrintConfig.cpp:3281 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "Slice het model en exporteer de bewegingen als gcode-bestand." -#: src/libslic3r/PrintConfig.cpp:3286 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "Slice" -#: src/libslic3r/PrintConfig.cpp:3287 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "" "Slice the model as FFF or SLA based on the printer_technology configuration " "value." msgstr "" -"Slice het model als FDM of SLA, gebaseerd op de 'printer_technology'-" +"Slice het model als FFF of SLA, gebaseerd op de 'printer_technology'-" "configuratiewaarde." -#: src/libslic3r/PrintConfig.cpp:3292 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "Help" -#: src/libslic3r/PrintConfig.cpp:3293 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "Toon deze hulp zien." -#: src/libslic3r/PrintConfig.cpp:3298 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" -msgstr "Help (FDM-opties)" +msgstr "Help (FFF-opties)" -#: src/libslic3r/PrintConfig.cpp:3299 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "Toon de volledige lijst van print- of G-code-configuratie-opties." -#: src/libslic3r/PrintConfig.cpp:3303 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "Help (SLA opties)" -#: src/libslic3r/PrintConfig.cpp:3304 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "Toon de volledige lijst van SLA-printconfiguratie-opties." -#: src/libslic3r/PrintConfig.cpp:3308 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "Output model-info" -#: src/libslic3r/PrintConfig.cpp:3309 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "Schrijf informatie over het model naar de console." -#: src/libslic3r/PrintConfig.cpp:3313 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "Sla configuratiebestand op" -#: src/libslic3r/PrintConfig.cpp:3314 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "Sla configuratie op in aangegeven bestand." -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "XY uitlijnen" -#: src/libslic3r/PrintConfig.cpp:3325 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "Lijn de modellen uit op het gegeven punt." -#: src/libslic3r/PrintConfig.cpp:3330 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "Snijdt model op de ingestelde hoogte." -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "Centreer" -#: src/libslic3r/PrintConfig.cpp:3352 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "Centreer de print op het middelpunt." -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "Niet schikken" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "" "Do not rearrange the given models before merging and keep their original XY " "coordinates." @@ -9777,27 +10455,27 @@ msgstr "" "Herschik de modellen niet voor het samenvoegen en behoudt de originele X- en " "Y-coördinaten." -#: src/libslic3r/PrintConfig.cpp:3360 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "Dupliceer" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "Meerdere kopieën van dit aantal." -#: src/libslic3r/PrintConfig.cpp:3365 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "Dupliceer in raster" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "Meerdere kopieën in raster." -#: src/libslic3r/PrintConfig.cpp:3369 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "Samenvoegen" -#: src/libslic3r/PrintConfig.cpp:3370 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "" "Arrange the supplied models in a plate and merge them in a single model in " "order to perform actions once." @@ -9805,7 +10483,7 @@ msgstr "" "Schik de toegevoegde modellen en combineer ze tot één model om eenmalig " "acties uit te voeren." -#: src/libslic3r/PrintConfig.cpp:3375 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "" "Try to repair any non-manifold meshes (this option is implicitly added " "whenever we need to slice the model to perform the requested action)." @@ -9813,31 +10491,31 @@ msgstr "" "Probeer alle niet-gesloten meshes te repareren (deze optie is impliciet " "toegevoegd om, wanneer dat nodig is, onmogelijke modellen toch te slicen)." -#: src/libslic3r/PrintConfig.cpp:3379 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Rotatiehoek rond de Z-as in graden." -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "Draai over de X-as" -#: src/libslic3r/PrintConfig.cpp:3384 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "Rotatiehoek rond de X-as in graden." -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Draai over de Y-as" -#: src/libslic3r/PrintConfig.cpp:3389 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Rotatiehoek rond de Y-as in graden." -#: src/libslic3r/PrintConfig.cpp:3394 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "Schalingsfactor of percentage." -#: src/libslic3r/PrintConfig.cpp:3399 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "" "Detect unconnected parts in the given model(s) and split them into separate " "objects." @@ -9845,27 +10523,27 @@ msgstr "" "Detecteer niet-verbonden onderdelen in het model en deel ze op in " "verschillende objecten." -#: src/libslic3r/PrintConfig.cpp:3402 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "Verschaal naar passing" -#: src/libslic3r/PrintConfig.cpp:3403 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "Verschaal naar passing in het gegeven volume." -#: src/libslic3r/PrintConfig.cpp:3412 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "Negeer niet-bestaande configuratiebestanden" -#: src/libslic3r/PrintConfig.cpp:3413 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Geef geen fout als een bestand om te laden niet bestaat." -#: src/libslic3r/PrintConfig.cpp:3416 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "Laad configuratiebestand" -#: src/libslic3r/PrintConfig.cpp:3417 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "" "Load configuration from the specified file. It can be used more than once to " "load options from multiple files." @@ -9873,11 +10551,11 @@ msgstr "" "Laad configuratie uit een specifiek bestand. Dit kan meerdere keren gebruikt " "worden om instellingen uit meerdere bestanden te laden." -#: src/libslic3r/PrintConfig.cpp:3420 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "Outputbestand" -#: src/libslic3r/PrintConfig.cpp:3421 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "" "The file where the output will be written (if not specified, it will be " "based on the input file)." @@ -9885,11 +10563,11 @@ msgstr "" "Het bestand waaroverheen wordt geschreven (als dit niet aangegeven is, wort " "dit gebaseerd op het inputbestand)." -#: src/libslic3r/PrintConfig.cpp:3431 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "Bestandslocatie voor de data" -#: src/libslic3r/PrintConfig.cpp:3432 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "" "Load and store settings at the given directory. This is useful for " "maintaining different profiles or including configurations from a network " @@ -9899,23 +10577,25 @@ msgstr "" "verschillende profielen of het opnemen van configuraties van een " "netwerkopslag." -#: src/libslic3r/PrintConfig.cpp:3435 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "Logboekniveau" -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3509 msgid "" -"Messages with severity lower or eqal to the loglevel will be printed out. 0:" -"trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" +"trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." msgstr "" -"Berichten die lager of gelijk zijn aan het logboekniveau worden geprint. 0:" -"traceer, 1:foutopsporing, 2:info, 3:waarschuwing, 4:fout, 5:fatale fout" +"Stel log-gevoeligheid in. 0: fataal, 1: fout, 2: waarschuwing, 3: info, 4: " +"debug, 5: traceer\n" +"Voorbeeld: loglevel = 2 geeft fataal-, fout- en waarschuwingslevelberichten." -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "Render met software-renderer" -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "" "Render with a software renderer. The bundled MESA software renderer is " "loaded instead of the default OpenGL driver." @@ -9923,38 +10603,38 @@ msgstr "" "Render met software-renderer. De meegeleverde MESA-software-renderer is " "geladen in plaats van het standaard OpenGL stuurprogramma." -#: src/libslic3r/PrintObject.cpp:106 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "Mesh aan het verwerken" -#: src/libslic3r/PrintObject.cpp:150 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" msgstr "Perimeters genereren" -#: src/libslic3r/PrintObject.cpp:260 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "Vulling voorbereiden" -#: src/libslic3r/PrintObject.cpp:400 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "Support genereren" -#: src/libslic3r/GCode/PreviewData.cpp:362 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "Hoogte (mm)" -#: src/libslic3r/GCode/PreviewData.cpp:364 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "Breedte (mm)" -#: src/libslic3r/GCode/PreviewData.cpp:366 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "Snelheid (mm/s)" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" msgstr "Ventilatorsnelheid (%)" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "Volumetrisch debiet (mm³/s)" diff --git a/resources/localization/pl/PrusaSlicer.mo b/resources/localization/pl/PrusaSlicer.mo index 89565631ed11c642c1db4f26a4ca3edf449d3eee..23a896f0b41832f5c07ee477bd91dd9c24e8909d 100644 GIT binary patch delta 62534 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 delta 44717 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 LOvPjFsQBQY{YHS0 diff --git a/resources/localization/pl/PrusaSlicer_pl.po b/resources/localization/pl/PrusaSlicer_pl.po index 32b28989dd..dff8d72813 100644 --- a/resources/localization/pl/PrusaSlicer_pl.po +++ b/resources/localization/pl/PrusaSlicer_pl.po @@ -7,75 +7,75 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || n%10 == 1 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 12 && n%100 <= 14)) ? 2 : 3);\n" "X-Generator: PhraseApp (phraseapp.com)\n" -#: src/slic3r/GUI/MainFrame.cpp:61 +#: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Pamiętaj, aby sprawdzać aktualizacje na http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:727 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid " was successfully sliced." msgstr " został pomyślnie pocięty." -#: src/libslic3r/PrintConfig.cpp:179 src/libslic3r/PrintConfig.cpp:745 -#: src/libslic3r/PrintConfig.cpp:1154 src/libslic3r/PrintConfig.cpp:1217 -#: src/libslic3r/PrintConfig.cpp:1462 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2502 +#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 +#: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2758 msgid "%" msgstr "%" -#: src/libslic3r/GCode/PreviewData.cpp:504 +#: src/slic3r/GUI/GLCanvas3D.cpp:968 #, possible-c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:2958 +#: src/slic3r/GUI/Tab.cpp:3110 msgid "%1% Preset" msgstr "%1% Zestaw ustawień" -#: src/slic3r/GUI/Plater.cpp:3831 +#: src/slic3r/GUI/Plater.cpp:4413 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "Drukarka %1% była aktywna podczas Cofnięcia / Powtórzenia zrzutu. Zmiana drukarki na %1% wymaga załadowania zestawów ustawień %1%." -#: src/libslic3r/Print.cpp:1282 +#: src/libslic3r/Print.cpp:1370 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm to zbyt mała wartość, żeby była możliwa do wydrukowania na wysokości warstwy %3% mm" -#: src/slic3r/GUI/PresetHints.cpp:228 +#: src/slic3r/GUI/PresetHints.cpp:229 #, possible-c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s z prędkością filamentu %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:974 +#: src/slic3r/GUI/Plater.cpp:1149 #, possible-c-format msgid "%d (%d shells)" msgstr "%d (%d obrysów)" -#: src/slic3r/GUI/Plater.cpp:982 +#: src/slic3r/GUI/Plater.cpp:1157 #, possible-c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d nieprawidłowych powierzchni, %d naprawionych krawędzi, %d powierzchni usunięto, %d powierzchni dodano, %d powierzchni odwrócono, %d odwróconych krawędzi" -#: src/slic3r/GUI/PresetHints.cpp:268 +#: src/slic3r/GUI/PresetHints.cpp:269 #, possible-c-format msgid "%d lines: %.2f mm" msgstr "%d linii: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:894 +#: src/slic3r/GUI/MainFrame.cpp:1029 #, possible-c-format msgid "%d presets successfully imported." msgstr "pomyślnie zaimportowano %d zestawów ustawień." -#: src/slic3r/GUI/MainFrame.cpp:550 +#: src/slic3r/GUI/MainFrame.cpp:694 #, possible-c-format msgid "%s &Website" msgstr "Strona &WWW %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:113 +#: src/slic3r/GUI/UpdateDialogs.cpp:211 #, possible-c-format msgid "%s configuration is incompatible" msgstr "Konfiguracja niekompatybilna: %s" -#: src/slic3r/GUI/Field.cpp:136 +#: src/slic3r/GUI/Field.cpp:170 #, possible-c-format msgid "%s doesn't support percentage" msgstr "%s nie może być wartością procentową" @@ -85,7 +85,7 @@ msgstr "%s nie może być wartością procentową" msgid "%s error" msgstr "błąd %s" -#: src/slic3r/GUI/ConfigWizard.cpp:336 +#: src/slic3r/GUI/ConfigWizard.cpp:481 #, possible-c-format msgid "%s Family" msgstr "Rodzina %s" @@ -95,294 +95,341 @@ msgstr "Rodzina %s" msgid "%s has encountered an error" msgstr "%s napotkał błąd" -#: src/slic3r/GUI/GUI_App.cpp:132 +#: src/slic3r/GUI/GUI_App.cpp:138 #, possible-c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." msgstr "Błąd %s . Prawdopodobnie wystąpił przez brak pamięci. Jeśli masz pewność, że ilość RAMu jest wystarczająca, to może to być bug, a którego zgłoszenie będziemy wdzięczni.\n\nAplikacja zostanie zamknięta." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:155 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 #, possible-c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "Błąd %s . Prawdopodobnie wystąpił przez brak pamięci. Jeśli masz pewność, że ilość RAMu jest wystarczająca, to może to być bug, a którego zgłoszenie będziemy wdzięczni." -#: src/slic3r/GUI/UpdateDialogs.cpp:112 +#: src/slic3r/GUI/UpdateDialogs.cpp:308 +#, possible-c-format +msgid "%s has no configuration updates aviable." +msgstr "Brak dostępnych aktualizacji konfiguracji dla %s" + +#: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 #, possible-c-format msgid "%s incompatibility" msgstr "niekompatybilność: %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:172 +#: src/slic3r/GUI/UpdateDialogs.cpp:270 #, possible-c-format msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." msgstr "%s używa teraz zaktualizowanej struktury konfiguracji.\n\nZostały wprowadzone tzw. \"Ustawienia systemowe\", w których zachowane są domyślne ustawienia dla wielu drukarek. Te ustawienia nie mogą być modyfikowane, ale użytkownicy mogą tworzyć własne profile, bazujące na Ustawieniach systemowych.\nZestaw ustawień może dziedziczyć wartości ustawień z profilu źródłowego lub nadpisać je własnymi.\n\nKontynuuj do %s , które pozwoli ustawić nowe Zestawy i wybrać automatyczną aktualizację wbudowanych Zestawów." -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 #, possible-c-format msgid "%s View Mode" msgstr "Tryb %s" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#, possible-c-format +msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" +msgstr "%s rozpocznie aktualizację. W innym przypadku nie będzie możliwe uruchomienie.\n\nWeź pod uwagę, że najpierw zostanie wykonany całkowity zrzut konfiguracji. Może być wczytany w dowolnym momencie, jeśli okazałoby się, że nowa wersja powoduje problemy.\n\nZaktualizowane zestawy ustawień:" + +#: src/slic3r/GUI/MainFrame.cpp:707 #, possible-c-format msgid "&About %s" msgstr "&O %s" -#: src/slic3r/GUI/GUI_App.cpp:769 +#: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" msgstr "&Konfiguracja" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" msgstr "Zrzuty &Konfiguracji" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" msgstr "&Kopiuj" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" -msgstr "&Usuń wybrane" +msgstr "&Usuń zaznaczone" -#: src/slic3r/GUI/MainFrame.cpp:575 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&Edit" msgstr "&Edytuj" -#: src/slic3r/GUI/MainFrame.cpp:377 +#: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "&Eksport" -#: src/slic3r/GUI/MainFrame.cpp:480 src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 msgid "&Filament Settings Tab" msgstr "Ustawienia &Filamentu" -#: src/slic3r/GUI/MainFrame.cpp:574 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&File" msgstr "&Plik" -#: src/slic3r/GUI/ConfigWizard.cpp:1094 +#: src/slic3r/GUI/ConfigWizard.cpp:1984 msgid "&Finish" msgstr "&Zakończ" -#: src/slic3r/GUI/MainFrame.cpp:580 +#: src/slic3r/GUI/MainFrame.cpp:729 msgid "&Help" msgstr "Pomo&c" -#: src/slic3r/GUI/MainFrame.cpp:359 +#: src/slic3r/GUI/MainFrame.cpp:474 msgid "&Import" msgstr "&Import" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/GUI_App.cpp:822 +msgid "&Language" +msgstr "Język ap&likacji" + +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "&Nowy Projekt" -#: src/slic3r/GUI/ConfigWizard.cpp:1093 +#: src/slic3r/GUI/ConfigWizard.cpp:1983 msgid "&Next >" msgstr "&Dalej>" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "&Otwórz Projekt" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "Wkle&j" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" msgstr "Podgląd Stoł&u" -#: src/slic3r/GUI/GUI_App.cpp:665 +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "&Preferencje" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "&Wyjście" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "Powtó&rz" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "&Naprawa pliku STL" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "&Zapisz projekt" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "&Zaznacz wszystko" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "Co&fnij" -#: src/slic3r/GUI/MainFrame.cpp:577 +#: src/slic3r/GUI/MainFrame.cpp:726 msgid "&View" msgstr "&Widok" -#: src/slic3r/GUI/MainFrame.cpp:576 +#: src/slic3r/GUI/MainFrame.cpp:725 msgid "&Window" msgstr "&Okno" -#: src/slic3r/GUI/ConfigWizard.cpp:574 src/slic3r/GUI/ConfigWizard.cpp:602 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(Wszystko)" -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 msgid "(Re)slice" msgstr "(Ponowne) Cięcie" -#: src/slic3r/GUI/MainFrame.cpp:455 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(Pono&wne) Cięcie" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 msgid "(Unknown)" msgstr "(Nieznane)" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid ") not found." msgstr ") nie znaleziono." -#: src/libslic3r/PrintConfig.cpp:1857 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (rozpuszczalne)" -#: src/libslic3r/PrintConfig.cpp:1858 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0.2 (odłączane)" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:3074 +#: src/slic3r/GUI/Plater.cpp:4108 msgid "3D editor view" -msgstr "Podgląd edycji 3D" +msgstr "Edytowanie 3D" -#: src/libslic3r/PrintConfig.cpp:804 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "Plaster miodu 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:291 msgid "3Dconnexion settings" msgstr "Ustawienia 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:3590 +#: src/slic3r/GUI/Plater.cpp:5068 #, possible-c-format msgid "3MF file exported to %s" msgstr "Plik 3MF wyeksportowany do %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1092 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 msgid "< &Back" msgstr "<&Wstecz" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:277 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Wyrażenie logiczne (Boole'owskie) używające wartości konfiguracji aktywnego profilu druku. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny profil jest kompatybilny z aktywnym profilem druku." -#: src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:262 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Wyrażenie logiczne (Boole'owskie) używające wartości konfiguracji aktywnego profilu drukarki. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny profil jest kompatybilny z drukarką." -#: src/slic3r/GUI/ConfigWizard.cpp:609 +#: src/slic3r/GUI/ConfigWizard.cpp:1035 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Generalną zasadą jest 160 do 230 °C dla PLA i 215 do 250 °C dla ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:623 +#: src/slic3r/GUI/ConfigWizard.cpp:1049 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Generalną zasadą jest 60 °C dla PLA i 110 °C dla ABS. Ustaw zero jeśli nie masz podgrzewanego stołu." -#: src/slic3r/GUI/GLCanvas3D.cpp:721 +#: src/slic3r/GUI/GLCanvas3D.cpp:691 msgid "A toolpath outside the print area was detected" msgstr "Wykryto ścieżkę narzędzia poza obszarem roboczym" -#: src/slic3r/GUI/AboutDialog.cpp:35 +#: src/slic3r/GUI/AboutDialog.cpp:199 #, possible-c-format msgid "About %s" msgstr "O %s" -#: src/libslic3r/GCode/PreviewData.cpp:499 +#: src/slic3r/GUI/GLCanvas3D.cpp:964 #, possible-c-format msgid "above %.2f mm" msgstr "powyżej %.2f mm" -#: src/libslic3r/PrintConfig.cpp:1499 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Powyżej Z" -#: src/slic3r/GUI/Tab.cpp:1103 +#: src/slic3r/GUI/Tab.cpp:1166 msgid "Acceleration control (advanced)" msgstr "Ustawienia przyspieszeń (zaawansowane)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73 +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Accuracy" +msgstr "Dokładność" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 msgid "Activate" msgstr "Aktywacja" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43 msgid "Active" msgstr "Aktywny" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/DoubleSlider.cpp:1103 +msgid "active" +msgstr "aktywny" + +#: src/slic3r/GUI/GLCanvas3D.cpp:272 msgid "Adaptive" msgstr "Adaptacyjny" -#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237 +#: src/slic3r/GUI/Tab.cpp:243 msgid "Add a new printer" msgstr "Dodaj nową drukarkę" -#: src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Add a pad underneath the supported model" msgstr "Dodaj podkładkę pod podporami modelu" -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Dodaj osłonę (pojedynczą linię) wokół podpory bazowej. Sprawi to, że podpory będą stabilniejsze, ale też trudniejsze do usunięcia." -#: src/slic3r/GUI/wxExtensions.cpp:3441 +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "Add another code - Ctrl + Left click" +msgstr "Dodaj kolejny kod - Ctrl + kliknij lewym przyciskiem" + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "Add another code - Right click" +msgstr "Dodaj kolejny kod - kliknij prawym przyciskiem" + +#: src/slic3r/GUI/DoubleSlider.cpp:1449 msgid "Add color change" msgstr "Dodaj zmianę koloru" -#: src/slic3r/GUI/wxExtensions.cpp:3435 +#: src/slic3r/GUI/DoubleSlider.cpp:1148 msgid "Add color change (%1%) for:" msgstr "Dodaj zmianę koloru (%1%) dla:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/DoubleSlider.cpp:959 +msgid "Add color change - Left click" +msgstr "Dodaj zmianę koloru - kliknij lewym przyciskiem" + +#: src/slic3r/GUI/DoubleSlider.cpp:957 +msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" +msgstr "Dodaj zmianę koloru - kliknij lewym przyciskiem dla predefiniowanego koloru lub wciśnij Shift + lewy przycisk dla wyboru własnego koloru." + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 msgid "Add color change marker for current layer" msgstr "Dodaj punkt zmiany filamentu na obecnej warstwie" -#: src/slic3r/GUI/wxExtensions.cpp:3447 +#: src/slic3r/GUI/DoubleSlider.cpp:1462 msgid "Add custom G-code" msgstr "Dodaj własny G-code" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:245 msgid "Add detail" -msgstr "Dodaj szczegół" +msgstr "Wyższa szczegółowość" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +msgid "Add drainage hole" +msgstr "Dodaj otwór odpływowy" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 +msgid "Add extruder change - Left click" +msgstr "Dodaj zmianę ekstrudera - kliknij lewym przyciskiem" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 msgid "Add extruder to sequence" msgstr "Dodaj ekstruder do sekwencji" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1662 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 msgid "Add Generic Subobject" msgstr "Dodaj Standardowy Model Podrzędny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2584 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2613 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2631 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 msgid "Add Height Range" msgstr "Dodaj zakres wysokości" -#: src/slic3r/GUI/GLCanvas3D.cpp:3463 +#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 +#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 msgid "Add instance" msgstr "Dodaj kopię" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 msgid "Add Instance of the selected object" msgstr "Dodaj kopię wybranego modelu" @@ -390,112 +437,113 @@ msgstr "Dodaj kopię wybranego modelu" msgid "Add layer range" msgstr "Dodaj zakres warstw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1950 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 msgid "Add Layers" msgstr "Dodaj Warstwy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1067 +#: src/slic3r/GUI/GUI_ObjectList.cpp:52 msgid "Add modifier" msgstr "Dodaj modyfikator" -#: src/libslic3r/PrintConfig.cpp:447 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Dodaj więcej obrysów, aby uniknąć przerw przy pochyłych ścianach. Slic3r będzie dodawał tyle obrysów, ile jest potrzebne aby podeprzeć co najmniej 70% grubości ściany kolejnej warstwy." -#: src/slic3r/GUI/Plater.cpp:3516 +#: src/slic3r/GUI/Plater.cpp:3949 msgid "Add one more instance of the selected object" msgstr "Dodaj kolejną kopię wybranego modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1066 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1082 +#: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "Dodaj część" -#: src/slic3r/GUI/wxExtensions.cpp:3444 +#: src/slic3r/GUI/DoubleSlider.cpp:1459 msgid "Add pause print" msgstr "Dodaj pauzę podczas druku" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 msgid "Add point" msgstr "Dodaj punkt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Add point to selection" msgstr "Dodaj punkt do zaznaczenia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 msgid "Add settings" msgstr "Dodaj ustawienia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 msgid "Add Settings Bundle for Height range" msgstr "Dodaj Paczkę Ustawień dla Zakresu Wysokości" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1191 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Object" msgstr "Dodaj Paczkę Ustawień dla Modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1190 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 msgid "Add Settings Bundle for Sub-object" msgstr "Dodaj Paczkę Ustawień dla Modelu Podrzędnego" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 msgid "Add Settings for Layers" msgstr "Dodaj Ustawienia dla Warstw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1128 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Object" msgstr "Dodaj Ustawienia dla Modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1127 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 msgid "Add Settings for Sub-object" msgstr "Dodaj Ustawienia dla Modelu Podrzędnego" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1676 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1922 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 msgid "Add Shape" msgstr "Dodaj kształt" -#: src/libslic3r/PrintConfig.cpp:382 +#: src/libslic3r/PrintConfig.cpp:409 msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)." msgstr "Dodaj zwarte wypełnienie przy pochyłych powierzchniach aby zagwarantować odpowiednią grubość warstwy (suma górnych i dolnych zwartych warstw)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1069 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:54 msgid "Add support blocker" msgstr "Dodaj blokadę podpór" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:53 msgid "Add support enforcer" msgstr "Dodaj wymuszenie podpór" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:531 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 msgid "Add support point" msgstr "Dodaj punkt podpory" -#: src/slic3r/GUI/GLCanvas3D.cpp:3392 +#: src/slic3r/GUI/GLCanvas3D.cpp:4516 msgid "Add..." msgstr "Dodaj..." -#: src/slic3r/GUI/PresetBundle.cpp:1683 +#: src/slic3r/GUI/PresetBundle.cpp:1697 msgid "Add/Remove filaments" msgstr "Dodaj/usuń filamenty" -#: src/slic3r/GUI/Preset.cpp:1102 +#: src/slic3r/GUI/Preset.cpp:1151 msgid "Add/Remove materials" msgstr "Dodaj/usuń materiały" -#: src/slic3r/GUI/Tab.cpp:920 +#: src/slic3r/GUI/Preset.cpp:1153 +msgid "Add/Remove printers" +msgstr "Dodaj/usuń drukarki" + +#: src/slic3r/GUI/Tab.cpp:972 msgid "Additional information:" msgstr "Dodatkowe informacje:" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:59 msgid "Additional Settings" msgstr "Ustawienia Dodatkowe" -#: src/slic3r/GUI/ConfigWizard.cpp:431 +#: src/slic3r/GUI/ConfigWizard.cpp:790 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Dodatkowa kopia zrzutu całej konfiguracji jest tworzona przed zainstalowaniem aktualizacji." @@ -503,54 +551,55 @@ msgstr "Dodatkowa kopia zrzutu całej konfiguracji jest tworzona przed zainstalo msgid "Address" msgstr "Adres" -#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76 -#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026 -#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139 -#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515 -#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435 -#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 +#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 +#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 +#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 +#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 msgid "Advanced" -msgstr "Zaawansowane" +msgstr "Zaawansowany" -#: src/slic3r/GUI/ConfigWizard.cpp:786 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Advanced mode" msgstr "Tryb Zaawansowany" -#: src/slic3r/GUI/GUI_App.cpp:675 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "Widok Zaawansowany" -#: src/slic3r/GUI/FirmwareDialog.cpp:803 +#: src/slic3r/GUI/FirmwareDialog.cpp:841 msgid "Advanced: Output log" msgstr "Zaawansowane: log wyjściowy" -#: src/libslic3r/PrintConfig.cpp:636 +#: src/libslic3r/PrintConfig.cpp:668 msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Po zmianie narzędzia (filamentu), dokładna pozycja końcówki nowo załadowanego filamentu nie jest znana i najprawdopodobniej ciśnienie w ekstruderze nie jest jeszcze ustabilizowane. Przed czyszczeniem dyszy na wypełnieniu lub zbędnym modelu, Slic3r spowoduje wytłoczenie tej ilości filamentu na wieży czyszczącej, aby wydrukować dobre wypełnienie lub zbędny model." -#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031 +#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-code wykonywany po zmianie warstwy" -#: src/libslic3r/PrintConfig.cpp:3009 +#: src/libslic3r/PrintConfig.cpp:3383 msgid "Align the model to the given point." msgstr "Wyrównaj model z danym punktem." -#: src/libslic3r/PrintConfig.cpp:3008 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Align XY" msgstr "Wyrównaj XY" -#: src/libslic3r/PrintConfig.cpp:1561 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "Wyrównany" -#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3158 msgid "All" msgstr "Wszystko" -#: src/libslic3r/Print.cpp:1135 +#: src/libslic3r/Print.cpp:1215 msgid "All objects are outside of the print volume." msgstr "Wszystkie modele znajdują się poza obszarem roboczym." @@ -558,232 +607,246 @@ msgstr "Wszystkie modele znajdują się poza obszarem roboczym." msgid "All objects will be removed, continue ?" msgstr "Wszystkie modele zostaną usunięte. Kontynuować?" -#: src/slic3r/GUI/ConfigWizard.cpp:188 +#: src/slic3r/GUI/Plater.cpp:4684 +msgid "All objects will be removed, continue?" +msgstr "Wszystkie modele zostaną usunięte. Kontynuować?" + +#: src/slic3r/GUI/ConfigWizard.cpp:289 msgid "All standard" msgstr "Wszystkie podstawowe" -#: src/libslic3r/Zipper.cpp:65 +#: src/libslic3r/Zipper.cpp:62 msgid "allocation failed" msgstr "niepowodzenie alokacji" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Along X axis" msgstr "Wzdłuż osi X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Along Y axis" msgstr "Wzdłuż osi Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Along Z axis" msgstr "Wzdłuż osi Z" -#: src/slic3r/GUI/ConfigWizard.cpp:122 +#: src/slic3r/GUI/ConfigWizard.cpp:222 msgid "Alternate nozzles:" msgstr "Inne rozmiary dysz:" -#: src/slic3r/GUI/Plater.cpp:3561 +#: src/slic3r/GUI/Plater.cpp:5022 #, possible-c-format msgid "AMF file exported to %s" msgstr "Plik AMF wyeksportowany do %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:725 +#: src/slic3r/GUI/GLCanvas3D.cpp:695 msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" msgstr "Wykryto model poza obszarem roboczym\nUsuń problem, aby kontynuować cięcie" -#: src/slic3r/GUI/GLCanvas3D.cpp:720 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "An object outside the print area was detected" msgstr "Wykryto model poza obszarem roboczym" -#: src/slic3r/GUI/Tab.cpp:2781 +#: src/slic3r/GUI/Tab.cpp:2927 msgid "and it has the following unsaved changes:" msgstr "i ma następujące niezapisane zmiany:" -#: src/slic3r/GUI/Plater.cpp:2461 +#: src/slic3r/GUI/Plater.cpp:3154 msgid "Another export job is currently running." msgstr "W tej chwili trwa inny proces eksportu." -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "Jakakolwiek strzałka" + +#: src/slic3r/GUI/Tab.cpp:967 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Każda modyfikacja powinna zostać zapisana jako nowy zestaw ustawień dziedziczony z obecnego." -#: src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" msgstr "Klucz API / Hasło" -#: src/slic3r/GUI/GUI_App.cpp:671 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Preferencje aplikacji" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 msgid "Apply changes" msgstr "Zastosuj zmiany" -#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "szacowane sekundy" -#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "Spirala Archimedesa" -#: src/libslic3r/Zipper.cpp:91 +#: src/libslic3r/Zipper.cpp:88 msgid "archive is too large" msgstr "archiwum jest zbyt duże" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:2955 +#: src/slic3r/GUI/Tab.cpp:3107 msgid "Are you sure you want to %1% the selected preset?" msgstr "Czy na pewno chcesz %1% ten zestaw ustawień?" -#: src/slic3r/GUI/FirmwareDialog.cpp:862 +#: src/slic3r/GUI/FirmwareDialog.cpp:902 msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" msgstr "Czy na pewno chcesz przerwać flashowanie firmware?\nMoże to spowodować nieprzewidziane problemy z drukarką!" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "Are you sure you want to continue?" +msgstr "Czy na pewno chcesz kontynuować?" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 msgid "Are you sure you want to do it?" msgstr "Czy na pewno chcesz to zrobić?" -#: src/libslic3r/PrintConfig.cpp:2258 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "Wypełnienie obszaru" -#: src/slic3r/GUI/Plater.cpp:609 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Around object" msgstr "Wokół modelu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/Plater.cpp:2738 msgid "Arrange" msgstr "Rozmieść" -#: src/slic3r/GUI/GLCanvas3D.cpp:3486 +#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Arrange selection" msgstr "Rozmieść zaznaczone" -#: src/libslic3r/PrintConfig.cpp:3054 +#: src/libslic3r/PrintConfig.cpp:3428 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Ułóż modele na stole i połącz je w jedną grupę, aby zastosować ustawienia do wszystkich na raz." -#: src/slic3r/GUI/Plater.cpp:2106 +#: src/slic3r/GUI/Plater.cpp:2797 msgid "Arranging" msgstr "Układanie" -#: src/slic3r/GUI/Plater.cpp:2718 +#: src/slic3r/GUI/Plater.cpp:2825 msgid "Arranging canceled." msgstr "Układanie anulowane." -#: src/slic3r/GUI/Plater.cpp:2144 +#: src/slic3r/GUI/Plater.cpp:2826 msgid "Arranging done." msgstr "Układanie zakończone." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Arrow Down" msgstr "Strzałka w dół" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Arrow Left" msgstr "Strzałka w lewo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Arrow Right" msgstr "Strzałka w prawo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Arrow Up" msgstr "Strzałka w górę" -#: src/slic3r/GUI/GUI_App.cpp:303 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Jako obejście, możesz uruchomić PrusaSlicer z grafiką 3D renderowaną przez oprogramowanie, dodając parametr --sw_renderer do prusa-slicer.exe." -#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743 -#: src/slic3r/GUI/Tab.cpp:2798 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 +#: src/slic3r/GUI/Tab.cpp:2944 msgid "Attention!" msgstr "Uwaga!" -#: src/libslic3r/PrintConfig.cpp:1785 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "Automatyczne generowanie podpór" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "Rozmieść modele automatycznie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 msgid "Auto-generate points" msgstr "Generuj punkty automatycznie" -#: src/slic3r/GUI/Plater.cpp:979 +#: src/slic3r/GUI/Plater.cpp:1154 #, possible-c-format msgid "Auto-repaired (%d errors)" msgstr "Naprawiono automatycznie (%d błędów)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:337 #, possible-c-format msgid "Auto-repaired (%d errors):" msgstr "Naprawiono automatycznie (%d błędów):" -#: src/slic3r/GUI/FirmwareDialog.cpp:771 +#: src/slic3r/GUI/FirmwareDialog.cpp:809 msgid "Autodetected" msgstr "Wykryto automatycznie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1338 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 msgid "Autogenerate support points" msgstr "Automatycznie generuj punkty podpór" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 msgid "Autogeneration will erase all manually edited points." msgstr "Generowanie automatyczne usunie wszystkie ręcznie ustawione punkty." -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3617 msgid "Automatic generation" msgstr "Generowanie automatyczne" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Automatic updates" msgstr "Automatyczne aktualizacje" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "Automatyczna naprawa pliku STL" -#: src/slic3r/GUI/Tab.cpp:1110 +#: src/slic3r/GUI/Tab.cpp:1173 msgid "Autospeed (advanced)" msgstr "Automatyczne dostosowanie prędkości (zaawansowane)" -#: src/libslic3r/PrintConfig.cpp:111 +#: src/libslic3r/PrintConfig.cpp:126 msgid "Avoid crossing perimeters" msgstr "Unikaj ruchów nad obrysami" -#: src/slic3r/GUI/Tab.cpp:3081 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "BACK ARROW" msgstr "STRZAŁKA W TYŁ" -#: src/slic3r/GUI/Tab.cpp:3113 +#: src/slic3r/GUI/Tab.cpp:3274 msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." msgstr "STRZAŁKA W TYŁ oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy opcji.\nKliknij aby zresetować wszystkie ustawienia w obecnej grupie opcji do tych z ostatnio zapisanego zestawu ustawień." -#: src/slic3r/GUI/Tab.cpp:3127 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." msgstr "STRZAŁKA W TYŁ oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień.\nKliknij aby zresetować wszystkie ustawienia do tych z ostatnio zapisanego zestawu ustawień." -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Przetwarzanie w tle" -#: src/slic3r/GUI/GUI_ObjectList.cpp:242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "backwards edges" msgstr "odwrócone krawędzie" -#: src/slic3r/GUI/MainFrame.cpp:152 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "bazuje na projekcie Slic3r" -#: src/slic3r/GUI/Tab.cpp:1484 +#: src/slic3r/GUI/Tab.cpp:1441 msgid "Bed" msgstr "Stół" @@ -795,31 +858,31 @@ msgstr "Własny model stołu" msgid "Bed custom texture" msgstr "Własna tekstura stołu" -#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape" msgstr "Kształt stołu" -#: src/libslic3r/PrintConfig.cpp:50 +#: src/libslic3r/PrintConfig.cpp:51 msgid "Bed shape" msgstr "Kształt stołu" -#: src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/ConfigWizard.cpp:930 msgid "Bed Shape and Size" msgstr "Kształt i rozmiar stołu roboczego" -#: src/libslic3r/PrintConfig.cpp:122 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Bed temperature" msgstr "Temperatura stołu" -#: src/libslic3r/PrintConfig.cpp:120 +#: src/libslic3r/PrintConfig.cpp:135 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura stołu dla warstw powyżej pierwszej. Ustaw 0 aby wyłączyć kontrolowanie temperatury w pliku wyjściowym." -#: src/slic3r/GUI/ConfigWizard.cpp:626 +#: src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "Bed Temperature:" msgstr "Temperatura stołu:" -#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128 +#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 msgid "Before layer change G-code" msgstr "G-code wykonywany przed zmianą warstwy" @@ -827,98 +890,110 @@ msgstr "G-code wykonywany przed zmianą warstwy" msgid "Before roll back" msgstr "Przez zmianą" -#: src/slic3r/GUI/Plater.cpp:608 +#: src/slic3r/GUI/Plater.cpp:637 msgid "Below object" msgstr "Pod modelem" -#: src/libslic3r/PrintConfig.cpp:1508 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "Poniżej Z" -#: src/libslic3r/PrintConfig.cpp:139 +#: src/libslic3r/PrintConfig.cpp:154 msgid "Between objects G-code" msgstr "G-code wykonywany przy przejściach pomiędzy modelami" -#: src/slic3r/GUI/Tab.cpp:1979 +#: src/slic3r/GUI/Tab.cpp:2004 msgid "Between objects G-code (for sequential printing)" msgstr "G-code wykonywany przy przejściach pomiędzy modelami (druk sekwencyjny)" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 msgid "Bottle volume" msgstr "Objętość butelki" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 msgid "Bottle weight" msgstr "Waga butelki" #. TRN To be shown in the main menu View->Bottom -#: src/slic3r/GUI/MainFrame.cpp:524 +#. TRN To be shown in Print Settings "Bottom solid layers" +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 +#: src/libslic3r/PrintConfig.cpp:173 msgid "Bottom" msgstr "Dolne" -#: src/libslic3r/PrintConfig.cpp:409 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "Wzór wypełnienia dolnej warstwy" -#: src/libslic3r/PrintConfig.cpp:152 +#: src/slic3r/GUI/PresetHints.cpp:338 +msgid "Bottom is open." +msgstr "Dół jest otwarty." + +#: src/slic3r/GUI/PresetHints.cpp:332 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "Dolna powłoka ma %1% mm grubości dla warstwy o wysokości %2% mm." + +#: src/libslic3r/PrintConfig.cpp:167 msgid "Bottom solid layers" msgstr "Zwarte warstwy dolne" -#: src/slic3r/GUI/MainFrame.cpp:524 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" msgstr "Widok od dołu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1087 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1090 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 msgid "Box" msgstr "Sześcian" -#: src/libslic3r/PrintConfig.cpp:157 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bridge" msgstr "Most" -#: src/libslic3r/PrintConfig.cpp:186 +#: src/libslic3r/PrintConfig.cpp:212 msgid "Bridge flow ratio" msgstr "Współczynnik przepływu przy mostach" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Wypełnienie mostu" -#: src/libslic3r/PrintConfig.cpp:198 +#: src/libslic3r/PrintConfig.cpp:224 msgid "Bridges" msgstr "Mosty" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:203 msgid "Bridges fan speed" msgstr "Prędkość wentylatora przy mostach" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:192 msgid "Bridging angle" msgstr "Kąt linii mostów" -#: src/libslic3r/PrintConfig.cpp:168 +#: src/libslic3r/PrintConfig.cpp:194 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Nadpisanie kąta linii mostów. Jeśli zostanie 0 to kąt zostanie obliczony automatycznie. W innym przypadku ustawiony kąt będzie dotyczył wszystkich mostów. Ustaw 180° dla kąta zerowego." -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "Mosty objętościowe" -#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056 +#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 msgid "Brim" msgstr "Brim (obramowanie)" -#: src/libslic3r/PrintConfig.cpp:208 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Brim width" msgstr "Szerokość brim" -#: src/slic3r/GUI/Tab.cpp:1681 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 +#: src/slic3r/GUI/Tab.cpp:1719 msgid "Browse" msgstr "Przeglądaj" -#: src/libslic3r/Zipper.cpp:85 +#: src/libslic3r/Zipper.cpp:82 msgid "buffer too small" msgstr "niewystarczający bufor" @@ -926,461 +1001,514 @@ msgstr "niewystarczający bufor" msgid "Buttons And Text Colors Description" msgstr "Opis Przycisków i Kolorów Tekstu" -#: src/slic3r/GUI/PresetHints.cpp:220 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "maksimum zależny od profilu wydruku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:115 +msgid "Camera" +msgstr "Widok" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 msgid "Camera view" msgstr "Widok kamery" -#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37 -#: src/slic3r/GUI/ProgressStatusBar.cpp:28 +#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Anuluj" -#: src/slic3r/GUI/PrintHostDialogs.cpp:156 +#: src/slic3r/GUI/PrintHostDialogs.cpp:157 msgid "Cancel selected" msgstr "Anuluj wybrane" -#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Anulowano" -#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231 +#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Anulowanie" -#: src/slic3r/GUI/FirmwareDialog.cpp:866 +#: src/slic3r/GUI/FirmwareDialog.cpp:906 msgid "Cancelling..." msgstr "Anulowanie..." -#: src/slic3r/GUI/Tab.cpp:2905 +#: src/libslic3r/Flow.cpp:55 +msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "Nie można przeliczyć szerokości ekstruzji dla %1%: zmienna \"%2%\" jest niedostępna." + +#: src/slic3r/GUI/Tab.cpp:3057 msgid "Cannot overwrite a system profile." msgstr "Nie można nadpisać profilu systemowego." -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:3061 msgid "Cannot overwrite an external profile." msgstr "Nie można nadpisać profilu zewnętrznego." -#: src/libslic3r/SLAPrint.cpp:612 +#: src/libslic3r/SLAPrint.cpp:613 msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Nie można kontynuować bez punktów podpór! Dodaj punkty podpór lub wyłącz ich generowanie." -#: src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/Tab.cpp:1832 msgid "Capabilities" msgstr "Możliwości" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "Zapisz zrzut konfiguracji" -#: src/libslic3r/PrintConfig.cpp:3035 +#: src/libslic3r/PrintConfig.cpp:3409 msgid "Center" msgstr "Punkt centralny" -#: src/libslic3r/PrintConfig.cpp:3036 +#: src/libslic3r/PrintConfig.cpp:3410 msgid "Center the print around the given center." msgstr "Wyśrodkuj model wokół podanego punktu centralnego." -#: src/slic3r/GUI/Tab.cpp:1744 +#: src/slic3r/GUI/Tab.cpp:1726 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Pliki certyfikatów (*.crt, *.pem)|*.crt;*.pem|Wszystkie pliki|*.*" -#: src/slic3r/GUI/GUI_App.cpp:683 -msgid "Change Application &Language" -msgstr "Język Ap&likacji" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:154 msgid "Change camera type (perspective, orthographic)" msgstr "Zmień rodzaj widoku (perspektywiczny/ortograficzny)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1226 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +msgid "Change drainage hole diameter" +msgstr "Zmień średnicę otworu odpływowego" + +#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 msgid "Change extruder" msgstr "Zmiana ekstrudera" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:534 msgid "Change Extruder" msgstr "Zmień Ekstruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/DoubleSlider.cpp:1113 +msgid "Change extruder (N/A)" +msgstr "Zmień ekstruder (N/A)" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Change Extruders" msgstr "Zmień Ekstrudery" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:144 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 #, possible-c-format msgid "Change Option %s" msgstr "Zmień Opcję %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3134 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 msgid "Change Part Type" msgstr "Zmień Rodzaj Elementu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:925 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 msgid "Change point head diameter" msgstr "Zmień średnicę łącznika" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Change the number of instances of the selected object" msgstr "Zmień liczbę kopii wybranego modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1185 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 msgid "Change type" msgstr "Zmiana rodzaju" -#: src/slic3r/GUI/UpdateDialogs.cpp:56 +#: src/slic3r/GUI/UpdateDialogs.cpp:53 msgid "Changelog && Download" msgstr "Pobierz && Listę Zmian" -#: src/slic3r/GUI/GUI_App.cpp:378 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "Zmiana języka aplikacji" -#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61 +#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Sprawdź aktualizacje aplikacji" -#: src/slic3r/GUI/BedShapeDialog.cpp:509 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "Sprawdzaj aktualizacje konfiguracji" + +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "Sprawdź aktualizacje" + +#: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Wybierz plik, z którego ma być zaimportowana tekstura stołu (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:621 +#: src/slic3r/GUI/MainFrame.cpp:775 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wybierz plik do pocięcia (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/BedShapeDialog.cpp:532 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" msgstr "Wybierz plik STL, z którego ma być zaimportowany model stołu:" -#: src/slic3r/GUI/BedShapeDialog.cpp:464 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" msgstr "Wybierz plik STL, z którego ma być zaimportowany kształt stołu:" -#: src/slic3r/GUI/GUI_App.cpp:510 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "Wybierz jeden plik (3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:501 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wybierz jeden lub więcej plików (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:490 +#: src/slic3r/GUI/ConfigWizard.cpp:896 msgid "Choose the type of firmware used by your printer." msgstr "Wybierz rodzaj firmware używanego przez Twoją drukarkę." -#: src/slic3r/GUI/BedShapeDialog.cpp:84 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "Okrągły" -#: src/slic3r/GUI/GLCanvas3D.cpp:3701 src/slic3r/GUI/GLCanvas3D.cpp:3734 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 msgid "Click right mouse button to open History" msgstr "Kliknij prawym przyciskiem myszy, aby otworzyć Historię" -#: src/slic3r/GUI/GUI_ObjectList.cpp:383 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Click the icon to change the object printable property" -msgstr "Kliknij na ikonę, aby zmienić możliwą do wydrukowania właściwość modelu" +msgstr "Kliknij na ikonę, aby włączyć/wyłączyć drukowanie modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:377 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Click the icon to change the object settings" msgstr "Kliknij na ikonę, aby zmienić ustawienia modelu" -#: src/slic3r/GUI/Plater.cpp:292 +#: src/slic3r/GUI/Plater.cpp:340 msgid "Click to edit preset" msgstr "Kliknij aby edytować zestaw ustawień" -#: src/libslic3r/PrintConfig.cpp:216 +#: src/libslic3r/PrintConfig.cpp:242 msgid "Clip multi-part objects" -msgstr "Przycinaj modele złożone z kilku części" +msgstr "Przycinaj modele kilkuczęściowe" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 msgid "Clipping of view" msgstr "Widok przecinania" -#: src/slic3r/GUI/FirmwareDialog.cpp:814 -#: src/slic3r/GUI/PrintHostDialogs.cpp:160 +#: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Zamknij" -#: src/libslic3r/PrintConfig.cpp:550 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +msgid "Closing distance" +msgstr "Dystans domykania" + +#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 +#: src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Kolor" -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 +#: src/slic3r/GUI/DoubleSlider.cpp:972 +msgid "Color change (\"%1%\")" +msgstr "Zmiana koloru (\"%1%\")" + +#: src/slic3r/GUI/DoubleSlider.cpp:973 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "Zmiana koloru (\"%1%\") dla ekstrudera %2%" + +#: src/slic3r/GUI/GLCanvas3D.cpp:995 #, possible-c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Zmiana koloru dla ekstrudera %d na wysokości %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535 -#: src/libslic3r/GCode/PreviewData.cpp:406 +#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Zmiana Koloru" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:250 msgid "Colorprint height" msgstr "Wysokość (warstwa) zmiany koloru" -#: src/libslic3r/PrintConfig.cpp:942 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "Scalaj wypełnienie co" -#: src/libslic3r/PrintConfig.cpp:947 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "Scalaj wypełnienie co n warstw" -#: src/slic3r/GUI/UpdateDialogs.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "Komendy" + +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "Komentarz:" -#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 msgid "Compatible print profiles" msgstr "Kompatybilne profile druku" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:276 msgid "Compatible print profiles condition" msgstr "Warunki kompatybilności profili druku" -#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229 +#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 msgid "Compatible printers" msgstr "Kompatybilne drukarki" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Compatible printers condition" msgstr "Warunki kompatybilności z drukarką" -#: src/libslic3r/PrintConfig.cpp:268 +#: src/libslic3r/PrintConfig.cpp:294 msgid "Complete individual objects" msgstr "Druk sekwencyjny (model po modelu)" -#: src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/PrintHostDialogs.cpp:234 msgid "Completed" msgstr "Zakończono" -#: src/libslic3r/Zipper.cpp:57 +#: src/libslic3r/Zipper.cpp:54 msgid "compression failed" msgstr "niepowodzenie kompresji" -#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "Koncentryczny" -#: src/slic3r/GUI/ConfigWizard.cpp:1185 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Assistant" msgstr "&Asystent Konfiguracji" -#: src/slic3r/GUI/ConfigWizard.cpp:1182 +#: src/slic3r/GUI/ConfigWizard.cpp:2116 msgid "Configuration &Wizard" msgstr "&Asystent Konfiguracji" -#: src/slic3r/GUI/ConfigWizard.cpp:1184 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Assistant" msgstr "Asystent konfiguracji" -#: src/libslic3r/PrintConfig.cpp:1251 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "Notatki konfiguracyjne" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:104 msgid "Configuration Snapshots" msgstr "Zrzuty konfiguracji" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "Aktualizacja konfiguracji" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 msgid "Configuration update is available" msgstr "Dostępna jest aktualizacja konfiguracji" -#: src/slic3r/GUI/ConfigWizard.cpp:1181 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Configuration update is necessary to install" +msgstr "Do instalacji jest wymagana aktualizacja konfiguracji." + +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "Aktualizacje konfiguracji" + +#: src/slic3r/GUI/ConfigWizard.cpp:2115 msgid "Configuration Wizard" msgstr "Asystent Konfiguracji" -#: src/slic3r/GUI/FirmwareDialog.cpp:863 +#: src/slic3r/GUI/FirmwareDialog.cpp:903 msgid "Confirmation" msgstr "Potwierdzenie" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1929 msgid "Connection failed." msgstr "Błąd połączenia." -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/Tab.cpp:3612 msgid "Connection of the support sticks and junctions" msgstr "Łączenia słupków i skrzyżowań podpór" -#: src/slic3r/Utils/Duet.cpp:51 +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "Połączenie z AstroBox pomyślne." + +#: src/slic3r/Utils/Duet.cpp:49 msgid "Connection to Duet works correctly." msgstr "Połączenie z Duet pomyślne." -#: src/slic3r/Utils/FlashAir.cpp:70 +#: src/slic3r/Utils/FlashAir.cpp:68 msgid "Connection to FlashAir works correctly and upload is enabled." msgstr "Połączenie z FlashAir działa poprawnie a przesyłanie jest włączone." -#: src/slic3r/Utils/OctoPrint.cpp:84 +#: src/slic3r/Utils/OctoPrint.cpp:83 msgid "Connection to OctoPrint works correctly." msgstr "Połączenie z OctoPrint pomyślne." -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1926 msgid "Connection to printer works correctly." msgstr "Połączenie z drukarką pomyślne." -#: src/slic3r/Utils/OctoPrint.cpp:195 +#: src/slic3r/Utils/OctoPrint.cpp:176 msgid "Connection to Prusa SL1 works correctly." msgstr "Połączenie z Prusa SL1 działa prawidłowo." -#: src/libslic3r/PrintConfig.cpp:1823 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Odstęp w osi Z" -#: src/slic3r/GUI/AboutDialog.cpp:96 +#: src/slic3r/GUI/AboutDialog.cpp:261 msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Wkład: Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik i wielu innych." -#: src/libslic3r/PrintConfig.cpp:2433 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Kontroluje typ mostu pomiędzy sąsiadującymi słupkami. Może być zyg-zagowy, krzyżowy (podwójny zyg-zag) lub dynamiczny, który oznacza automatyczne przełączanie się pomiędzy pierwszymi dwoma, w zależności od odstępu pomiędzy słupkami." -#: src/slic3r/GUI/Tab.cpp:1489 +#: src/slic3r/GUI/Tab.cpp:1446 msgid "Cooling" msgstr "Chłodzenie" -#: src/libslic3r/PrintConfig.cpp:629 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "Ruchy chłodzące przyspieszają zaczynając od tej prędkości." -#: src/libslic3r/PrintConfig.cpp:648 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Ruchy chłodzące przyspieszają kończąc z tą prędkością." -#: src/slic3r/GUI/Tab.cpp:1510 +#: src/slic3r/GUI/Tab.cpp:1467 msgid "Cooling thresholds" msgstr "Progi chłodzenia" -#: src/libslic3r/PrintConfig.cpp:291 +#: src/libslic3r/PrintConfig.cpp:317 msgid "Cooling tube length" msgstr "Długość rurki chłodzącej" -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:309 msgid "Cooling tube position" msgstr "Pozycja rurki chłodzącej" -#: src/slic3r/GUI/Tab.cpp:2878 +#: src/slic3r/GUI/GLCanvas3D.cpp:4554 msgid "Copy" msgstr "Kopiuj" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "Skopiuj zaznaczenie do schowka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 msgid "Copy to clipboard" msgstr "Skopiuj do schowka" -#: src/slic3r/GUI/SysInfoDialog.cpp:120 +#: src/slic3r/GUI/SysInfoDialog.cpp:154 msgid "Copy to Clipboard" msgstr "Kopiuj do Schowka" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Kopiowanie tymczasowego G-code do wyjściowego nie powiodło się" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Kopiowanie tymczasowego G-code do wyjściowego nie powiodło się. Sprawdź, czy karta nie jest zabezpieczona przed zapisem." -#: src/slic3r/GUI/AboutDialog.cpp:92 +#: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Prawa autorskie" -#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325 +#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 msgid "Correction for expansion" msgstr "Korekcja rozszerzania" -#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310 +#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 msgid "Corrections" msgstr "Korekcje" -#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056 -#: src/libslic3r/PrintConfig.cpp:717 +#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 msgid "Cost" msgstr "Koszt" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Cost (money)" msgstr "Koszt (pieniędzy)" -#: src/slic3r/GUI/Plater.cpp:2140 +#: src/slic3r/GUI/Plater.cpp:2819 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Nie można ułożyć modeli! Niektóre geometrie mogą być nieprawidłowe." -#: src/slic3r/Utils/Duet.cpp:56 +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "Nie można połączyć się z AstroBox" + +#: src/slic3r/Utils/Duet.cpp:54 msgid "Could not connect to Duet" msgstr "Nie można połączyć się z Duet" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Could not connect to FlashAir" msgstr "Nie można połączyć z FlashAir" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Could not connect to OctoPrint" msgstr "Nie można połączyć się z OctoPrint" -#: src/slic3r/Utils/OctoPrint.cpp:200 +#: src/slic3r/Utils/OctoPrint.cpp:181 msgid "Could not connect to Prusa SLA" msgstr "Nie można połączyć się z Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1689 msgid "Could not get a valid Printer Host reference" msgstr "Brak prawidłowego odwołania do serwera druku" -#: src/slic3r/Utils/Duet.cpp:151 +#: src/slic3r/Utils/Duet.cpp:134 msgid "Could not get resources to create a new connection" msgstr "Brak zasobów do utworzenia nowego połączenia" -#: src/libslic3r/PrintConfig.cpp:1872 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "Pokryj pętlą górną warstwę podpór. Domyślnie wyłączone." -#: src/libslic3r/PrintConfig.cpp:73 +#: src/libslic3r/PrintConfig.cpp:89 msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." msgstr "Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na rozsądnie niskim poziomie." -#: src/libslic3r/Zipper.cpp:61 +#: src/libslic3r/Zipper.cpp:58 msgid "CRC-32 check failed" msgstr "Weryfikacja CRC-32 nie powiodła się" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "Create pad around object and ignore the support elevation" msgstr "Dodaj podkładkę wokół modelu i zignoruj podniesienie na podporach" -#: src/libslic3r/PrintConfig.cpp:2460 +#: src/libslic3r/PrintConfig.cpp:2715 msgid "Critical angle" msgstr "Kąt krytyczny" -#: src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Cross" msgstr "Krzyżowy" -#: src/libslic3r/PrintConfig.cpp:800 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "Sześcienny" -#: src/slic3r/GUI/wxExtensions.cpp:2413 +#: src/slic3r/GUI/wxExtensions.cpp:704 #, possible-c-format msgid "Current mode is %s" msgstr "Obecny tryb to %s" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:959 msgid "Current preset is inherited from the default preset." msgstr "Obecny zestaw ustawień jest dziedziczony z zestawu domyślnego." -#: src/slic3r/GUI/Tab.cpp:928 +#: src/slic3r/GUI/Tab.cpp:962 #, possible-c-format msgid "Current preset is inherited from:\n\t%s" msgstr "Obecny zestaw ustawień jest dziedziczony z:\n%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:45 +#: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Obecna wersja:" @@ -1388,180 +1516,193 @@ msgstr "Obecna wersja:" msgid "Cusp (mm)" msgstr "Wierzchołek (mm)" -#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239 -#: src/libslic3r/GCode/PreviewData.cpp:175 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Własny" -#: src/libslic3r/PrintConfig.cpp:96 +#: src/libslic3r/PrintConfig.cpp:112 msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Dla połączeń HTTPS z OctoPrint może zostać użyty własny plik certyfikatu CA w formacie crt/pem. Jeśli pole zostanie puste, to zostanie użyty plik z systemowego repozytorium CA." -#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948 +#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 msgid "Custom G-code" msgstr "Własny G-code" +#: src/slic3r/GUI/DoubleSlider.cpp:1591 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "Własny G-code na obecnej warstwie (%1% mm)." + #: src/slic3r/GUI/wxExtensions.cpp:3500 msgid "Custom Gcode on current layer (%1% mm)." msgstr "Własny G-code na obecnej warstwie (%1% mm)." -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Własna Drukarka" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "Ustawienie Własnej Drukarki" -#: src/slic3r/GUI/ConfigWizard.cpp:377 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "Nazwa własnego profilu:" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 msgid "Cut" msgstr "Przetnij" -#: src/slic3r/GUI/Plater.cpp:4193 +#: src/slic3r/GUI/Plater.cpp:4801 msgid "Cut by Plane" msgstr "Tnij Płaszczyzną" -#: src/libslic3r/PrintConfig.cpp:3014 +#: src/libslic3r/PrintConfig.cpp:3388 msgid "Cut model at the given Z." msgstr "Przetnij model na wysokości Z." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Cylinder" msgstr "Cylinder" -#: src/slic3r/GUI/MainFrame.cpp:491 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "O&dznacz wszystko" -#: src/libslic3r/PrintConfig.cpp:3115 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Data directory" msgstr "Katalog danych" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:332 msgid "Deadzone:" msgstr "Martwa strefa:" -#: src/libslic3r/Zipper.cpp:55 +#: src/libslic3r/Zipper.cpp:52 msgid "decompression failed or archive is corrupted" msgstr "niepowodzenie rozpakowywania lub uszkodzone archiwum" -#: src/slic3r/GUI/Plater.cpp:4127 +#: src/slic3r/GUI/Plater.cpp:4735 msgid "Decrease Instances" msgstr "Zmniejsz ilość kopii" -#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245 -#: src/libslic3r/PrintConfig.cpp:299 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 msgid "Default" msgstr "Domyślnie" -#: xs/src/slic3r/GUI/Field.cpp:98 +#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 +#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 msgid "default" msgstr "domyślnie" -#: src/libslic3r/PrintConfig.cpp:730 +#: src/libslic3r/PrintConfig.cpp:777 msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them." msgstr "Domyślny kąt linii wypełnienia. Mosty będą wypełniane z użyciem najlepszego kierunku obliczonego przez Slic3r, więc to ustawienie ich nie dotyczy." -#: src/libslic3r/PrintConfig.cpp:522 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "Domyślna szerokość linii" -#: src/slic3r/GUI/Tab.cpp:937 +#: src/slic3r/GUI/Tab.cpp:989 msgid "default filament profile" msgstr "domyślny profil filamentu" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:335 msgid "Default filament profile" msgstr "Domyślny profil filamentu" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:336 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Domyślny profil filamentu powiązany z obecnym profilem drukarki. Przy wybraniu obecnego profilu drukarki automatycznie zostanie wybrany ten profil filamentu." -#: src/slic3r/GUI/Tab.cpp:2757 +#: src/slic3r/GUI/Tab.cpp:2903 #, possible-c-format msgid "Default preset (%s)" msgstr "Domyślny zestaw ustawień (%s)" -#: src/libslic3r/GCode/PreviewData.cpp:491 +#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 msgid "Default print color" msgstr "Domyślny kolor druku" -#: src/slic3r/GUI/Tab.cpp:934 +#: src/slic3r/GUI/Tab.cpp:986 msgid "default print profile" msgstr "domyślny profil druku" -#: src/libslic3r/PrintConfig.cpp:316 +#: src/libslic3r/PrintConfig.cpp:342 msgid "Default print profile" msgstr "Domyślny profil druku" -#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341 -#: src/libslic3r/PrintConfig.cpp:2352 +#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 +#: src/libslic3r/PrintConfig.cpp:2594 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Domyślny profil druku powiązany z obecnym profilem drukarki. Przy wybraniu obecnego profilu drukarki automatycznie zostanie wybrany ten profil filamentu." -#: src/slic3r/GUI/Tab.cpp:951 +#: src/slic3r/GUI/Tab.cpp:1003 msgid "default SLA material profile" msgstr "domyślny profil materiału SLA" -#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351 +#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 msgid "Default SLA material profile" msgstr "Domyślny profil materiału SLA" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:1007 msgid "default SLA print profile" msgstr "domyślny profil druku SLA" -#: src/slic3r/GUI/Field.cpp:105 +#: src/slic3r/GUI/Field.cpp:131 msgid "default value" msgstr "wartość domyślna" -#: src/slic3r/GUI/ConfigWizard.cpp:375 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "Zdefiniuj własny profil drukarki" -#: src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Definiuje wgłębienie podkładki. Ustaw 0 aby je wyłączyć. Zachowaj ostrożność przy ustawianiu wgłębienia, ponieważ niektóre żywice mogą powodować bardzo silny efekt zasysania wewnątrz wgłębienia, co może powodować trudności z oddzieleniem wydruku od folii zbiornika." -#: src/slic3r/GUI/GUI_ObjectList.cpp:237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:344 msgid "degenerate facets" msgstr "ponowne generowanie ścianek" -#: src/libslic3r/PrintConfig.cpp:608 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "Opóźnienie po rozładowaniu" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "delete" msgstr "usuń" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891 -#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Delete" msgstr "Usuń" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "Usuń &wszystko" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Delete All" msgstr "Usuń wszystko" -#: src/slic3r/GUI/Plater.cpp:3298 +#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 msgid "Delete all" msgstr "Usuń wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 msgid "Delete All Instances from Object" msgstr "Usuń wszystkie kopie modelu" -#: src/slic3r/GUI/wxExtensions.cpp:3465 +#: src/slic3r/GUI/DoubleSlider.cpp:1488 msgid "Delete color change" msgstr "Usuń zmianę koloru" @@ -1569,268 +1710,301 @@ msgstr "Usuń zmianę koloru" msgid "Delete color change for Extruder %1%" msgstr "Usuń zmianę kolor dla ekstrudera %1%" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 msgid "Delete color change marker for current layer" msgstr "Usuń punkt zmiany filamentu na obecnej warstwie" -#: src/slic3r/GUI/wxExtensions.cpp:3467 +#: src/slic3r/GUI/DoubleSlider.cpp:1491 msgid "Delete custom G-code" msgstr "Usuń własny G-code" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +msgid "Delete drainage hole" +msgstr "Usuń otwór odpływowy" + #: src/slic3r/GUI/wxExtensions.cpp:3095 msgid "Delete extruder change to \"%1%\"" msgstr "Usuń zmianę ekstrudera do \"%1%\"" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1898 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 msgid "Delete Height Range" msgstr "Usuń zakres wysokości" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1876 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 msgid "Delete Instance" msgstr "Usuń Kopię" -#: src/slic3r/GUI/Plater.cpp:2592 +#: src/slic3r/GUI/Plater.cpp:2696 msgid "Delete Object" msgstr "Usuń Model" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:100 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 #, possible-c-format msgid "Delete Option %s" msgstr "Usuń Opcję %s" -#: src/slic3r/GUI/wxExtensions.cpp:3466 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Delete pause print" msgstr "Usuń pauzę wydruku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Delete selected" -msgstr "Usuń wybrane" +msgstr "Usuń zaznaczone" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 msgid "Delete Selected" msgstr "Usuń Zaznaczone" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2303 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 msgid "Delete Selected Item" msgstr "Usuń Wybrany Obiekt" -#: src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Plater.cpp:4692 msgid "Delete Selected Objects" msgstr "Usuń Zaznaczone Modele" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1782 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 msgid "Delete Settings" msgstr "Usuń Ustawienia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1857 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 msgid "Delete Subobject" msgstr "Usuń Model Podrzędny" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:720 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 msgid "Delete support point" msgstr "Usuń punkt podpory" -#: src/slic3r/GUI/Tab.cpp:131 +#: src/slic3r/GUI/Tab.cpp:136 msgid "Delete this preset" msgstr "Usuń ten zestaw ustawień" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/DoubleSlider.cpp:1001 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "Usuń zaznaczenie - kliknij lewym przyciskiem lub wciśnij klawisz \"-\"" + +#: src/slic3r/GUI/DoubleSlider.cpp:1489 +msgid "Delete tool change" +msgstr "Usuń zmianę narzędzia" + +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "Usuwa wszystkie modele" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "Usuwa zaznaczenie" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 +#: src/libslic3r/PrintConfig.cpp:2495 msgid "Density" msgstr "Gęstość" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Gęstość wypełnienia wewnętrznego, wyrażana w zakresie 0% - 100%." -#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584 -#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086 -#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 +#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 +#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 msgid "Dependencies" msgstr "Zależności" -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "Prędkość powrotu retrakcji" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "Odznacz wszystko" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Deselect by rectangle" msgstr "Odznaczenie prostokątem" -#: src/slic3r/GUI/MainFrame.cpp:492 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "Odznacza wszystkie modele" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "Wykrywanie mostów przy obrysach" -#: src/libslic3r/PrintConfig.cpp:1988 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)." msgstr "Wykrywaj ściany o grubości jednego obrysu (obszary, gdzie 2 obrysy nie zmieszczą się i trzeba będzie połączyć je w jedną linię)." -#: src/libslic3r/PrintConfig.cpp:1986 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "Wykrywanie cienkich ścian" -#: src/libslic3r/PrintConfig.cpp:3083 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Wykryj niepołączone elementy załadowanych modelu i odłącz je, tworząc osobne modele." -#: src/slic3r/GUI/Plater.cpp:1713 +#: src/slic3r/GUI/Plater.cpp:2352 msgid "Detected advanced data" msgstr "Wykryto zaawansowane dane" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:306 msgid "Device:" msgstr "Urządzenie:" -#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "Średnica" -#: src/libslic3r/PrintConfig.cpp:2443 +#: src/libslic3r/PrintConfig.cpp:2685 msgid "Diameter in mm of the pillar base" msgstr "Średnica podstawy słupka w mm" -#: src/libslic3r/PrintConfig.cpp:2399 +#: src/libslic3r/PrintConfig.cpp:2641 msgid "Diameter in mm of the support pillars" msgstr "Średnica słupków podpór w mm" -#: src/libslic3r/PrintConfig.cpp:2371 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Diameter of the pointing side of the head" msgstr "Średnica spiczastej części łącznika" -#: src/slic3r/GUI/BedShapeDialog.cpp:89 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." msgstr "Średnica stołu. Z założenia punkt bazowy (0, 0) jest zlokalizowany na środku." -#: src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "Kierunek" -#: src/libslic3r/PrintConfig.cpp:323 +#: src/libslic3r/PrintConfig.cpp:349 msgid "Disable fan for the first" msgstr "Wyłącz wentylator przy pierwszych" -#: src/libslic3r/PrintConfig.cpp:1280 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Wyłącza retrakcję gdy ruch jałowy nie wykracza poza zewnętrzny obrys górnej warstwy (więc jakiekolwiek wycieki z dyszy prawdopodobnie i tak nie będą widoczne)." -#: src/slic3r/GUI/wxExtensions.cpp:3078 +#: src/slic3r/GUI/DoubleSlider.cpp:925 msgid "Discard all custom changes" msgstr "Odrzuć wszystkie własne zmiany" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 msgid "Discard changes" msgstr "Odrzuć zmiany" -#: src/slic3r/GUI/Tab.cpp:2784 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 msgid "Discard changes and continue anyway?" msgstr "Odrzucić zmiany i kontynuować?" #: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 msgid "Displacement (mm)" -msgstr "Rozmieszczenie (mm)" +msgstr "Rozstaw (mm)" -#: src/slic3r/GUI/Tab.cpp:2041 +#: src/slic3r/GUI/Tab.cpp:2076 msgid "Display" msgstr "Wyświetlacz" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "Wysokość wyświetlacza" -#: src/libslic3r/PrintConfig.cpp:2319 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "Pokaż odbicie poziome" -#: src/libslic3r/PrintConfig.cpp:2227 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "Pokaż orientację" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "Wyświetl okno kolejki Serwera Druku" -#: src/libslic3r/PrintConfig.cpp:2326 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "Pokaż odbicie pionowe" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "Orientacja wyświetlacza" -#: src/libslic3r/PrintConfig.cpp:341 +#: src/libslic3r/PrintConfig.cpp:367 msgid "Distance between copies" msgstr "Odstęp pomiędzy kopiami" -#: src/libslic3r/PrintConfig.cpp:1610 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Odległość skirtu od modelu. Ustaw zero aby dołączyć do modelu i uzyskać obramowanie dla lepszej przyczepności." -#: src/libslic3r/PrintConfig.cpp:2752 +#: src/libslic3r/PrintConfig.cpp:2873 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Odstęp pomiędzy dwoma słupkami łączącymi model z wygenerowaną podkładką." -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "Odstęp od modelu" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Odległość koordynaty punktu zerowego od przedniego lewego rogu prostokąta." -#: src/libslic3r/PrintConfig.cpp:285 +#: src/libslic3r/PrintConfig.cpp:310 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Odległość punktu centralnego rurki chłodzącej od końcówki ekstrudera." -#: src/libslic3r/PrintConfig.cpp:1338 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Odległość końcówki ekstrudera do miejsca zatrzymania filamentu po rozładowaniu. Ta wartość powinna odpowiadać tej ustawionej w firmware drukarki." -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:368 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Odstęp używany przy automatycznym rozmieszczaniu modeli na stole." -#: src/libslic3r/PrintConfig.cpp:3097 +#: src/libslic3r/PrintConfig.cpp:3471 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Nie przerywaj jeśli plik dołączony do --load nie istnieje." -#: src/libslic3r/PrintConfig.cpp:3041 +#: src/libslic3r/PrintConfig.cpp:3415 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Nie przestawiaj modeli przed łączeniem i zachowaj ich początkowe koordynaty XY." -#: src/slic3r/GUI/Field.cpp:206 +#: src/slic3r/GUI/Field.cpp:235 #, possible-c-format msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." msgstr "Czy masz na myśli %s %% zamiast %s %s ?\nKliknij TAK, jeśli chcesz zmienić wartość na %s %%,\nlub NIE, jeśli masz pewność, że %s %s jest prawidłową wartością." -#: src/slic3r/GUI/GUI_App.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "Czy chcesz automatycznie wybrać domyślne filamenty?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "Czy chcesz automatycznie wybrać domyślne materiały?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1893 +msgid "Do you want to delete all saved tool changes?" +msgstr "Czy chcesz usunąć wszystkie zmiany narzędzi?" + +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "Czy chcesz kontynuować?" +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "Do you want to retry" +msgstr "Czy chcesz spróbować ponownie" + #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 msgid "Do you want to save your manually edited support points?" msgstr "Czy chcesz zapisać ręcznie edytowane punkty podpór?" -#: src/libslic3r/PrintConfig.cpp:3040 +#: src/libslic3r/PrintConfig.cpp:3414 msgid "Don't arrange" msgstr "Nie układaj" -#: src/slic3r/GUI/UpdateDialogs.cpp:55 +#: src/slic3r/GUI/UpdateDialogs.cpp:71 msgid "Don't notify about new releases any more" msgstr "Nie powiadamiaj o nowych wersjach" -#: src/libslic3r/PrintConfig.cpp:333 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Don't support bridges" msgstr "Nie używaj podpór pod mostami" @@ -1838,141 +2012,169 @@ msgstr "Nie używaj podpór pod mostami" msgid "Downgrade" msgstr "Deaktualizacja" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 msgid "Drag" msgstr "Przeciągnij" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:340 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:355 +#: src/libslic3r/SLAPrintSteps.cpp:42 +msgid "Drilling holes into model." +msgstr "Wiercenie otworów odpływowych w modelu." + +#: src/libslic3r/SLAPrintSteps.cpp:163 +msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." +msgstr "Niepowodzenie wiercenia otworów w siatce. Zazwyczaj dzieje się tak przez błędy w modelu. Spróbuj najpierw go naprawić." + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:337 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:349 msgid "Drop to bed" msgstr "Upuść na stół" -#: src/libslic3r/PrintConfig.cpp:3044 +#: src/libslic3r/PrintConfig.cpp:3418 msgid "Duplicate" msgstr "Duplikuj" -#: src/libslic3r/PrintConfig.cpp:3049 +#: src/libslic3r/PrintConfig.cpp:3423 msgid "Duplicate by grid" msgstr "Duplikuj wg siatki" -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "Na pozostałych warstwach, wentylator" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2660 msgid "Dynamic" msgstr "Dynamicznie" -#: src/slic3r/GUI/MainFrame.cpp:708 +#: src/slic3r/GUI/MainFrame.cpp:751 msgid "E&xport" msgstr "&Eksport" -#: src/slic3r/GUI/GUI_ObjectList.cpp:238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:345 msgid "edges fixed" msgstr "naprawiono krawędzie" -#: src/slic3r/GUI/wxExtensions.cpp:3460 +#: src/slic3r/GUI/DoubleSlider.cpp:1480 msgid "Edit color" msgstr "Edytuj kolor" -#: src/slic3r/GUI/wxExtensions.cpp:3462 +#: src/slic3r/GUI/DoubleSlider.cpp:933 +msgid "Edit current color - Right click the colored slider segment" +msgstr "Edytuj kolor - kliknij prawym przyciskiem na kolorowy segment suwaka" + +#: src/slic3r/GUI/DoubleSlider.cpp:1482 msgid "Edit custom G-code" msgstr "Edytuj własny G-code" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2690 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 msgid "Edit Height Range" msgstr "Edytuj Zakres Wysokości" -#: src/slic3r/GUI/wxExtensions.cpp:3461 +#: src/slic3r/GUI/DoubleSlider.cpp:1481 msgid "Edit pause print message" msgstr "Edytuj komunikat wstrzymania wydruku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:373 +#: src/slic3r/GUI/DoubleSlider.cpp:1003 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "Edytuj zaznaczenie - Ctrl + Klik lewym przyciskiem" + +#: src/slic3r/GUI/DoubleSlider.cpp:1004 +msgid "Edit tick mark - Right click" +msgstr "Edytuj zaznaczenie - kliknij prawym przyciskiem" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 msgid "Editing" msgstr "Edytowanie" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:375 msgid "Elephant foot compensation" msgstr "Kompensacja \"stopy słonia\"" -#: src/libslic3r/SLAPrint.cpp:678 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "Minimalna szerokość stopy słonia" + +#: src/libslic3r/SLAPrint.cpp:625 msgid "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." -#: src/libslic3r/PrintConfig.cpp:1044 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode." msgstr "Umieść M73 P[postęp w procentach] R[pozostały czas w minutach] co 1 minutę w G-code, aby pozwolić firmware na wyświetlanie dokładnego pozostałego czasu. Na ten moment jedynie firmware drukarki Prusa i3 MK3 rozpoznaje komendę M73. Firmware i3 MK3 wspiera również M73 Qxx Sxx dla trybu Stealth." -#: src/libslic3r/GCode.cpp:628 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "Wykryto puste warstwy - plik wynikowy nie będzie możliwy do wydrukowania." -#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286 -#: src/libslic3r/PrintConfig.cpp:2099 +#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Włącz" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:303 msgid "Enable auto cooling" msgstr "Włącz automatyczne chłodzenie" -#: src/libslic3r/PrintConfig.cpp:539 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" msgstr "Włącz chłodzenie jeśli czas druku warstwy wynosi poniżej" -#: src/libslic3r/PrintConfig.cpp:2321 +#: src/libslic3r/PrintConfig.cpp:2899 +msgid "Enable hollowing" +msgstr "Włącz drążenie" + +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "Włącz odbicie poziome dla obrazów wyjściowych" -#: src/libslic3r/PrintConfig.cpp:1781 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "Włącz generowanie materiału podporowego." -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:966 msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." msgstr "Włącz tę opcję, aby dodawać komentarze do pliku G-code, przypisujące ruchy drukujące do konkretnych modeli, co pozwala współpracować z wtyczką CancelObject do OctoPrint. To ustawienie NIE jest kompatybilne z trybem Pojedynczym Multi Material i z ustawieniami Czyszczenia na wypełnieniu / modelu." -#: src/libslic3r/PrintConfig.cpp:881 +#: src/libslic3r/PrintConfig.cpp:929 msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." msgstr "Włącz tą opcję aby dodawać komentarz opsiujący do każdej liniki pliku G-code. Przy druku z karty SD dodatkowy rozmiar pliku może sprawiać, że firmware będzie reagować wolniej." -#: src/libslic3r/PrintConfig.cpp:2085 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "Zmienna wysokość warstwy" -#: src/libslic3r/PrintConfig.cpp:2328 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "Włącz odbicie pionowe dla obrazów wyjściowych" -#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955 -#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369 +#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "Końcowy G-code" -#: src/libslic3r/PrintConfig.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "Wymuś podpory dla pierwszych" -#: src/libslic3r/PrintConfig.cpp:1845 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" msgstr "Wymuś podpory dla pierwszych n warstw" -#: src/slic3r/GUI/PrintHostDialogs.cpp:197 -#: src/slic3r/GUI/PrintHostDialogs.cpp:228 +#: src/slic3r/GUI/PrintHostDialogs.cpp:198 +#: src/slic3r/GUI/PrintHostDialogs.cpp:229 msgid "Enqueued" msgstr "Zakolejkowano" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" msgstr "Zagwarantuj odpowiednią grubość ścianki" -#: src/slic3r/GUI/wxExtensions.cpp:3499 +#: src/slic3r/GUI/DoubleSlider.cpp:1590 msgid "Enter custom G-code used on current layer" msgstr "Wprowadź własny G-code do wykonania na tej warstwie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Enter new name" msgstr "Wprowadź nową nazwę" @@ -1980,262 +2182,292 @@ msgstr "Wprowadź nową nazwę" msgid "Enter short message shown on Printer display during pause print" msgstr "Wpisz krótki komunikat pokazywany na wyświetlaczu drukarki podczas wstrzymania wydruku" -#: src/slic3r/GUI/ConfigWizard.cpp:622 +#: src/slic3r/GUI/DoubleSlider.cpp:1606 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "Wpisz krótką wiadomość wyświetlaną na ekranie drukarki, gdy druk jest wstrzymany" + +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Wprowadź temperaturę potrzebną do dobrego przylegania filamentu do powierzchni podgrzewanego stołu." -#: src/slic3r/GUI/ConfigWizard.cpp:570 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Enter the diameter of your filament." msgstr "Wprowadź średnicę filamentu." -#: src/slic3r/GUI/ConfigWizard.cpp:557 +#: src/slic3r/GUI/ConfigWizard.cpp:967 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Wprowadź średnicę dyszy hotendu." -#: src/slic3r/GUI/ConfigWizard.cpp:608 +#: src/slic3r/GUI/DoubleSlider.cpp:1622 +msgid "Enter the height you want to jump to" +msgstr "Wprowadź wysokość, do której chcesz przejść." + +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "Enter the temperature needed for extruding your filament." msgstr "Wprowadź temperaturę potrzebną do ekstruzji filamentu." -#: src/libslic3r/PrintConfig.cpp:718 +#: src/libslic3r/PrintConfig.cpp:761 msgid "Enter your filament cost per kg here. This is only for statistical information." msgstr "Wprowadź koszt filamentu za kilogram. Służy tylko statystykom." -#: src/libslic3r/PrintConfig.cpp:686 +#: src/libslic3r/PrintConfig.cpp:718 msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement." msgstr "Wprowadź gęstość filamentu. Służy tylko statystykom. Dobrą metodą jest zważenie filamentu o zmierzonej długości i przeliczenie stosunku wagi do objętości." -#: src/libslic3r/PrintConfig.cpp:678 +#: src/libslic3r/PrintConfig.cpp:710 msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Wprowadź średnicę filamentu. Wymagana jest precyzja, więc użyj suwmiarki i zmierz filament w kilku miejscach, potem oblicz średnią." -#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Błąd" -#: src/slic3r/GUI/FirmwareDialog.cpp:608 +#: src/slic3r/GUI/FirmwareDialog.cpp:645 #, possible-c-format msgid "Error accessing port at %s: %s" msgstr "Brak dostępu do portu %s: %s" -#: src/slic3r/GUI/Plater.cpp:3593 +#: src/slic3r/GUI/Plater.cpp:3441 +msgid "Error during reload" +msgstr "Błąd podczas przeładowywania" + +#: src/slic3r/GUI/Plater.cpp:5073 #, possible-c-format msgid "Error exporting 3MF file %s" msgstr "Błąd eksportowania pliku 3MF %s" -#: src/slic3r/GUI/Plater.cpp:3564 +#: src/slic3r/GUI/Plater.cpp:5025 #, possible-c-format msgid "Error exporting AMF file %s" msgstr "Błąd eksportu pliku AMF %s" -#: src/slic3r/GUI/PrintHostDialogs.cpp:153 +#: src/slic3r/GUI/PrintHostDialogs.cpp:154 msgid "Error Message" msgstr "Komunikat o błędzie" -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:118 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Błąd przetwarzania pliku konfiguracyjnego PrusaSlicer. Prawdopodobnie jest uszkodzony. Spróbuj ręcznie usunąć plik, aby pozbyć się błędu. Nie wpłynie to na Twoje profile." -#: src/slic3r/GUI/PrintHostDialogs.cpp:271 +#: src/slic3r/GUI/PrintHostDialogs.cpp:272 msgid "Error uploading to print host:" msgstr "Błąd wysyłania do serwera druku:" -#: src/libslic3r/Zipper.cpp:105 +#: src/libslic3r/Zipper.cpp:102 msgid "Error with zip archive" msgstr "Błąd archiwum .zip" -#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1443 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 msgid "Error!" msgstr "Błąd!" -#: src/slic3r/GUI/BedShapeDialog.cpp:482 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "Błąd! Nieprawidłowy model" -#: src/slic3r/GUI/FirmwareDialog.cpp:610 +#: src/slic3r/GUI/FirmwareDialog.cpp:647 #, possible-c-format msgid "Error: %s" msgstr "Błąd: %s" -#: src/slic3r/GUI/Plater.cpp:1503 +#: src/slic3r/GUI/Job.hpp:123 msgid "ERROR: not enough resources to execute a new job." msgstr "BŁĄD: brak zasobów do wykonania nowego zadania." -#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028 -#: src/slic3r/GUI/Plater.cpp:1070 +#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 +#: src/slic3r/GUI/Plater.cpp:1255 msgid "Estimated printing time" msgstr "Szacowany czas druku" -#: src/slic3r/GUI/Plater.cpp:424 +#: src/slic3r/GUI/Plater.cpp:499 msgid "Everywhere" msgstr "Wszędzie" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." msgstr "za wyjątkiem pierwszych %1% warstw." -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "za wyjątkiem pierwszej warstwy." -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1373 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Wartość %1%=%2% mm jest zbyt duża, żeby mogła być wydrukowana z dyszą o średnicy %3% mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 #, possible-c-format msgid "Exit %s" msgstr "Wyjście %s" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:361 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Funkcja eksperymentalna mająca zapobiegać tworzeniu podpór pod mostami." -#: src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan." msgstr "Opcja eksperymentalna dostosowująca przepływ przy zwisach (zostanie zastosowany przepływ taki jak dla mostów), zastosuje również prędkość i chłodzenie takie jak dla mostów." -#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "Ekspert" -#: src/slic3r/GUI/ConfigWizard.cpp:787 +#: src/slic3r/GUI/ConfigWizard.cpp:823 msgid "Expert mode" msgstr "Tryb Eksperta" -#: src/slic3r/GUI/GUI_App.cpp:676 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "Tryb Widoku Eksperta" -#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821 +#: src/slic3r/GUI/Plater.cpp:5555 msgid "Export" msgstr "Eksport" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "Eksport Konfigura&cji" -#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 msgid "Export &G-code" msgstr "Eksport &G-code" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Ekspor&t ścieżek narzędzi jako OBJ" -#: src/libslic3r/PrintConfig.cpp:2949 +#: src/libslic3r/PrintConfig.cpp:3323 msgid "Export 3MF" msgstr "Eksport 3MF" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "Eksport wszystkich zestawów ustawień do pliku" -#: src/libslic3r/PrintConfig.cpp:2954 +#: src/libslic3r/PrintConfig.cpp:3328 msgid "Export AMF" msgstr "Eksport AMF" -#: src/slic3r/GUI/Plater.cpp:1932 +#: src/slic3r/GUI/Plater.cpp:2582 msgid "Export AMF file:" msgstr "Eksport pliku AMF:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 msgid "Export as STL" msgstr "Eksport jako STL" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "Eksport konfiguracji" + +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "Eksport Paczki Konfi&guracyjnej" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "Eksport obecnej konfiguracji do pliku" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "Eksport zawartości stołu jako AMF" -#: src/slic3r/GUI/MainFrame.cpp:362 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "Eksport zawartości stołu jako G-code" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "Eksport zawartości stołu jako STL" -#: src/slic3r/GUI/MainFrame.cpp:368 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" msgstr "Eksport zawartości stołu jako STL wraz z podporami" -#: src/slic3r/GUI/Plater.cpp:2722 +#: src/slic3r/GUI/Plater.cpp:3673 msgid "Export failed" msgstr "Niepowodzenie eksportu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733 -#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964 +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "Eksport pełnych ścieżek źródłowych modeli i części do plików 3MF i AMF" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 +#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 msgid "Export G-code" msgstr "Eksport G-code" -#: src/libslic3r/PrintConfig.cpp:2931 +#: src/libslic3r/PrintConfig.cpp:3305 msgid "Export OBJ" msgstr "Eksport OBJ" -#: src/slic3r/GUI/Plater.cpp:2531 +#: src/slic3r/GUI/Plater.cpp:2594 msgid "Export OBJ file:" msgstr "Eksport pliku OBJ:" -#: src/slic3r/Utils/FixModelByWin10.cpp:368 +#: src/slic3r/Utils/FixModelByWin10.cpp:369 +#: src/slic3r/Utils/FixModelByWin10.cpp:374 msgid "Export of a temporary 3mf file failed" msgstr "Niepowodzenie eksportu tymczasowego pliku 3MF" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" msgstr "Eksport zawartości stołu jako &AMF" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" msgstr "Eksport zawartości stołu jako &STL" -#: src/slic3r/GUI/MainFrame.cpp:481 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" msgstr "Eksportuj zawartość stołu do STL zaw&ierając podpory" -#: src/libslic3r/PrintConfig.cpp:2943 +#: src/libslic3r/PrintConfig.cpp:3317 msgid "Export SLA" msgstr "Eksport SLA" -#: src/libslic3r/PrintConfig.cpp:2959 +#: src/slic3r/GUI/Preferences.cpp:73 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "Eksport pełnych ścieżek do 3MF i AMF" + +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Export STL" msgstr "Eksport STL" -#: src/slic3r/GUI/Plater.cpp:1925 +#: src/slic3r/GUI/Plater.cpp:2575 msgid "Export STL file:" msgstr "Eksport pliku STL:" -#: src/libslic3r/PrintConfig.cpp:2950 +#: src/libslic3r/PrintConfig.cpp:3324 msgid "Export the model(s) as 3MF." msgstr "Eksport model(i) jako 3MF." -#: src/libslic3r/PrintConfig.cpp:2955 +#: src/libslic3r/PrintConfig.cpp:3329 msgid "Export the model(s) as AMF." msgstr "Eksport model(i) jako AMF." -#: src/libslic3r/PrintConfig.cpp:2932 +#: src/libslic3r/PrintConfig.cpp:3306 msgid "Export the model(s) as OBJ." msgstr "Eksport model(i) jako OBJ." -#: src/libslic3r/PrintConfig.cpp:2960 +#: src/libslic3r/PrintConfig.cpp:3334 msgid "Export the model(s) as STL." msgstr "Eksport modeli jako STL." -#: src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/Plater.cpp:3975 msgid "Export the selected object as STL file" msgstr "Eksport wybranego modelu jako plik STL" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/Plater.cpp:877 +msgid "Export to SD card / Flash drive" +msgstr "Eksport na kartę SD / pamięć flash" + +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" msgstr "Eksport ścieżek narzędzi jako OBJ" -#: src/libslic3r/Print.cpp:1517 +#: src/libslic3r/Print.cpp:1634 msgid "Exporting G-code" msgstr "Eksportowanie G-code" @@ -2248,139 +2480,143 @@ msgstr "Eksportowanie modelu..." msgid "Exporting source model" msgstr "Eksport modelu źródłowego" -#: src/libslic3r/SLAPrint.cpp:700 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "Czas naświetlania jest poza zakresem profilu drukarki." -#: src/slic3r/GUI/Tab.cpp:3306 +#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 msgid "Exposure" msgstr "Naświetlanie" -#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311 +#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 msgid "Exposure time" msgstr "Czas naświetlania" -#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Obrys zewnętrzny" -#: src/slic3r/GUI/PresetHints.cpp:153 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" msgstr "obrysów zewnętrznych" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" msgstr "Obrysy zewnętrzne" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" msgstr "Najpierw obrysy zewnętrzne" -#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "Dodatkowa ilość dla powrotu" -#: src/libslic3r/PrintConfig.cpp:1321 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "Dodatkowa długość ładowania" -#: src/libslic3r/PrintConfig.cpp:445 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "Dodatkowe obrysy jeśli potrzebne" -#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479 -#: src/libslic3r/PrintConfig.cpp:455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Ekstruder" -#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475 +#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 +#: src/libslic3r/GCode/PreviewData.cpp:445 #, possible-c-format msgid "Extruder %d" msgstr "Ekstruder %d" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/DoubleSlider.cpp:978 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "Ekstruder został zmieniony na ekstruder \"%1%\"" + +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Extruder and Bed Temperatures" msgstr "Temperatury ekstrudera i stołu" -#: src/slic3r/GUI/WipeTowerDialog.cpp:226 +#: src/slic3r/GUI/WipeTowerDialog.cpp:255 msgid "Extruder changed to" msgstr "Ekstruder zmieniony na" -#: src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/Tab.cpp:1235 msgid "Extruder clearance (mm)" msgstr "Odstęp od ekstrudera (mm)" -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "Kolor ekstrudera" -#: src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "Margines ekstrudera" -#: src/libslic3r/PrintConfig.cpp:863 +#: src/libslic3r/PrintConfig.cpp:911 msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file." msgstr "Temperatura ekstrudera dla pierwszej warstwy. Jeśli chcesz ręcznie kontrolować temperaturę podczas druku to ustaw zero aby wyłączyć komendy kontrolujące temperaturę w pliku wyjściowym." -#: src/libslic3r/PrintConfig.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Temperatura ekstrudera dla warstw powyżej pierwszej. Ustaw zero aby wyłączyć komendy kontrolujące temperaturę w pliku wyjściowym." -#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72 -#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119 -#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456 -#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340 -#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852 -#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151 -#: src/libslic3r/PrintConfig.cpp:2159 +#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 +#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "Ekstrudery" -#: src/libslic3r/PrintConfig.cpp:507 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "Oś ekstruzji" -#: src/libslic3r/PrintConfig.cpp:513 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "Współczynnik ekstruzji" -#: src/slic3r/GUI/ConfigWizard.cpp:612 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 msgid "Extrusion Temperature:" msgstr "Temperatura ekstrudera:" -#: src/slic3r/GUI/Tab.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:1207 msgid "Extrusion width" msgstr "Szerokość ekstruzji" -#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514 -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523 -#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962 -#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "Szerokość Ekstruzji" -#: src/slic3r/GUI/Plater.cpp:139 +#: src/slic3r/GUI/Plater.cpp:164 msgid "Facets" msgstr "Powierzchnie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "facets added" msgstr "dodano powierzchnie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:239 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "facets removed" msgstr "usunięto powierzchnie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:241 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets reversed" msgstr "odwrócono powierzchnie" -#: src/libslic3r/PrintConfig.cpp:2302 +#: src/libslic3r/PrintConfig.cpp:2508 msgid "Faded layers" msgstr "Warstwy przejściowe" -#: src/libslic3r/Zipper.cpp:47 +#: src/libslic3r/Zipper.cpp:44 msgid "failed finding central directory" msgstr "nie odnaleziono katalogu centralnego" @@ -2388,181 +2624,181 @@ msgstr "nie odnaleziono katalogu centralnego" msgid "Failed loading the input model." msgstr "Niepowodzenie ładowania modelu wejściowego." -#: src/libslic3r/PrintBase.cpp:65 +#: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." msgstr "Błąd przetwarzania wzoru output_filename_format (format nazwy pliku wyjściowego)." -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "Wentylator" -#: src/slic3r/GUI/Tab.cpp:1501 +#: src/slic3r/GUI/Tab.cpp:1458 msgid "Fan settings" msgstr "Ustawienia wentylatora" -#: src/slic3r/GUI/Tab.cpp:1502 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 msgid "Fan speed" msgstr "Prędkość wentylatora" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" msgstr "Prędkość wentylatora (%)" -#: src/libslic3r/PrintConfig.cpp:2240 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "Szybkie" -#: src/libslic3r/PrintConfig.cpp:2241 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "Szybkie przechylanie" -#: src/slic3r/GUI/GUI_App.cpp:135 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "Błąd krytyczny" -#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/libslic3r/GCode/PreviewData.cpp:394 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Rodzaj funkcji" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 msgid "Feature types" msgstr "Rodzaje funkcji" -#: src/slic3r/GUI/ConfigWizard.cpp:1488 +#: src/slic3r/GUI/ConfigWizard.cpp:1528 msgid "FFF Technology Printers" msgstr "Drukarki FFF" -#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470 -#: src/slic3r/GUI/Tab.cpp:1471 +#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 +#: src/slic3r/GUI/Tab.cpp:1428 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1275 +#: src/slic3r/GUI/Preset.cpp:1472 msgid "filament" msgstr "filament" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Filament and Nozzle Diameters" msgstr "Średnice filamentu i dyszy" -#: src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/ConfigWizard.cpp:984 msgid "Filament Diameter:" msgstr "Średnica Filamentu:" -#: src/libslic3r/PrintConfig.cpp:620 +#: src/libslic3r/PrintConfig.cpp:651 msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." msgstr "Filament jest chłodzony przez ruch w tę i z powrotem wewnątrz rurek chłodzących. Określ ilość tych ruchów." -#: src/libslic3r/PrintConfig.cpp:654 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "Czas ładowania filamentu" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "Notatki do filamentu" -#: src/slic3r/GUI/Tab.cpp:1502 src/slic3r/GUI/Tab.cpp:1557 +#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 msgid "Filament Overrides" msgstr "Nadpisywane Ustawienia" -#: src/libslic3r/PrintConfig.cpp:1312 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "Pozycja zatrzymania filamentu" -#: src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filament Profiles Selection" msgstr "Wybór profili filamentu" -#: src/slic3r/GUI/Tab.cpp:1516 +#: src/slic3r/GUI/Tab.cpp:1473 msgid "Filament properties" msgstr "Właściwości filamentu" -#: src/slic3r/GUI/Tab.hpp:335 +#: src/slic3r/GUI/Tab.hpp:354 msgid "Filament Settings" msgstr "Ustawienia Filamentu" -#: src/libslic3r/PrintConfig.cpp:694 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "Typ filamentu" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "Czas rozładowania filamentu" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 msgid "filaments" msgstr "filamenty" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 msgid "Filaments" msgstr "Filamenty" -#: src/libslic3r/Zipper.cpp:75 +#: src/libslic3r/Zipper.cpp:72 msgid "file close failed" msgstr "niepowodzenia zamykania pliku" -#: src/libslic3r/Zipper.cpp:69 +#: src/libslic3r/Zipper.cpp:66 msgid "file create failed" msgstr "niepowodzenie tworzenia pliku" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:793 msgid "File Not Found" msgstr "Nie znaleziono pliku" -#: src/libslic3r/Zipper.cpp:89 +#: src/libslic3r/Zipper.cpp:86 msgid "file not found" msgstr "nie znaleziono pliku" -#: src/libslic3r/Zipper.cpp:67 +#: src/libslic3r/Zipper.cpp:64 msgid "file open failed" msgstr "niepowodzenie otwierania pliku" -#: src/libslic3r/Zipper.cpp:73 +#: src/libslic3r/Zipper.cpp:70 msgid "file read failed" msgstr "niepowodzenie odczytu pliku" -#: src/libslic3r/Zipper.cpp:77 +#: src/libslic3r/Zipper.cpp:74 msgid "file seek failed" msgstr "niepowodzenie szukania pliku" -#: src/libslic3r/Zipper.cpp:79 +#: src/libslic3r/Zipper.cpp:76 msgid "file stat failed" msgstr "niepowodzenie odczytu statystyk pliku" -#: src/libslic3r/Zipper.cpp:39 +#: src/libslic3r/Zipper.cpp:36 msgid "file too large" msgstr "plik jest zbyt duży" -#: src/libslic3r/Zipper.cpp:71 +#: src/libslic3r/Zipper.cpp:68 msgid "file write failed" msgstr "niepowodzenie zapisywania do pliku" -#: src/slic3r/GUI/PrintHostDialogs.cpp:152 +#: src/slic3r/GUI/PrintHostDialogs.cpp:153 msgid "Filename" msgstr "Nazwa pliku" -#: src/libslic3r/PrintConfig.cpp:728 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "Kąt wypełnienia" -#: src/libslic3r/PrintConfig.cpp:742 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "Gęstość wypełnienia" -#: src/libslic3r/PrintConfig.cpp:779 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "Wzór wypełnienia" -#: src/libslic3r/PrintConfig.cpp:410 +#: src/libslic3r/PrintConfig.cpp:437 msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells." msgstr "Wzór wypełnienia dolnej warstwy. Ma wpływ jedynie na zewnętrzną widoczną warstwę, nie ma wpływu na przylegające do nich wewnętrzne, zwarte warstwy." -#: src/libslic3r/PrintConfig.cpp:781 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "Wzór dla ogólnego wypełnienia o niskiej gęstości." -#: src/libslic3r/PrintConfig.cpp:390 +#: src/libslic3r/PrintConfig.cpp:417 msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells." msgstr "Wzór wypełnienia górnej warstwy. Ma wpływ jedynie na zewnętrzne widoczne warstwy, nie ma wpływu na przylegające do nich powłoki zwartego wypełnienia." @@ -2570,88 +2806,88 @@ msgstr "Wzór wypełnienia górnej warstwy. Ma wpływ jedynie na zewnętrzne wid msgid "Finished" msgstr "Zakończono" -#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920 +#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 msgid "Firmware" msgstr "Firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:740 +#: src/slic3r/GUI/FirmwareDialog.cpp:777 msgid "Firmware flasher" msgstr "Flasher firmware" -#: src/slic3r/GUI/FirmwareDialog.cpp:765 +#: src/slic3r/GUI/FirmwareDialog.cpp:802 msgid "Firmware image:" msgstr "Obraz firmware:" -#: src/slic3r/GUI/Tab.cpp:2431 +#: src/slic3r/GUI/Tab.cpp:2573 msgid "Firmware Retraction" msgstr "Retrakcja z firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:486 +#: src/slic3r/GUI/ConfigWizard.cpp:892 msgid "Firmware Type" msgstr "Typ firmware" -#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821 -#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "Pierwsza warstwa" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "Wysokość pierwszej warstwy" -#: src/libslic3r/Print.cpp:1328 +#: src/libslic3r/Print.cpp:1418 msgid "First layer height can't be greater than nozzle diameter" msgstr "Wysokość pierwszej warstwy nie może być większa od średnicy dyszy" -#: src/libslic3r/PrintConfig.cpp:852 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "Prędkość pierwszej warstwy" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "Na pierwszej warstwie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 msgid "Fix through the Netfabb" msgstr "Napraw używając Netfabb" -#: src/slic3r/GUI/Plater.cpp:3072 +#: src/slic3r/GUI/Plater.cpp:3482 msgid "Fix Throught NetFabb" msgstr "Napraw przez NetFabb" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" msgstr "Flash &firmware drukarki" -#: src/slic3r/GUI/FirmwareDialog.cpp:146 +#: src/slic3r/GUI/FirmwareDialog.cpp:150 msgid "Flash!" msgstr "Flash!" -#: src/slic3r/GUI/FirmwareDialog.cpp:275 +#: src/slic3r/GUI/FirmwareDialog.cpp:284 msgid "Flashing cancelled." msgstr "Flashowanie anulowane." -#: src/slic3r/GUI/FirmwareDialog.cpp:192 +#: src/slic3r/GUI/FirmwareDialog.cpp:199 msgid "Flashing failed" msgstr "Niepowodzenie flashowania" -#: src/slic3r/GUI/FirmwareDialog.cpp:274 +#: src/slic3r/GUI/FirmwareDialog.cpp:283 msgid "Flashing failed. Please see the avrdude log below." msgstr "Flashowanie nie powiodło się. Zobacz log z avrdude poniżej." -#: src/slic3r/GUI/FirmwareDialog.cpp:148 +#: src/slic3r/GUI/FirmwareDialog.cpp:152 msgid "Flashing in progress. Please do not disconnect the printer!" msgstr "Flashowanie w toku. Proszę nie odłączać drukarki!" -#: src/slic3r/GUI/FirmwareDialog.cpp:273 +#: src/slic3r/GUI/FirmwareDialog.cpp:282 msgid "Flashing succeeded!" msgstr "Flashowanie pomyślne!" -#: src/slic3r/GUI/Tab.cpp:1156 +#: src/slic3r/GUI/Tab.cpp:1220 msgid "Flow" msgstr "Przepływ" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" msgstr "przepływ osiąga wartości szczytowe" @@ -2675,299 +2911,390 @@ msgstr "Aby usunąć kod \"%1%\", kliknij lewym przyciskiem myszki\nAby edytowa msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" msgstr "Aby usunąć zmianę koloru, kliknij lewym przyciskiem myszy\nAby edytować kolor, kliknij prawym przyciskiem" -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Aby uzyskać więcej informacji odwiedź naszą wiki:" -#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528 +#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 msgid "For support enforcers only" msgstr "Tylko dla wymuszania podpór" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3345 +#: src/slic3r/GUI/Tab.cpp:3249 msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." msgstr "dla lewego przycisku: wskazuje na niesystemowy (lub inny niż domyślny) zestaw ustawień,\ndla prawego przycisku: wskazuje, że ustawienia nie zostały zmodyfikowane." -#: src/slic3r/GUI/ConfigManipulation.cpp:128 +#: src/slic3r/GUI/ConfigManipulation.cpp:136 msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." msgstr "Do działania wieży czyszczącej z podporami rozpuszczalnymi konieczna jest synchronizacja wysokości warstw modelu i podpór." -#: src/libslic3r/Print.cpp:1302 +#: src/libslic3r/Print.cpp:1392 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Do działania wieży czyszczącej z podporami rozpuszczalnymi konieczna jest synchronizacja wysokości warstw modelu i podpór." -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Force pad around object everywhere" msgstr "Wymuś podkładkę wokół wszystkich modeli, wszędzie" -#: src/libslic3r/PrintConfig.cpp:1660 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "Force solid infill for regions having a smaller area than the specified threshold." msgstr "Wymuś zwarte wypełnienie dla obszarów mniejszych niż zadany próg." -#: src/libslic3r/PrintConfig.cpp:1023 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." msgstr "Wymuś generowanie zwartych powłok pomiędzy przylegającymi do siebie materiałami. Przydatne przy druku materiałami przejrzystymi lub przy ręcznych podporach rozpuszczalnych." -#: src/slic3r/GUI/WipeTowerDialog.cpp:262 +#: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "From" msgstr "Od" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 msgid "From Object List You can't delete the last solid part from object." msgstr "Nie możesz usunąć ostatniej bryły modelu z Listy Modeli." -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "Przód" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "Widok przodu" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1015 msgid "full profile name" msgstr "pełna nazwa profilu" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87 +#: src/slic3r/GUI/DoubleSlider.cpp:987 +msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." +msgstr "G-code powiązany z tym zaznaczeniem powoduje konflikt z obecnym trybem drukowania.\nEdytowanie go spowoduje zmianę danych suwaka." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 msgid "G-code file exported to %1%" msgstr "Plik G-code wyeksportowany do %1%" -#: src/libslic3r/PrintConfig.cpp:888 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "Rodzaj G-code" -#: src/libslic3r/PrintConfig.cpp:689 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2496 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870 -#: src/libslic3r/GCode/PreviewData.cpp:170 +#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Wypełnienie szpar" -#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812 -#: src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 +#: src/slic3r/GUI/Tab.cpp:2038 msgid "General" msgstr "Ogólne" -#: src/libslic3r/PrintConfig.cpp:1242 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder." msgstr "Generuj ilość pętli skirtu nie mniejszą niż określona aby zużyć taką ilość filamentu na dolnej warstwie. Dla drukarek z kilkoma ekstuderami ta wartość jest stosowana dla każdego z nich." -#: src/libslic3r/PrintConfig.cpp:1779 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "Generuj materiał podporowy" -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Generuj materiał podporowy dla określonej liczby warstw licząc od dołu, niezależnie od tego czy normalny materiał podporowy jest włączony i niezależnie od progu kąta. Przydaje się aby uzyskać lepszą przyczepność modelu, które mają bardzo małą powierzchnię kontaktu z powierzchnią druku." -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2604 msgid "Generate supports" msgstr "Generowanie podpór" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2606 msgid "Generate supports for the models" msgstr "Generowanie podpór dla modeli" -#: src/libslic3r/Print.cpp:1492 +#: src/libslic3r/Print.cpp:1610 msgid "Generating brim" msgstr "Generowanie obramowania (brim)" -#: src/libslic3r/Print.cpp:1524 +#: src/libslic3r/Print.cpp:1638 msgid "Generating G-code" msgstr "Generowanie G-code" -#: src/libslic3r/SLAPrint.cpp:58 +#: src/libslic3r/SLAPrintSteps.cpp:46 msgid "Generating pad" msgstr "Generowanie podkładki" -#: src/libslic3r/PrintObject.cpp:141 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" msgstr "Generowanie obrysów" -#: src/libslic3r/Print.cpp:1484 +#: src/libslic3r/Print.cpp:1602 msgid "Generating skirt" msgstr "Generowanie skirtu" -#: src/libslic3r/PrintObject.cpp:391 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "Generowanie materiału podporowego" -#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809 +#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 msgid "Generating support points" msgstr "Generowanie punktów podpór" -#: src/libslic3r/SLAPrint.cpp:57 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Generating support tree" msgstr "Generowanie drzewa podpór" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1551 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 msgid "Generic" msgstr "Źródłowy" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 msgid "Gizmo cut" msgstr "Cięcie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Gizmo move" msgstr "Przemieszczanie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 msgid "Gizmo Place face on bed" msgstr "Położenie na płaszczyźnie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Gizmo rotate" msgstr "Obracanie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 msgid "Gizmo scale" msgstr "Skalowanie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "Drążenie SLA z uchwytem" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 msgid "Gizmo SLA support points" msgstr "Punkty podpór SLA przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:641 +#: src/slic3r/GUI/GLCanvas3D.cpp:2945 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 msgid "Gizmo-Move" msgstr "Uchwyt-Przesuń" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:569 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 msgid "Gizmo-Place on Face" msgstr "Uchwyt-Połóż na Płaszczyźnie" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:651 +#: src/slic3r/GUI/GLCanvas3D.cpp:3025 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 msgid "Gizmo-Rotate" msgstr "Uchwyt-Obróć" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:646 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 msgid "Gizmo-Scale" msgstr "Uchwyt-Skaluj" -#: src/slic3r/GUI/AboutDialog.cpp:95 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "Uchwyty" + +#: src/slic3r/GUI/AboutDialog.cpp:259 msgid "GNU Affero General Public License, version 3" msgstr "Ogólna Licencja Publiczna (GPL) GNU Affero, wersja 3" -#: src/slic3r/GUI/ConfigWizard.cpp:571 +#: src/slic3r/GUI/ConfigWizard.cpp:981 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Wymagana jest spora precyzja, użyj więc suwmiarki i przeprowadź kilka pomiarów w sporych odstępach od siebie i oblicz średnią." -#: src/libslic3r/PrintConfig.cpp:797 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "Kratka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1846 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 msgid "Group manipulation" msgstr "Manipulacja grupą" -#: src/libslic3r/PrintConfig.cpp:805 +#: src/slic3r/GUI/Preferences.cpp:137 +msgid "GUI" +msgstr "GUI" + +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "Gyroidalny" -#: src/slic3r/GUI/Tab.cpp:2775 +#: src/slic3r/GUI/Tab.cpp:2921 msgid "has the following unsaved changes:" msgstr "ma następujące niezapisane zmiany:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "Średnica łącznika" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "Przenikanie łączników nie powinno być większe niż ich średnica." -#: src/libslic3r/PrintConfig.cpp:822 +#: src/libslic3r/PrintConfig.cpp:869 msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura podgrzewanego stołu dla pierwszej warstwy. Ustaw zero aby wyłączyć komendy kontrolujące temperaturę stołu w pliku wyjściowym." -#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Wysokość" -#: src/libslic3r/GCode/PreviewData.cpp:396 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "Wysokość (mm)" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts." msgstr "Wysokość skirtu wyrażona w warstwach. Ustawienie wysokiej wartości spowoduje stworzenie osłony chroniącej przed przeciągami." -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "Wysokość wyświetlacza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 msgid "Height range Modifier" msgstr "Modyfikator zakresu wysokości" -#: src/slic3r/GUI/GLCanvas3D.cpp:3650 src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Height ranges" msgstr "Zakres wysokości" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:251 msgid "Heights at which a filament change is to occur." msgstr "Wysokość w osi Z, na której ma nastąpić zmiana filamentu." -#: src/slic3r/GUI/ConfigWizard.cpp:300 +#: src/slic3r/GUI/ConfigWizard.cpp:433 #, possible-c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Witaj w %s! Ten %s pomoże Ci z konfiguracją początkową - wszystko będzie gotowe do drukowania po zaledwie kilku kliknięciach." -#: src/libslic3r/PrintConfig.cpp:2976 +#: src/libslic3r/PrintConfig.cpp:3350 msgid "Help" msgstr "Pomoc" -#: src/libslic3r/PrintConfig.cpp:2982 +#: src/libslic3r/PrintConfig.cpp:3356 msgid "Help (FFF options)" msgstr "Pomoc (opcje FFF)" -#: src/libslic3r/PrintConfig.cpp:2987 +#: src/libslic3r/PrintConfig.cpp:3361 msgid "Help (SLA options)" msgstr "Pomoc (opcje SLA)" -#: src/slic3r/GUI/WipeTowerDialog.cpp:225 +#: src/slic3r/GUI/WipeTowerDialog.cpp:254 msgid "Here you can adjust required purging volume (mm³) for any given pair of tools." msgstr "To ustawienie odpowiada za objętość czyszczonego filamentu w (mm³) dla danej pary ekstruderów." -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "Zwiększenie prądu ekstrudera przy zmianie filamentu" -#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806 +#: src/slic3r/GUI/GLCanvas3D.cpp:282 +msgid "Higher print quality versus higher print speed." +msgstr "Wyższa jakość druku vs wyższa prędkość." + +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "Krzywa Hilberta" -#: src/slic3r/GUI/Plater.cpp:873 +#: src/slic3r/GUI/Plater.cpp:1039 msgid "Hold Shift to Slice & Export G-code" msgstr "Przytrzymaj Shift aby Pociąć i Wyeksportować G-code" -#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "Głębokość otworu" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "Średnica otworu" + +#: src/slic3r/GUI/Plater.cpp:2744 +msgid "Hollow" +msgstr "Drążenie" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +msgid "Hollow and drill" +msgstr "Drążenie i wiercenie" + +#: src/libslic3r/PrintConfig.cpp:2901 +msgid "Hollow out a model to have an empty interior" +msgstr "Wydrąż model, aby uzyskać puste wnętrze." + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "Wydrąż ten model" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 +#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 +#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 +#: src/libslic3r/PrintConfig.cpp:2926 +msgid "Hollowing" +msgstr "Drążenie" + +#: src/libslic3r/PrintConfig.cpp:2916 +msgid "Hollowing accuracy" +msgstr "Dokładność" + +#: src/slic3r/GUI/Plater.cpp:2910 +msgid "Hollowing cancelled." +msgstr "Drążenie anulowane." + +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Hollowing closing distance" +msgstr "Dystans domykania" + +#: src/slic3r/GUI/Plater.cpp:2911 +msgid "Hollowing done." +msgstr "Drążenie zakończone." + +#: src/slic3r/GUI/Plater.cpp:2913 +msgid "Hollowing failed." +msgstr "Drążenie nie powiodło się." + +#: src/libslic3r/PrintConfig.cpp:2928 +msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." +msgstr "Drążenie wnętrza odbywa się w dwóch etapach: w pierwszym obliczana jest wewnątrz pusta przestrzeń o rozmiarach równych sumie grubości powłoki i dystansu domykania, a w kolejnym jest \"nadmuchiwane\" z powrotem do zadanej grubości. Większy dystans zamykania tworzy większe promienie we wnętrzu. Wartość \"0\" odda wnętrze najbardziej zbliżone do zewnętrznej powłoki." + +#: src/libslic3r/SLAPrintSteps.cpp:41 +msgid "Hollowing model" +msgstr "Drążenie modelu" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +msgid "Hollowing parameter change" +msgstr "Zmiana parametrów drążenia" + +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Hollowing thickness" +msgstr "Grubość ścianki" + +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Plaster miodu" -#: src/slic3r/GUI/Tab.cpp:1013 +#: src/slic3r/GUI/Tab.cpp:1066 msgid "Horizontal shells" msgstr "Powłoka pozioma" -#: src/libslic3r/PrintConfig.cpp:209 +#: src/libslic3r/PrintConfig.cpp:235 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Szerokość brim (obramowania), drukowanego wokół każdego z modeli na pierwszej warstwie." -#: src/slic3r/GUI/PrintHostDialogs.cpp:151 +#: src/slic3r/GUI/PrintHostDialogs.cpp:152 msgid "Host" msgstr "Host" -#: src/libslic3r/PrintConfig.cpp:1267 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "Rodzaj Serwera" @@ -2975,749 +3302,810 @@ msgstr "Rodzaj Serwera" msgid "Hostname" msgstr "Nazwa hosta" -#: src/libslic3r/PrintConfig.cpp:81 +#: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" msgstr "Nazwa Hosta, IP lub URL" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:141 msgid "Hover the cursor over buttons to find more information \nor click this button." msgstr "Umieść kursor nad przyciskiem aby uzyskać więcej informacji\nlub kliknij ten przycisk." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2803 msgid "How far should the pad extend around the contained geometry" msgstr "Jak daleko poza kształt powinna sięgać podkładka" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2892 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Głębokość, na którą malutkie łączniki podpór powinny wnikać w powłokę modelu." -#: src/libslic3r/PrintConfig.cpp:2380 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "How much the pinhead has to penetrate the model surface" msgstr "Głębokość, na którą łącznik podpory powinien wnikać w powłokę modelu" -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/libslic3r/PrintConfig.cpp:2746 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Odległość, na którą model zostanie podniesiony na podporach. Jeśli opcja \"Podkładka wokół modelu\" jest włączona, to ten parametr zostanie zignorowany." -#: src/libslic3r/PrintConfig.cpp:95 +#: src/libslic3r/PrintConfig.cpp:111 msgid "HTTPS CA File" msgstr "Plik certyfikatu HTTPS CA" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "Plik HTTPS CA jest opcjonalny. Jest potrzebny jedynie w sytuacji, gdy używasz HTTPS z certyfikatem samopodpisanym." -#: src/slic3r/GUI/Tab.cpp:1773 +#: src/slic3r/GUI/Tab.cpp:1755 #, possible-c-format msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." msgstr "Plik certyfikatu HTTPS:\nW tym systemie, %s używa certyfikatu HTTPS z magazynu systemowego (Certificate Store) lub Keychain. Aby użyć własnego certyfikatu, zaimportuj plik do Certificate Store / Keychain." -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:226 msgid "Icon size in a respect to the default size" msgstr "Rozmiar ikon w odniesieniu do domyślnego" -#: src/slic3r/GUI/PrintHostDialogs.cpp:148 +#: src/slic3r/GUI/PrintHostDialogs.cpp:149 msgid "ID" msgstr "ID" -#: src/libslic3r/PrintConfig.cpp:1787 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Jeśli ta opcja będzie zaznaczona, to podpory zostaną wygenerowane automatycznie, na podstawie ustawionego progu zwisu. Jeśli ją odznaczysz, to podpory będą generowane jedynie w środku modyfikatora wymuszającego podpory." -#: src/slic3r/GUI/ConfigWizard.cpp:413 +#: src/slic3r/GUI/ConfigWizard.cpp:772 #, possible-c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "To ustawienie spowoduje wyszukiwanie nowych wersji aplikacji %s online. Po pojawieniu się nowej wersji, przy kolejnym uruchomieniu zostanie wyświetlone powiadomienie (nie pojawi się, gdy aplikacja będzie uruchomiona). Jest to tylko mechanizm powiadamiania - nie instaluje aktualizacji automatycznie." -#: src/slic3r/GUI/ConfigWizard.cpp:423 +#: src/slic3r/GUI/ConfigWizard.cpp:782 #, possible-c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Jeśli aktywna, to %s będzie pobierać aktualizacje wbudowanych zestawów ustawień w tle. Będą one pobierane do folderu tymczasowego. Opcja aktualizacji ustawień będzie oferowana przy starcie aplikacji." -#: src/libslic3r/PrintConfig.cpp:1774 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." -msgstr "Jeśli ta opcja będzie aktywna, to wszystkie ekstrudery będą czyszczone na przedniej krawędzi powierzchni roboczej na początku wydruku." +msgstr "Jeśli ta opcja będzie aktywna, to wszystkie ekstrudery będą czyszczone na przedniej krawędzi stołu na początku wydruku." -#: src/slic3r/GUI/Preferences.cpp:63 +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "Jeśli włączone, pozwala poleceniu Wczytaj ponownie z dysku automatycznie odnaleźć i wczytać pliki.\nJeśli wyłączone, to polecenie będzie otwierać okno dialogowe, w którym wskażesz plik do przeładowania." + +#: src/slic3r/GUI/Preferences.cpp:75 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." +msgstr "Jeśli włączone, pozwala poleceniu Wczytaj ponownie z dysku automatycznie odnaleźć i wczytać pliki." + +#: src/slic3r/GUI/Preferences.cpp:66 msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Włączenie automatycznego sprawdzania dostępności nowych wersji PrusaSlicer online. Pojawienie się nowej wersji spowoduje wyświetlenie powiadomienia przy starcie aplikacji (nigdy podczas jej pracy). Ta funkcja służy tylko powiadamianiu, nie instaluje aktualizacji automatycznie." -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:84 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Włączenie powoduje pobieranie wbudowanych systemowych zestawów ustawień w tle. Te ustawienia są pobierane do oddzielnej lokalizacji tymczasowej. Jeśli pojawi się nowa wersja to opcja jej instalacji pojawi się przy starcie aplikacji." -#: src/slic3r/GUI/Preferences.cpp:105 +#: src/slic3r/GUI/Preferences.cpp:108 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Po włączeniu podgląd 3D będzie renderowany w rozdzielczości Retina. Wyłącz tę opcję w przypadku wystąpienia problemów z wydajnością 3D." -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." -msgstr "Po włączeniu wieża czyszcząca nie będzie drukowana na warstwach, na których nie ma zmian koloru. Na kolejnych warstwach ze zmianami kolor ekstruder zjedzie w dół, aby kontynuować czyszczenie na wieży. Użytkownik musi upewnić się, że nie nastąpi kolizja głowicy z wydrukiem." +msgstr "Po włączeniu wieża czyszcząca nie będzie drukowana na warstwach, na których nie ma zmian koloru. Na kolejnych warstwach ze zmianami koloru ekstruder zjedzie w dół, aby kontynuować czyszczenie na wieży. Użytkownik musi upewnić się, że nie nastąpi kolizja głowicy z wydrukiem." -#: src/slic3r/GUI/Preferences.cpp:112 +#: src/slic3r/GUI/Preferences.cpp:131 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "Jeśli włączone, to używany będę wolny widok. Jeśli wyłączone, to widok będzie ograniczony." + +#: src/slic3r/GUI/Preferences.cpp:123 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Po włączeniu będzie wyświetlony widok perspektywiczny. Po wyłączeniu, ortograficzny." -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:149 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Włączenie umożliwi ręczną zmianę rozmiaru ikon pasków narzędzi." -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "If estimated layer time is below ~%1%s, fan will run at %2%%% and print speed will be reduced so that no less than %3%s are spent on that layer (however, speed will never be reduced below %4%mm/s)." msgstr "Jeśli szacowany czas druku warstwy jest niższy niż ~%1%s, wentylator będzie pracował na %2%%% a prędkość druku zostanie obniżona tak, aby warstwa była drukowana przez nie mniej niż %3%s (jednakże prędkość nie zejdzie poniżej %4%mm/s)." -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "If estimated layer time is greater, but still below ~%1%s, fan will run at a proportionally decreasing speed between %2%%% and %3%%%." msgstr "Jeśli szacowany czas jest wyższy, ale poniżej ~%1%s, wentylator będzie pracował z proporcjonalnie zmniejszaną prędkością poniędzy %2%%% a %3%%%." -#: src/libslic3r/PrintConfig.cpp:853 +#: src/libslic3r/PrintConfig.cpp:901 msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds." msgstr "Jeśli ustawisz wartość bezwzględną wyrażoną w mm/s, taka prędkość będzie zastosowana dla wszystkich ruchów drukujących dla pierwszej warstwy, nie zależnie od ich rodzajów. Jeśli ustawisz wartość procentową (np. 40%), będzie ona skalowana wg domyślnej prędkości." -#: src/libslic3r/PrintConfig.cpp:540 +#: src/libslic3r/PrintConfig.cpp:573 msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds." msgstr "Jeśli szacowany czas druku warstwy będzie niższy niż ta wartość to wentylator będzie włączony a jego prędkość będzie interpolowana na podstawie górnego i dolnego limitu prędkości." -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value." msgstr "Jeśli szacowany czas druku warstwy będzie niższy niż ta wartość to prędkość ruchów drukujących będzie zmniejszona aby wydłużyć czas druku." -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:567 msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS." msgstr "Ta opcja spowoduje, że wentylator nie wyłączy się podczas druku, tzn. zawsze będzie pracował z przynajmniej minimalną prędkością. Przydatne dla PLA, może szkodzić przy ABS." -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "If this is enabled, Slic3r will auto-center objects around the print bed center." msgstr "Spowoduje, że Slic3r będzie automatycznie umieszczał modele wokół centrum stołu." -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code." msgstr "Spowoduje, że Slic3r będzie automatycznie procesował modele jak tylko zostaną załadowane aby zmniejszyć czas eksportu G-code." -#: src/slic3r/GUI/Preferences.cpp:38 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files." msgstr "Włączenie spowoduje, że Slic3r będzie za każdym razem pytał gdzie wyeksportować plik zamiast używać katalogu z plikami wejściowymi." -#: src/libslic3r/PrintConfig.cpp:1492 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered." msgstr "Jeśli ustawisz tu wartość dodatnią to oś Z wykona szybki ruch w górę przy każdej retrakcji. Przy używaniu kilku ekstruderów tylko ustawienia pierwszego z nich będą brane pod uwagę." -#: src/libslic3r/PrintConfig.cpp:1501 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers." msgstr "Jeśli ustawisz wartość dodatnią, to oś Z (z-hop) będzie podnosić się tylko powyżej ustawionej wartości. Możesz w ten sposób wyłączyć z-hop na pierwszej warstwie." -#: src/libslic3r/PrintConfig.cpp:1510 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers." msgstr "Jeśli ustawisz wartość dodatnią, to z-hop będzie odbywał się tylko poniżej ustawionej wartości. Możesz w ten sposób ograniczyć działanie funkcji np. tylko dla pierwszych warstw." -#: src/libslic3r/PrintConfig.cpp:1384 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables." msgstr "Wprowadź ścieżki do własnych skryptów jeśli chcesz dodać je do wyjściowego pliku G-code. Możesz dodać wiele skryptów, rozdzielając je średnikiem ( ; ). Skrypty będą przetwarzane jako pierwsze w kolejności i mają dostęp do ustawień konfiguracyjnych Slic3ra przez zmienne środowiskowe." -#: src/libslic3r/PrintConfig.cpp:498 +#: src/libslic3r/PrintConfig.cpp:530 msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)." msgstr "Jeśli oprogramowanie układowe (firmware) Twojej drukarki nie obsługuje rozmieszczenia ekstruderów to trzeba to określić w G-code. Ta opcja pozwala ustawić rozmieszczenie każdego ekstrudera w relacji do pierwszego. Oczekuje koordynat dodatnich (będą odejmowane od koordynat XY)." -#: src/libslic3r/PrintConfig.cpp:2068 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Jeśli Twój firmware wymaga względnych wartości E, zaznacz to pole. W innym przypadku zostaw puste. Większość układów obsługuje wartości absolutne." -#: src/libslic3r/PrintConfig.cpp:3096 +#: src/libslic3r/PrintConfig.cpp:3470 msgid "Ignore non-existent config files" msgstr "Ignoruj nieistniejące pliki konfiguracyjne" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "Import Konfigura&cji" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "Import Paczki Konfi&guracyjnej" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "Import Konfiguracji z &projektu" -#: src/slic3r/GUI/Plater.cpp:4016 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "Importuj konfigurację z ini/amf/3mf/gcode" + +#: src/slic3r/GUI/Plater.cpp:4616 msgid "Import Object" msgstr "Import Modelu" -#: src/slic3r/GUI/Plater.cpp:4020 +#: src/slic3r/GUI/Plater.cpp:4620 msgid "Import Objects" msgstr "Importuj Modele" -#: src/slic3r/Utils/FixModelByWin10.cpp:383 +#: src/slic3r/Utils/FixModelByWin10.cpp:390 msgid "Import of the repaired 3mf file failed" msgstr "Niepowodzenie importu naprawionego pliku 3MF" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" msgstr "Import STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:106 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 msgid "Import STL/OBJ/AMF/3MF without config, keep bed" msgstr "Otwórz projekt STL/OBJ/AMF/3MF bez konfiguracji, zachowaj stół" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2416 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "Otwórz STL/OBJ/AMF/3MF bez konfiguracji, zachowaj zawartość stołu" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 #, possible-c-format msgid "In this mode you can select only other %s Items%s" msgstr "W tym trybie możesz wybrać jedynie %s elementów %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:132 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "Niekompatybilne zestawy ustawień:" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 #, possible-c-format msgid "Incompatible with this %s" msgstr "Brak kompatybilności z %s" -#: src/slic3r/GUI/Plater.cpp:4091 +#: src/slic3r/GUI/Plater.cpp:4700 msgid "Increase Instances" msgstr "Zwiększ ilość kopii" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:269 msgid "Increase/decrease edit area" msgstr "Zmniejsz/zwiększ obszar edycji" +#: src/slic3r/GUI/Plater.cpp:2906 +msgid "Indexing hollowed object" +msgstr "Indeksowanie wydrążonego obiektu" + #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3338 +#: src/slic3r/GUI/Tab.cpp:3242 msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." msgstr "oznacza, że niektóre ustawienia zostały zmodyfikowane i nie odpowiadają wartościom systemowym (lub domyślnym) w obecnej grupie opcji. \nKliknij ikonę OTWARTEJ KŁÓDKI, aby zresetować wszystkie ustawienia obecnej grupy ustawień do wartości systemowych (lub domyślnych)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3334 +#: src/slic3r/GUI/Tab.cpp:3238 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "wskazuje na to, że ustawienia są takie same jak systemowe (lub domyślne) wartości dla danej grupy opcji" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3083 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy opcji.\nKliknij ikonę STRZAŁKI W TYŁ aby zresetować wszystkie ustawienia w obecnej grupie opcji do tych z ostatnio zapisanego zestawu ustawień." -#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69 -#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439 -#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031 -#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167 -#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729 -#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780 -#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943 -#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659 -#: src/libslic3r/PrintConfig.cpp:1676 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 +#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 +#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "Wypełnienie" -#: src/slic3r/GUI/PresetHints.cpp:171 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "wypełnienia" -#: src/libslic3r/PrintConfig.cpp:972 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "Wypełnienie przed obrysami" -#: src/libslic3r/PrintConfig.cpp:953 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "Ekstruder dla wypełnienia" -#: src/libslic3r/PrintConfig.cpp:987 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "Nakładanie wypełnienia na obrysy" -#: src/libslic3r/Print.cpp:1476 +#: src/libslic3r/Print.cpp:1580 msgid "Infilling layers" msgstr "Warstwy wypełniające" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2424 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 msgid "Info" msgstr "Info" -#: src/libslic3r/PrintConfig.cpp:1008 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "Dziedziczy profil" -#: src/libslic3r/SLAPrint.cpp:707 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "Początkowy czas naświetlania jest poza zakresem profilu drukarki." -#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318 +#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 msgid "Initial exposure time" msgstr "Początkowy czas naświetlania" -#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296 +#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 msgid "Initial layer height" msgstr "Wysokość pierwszej warstwy" -#: src/slic3r/GUI/Field.cpp:155 +#: src/slic3r/GUI/Field.cpp:199 msgid "Input value is out of range" msgstr "Wartość poza zakresem" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "Sprawdzenie / aktywacja zrzutów konfiguracji" -#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 #, possible-c-format msgid "Instance %d" msgstr "Kopia %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1887 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 msgid "Instance manipulation" msgstr "Manipulacja kopią modelu" -#: src/slic3r/GUI/wxExtensions.cpp:358 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 msgid "Instances" msgstr "Instancje (kopie)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:934 src/slic3r/GUI/GUI_ObjectList.cpp:3346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 msgid "Instances to Separated Objects" msgstr "Kopie jako Osobne Modele" -#: src/libslic3r/PrintConfig.cpp:1886 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "Warstwy łączące" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" -msgstr "Warstwy łączące" +msgstr "Warstwy łączące (pętle)" -#: src/libslic3r/PrintConfig.cpp:1895 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" -msgstr "Rozmieszczenie wzoru warstw łączących" +msgstr "Rozstaw wzoru warstw łączących" -#: src/libslic3r/PrintConfig.cpp:1022 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "Powłoki łączące" -#: src/libslic3r/Zipper.cpp:87 +#: src/libslic3r/Zipper.cpp:84 msgid "internal error" msgstr "błąd wewnętrzny" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Wypełnienie wewnętrzne" -#: src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:3090 msgid "Invalid data" msgstr "Nieprawidłowe dane" -#: src/slic3r/GUI/BedShapeDialog.cpp:471 src/slic3r/GUI/BedShapeDialog.cpp:520 -#: src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "Nieprawidłowy format pliku." -#: src/libslic3r/Zipper.cpp:83 +#: src/libslic3r/Zipper.cpp:80 msgid "invalid filename" msgstr "nieprawidłowa nazwa" -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "Nieprawidłowe przenikanie łączników podpór" -#: src/libslic3r/Zipper.cpp:51 +#: src/libslic3r/Zipper.cpp:48 msgid "invalid header or archive is corrupted" msgstr "niewłaściwy nagłówek lub uszkodzone archiwum" -#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173 +#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Nieprawidłowa wartość numeryczna." -#: src/libslic3r/Zipper.cpp:81 +#: src/libslic3r/Zipper.cpp:78 msgid "invalid parameter" msgstr "nieprawidłowy parametr" -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "Błędna średnica łącznika" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:94 +#: src/slic3r/GUI/AboutDialog.cpp:258 msgid "is licensed under the" msgstr "ma licencję na warunkach" -#: src/slic3r/GUI/Tab.cpp:2779 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "Is necessary to install a configuration update. " +msgstr "Do instalacji jest wymagana aktualizacja konfiguracji." + +#: src/slic3r/GUI/Tab.cpp:2925 msgid "is not compatible with print profile" msgstr "nie jest kompatybilne z profilem druku" -#: src/slic3r/GUI/Tab.cpp:2778 +#: src/slic3r/GUI/Tab.cpp:2924 msgid "is not compatible with printer" msgstr "nie jest kompatybilne z drukarką" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "Izometryczny" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "Widok izometryczny" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:966 msgid "It can't be deleted or modified." msgstr "Nie można usunąć ani zmodyfikować." -#: src/libslic3r/PrintConfig.cpp:926 +#: src/slic3r/GUI/Plater.cpp:3307 +msgid "It is not allowed to change the file to reload" +msgstr "Zmiana modelu do ponownego wczytania jest niemożliwa." + +#: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Zwiększenie prądu podawanego do silnika ekstrudera może mieć pozytywny wpływ podczas zmiany filamentu, pomagając kształtować końcówkę przez wyciskanie oraz przepychać filament z nieprawidłowo ukształtowaną końcówką." -#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Drukowanie modeli złożonych z wielu elementów jest niemożliwe w technologii SLA." -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2225 msgid "Jerk limits" msgstr "Limity jerku" -#: src/libslic3r/PrintConfig.cpp:1579 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "Jitter" -#: src/libslic3r/PrintConfig.cpp:533 +#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 +#: src/slic3r/GUI/DoubleSlider.cpp:1623 +msgid "Jump to height" +msgstr "Przejdź do wysokości" + +#: src/slic3r/GUI/DoubleSlider.cpp:928 +#, possible-c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "Przejdź na wysokość %s lub ustaw sekwencję ekstruderów dla całego wydruku" + +#: src/libslic3r/PrintConfig.cpp:566 msgid "Keep fan always on" msgstr "Wentylator zawsze włączony" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "Zachowaj dolną część" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:309 msgid "Keep min" msgstr "Zachowaj min" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "Zachowaj górną część" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 msgid "Keyboard Shortcuts" -msgstr "Skróty Klawiszowe" +msgstr "Skróty klawiszowe" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "Skróty klawiszowe" + +#: src/libslic3r/PrintConfig.cpp:2489 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "Oznacz modele" -#: src/libslic3r/PrintConfig.cpp:2234 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "Tryb krajobrazu" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "Język" -#: src/slic3r/GUI/GUI_App.cpp:755 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "Wybór języka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1770 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 msgid "Last instance of an object cannot be deleted." msgstr "Ostatnia kopia modelu nie może zostać usunięta." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2994 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 msgid "Layer" msgstr "Warstwa" -#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55 +#: src/slic3r/GUI/ConfigManipulation.cpp:49 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Wysokość warstwy" -#: src/libslic3r/Print.cpp:1332 +#: src/libslic3r/Print.cpp:1423 msgid "Layer height can't be greater than nozzle diameter" msgstr "Wysokość pierwszej warstwy nie może być większa od średnicy dyszy" -#: src/slic3r/GUI/Tab.cpp:2260 +#: src/slic3r/GUI/Tab.cpp:2358 msgid "Layer height limits" msgstr "Limit wysokości warstw" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "Layer height:" msgstr "Wysokość warstwy:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2109 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 msgid "Layer range Settings to modify" msgstr "Zakres warstw dla modyfikacji ustawień" -#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620 -#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844 -#: src/libslic3r/PrintConfig.cpp:1889 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "warstwy" -#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 +#: src/slic3r/GUI/Tab.cpp:3585 msgid "Layers" msgstr "Warstwy" -#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391 +#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 msgid "Layers and perimeters" msgstr "Warstwy i obrysy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68 -#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56 -#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381 -#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446 -#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026 -#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371 -#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987 -#: src/libslic3r/PrintConfig.cpp:2044 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 +#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "Warstwy i Obrysy" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Layers Slider Shortcuts" -msgstr "Skróty Suwaka Warstw" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "Suwak warstw" -#. TRN To be shown in Print Settings "Bottom solid layers" -#: rc/libslic3r/PrintConfig.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +msgid "Layers Slider Shortcuts" +msgstr "Skróty suwaka warstw" + +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Bottom" msgstr "Spód" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/libslic3r/PrintConfig.cpp:2043 +#: src/slic3r/GUI/OptionsGroup.cpp:253 msgctxt "Layers" msgid "Top" msgstr "Góra" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "Lewo" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Left click" msgstr "Lewy przycisk" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:242 msgid "Left mouse button:" msgstr "Lewy przycisk myszki:" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "Widok lewy" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:259 msgid "Legend" msgstr "Legenda" -#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "Długość" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:318 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Długość rurki chłodzącej ograniczająca ruchy chłodzące do jej zakresu." #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:124 +#: src/slic3r/GUI/AboutDialog.cpp:129 msgid "License agreements of all following programs (libraries) are part of application license agreement" msgstr "Umowy licencyjne dla wszystkich części programu (bibliotek) są częścią umowy licencyjnej programu" -#: src/libslic3r/PrintConfig.cpp:1491 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "Z-hop" -#: src/libslic3r/PrintConfig.cpp:801 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "Linia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1050 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 msgid "Load" msgstr "Załaduj" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "Wczytaj model" -#: src/libslic3r/PrintConfig.cpp:3116 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Załaduj i przechowuj ustawienia w podanej lokalizacji. Jest to przydatne przy używaniu wielu profili lub konfiguracji z lokalizacji sieciowej." -#: src/libslic3r/PrintConfig.cpp:3100 +#: src/libslic3r/PrintConfig.cpp:3474 msgid "Load config file" msgstr "Wczytaj plik konfiguracyjny" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 msgid "Load Config from .ini/amf/3mf/gcode" msgstr "Wczytaj Konfigurację z .ini/amf/3mf/gcode" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 msgid "Load Config from .ini/amf/3mf/gcode and merge" msgstr "Wczytaj Konfigurację z .ini/amf/3mf/gcode i złącz" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "Wczytaj Konfigurację z ini/amf/3mf/gcode i złącz" + +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "Wczytaj konfigurację z pliku projektu" -#: src/libslic3r/PrintConfig.cpp:3101 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Wczytaj konfigurację z określonego pliku. Może być użyte więcej niż raz, aby wczytać opcje z wielu plików." -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "Wczytaj wyeksportowany plik konfiguracyjny" -#: src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1375 msgid "Load File" msgstr "Wczytaj Plik" -#: src/slic3r/GUI/Plater.cpp:1275 +#: src/slic3r/GUI/Plater.cpp:1379 msgid "Load Files" msgstr "Wczytaj Pliki" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 msgid "Load Part" msgstr "Wczytaj Element" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "Wczytaj zestaw ustawień" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4588 msgid "Load Project" msgstr "Wczytaj Projekt" -#: src/slic3r/GUI/BedShapeDialog.cpp:97 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "Wczytaj kształt z STL..." -#: src/slic3r/GUI/BedShapeDialog.cpp:181 src/slic3r/GUI/BedShapeDialog.cpp:249 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "Załaduje..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:235 +#: src/slic3r/GUI/WipeTowerDialog.cpp:264 msgid "loaded" msgstr "załadowano" -#: src/slic3r/GUI/Plater.cpp:1782 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "Loaded" msgstr "Wczytano" -#: src/slic3r/GUI/Plater.cpp:1590 +#: src/slic3r/GUI/Plater.cpp:2257 msgid "Loading" msgstr "Ładowanie" -#: src/slic3r/GUI/GUI_App.cpp:407 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "Ładowanie trybu wyświetlania" -#: src/slic3r/GUI/GUI_App.cpp:399 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "Wczytywanie aktualnych zestawów ustawień" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:378 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Loading repaired model" msgstr "Ładowanie naprawionego modelu" -#: src/libslic3r/PrintConfig.cpp:575 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "Prędkość ładowania" -#: src/libslic3r/PrintConfig.cpp:583 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "Początkowa prędkość ładowania" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:63 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:106 msgid "Local coordinates" msgstr "Lokalny układ współrzędnych" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:49 msgid "Lock supports under new islands" msgstr "Zablokuj podpory pod nowymi wyspami" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3236 msgid "LOCKED LOCK" msgstr "ZAMKNIĘTA KŁÓDKA" -#: src/slic3r/GUI/Tab.cpp:3360 +#: src/slic3r/GUI/Tab.cpp:3264 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "ZAMKNIĘTA KŁÓDKA oznacza, że ustawienia są takie same jak wartości systemowe (lub domyślne) w obecnej grupie ustawień" -#: src/slic3r/GUI/Tab.cpp:3376 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "ZAMKNIĘTA KŁÓDKA oznacza, że wartości są takie same jak systemowe (lub domyślne)." -#: src/libslic3r/PrintConfig.cpp:3119 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Logging level" msgstr "Poziom logowania" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "Pętle (minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 msgid "Lower Layer" msgstr "Dolna Warstwa" -#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209 -#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087 -#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110 -#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132 -#: src/libslic3r/PrintConfig.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "Limity maszynowe" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 msgid "Main Shortcuts" -msgstr "Główne Skróty" +msgstr "Główne skróty" -#: src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/Plater.cpp:168 msgid "Manifold" msgstr "Model zamknięty" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:57 msgid "Manual editing" msgstr "Edycja ręczna" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 msgid "Masked SLA file exported to %1%" msgstr "Maskowany plik SLA wyeksportowany do %1%" -#: src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:754 msgid "Mate&rial Settings Tab" msgstr "Ustawienia Mate&riału" -#: src/slic3r/GUI/Tab.cpp:3300 +#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 msgid "Material" msgstr "Materiał" -#: src/slic3r/GUI/Tab.hpp:391 +#: src/slic3r/GUI/Tab.hpp:415 msgid "Material Settings" msgstr "Ustawienia Materiału" -#: src/slic3r/GUI/Plater.cpp:140 +#: src/slic3r/GUI/Plater.cpp:165 msgid "Materials" msgstr "Materiały" -#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "Max" -#: src/libslic3r/PrintConfig.cpp:2470 +#: src/libslic3r/PrintConfig.cpp:2725 msgid "Max bridge length" msgstr "Maksymalna długość mostu" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2813 msgid "Max merge distance" msgstr "Maksymalny dystans łączenia" -#: src/libslic3r/PrintConfig.cpp:2479 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max pillar linking distance" msgstr "Maksymalny dystans łączenia słupków" -#: src/libslic3r/PrintConfig.cpp:64 +#: src/libslic3r/PrintConfig.cpp:80 msgid "Max print height" msgstr "Maksymalna wysokość wydruku" -#: src/libslic3r/PrintConfig.cpp:1172 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "Maksymalna prędkość druku" @@ -3725,167 +4113,167 @@ msgstr "Maksymalna prędkość druku" msgid "max PrusaSlicer version" msgstr "max wersja PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:1203 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "Maksymalny negatywny kąt zwisu" -#: src/libslic3r/PrintConfig.cpp:1192 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "Maksymalny objętościowo kąt pozytywny" -#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "Maksymalny przepływ" -#: src/libslic3r/PrintConfig.cpp:2167 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "Maksymalna odległość drukowania mostów" -#: src/libslic3r/PrintConfig.cpp:2193 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "Minimalny odstęp pomiędzy podporami w sekcjach rzadkiego wypełnienia." -#: src/libslic3r/PrintConfig.cpp:1099 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "Maksymalne przyspieszenie E" -#: src/libslic3r/PrintConfig.cpp:1105 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "Maksymalne przyspieszenie osi E (ekstrudera)" -#: src/libslic3r/PrintConfig.cpp:1102 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "Maksymalne przyspieszenie osi X" -#: src/libslic3r/PrintConfig.cpp:1103 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "Maksymalne przyspieszenie osi Y" -#: src/libslic3r/PrintConfig.cpp:1104 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Maksymalne przyspieszenie osi Z" -#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" msgstr "Maksymalne przyspieszenie podczas ekstruzji" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" msgstr "Maksymalne przyspieszenie podczas ekstrudowania (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "Maksymalne przyspieszenie podczas retrakcji" -#: src/libslic3r/PrintConfig.cpp:1169 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "Maksymalne przyspieszenie podczas retrakcji (M204 T)" -#: src/libslic3r/PrintConfig.cpp:1096 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "Maksymalne przyspieszenie X" -#: src/libslic3r/PrintConfig.cpp:1097 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Maksymalne przyspieszenie Y" -#: src/libslic3r/PrintConfig.cpp:1098 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Maksymalne przyspieszenie Z" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2218 msgid "Maximum accelerations" msgstr "Maksymalne przyspieszenia" -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 msgid "Maximum exposure time" msgstr "Maksymalny czas naświetlania" -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" msgstr "Maksymalny posuw E" -#: src/libslic3r/PrintConfig.cpp:1087 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" msgstr "Maksymalny posuw (prędkość ruchu) osi E (ekstrudera)" -#: src/libslic3r/PrintConfig.cpp:1084 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" msgstr "Maksymalny posuw (prędkość ruchu) osi X" -#: src/libslic3r/PrintConfig.cpp:1085 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" msgstr "Maksymalny posuw (prędkość ruchu) osi Y" -#: src/libslic3r/PrintConfig.cpp:1086 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" msgstr "Maksymalny posuw (prędkość ruchu) osi Z" -#: src/libslic3r/PrintConfig.cpp:1078 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" msgstr "Maksymalny posuw osi X" -#: src/libslic3r/PrintConfig.cpp:1079 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" msgstr "Maksymalny posuw Y" -#: src/libslic3r/PrintConfig.cpp:1080 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" msgstr "Maksymalny posuw Z" -#: src/slic3r/GUI/Tab.cpp:2165 +#: src/slic3r/GUI/Tab.cpp:2213 msgid "Maximum feedrates" msgstr "Maksymalne prędkości posuwu" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 msgid "Maximum initial exposure time" msgstr "Maksymalny początkowy czas naświetlania" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Maksymalny jerk E" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "Maksymalny jerk dla osi E (ekstrudera)" -#: src/libslic3r/PrintConfig.cpp:1120 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "Maksymalny jerk osi X" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Maksymalny jerk osi Y" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Maksymalny jerk dla osi Z" -#: src/libslic3r/PrintConfig.cpp:1114 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Maksymalny jerk X" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Maksymalny jerk Y" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Maksymalny jerk Z" -#: src/libslic3r/PrintConfig.cpp:566 +#: src/libslic3r/PrintConfig.cpp:598 msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Maksymalna prędkość objętościowa dla tego filamentu. Ogranicza maksymalną prędkość objętościową do minimum objętościowej prędkości druku i filamentu. Ustaw zero aby usunąć ograniczenie." -#: src/libslic3r/PrintConfig.cpp:3053 +#: src/libslic3r/PrintConfig.cpp:3427 msgid "Merge" msgstr "Łączenie" -#: src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Łączenie mostów lub słupków podpór z innymi może zwiększyć ich promień. 0 oznacza brak zmiany, 1 oznacza zmianę w całości." -#: src/libslic3r/SLAPrint.cpp:71 +#: src/libslic3r/SLAPrintSteps.cpp:62 msgid "Merging slices and calculating statistics" msgstr "Łączenie cięć i obliczanie statystyk" @@ -3893,7 +4281,7 @@ msgstr "Łączenie cięć i obliczanie statystyk" msgid "Mesh repair failed." msgstr "Niepowodzenie naprawy siatki." -#: src/slic3r/GUI/wxExtensions.cpp:3514 +#: src/slic3r/GUI/DoubleSlider.cpp:1607 msgid "Message for pause print on current layer (%1% mm)." msgstr "Komenda pauzująca wydruk na danej warstwie (%1% mm)." @@ -3901,11 +4289,11 @@ msgstr "Komenda pauzująca wydruk na danej warstwie (%1% mm)." msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" msgstr "Komunikaty o ważności niższej lub równej loglevel będą zapisywane: 0:śledzenie, 1:debugowanie, 2:info, 3:ostrzeżenie, 4:błąd, 5:krytyczny" -#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Min" -#: src/libslic3r/PrintConfig.cpp:1233 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "Minimalna prędkość druku" @@ -3913,195 +4301,239 @@ msgstr "Minimalna prędkość druku" msgid "min PrusaSlicer version" msgstr "min wersja PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:2507 +#: src/libslic3r/PrintConfig.cpp:2763 msgid "Minimal distance of the support points" msgstr "Minimalne rozmieszczenie punktów podpór" -#: src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "Minimalna długość ekstruzji" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:54 msgid "Minimal points distance" msgstr "Minimalny dystans pomiędzy punktami" -#: src/libslic3r/PrintConfig.cpp:635 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "Minimalna objętość czyszczenia" -#: src/libslic3r/PrintConfig.cpp:1442 +#: src/libslic3r/PrintConfig.cpp:177 +msgid "Minimum bottom shell thickness" +msgstr "Minimalna grubość dolnej powłoki" + +#: src/slic3r/GUI/PresetHints.cpp:335 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "Minimalna grubość dolnej powłoki to %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1512 msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Minimalna rozdzielczość, używana do uproszczenia modelu wejściowego, co prowadzi do przyspieszenia procesu cięcia. Modele w wysokiej rozdzielczości mogą zawierać więcej szczegółów niż drukarka jest w stanie przetworzyć. Ustaw zero aby wyłączyć upraszczanie i użyć pełnej rozdzielczości pliku wejściowego." -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 msgid "Minimum exposure time" msgstr "Minimalny czas naświetlania" -#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" msgstr "Minimalna prędkość posuwu z ekstruzją" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" msgstr "Minimalna prędkość posuwu z ekstruzją (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2182 +#: src/slic3r/GUI/Tab.cpp:2230 msgid "Minimum feedrates" msgstr "Minimalna prędkość posuwu" -#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 +#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 msgid "Minimum initial exposure time" msgstr "Minimalny początkowy czas naświetlania" -#: src/libslic3r/PrintConfig.cpp:1452 +#: src/slic3r/GUI/Tab.cpp:1071 +msgid "Minimum shell thickness" +msgstr "Minimalna grubość powłoki" + +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "Minimalna grubość górnej/dolnej powłoki" + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "Minimalna grubość górnej powłoki" + +#: src/slic3r/GUI/PresetHints.cpp:316 +msgid "Minimum top shell thickness is %1% mm." +msgstr "Minimalna grubość górnej powłoki to %1% mm." + +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "Minimalny ruch jałowy po retrakcji" -#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" msgstr "Minimalna prędkość posuwu ruchu jałowego" -#: src/libslic3r/PrintConfig.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" msgstr "Minimalna prędkość posuwu ruchu jałowego (M205 T)" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Minimum wall thickness of a hollowed model." +msgstr "Minimalna grubość ścianki drążonego modelu." + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum width of features to maintain when doing elephant foot compensation." +msgstr "Minimalna szerokość detali do zachowania podczas kompensacji stopy słonia." + +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror" msgstr "Lustrzane" -#: src/libslic3r/PrintConfig.cpp:2320 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "Odbij w poziomie" -#: src/slic3r/GUI/GLCanvas3D.cpp:1711 +#: src/slic3r/GUI/GLCanvas3D.cpp:2075 msgid "Mirror Object" msgstr "Odbicie Lustrzane" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/slic3r/GUI/Plater.cpp:4011 msgid "Mirror the selected object" msgstr "Odbicie lustrzane wybranego modelu" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:4004 msgid "Mirror the selected object along the X axis" msgstr "Odbicie lustrzane wybranego modelu w osi X" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:4006 msgid "Mirror the selected object along the Y axis" msgstr "Odbicie lustrzane wybranego modelu w osi Y" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:4008 msgid "Mirror the selected object along the Z axis" msgstr "Odbicie lustrzane wybranego modelu w osi Z" -#: src/libslic3r/PrintConfig.cpp:2327 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "Odbij w poziomie" -#: src/slic3r/Utils/OctoPrint.cpp:69 +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 #, possible-c-format msgid "Mismatched type of print host: %s" msgstr "Niepasujący typ serwera wydruku: %s" -#: src/libslic3r/GCode/PreviewData.cpp:176 +#: src/libslic3r/ExtrusionEntity.cpp:323 msgid "Mixed" msgstr "Mieszane" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2482 msgid "ml" msgstr "ml" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118 -#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84 -#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210 -#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293 -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353 -#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484 -#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680 -#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227 -#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263 -#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454 -#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503 -#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521 -#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612 -#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898 -#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125 -#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179 -#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297 -#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381 -#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454 -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483 -#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510 -#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539 -#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 +#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 +#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 +#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 +#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 +#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 +#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 +#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 +#: src/libslic3r/PrintConfig.cpp:2909 msgid "mm" msgstr "mm" -#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" msgstr "mm (zero aby wyłączyć)" -#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992 -#: src/libslic3r/PrintConfig.cpp:1797 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mm lub %" -#: src/libslic3r/PrintConfig.cpp:201 src/libslic3r/PrintConfig.cpp:577 -#: src/libslic3r/PrintConfig.cpp:585 src/libslic3r/PrintConfig.cpp:594 -#: src/libslic3r/PrintConfig.cpp:602 src/libslic3r/PrintConfig.cpp:629 -#: src/libslic3r/PrintConfig.cpp:648 src/libslic3r/PrintConfig.cpp:874 -#: src/libslic3r/PrintConfig.cpp:1001 src/libslic3r/PrintConfig.cpp:1079 -#: src/libslic3r/PrintConfig.cpp:1099 src/libslic3r/PrintConfig.cpp:1112 -#: src/libslic3r/PrintConfig.cpp:1123 src/libslic3r/PrintConfig.cpp:1176 -#: src/libslic3r/PrintConfig.cpp:1235 src/libslic3r/PrintConfig.cpp:1363 -#: src/libslic3r/PrintConfig.cpp:1537 src/libslic3r/PrintConfig.cpp:1546 -#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:2053 +#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 +#: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 +#: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 +#: src/libslic3r/PrintConfig.cpp:1050 src/libslic3r/PrintConfig.cpp:1135 +#: src/libslic3r/PrintConfig.cpp:1169 src/libslic3r/PrintConfig.cpp:1181 +#: src/libslic3r/PrintConfig.cpp:1191 src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1300 src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1616 +#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/PrintConfig.cpp:2154 msgid "mm/s" msgstr "mm/s" -#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856 -#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702 -#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s lub %" -#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303 -#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936 -#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134 -#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334 +#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:1661 +#: src/libslic3r/PrintConfig.cpp:1730 msgid "mm²" msgstr "mm²" -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" -#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" msgstr "Tryb" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" msgstr "model" -#: src/slic3r/GUI/BedShapeDialog.cpp:239 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "Model" @@ -4109,133 +4541,162 @@ msgstr "Model" msgid "Model fixing" msgstr "Naprawianie modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model Repair by the Netfabb service" msgstr "Naprawianie Modelu przez usługę Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:406 +#: src/slic3r/Utils/FixModelByWin10.cpp:413 msgid "Model repair canceled" msgstr "Anulowano naprawę modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:426 +#: src/slic3r/Utils/FixModelByWin10.cpp:433 msgid "Model repair failed:" msgstr "Niepowodzenie naprawy modelu:" -#: src/slic3r/Utils/FixModelByWin10.cpp:400 +#: src/slic3r/Utils/FixModelByWin10.cpp:407 msgid "Model repair finished" msgstr "Ukończono naprawę modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:430 msgid "Model repaired successfully" msgstr "Model naprawiono pomyślnie" -#: src/slic3r/GUI/Preset.cpp:207 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "zmodyfikowano" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Modifier" msgstr "Modyfikator" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1163 msgid "Modifiers" msgstr "Modyfikatory" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2503 msgid "money/bottle" msgstr "pieniędzy/butelkę" -#: src/libslic3r/PrintConfig.cpp:719 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "pieniędzy/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Mouse wheel" msgstr "Kółko myszy" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:266 msgid "Mouse wheel:" msgstr "Kółko myszy:" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" -msgstr "Przesuwaj" +msgstr "Przesuń" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 msgid "Move clipping plane" msgstr "Przesunięcie płaszczyzny przecinania" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 msgid "Move current slider thumb Down" msgstr "Przesuń suwak w dół" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Move current slider thumb Up" msgstr "Przesuń suwak w górę" -#: src/slic3r/GUI/GLCanvas3D.cpp:2872 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +msgid "Move drainage hole" +msgstr "Przesuń otwór odpływowy" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3538 msgid "Move Object" msgstr "Przesuń Model" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 msgid "Move point" msgstr "Przesuń punkt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "Przesuń zaznaczenie o -10 mm w osi X" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "Przesuń zaznaczenie o -10 mm w osi Y" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "Przesuń zaznaczenie o +10 mm w osi X" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "Przesuń zaznaczenie o +10 mm w osi Y" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 msgid "Move support point" msgstr "Przenieś plik podpory" -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "Ruch w przestrzeni widoku" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "Krok przesunięcia ustawiony na 1 mm" + +#: src/libslic3r/PrintConfig.cpp:2201 msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Drukarki pracujące z kilkoma filamentami na raz (multi-material) mogą wymagać czyszczenia głowicy przy zmianie filamentu. Nadmiar materiału jest wytłaczany w formie wieży czyszczącej." -#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769 +#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 msgid "Multi-part object detected" msgstr "Wykryto obiekt wieloczęściowy" -#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436 +#: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 #, possible-c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Wiele urządzeń %s znaleziono. Proszę zostawić tylko jedno podłączone podczas flashowania." -#: src/slic3r/GUI/Tab.cpp:1118 +#: src/slic3r/GUI/Tab.cpp:1181 msgid "Multiple Extruders" msgstr "Kilka ekstruderów" -#: src/slic3r/GUI/Plater.cpp:2414 +#: src/slic3r/GUI/Plater.cpp:2394 msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" msgstr "Kilka obiektów zostało załadowanych dla drukarki typu multi-material.\nTraktować je jako jeden model zawierający kilka części?" -#: src/libslic3r/PrintConfig.cpp:3050 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Multiply copies by creating a grid." msgstr "Pomnóż ilość kopii przez stworzenie siatki." -#: src/libslic3r/PrintConfig.cpp:3045 +#: src/libslic3r/PrintConfig.cpp:3419 msgid "Multiply copies by this factor." msgstr "Pomnóż ilość kopii przez tę wartość." -#: src/slic3r/GUI/Field.cpp:139 +#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 msgid "N/A" msgstr "N/D" -#: src/slic3r/GUI/GUI_ObjectList.cpp:176 +#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nazwa" -#: src/libslic3r/PrintConfig.cpp:1418 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter." msgstr "Nazwa wersji drukarki. Możesz np. tworzyć warianty wg średnicy dyszy." -#: src/libslic3r/PrintConfig.cpp:1412 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "Nazwa dostawcy drukarki." -#: src/libslic3r/PrintConfig.cpp:1009 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "Nazwa profilu, z którego dziedziczy ten profil." -#: src/libslic3r/PrintConfig.cpp:1560 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "Najbliższy" @@ -4243,36 +4704,40 @@ msgstr "Najbliższy" msgid "Network lookup" msgstr "Podgląd sieci" -#: src/slic3r/GUI/Plater.cpp:2056 +#: src/slic3r/GUI/Plater.cpp:2135 msgid "New Project" msgstr "Nowy Projekt" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 +msgid "New project, clear plater" +msgstr "Nowy projekt, wyczyść stół" + +#: src/slic3r/GUI/UpdateDialogs.cpp:38 #, possible-c-format msgid "New version of %s is available" msgstr "Dostępna jest nowa wersja: %s" -#: src/slic3r/GUI/UpdateDialogs.cpp:47 +#: src/slic3r/GUI/UpdateDialogs.cpp:45 msgid "New version:" msgstr "Nowa wersja:" -#: src/slic3r/GUI/GLCanvas3D.cpp:3750 +#: src/slic3r/GUI/GLCanvas3D.cpp:4722 msgid "Next Redo action: %1%" msgstr "Następna akcja do powtórzenia: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:3718 +#: src/slic3r/GUI/GLCanvas3D.cpp:4690 msgid "Next Undo action: %1%" msgstr "Następna akcja do cofnięcia: %1%" -#: src/libslic3r/PrintConfig.cpp:912 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "Brak ekstruzji" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:422 msgid "No pad can be generated for this model with the current configuration" msgstr "Nie ma możliwości wygenerowania podkładki dla tego modelu przy obecnych ustawieniach " -#: src/slic3r/GUI/MainFrame.cpp:635 +#: src/slic3r/GUI/MainFrame.cpp:786 msgid "No previously sliced file." msgstr "Brak poprzednio pociętych plików." @@ -4280,160 +4745,175 @@ msgstr "Brak poprzednio pociętych plików." msgid "NO RAMMING AT ALL" msgstr "BRAK WYCISKANIA" -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" -msgstr "Brak rzadkich warstwy (EKSPERYMENTALNE)" +msgstr "Brak warstw bez czyszczenia (EKSPERYMENTALNE)" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2765 msgid "No support points will be placed closer than this threshold." msgstr "Punkty nie zostaną umieszczone bliżej siebie niż ustawiona wartość." -#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422 -#: src/libslic3r/GCode/PreviewData.cpp:162 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates aviable" +msgstr "Brak dostępnych aktualizacji" + +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Brak" -#: src/slic3r/GUI/Tab.cpp:2152 +#: src/slic3r/GUI/Tab.cpp:2199 msgid "Normal" msgstr "Normalny" -#: src/slic3r/GUI/Plater.cpp:1073 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "normal mode" msgstr "tryb normalny" -#: src/libslic3r/Zipper.cpp:49 +#: src/libslic3r/Zipper.cpp:46 msgid "not a ZIP archive" msgstr "nie jest archiwum ZIP" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 msgid "Not found: " msgstr "Nie znaleziono:" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/GUI/DoubleSlider.cpp:985 +msgid "Note" +msgstr "Uwaga" + +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "Uwaga: Wymagany jest AstroBox w wersji co najmniej 1.1.0." + +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." msgstr "Uwaga: Wymagana jest karta FlashAir z FW 2.00.02 lub nowszym z włączoną funkcją przesyłania." -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Uwaga: wymagany jest OctoPrint w wersji 1.1.0 lub wyższej." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Uwaga: niektóre skróty działają tylko poza trybem edycji." -#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194 -#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577 -#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986 -#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080 -#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329 +#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 +#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 +#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 +#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 +#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 msgid "Notes" msgstr "Notatki" -#: src/slic3r/GUI/GUI.cpp:277 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 msgid "Notice" msgstr "Uwaga" -#: src/slic3r/GUI/ConfigWizard.cpp:118 +#: src/slic3r/GUI/ConfigWizard.cpp:218 msgid "nozzle" msgstr "dysza" -#: src/libslic3r/PrintConfig.cpp:1261 +#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Średnica dyszy" -#: src/slic3r/GUI/ConfigWizard.cpp:560 +#: src/slic3r/GUI/ConfigWizard.cpp:970 msgid "Nozzle Diameter:" msgstr "Średnica dyszy:" -#: src/libslic3r/PrintConfig.cpp:618 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "Ilość ruchów chłodzących" -#: src/slic3r/GUI/Tab.cpp:1845 +#: src/slic3r/GUI/Tab.cpp:1837 msgid "Number of extruders of the printer." msgstr "Liczba ekstruderów drukarki." -#: src/libslic3r/PrintConfig.cpp:1888 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "Number of interface layers to insert between the object(s) and support material." msgstr "Liczba warstw łączących materiał podporowy z modelem właściwym." -#: src/libslic3r/PrintConfig.cpp:1627 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely." msgstr "Liczba pętli skirt. Jeśli włączona jest opcja \"Minimalna długość ekstruzji\", to może ona nadpisać wartość wprowadzoną w tym polu. Ustaw zero aby całkowicie wyłączyć skirt." -#: src/libslic3r/PrintConfig.cpp:2214 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "Liczba pikseli" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Liczba pikseli w osi X" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Liczba pikseli w osi Y" -#: src/libslic3r/PrintConfig.cpp:151 +#: src/libslic3r/PrintConfig.cpp:166 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Liczba zwartych warstw dolnych." -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." msgstr "Liczba zwartych warstw górnych i dolnych." -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." msgstr "Liczba zwartych warstw górnych." -#: src/libslic3r/PrintConfig.cpp:2303 +#: src/libslic3r/PrintConfig.cpp:2509 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Liczba warstw potrzebnych, aby zmienić czas naświetlania z początkowego do stałego" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:243 msgid "Number of tool changes" msgstr "Ilość zmian narzędzi" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2744 msgid "Object elevation" msgstr "Podniesienie modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1858 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 msgid "Object manipulation" msgstr "Manipulowanie modelem" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "Nazwa modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 msgid "Object or Instance" msgstr "Model lub Kopia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Object reordered" msgstr "Model przeorganizowany" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1868 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 msgid "Object Settings to modify" msgstr "Ustawienia Modelu do modyfikacji" -#: src/slic3r/GUI/Plater.cpp:1875 +#: src/slic3r/GUI/Plater.cpp:2513 msgid "Object too large?" msgstr "Model zbyt duży?" -#: src/libslic3r/PrintConfig.cpp:2161 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "Modele zostaną użyte do czyszczenia dyszy po zmianie narzędzia (filamentu) aby oszczędzić materiał, który inaczej zostałby wyekstrudowany do wieży czyszczącej i aby skrócić czas wydruku. W rezultacie kolor tego modelu będzie niejednolity." -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "object(s)" msgstr "model(e)" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "objects" msgstr "modele" -#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "Spirala ośmiokątna" @@ -4441,299 +4921,332 @@ msgstr "Spirala ośmiokątna" msgid "OctoPrint version" msgstr "Wersja OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2419 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 msgid "of a current Object" msgstr "obecnego Modelu" -#: src/slic3r/GUI/wxExtensions.cpp:2570 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "Offset" + +#: src/slic3r/GUI/DoubleSlider.cpp:923 msgid "One layer mode" msgstr "Tryb jednej warstwy" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1361 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Jeden lub więcej modeli zostało przypisanych do ekstrudera, którego drukarka nie posiada." -#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Tworzenie podpór tylko na stole. Nie będą tworzone na wydruku." -#: src/libslic3r/PrintConfig.cpp:978 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "Tylko potrzebne wypełnienie" -#: src/slic3r/GUI/Tab.cpp:2271 +#: src/slic3r/GUI/Tab.cpp:2369 msgid "Only lift Z" -msgstr "Tylko z-hop" +msgstr "Z-hop tylko" -#: src/libslic3r/PrintConfig.cpp:1500 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "Z-hop tylko powyżej" -#: src/libslic3r/PrintConfig.cpp:1509 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Z-hop tylko poniżej" -#: src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "Retrakcja tylko przy przechodzeniu nad obrysami" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1189 msgid "Ooze prevention" msgstr "Zapobieganie wyciekom (ooze)" -#: src/libslic3r/Print.cpp:1193 +#: src/libslic3r/Print.cpp:1262 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "Zapobieganie wyciekom jest obecnie niedostępne przy włączonej wieży czyszczącej." -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "Otwórz plik projektu" -#: src/slic3r/GUI/Tab.cpp:1745 +#: src/slic3r/GUI/Tab.cpp:1727 msgid "Open CA certificate file" msgstr "Otwórz plik certyfikatu CA" -#: src/slic3r/GUI/UpdateDialogs.cpp:63 src/slic3r/GUI/UpdateDialogs.cpp:126 +#: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "Otwórz stronę z listami zmian" -#: src/slic3r/GUI/UpdateDialogs.cpp:68 +#: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "Otwórz stronę pobierania" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:105 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "Otwórz projekt STL/OBJ/AMF/3MF z konfiguracją, wyczyść stół" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" msgstr "Otwórz projekt STL/OBJ/AMF/3MF z konfiguracją, wyczyść stół" -#: src/slic3r/GUI/MainFrame.cpp:551 +#: src/slic3r/GUI/MainFrame.cpp:695 #, possible-c-format msgid "Open the %s website in your browser" msgstr "Otwórz stronę %s w przeglądarce" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Otwórz stronę Prusa3D ze sterownikami w przeglądarce" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Open the software releases page in your browser" msgstr "Otwórz stronę z wersjami oprogramowania w przeglądarce" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize orientation" msgstr "Optymalizuj orientację" -#: src/slic3r/GUI/Plater.cpp:2643 +#: src/slic3r/GUI/Plater.cpp:2751 msgid "Optimize Rotation" msgstr "Optymalizuj obrót" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4049 msgid "Optimize the rotation of the object for better print results." msgstr "Optymalizuj obrót modelu dla lepszych efektów." -#: src/libslic3r/PrintConfig.cpp:112 +#: src/libslic3r/PrintConfig.cpp:127 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optymalizuj ruchy jałowe aby zminimalizować przejeżdżanie nad obrysami. Ta funkcja jest przydatna szczególne przy ekstruderach typu bowden, podatnych na wyciekanie filamentu z dyszy. Włączenie tej funkcji wydłuża zarówno czas druku jak i czas generowania G-code." -#: src/slic3r/GUI/Tab.cpp:1070 +#: src/slic3r/GUI/Tab.cpp:1133 msgid "Options for support material and raft" msgstr "Opcje materiału podporowego i tratwy (raft)" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/DoubleSlider.cpp:960 +msgid "or press \"+\" key" +msgstr "lub naciśnij klawisz \"+\"" + +#: src/slic3r/GUI/Plater.cpp:2876 msgid "Orientation found." msgstr "Znaleziono orientację." -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2875 msgid "Orientation search canceled." msgstr "Anulowano ustawianie orientacji." -#: src/slic3r/GUI/BedShapeDialog.cpp:79 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "Punkt zerowy" -#: src/slic3r/GUI/Tab.cpp:1165 +#: src/slic3r/GUI/Tab.cpp:1229 msgid "Other" msgstr "Inne" -#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977 +#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Inne warstwy" -#: src/slic3r/GUI/ConfigWizard.cpp:438 +#: src/slic3r/GUI/ConfigWizard.cpp:857 msgid "Other Vendors" msgstr "Inni dostawcy" -#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 msgid "Output file" msgstr "Plik wyjściowy" -#: src/libslic3r/PrintConfig.cpp:3104 +#: src/libslic3r/PrintConfig.cpp:3478 msgid "Output File" msgstr "Plik Wyjściowy" -#: src/libslic3r/PrintConfig.cpp:1294 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "Format pliku wyjściowego" -#: src/libslic3r/PrintConfig.cpp:2992 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Output Model Info" msgstr "Informacje o Modelu wyjściowym" -#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439 +#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 msgid "Output options" msgstr "Opcje wyjściowe" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Obrys zwisu" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "Próg zwisu" -#: src/slic3r/GUI/Tab.cpp:1153 +#: src/slic3r/GUI/Tab.cpp:1217 msgid "Overlap" msgstr "Nakładanie" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "Ustawienia D&ruku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520 -#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426 -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523 -#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547 -#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569 +#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 +#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 +#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 +#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 +#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 +#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 +#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 +#: src/libslic3r/PrintConfig.cpp:2890 msgid "Pad" msgstr "Podkładka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 +#: src/slic3r/GUI/GUI_ObjectList.cpp:45 msgid "Pad and Support" msgstr "Podkładka i Podpory" -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "Pad around object" msgstr "Podkładka wokół modelu" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2853 msgid "Pad around object everywhere" msgstr "Podkładka wokół wszystkich modeli" -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2802 msgid "Pad brim size" msgstr "Rozmiar brimu dla podkładki" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "Rozmiar brimu podkładki jest zbyt mały dla obecnej konfiguracji." -#: src/libslic3r/PrintConfig.cpp:2731 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector penetration" msgstr "Przenikanie łącznika podkładki z modelem" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "Pad object connector stride" msgstr "Rozmieszczenie łączników podkładki z modelem" -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector width" msgstr "Szerokość łącznika podkładki z modelem" -#: src/libslic3r/PrintConfig.cpp:2700 +#: src/libslic3r/PrintConfig.cpp:2860 msgid "Pad object gap" msgstr "Odstęp modelu od podkładki" -#: src/libslic3r/PrintConfig.cpp:2532 +#: src/libslic3r/PrintConfig.cpp:2788 msgid "Pad wall height" msgstr "Wysokość ścianki podkładki" -#: src/libslic3r/PrintConfig.cpp:2568 +#: src/libslic3r/PrintConfig.cpp:2835 msgid "Pad wall slope" msgstr "Kąt pochylenia ścianki podkładki" -#: src/libslic3r/PrintConfig.cpp:2522 +#: src/libslic3r/PrintConfig.cpp:2778 msgid "Pad wall thickness" msgstr "Grubość ścianki podkładki" -#: src/slic3r/GUI/Field.cpp:108 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "Page Down" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "Page Up" + +#: src/slic3r/GUI/Field.cpp:134 msgid "parameter name" msgstr "nazwa parametru" -#: src/slic3r/GUI/Field.cpp:184 +#: src/slic3r/GUI/Field.cpp:238 msgid "Parameter validation" msgstr "Weryfikacja parametru" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Part" msgstr "Część" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1881 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 msgid "Part manipulation" msgstr "Manipulacja częścią" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 msgid "Part Settings to modify" msgstr "Ustawienia Części do modyfikacji" -#: src/slic3r/GUI/GLCanvas3D.cpp:3449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4563 msgid "Paste" msgstr "Wklej" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "Wklej zawartość schowka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 msgid "Paste from clipboard" msgstr "Wklej ze schowka" -#: src/slic3r/GUI/Plater.cpp:4772 +#: src/slic3r/GUI/Plater.cpp:5640 msgid "Paste From Clipboard" msgstr "Wklej Ze Schowka" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "Wzór" -#: src/libslic3r/PrintConfig.cpp:1805 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "Kąt wzoru" -#: src/libslic3r/PrintConfig.cpp:1929 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" -msgstr "Rozmieszczenie wzoru" +msgstr "Rozstaw wzoru" -#: src/libslic3r/PrintConfig.cpp:1917 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "Wzór podpór." -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/DoubleSlider.cpp:976 +msgid "Pause print (\"%1%\")" +msgstr "Wstrzymaj wydruk (\"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 +#: src/slic3r/GUI/GLCanvas3D.cpp:987 msgid "Pause print or custom G-code" msgstr "Pauza wydruku lub własny G-code" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "Przetnij" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163 +#: src/libslic3r/PrintConfig.cpp:2918 +msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." +msgstr "Kalkulacja prędkości względem dokładności. Niższe wartości mogą powodować artefakty." + +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Obrys" -#: src/libslic3r/PrintConfig.cpp:1339 +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "Ekstruder dla obrysów" -#: src/slic3r/GUI/PresetHints.cpp:162 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" msgstr "obrysy" -#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348 -#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "Obrysy" -#: src/slic3r/GUI/ConfigWizard.cpp:816 +#: src/slic3r/GUI/ConfigWizard.cpp:861 #, possible-c-format msgid "Pick another vendor supported by %s" msgstr "Wybierz innego producenta obsługiwanego przez %s" @@ -4742,11 +5255,11 @@ msgstr "Wybierz innego producenta obsługiwanego przez %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Rozmiary obrazów będą przechowywane w plikach .gcode i .sl1" -#: src/libslic3r/PrintConfig.cpp:2430 +#: src/libslic3r/PrintConfig.cpp:2672 msgid "Pillar widening factor" msgstr "Współczynnik rozszerzania słupka" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Średnica łączników podpór powinna być mniejsza niż średnica słupków." @@ -4754,40 +5267,48 @@ msgstr "Średnica łączników podpór powinna być mniejsza niż średnica słu msgid "Place bearings in slots and resume" msgstr "Umieść łożyska w gniazdach i wznów" -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32 +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "Umieść łożyska w gniazdach i wznów drukowanie." + +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "Połóż na płaszczyźnie" -#: src/slic3r/GUI/MainFrame.cpp:161 +#: src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Zawartość Stołu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 msgid "Plater Shortcuts" -msgstr "Skróty Podglądu Stołu" +msgstr "Skróty widoku stołu" -#: src/slic3r/GUI/GUI.cpp:143 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Sprawdź i popraw listę modeli." -#: src/slic3r/GUI/Tab.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 msgid "Please check your object list before preset changing." msgstr "Sprawdź listę modeli przed zmianą zestawu ustawień." -#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:286 +#: src/slic3r/GUI/Plater.cpp:3272 +msgid "Please select the file to reload" +msgstr "Wybierz plik do przeładowania" + +#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" msgstr "Częściowe prawa autorskie" -#: src/libslic3r/PrintConfig.cpp:2235 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "Tryb Portretowy" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:215 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:457 msgid "Position" msgstr "Pozycja" -#: src/slic3r/GUI/Tab.cpp:2265 +#: src/slic3r/GUI/Tab.cpp:2363 msgid "Position (for multi-extruder printers)" msgstr "Pozycja (dla drukarek z kilkoma ekstruderami)" @@ -4795,245 +5316,278 @@ msgstr "Pozycja (dla drukarek z kilkoma ekstruderami)" msgid "Position (mm)" msgstr "Pozycja (mm)" -#: src/libslic3r/PrintConfig.cpp:1553 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Pozycja startowa druku obrysów." -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "Pozycja X" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Pozycja Y" -#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Skrypty do przetwarzania końcowego" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "Pod&gląd" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Preferencje" -#: src/libslic3r/PrintConfig.cpp:1571 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "Preferowane ustawienie szwu" -#: src/libslic3r/PrintConfig.cpp:1582 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "Preferowany kierunek szwu - jitter" -#: src/libslic3r/PrintObject.cpp:251 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "Przygotowywanie wypełnienia" -#: src/slic3r/GUI/Tab.cpp:2758 +#: src/slic3r/GUI/Tab.cpp:2904 #, possible-c-format msgid "Preset (%s)" msgstr "Zestaw ustawień (%s)" -#: src/slic3r/GUI/Tab.cpp:3031 -msgid "Preset with name \"%1%\" already exist." +#: src/slic3r/GUI/Tab.cpp:3066 +msgid "Preset with name \"%1%\" already exists." msgstr "Zestaw ustawień o nazwie \"%1%\" już istnieje." -#: src/slic3r/GUI/Tab.cpp:2994 +#: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" msgstr "PresetName||%1% - Kopia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" msgstr "Naciśnij aby aktywować prostokąt odznaczający\nlub skalować bądź obracać wybrane modele\nwokół ich środka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "Naciśnij aby aktywować prostokąt odznaczający" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Naciśnij aby aktywować skalowanie uchwytem w jednym kierunku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 #, no-c-format msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" msgstr "Naciśnij aby aktywować prostokąt zaznaczający\nlub przyciągać co 5% podczas skalowania z uchwytem\nlub przyciągać co 1 mm podczas przemieszczania z uchwytem" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "Naciśnij, aby aktywować prostokąt zaznaczający" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" +msgstr "Naciśnij, aby skalować (z uchwytem) lub obracać (z uchwytem)\nzaznaczone modele wokół ich środków" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Press to scale selection to fit print volume\nin Gizmo scale" msgstr "Naciśnij aby skalować zaznaczenie do wielkości przestrzeni roboczej\nw skalowaniu z uchwytem" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 msgid "Press to select multiple object or move multiple object with mouse" msgstr "Kliknij aby wybrać wiele modeli lub przesunąć je przy pomocy myszki" -#: src/slic3r/GUI/Tab.cpp:2288 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with mouse" +msgstr "Kliknij aby wybrać wiele modeli\nlub przesunąć je przy pomocy myszki" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Press to select multiple objects\nor move multiple objects with a mouse" +msgstr "Kliknij aby wybrać wiele modeli\nlub przesunąć je przy pomocy myszki" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 +#, no-c-format +msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" +msgstr "Naciśnij, aby a przyciągać co 5% podczas skalowania z uchwytem\nlub przyciągać co 1 mm podczas przemieszczania z uchwytem" + +#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 msgid "Preview" -msgstr "Podgląd" +msgstr "Podgląd cięcia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "Podgląd wydrążonego modelu z otworem" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 msgid "Preview Shortcuts" -msgstr "Podgląd Skrótów" +msgstr "Skróty podglądu cięcia" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:792 msgid "Previously sliced file (" msgstr "Poprzednio pocięty plik (" -#: src/libslic3r/PrintConfig.cpp:1773 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "Wyczyść wszystkie używane ekstrudery" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 msgid "print" msgstr "druk" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "Kolej&ka Zadań Serwera Druku" -#: src/libslic3r/PrintConfig.cpp:439 +#: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Drukuj obrysy od zewnątrz do wewnątrz zamiast domyślnego ustawienia węwnątrz-zewnątrz." -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:953 msgid "Print Diameters" msgstr "Średnice wydruku" -#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074 +#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 msgid "Print Host upload" msgstr "Wysyłanie do Serwera Druku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -#: src/slic3r/GUI/PrintHostDialogs.cpp:135 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Kolejka serwera druku" -#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405 +#: src/slic3r/GUI/DoubleSlider.cpp:941 +msgid "Print mode" +msgstr "Tryb drukowania" + +#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 msgid "Print Settings" msgstr "Ustawienia Druku" -#: src/slic3r/GUI/Plater.cpp:681 +#: src/slic3r/GUI/Plater.cpp:812 msgid "Print settings" msgstr "Ustawienia druku" -#: src/slic3r/GUI/Tab.cpp:1520 +#: src/slic3r/GUI/Tab.cpp:1480 msgid "Print speed override" msgstr "Nadpisanie prędkości druku" -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Druk z" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "Ustawi&enia Drukarki" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1438 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Printable" msgstr "Do druku" -#: src/slic3r/GUI/Plater.cpp:685 +#: src/slic3r/GUI/Plater.cpp:816 msgid "Printer" msgstr "Drukarka" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 msgid "printer" msgstr "drukarka" -#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "Korekcje bezwzględne drukarki" -#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283 +#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 msgid "Printer gamma correction" msgstr "Korekcja gamma drukarki" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/Tab.cpp:978 msgid "printer model" msgstr "model drukarki" -#: src/libslic3r/PrintConfig.cpp:1402 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "Notatki o drukarce" -#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267 -#: src/libslic3r/PrintConfig.cpp:2268 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "Korekcja skalowania drukarki" -#: src/slic3r/GUI/Tab.hpp:368 +#: src/slic3r/GUI/Tab.hpp:390 msgid "Printer Settings" msgstr "Ustawienia Drukarki" -#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43 +#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44 msgid "Printer technology" msgstr "Technologia druku" -#: src/libslic3r/PrintConfig.cpp:1396 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "Rodzaj drukarki" -#: src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "Wariant drukarki" -#: src/libslic3r/PrintConfig.cpp:1411 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "Dostawca drukarki" -#: src/libslic3r/Print.cpp:1294 +#: src/libslic3r/Print.cpp:1384 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Druk ekstruderami o różnych średnicach dysz. Jeśli podpory mają być drukowane obecnie ustawionym ekstruderem (support_material_extruder == 0 lub support_material_interface_extruder == 0) to wszystkie dysze muszą mieć taką samą średnicę." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:715 +#: src/slic3r/GUI/MainFrame.cpp:851 #, possible-c-format msgid "Processing %s" msgstr "Przetwarzanie %s" -#: src/slic3r/GUI/Plater.cpp:2287 +#: src/slic3r/GUI/Plater.cpp:2267 #, possible-c-format msgid "Processing input file %s" msgstr "Przetwarzanie pliku wejściowego %s" -#: src/libslic3r/PrintObject.cpp:110 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "Przetwarzanie siatki trójkątów" -#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585 -#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087 -#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 +#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 +#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 msgid "Profile dependencies" msgstr "Zależności profilowe" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "Profil:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:149 +#: src/slic3r/GUI/PrintHostDialogs.cpp:150 msgid "Progress" msgstr "Postęp" -#: src/slic3r/GUI/FirmwareDialog.cpp:779 +#: src/slic3r/GUI/FirmwareDialog.cpp:817 msgid "Progress:" msgstr "Postęp:" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Prusa 3D &Drivers" msgstr "Sterowniki Prusa 3&D" -#: src/slic3r/GUI/ConfigWizard.cpp:1109 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa FFF Technology Printers" msgstr "Drukarki Prusa w technologii FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:1112 +#: src/slic3r/GUI/ConfigWizard.cpp:2001 msgid "Prusa MSLA Technology Printers" msgstr "Drukarki Prusa w technologii MSLA" -#: src/slic3r/GUI/AboutDialog.cpp:255 +#: src/slic3r/GUI/AboutDialog.cpp:260 msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap community." msgstr "PrusaSlicer bazuje na projekcie Slic3r autorstwa Alessandro Ranelucciego i społeczności RepRap." -#: src/slic3r/GUI/GUI_App.cpp:297 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 #, possible-c-format msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." msgstr "PrusaSlicer wymaga karty graficznej kompatybilnej z OpenGL 2.0, aby działać prawidłowo.\nwykryto OpenGL w wersji %s, render %s, producent %s ." @@ -5042,154 +5596,170 @@ msgstr "PrusaSlicer wymaga karty graficznej kompatybilnej z OpenGL 2.0, aby dzia msgid "PrusaSlicer version" msgstr "wersja PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:771 +#: src/slic3r/GUI/ConfigWizard.cpp:816 msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." msgstr "Interfejs PrusaSlicer ma trzy warianty do wyboru:\nProsty, Zaawansowany i Ekspercki.\nTryb Prosty wyświetla tylko najczęściej używane ustawienia potrzebne w codziennym druku 3D. Pozostałe dwa oferują coraz większe możliwości konfiguracji i są przeznaczone odpowiednio dla użytkowników zaawansowanych i ekspertów." -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Czyszczenie po zmianie filamentu następować wewnątrz wypełnienia tego modelu. Obniża to ilość zużywanego materiału, jednak może skutkować wydłużeniem czasu druku przez dodatkowe ruchy jałowe." -#: src/slic3r/GUI/Plater.cpp:456 +#: src/slic3r/GUI/Plater.cpp:541 msgid "Purging volumes" msgstr "Objętości czyszczenia" -#: src/libslic3r/PrintConfig.cpp:2106 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "Objętość czyszczenia - objętość ładowania/rozładowania" -#: src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "Objętości czyszczenia - formuła" -#: src/slic3r/GUI/Tab.cpp:1019 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "Jakość" + +#: src/slic3r/GUI/Tab.cpp:1082 msgid "Quality (slower slicing)" msgstr "Jakość (wolniejsze cięcie)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1145 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1377 +#: src/slic3r/GUI/GLCanvas3D.cpp:278 +msgid "Quality / Speed" +msgstr "Jakość / Prędkość" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 #, possible-c-format msgid "Quick Add Settings (%s)" msgstr "Szybkie Dodanie Ustawień (%s)" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "Szybkie Cięcie" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "Szybkie cięcie i Zapis jako" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 #, possible-c-format msgid "Quit %s" msgstr "Wyjście z %s" -#: src/libslic3r/PrintConfig.cpp:479 +#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Promień" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1129 msgid "Raft" msgstr "Tratwa (raft)" -#: src/libslic3r/PrintConfig.cpp:1431 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" msgstr "Warstwy tratwy" -#: src/slic3r/GUI/WipeTowerDialog.cpp:14 +#: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "Dostosowywanie wyciskania" -#: src/slic3r/GUI/WipeTowerDialog.cpp:40 +#: src/slic3r/GUI/WipeTowerDialog.cpp:41 msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." msgstr "Wyciskanie oznacza szybką ekstruzję bezpośrednio przed zmianą narzędzia w drukarce typu MultiMaterial z jednym ekstruderem (narzędzie w tym przypadku oznacza filament). Jego zadaniem jest odpowiednie ukształtowanie końcówki rozładowywanego filamentu, aby jego ponowne załadowanie mogło odbyć się bez przeszkód. Ta faza procesu zmiany filamentu jest bardzo ważna a różne filamenty mogą potrzebować różnej prędkości wyciskania aby uzyskać odpowiedni kształt końcówki. Z tego powodu można edytować jego parametry.\n\nTo jest ustawienie dla zaawansowanych użytkowników. Nieprawidłowe wartości mogą powodować blokady, ścieranie filamentu przez radełko itp." -#: src/slic3r/GUI/WipeTowerDialog.cpp:90 +#: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" -msgstr "Rozmieszczenie linii wyciskania" +msgstr "Rozstaw linii wyciskania" -#: src/slic3r/GUI/WipeTowerDialog.cpp:88 +#: src/slic3r/GUI/WipeTowerDialog.cpp:89 msgid "Ramming line width" msgstr "Szerokość linii wyciskania" -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "Parametry wyciskania" -#: src/slic3r/GUI/Tab.cpp:1545 +#: src/slic3r/GUI/Tab.cpp:1507 msgid "Ramming settings" msgstr "Ustawienia wyciskania" -#: src/libslic3r/PrintConfig.cpp:1559 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "Dowolny" -#: src/slic3r/GUI/wxExtensions.cpp:486 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 msgid "Range" msgstr "Zakres" -#: src/libslic3r/SLAPrint.cpp:72 +#: src/libslic3r/SLAPrintSteps.cpp:63 msgid "Rasterizing layers" msgstr "Rasteryzowanie warstw" -#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "Wczyta&j ponownie z dysku" + +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "Ponowna konfiguracja" -#: src/slic3r/GUI/FirmwareDialog.cpp:783 +#: src/slic3r/GUI/FirmwareDialog.cpp:821 msgid "Ready" msgstr "Gotowe" -#: src/slic3r/GUI/Plater.cpp:2406 +#: src/slic3r/GUI/Plater.cpp:3099 msgid "Ready to slice" msgstr "Gotowość do cięcia" -#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "Tył" -#: src/slic3r/GUI/MainFrame.cpp:526 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "Widok z tyłu" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "Ostatnie projekty" -#: src/slic3r/GUI/PresetHints.cpp:262 +#: src/slic3r/GUI/PresetHints.cpp:263 #, possible-c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Zalecana grubość ściany modelu dla wysokości warstwy %.2f i" +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." +msgstr "Zalecana grubość ścian dla modelu: niedostępna ze względu na zbyt małą szerokość ścieżki." + #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." msgstr "Zalecana grubość ścian dla modelu: niedostępna ze względu na niewłaściwą wysokość warstwy." -#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "Odtwarzanie" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "Prostokątny" -#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796 -#: src/libslic3r/PrintConfig.cpp:1922 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "Linie równoległe" -#: src/libslic3r/PrintConfig.cpp:1923 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "Linie równoległe - kratka" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3639 -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Powtórz" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" @@ -5198,134 +5768,164 @@ msgstr[1] "Powtórz %1$d akcje" msgstr[2] "Powtórz %1$d akcji" msgstr[3] "Powtórz %1$d akcji" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Redo History" msgstr "Historia Powtórzeń" -#: src/slic3r/GUI/Tab.cpp:1037 +#: src/slic3r/GUI/Tab.cpp:1100 msgid "Reducing printing time" msgstr "Obniżanie czasu wydruku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3461 +msgid "Reload all from disk" +msgstr "Wczytaj ponownie wszystko z dysku" + +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 +#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 msgid "Reload from disk" msgstr "Wczytaj ponownie z dysku" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/Plater.cpp:3328 +msgid "Reload from: " +msgstr "Wczytaj z:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "Przeładuj wirtualny stół z dysku" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "Przeładuj wirtualny stół z dysku" + +#: src/slic3r/GUI/Plater.cpp:3972 msgid "Reload the selected object from disk" msgstr "Wczytaj wybrany model ponownie z dysku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3715 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 msgid "Reload the selected volumes from disk" msgstr "Wczytaj wybrane kształty ponownie z dysku" -#: src/slic3r/GUI/Preferences.cpp:36 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "Zapamiętaj katalog wyjściowy" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3105 msgid "remove" msgstr "usuń" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3108 msgid "Remove" msgstr "Usuń" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "Usuń wszystkie otwory" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:51 msgid "Remove all points" msgstr "Usuń wszystkie punkty" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:251 msgid "Remove detail" -msgstr "Usuń szczegół" +msgstr "Niższa szczegółowość" + +#: src/slic3r/GUI/Plater.cpp:876 +msgid "Remove device" +msgstr "Usuń urządzenie" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 msgid "Remove extruder from sequence" msgstr "Usuń ekstruder z sekwencji" -#: src/slic3r/GUI/GLCanvas3D.cpp:3475 +#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 msgid "Remove instance" msgstr "Usuń kopię" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 msgid "Remove Instance of the selected object" -msgstr "Usuń kopię wybranego modelu" +msgstr "Usuń kopię zaznaczonego modelu" #: src/slic3r/GUI/GUI_ObjectLayers.cpp:153 msgid "Remove layer range" msgstr "Usuń zakres warstw" -#: src/slic3r/GUI/Plater.cpp:3518 +#: src/slic3r/GUI/Plater.cpp:3951 msgid "Remove one instance of the selected object" -msgstr "Usuń jedną kopię wybranego modelu" +msgstr "Usuń jedną kopię zaznaczonego modelu" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "Usuń parametr" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Remove point" msgstr "Usuń punkt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 msgid "Remove point from selection" msgstr "Usuń punkt z zaznaczenia" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 -msgid "Remove selected points" -msgstr "Usuń wybrane punkty" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "Usuń zaznaczone otwory" -#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +msgid "Remove selected points" +msgstr "Usuń zaznaczone punkty" + +#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 msgid "Remove the selected object" msgstr "Usuń wybrany model" -#: src/slic3r/GUI/ConfigWizard.cpp:305 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Usuń profile użytkownika - czysta instalacja (najpierw zostanie wykonany zrzut)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1200 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 msgid "Rename" msgstr "Zmień nazwę" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Object" msgstr "Zmień Nazwę Modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:549 msgid "Rename Sub-object" msgstr "Zmień Nazwę Modelu Podrzędnego" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 msgid "Renaming" msgstr "Zmiana nazwy" -#: src/libslic3r/PrintConfig.cpp:3125 +#: src/libslic3r/PrintConfig.cpp:3500 msgid "Render with a software renderer" msgstr "Renderuj programowo" -#: src/libslic3r/PrintConfig.cpp:3126 +#: src/libslic3r/PrintConfig.cpp:3501 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Renderowanie software'owe. Dołączony silnik MESA zostanie użyty zamiast domyślnego OpenGL." -#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058 +#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 msgid "Repair" msgstr "Naprawa" -#: src/slic3r/Utils/FixModelByWin10.cpp:387 +#: src/slic3r/Utils/FixModelByWin10.cpp:394 msgid "Repaired 3MF file contains more than one object" msgstr "Naprawiony plik 3MF zawiera więcej niż jeden model" -#: src/slic3r/Utils/FixModelByWin10.cpp:391 +#: src/slic3r/Utils/FixModelByWin10.cpp:398 msgid "Repaired 3MF file contains more than one volume" msgstr "Naprawiony plik 3MF zawiera więcej niż jeden obiekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:392 msgid "Repaired 3MF file does not contain any object" msgstr "Naprawiony plik 3MF nie zawiera żadnego modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:389 +#: src/slic3r/Utils/FixModelByWin10.cpp:396 msgid "Repaired 3MF file does not contain any volume" msgstr "Naprawiony plik 3MF nie zawiera żadnej objętości" @@ -5333,176 +5933,189 @@ msgstr "Naprawiony plik 3MF nie zawiera żadnej objętości" msgid "Repairing model by the Netfabb service" msgstr "Naprawianie modelu przez usługę Netfabb" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "Powtórz ostatnie szybkie cięcie" -#: src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "Powtórz Ostatnie Szybkie Cięcie" -#: src/slic3r/GUI/Tab.cpp:3032 +#: src/slic3r/GUI/Tab.cpp:3067 msgid "Replace?" msgstr "Zamienić?" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Report an I&ssue" msgstr "Zgło&szenie problemu" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:705 #, possible-c-format msgid "Report an issue on %s" msgstr "Zgłoś problem z %s" -#: src/slic3r/Utils/PresetUpdater.cpp:590 +#: src/slic3r/Utils/PresetUpdater.cpp:713 #, possible-c-format msgid "requires max. %s" msgstr "wymaga max %s" -#: src/slic3r/Utils/PresetUpdater.cpp:588 +#: src/slic3r/Utils/PresetUpdater.cpp:710 #, possible-c-format msgid "requires min. %s" msgstr "wymaga min. %s" -#: src/slic3r/Utils/PresetUpdater.cpp:583 +#: src/slic3r/Utils/PresetUpdater.cpp:705 #, possible-c-format msgid "requires min. %s and max. %s" msgstr "wymaga min. %s i max. %s" -#: src/slic3r/GUI/FirmwareDialog.cpp:772 +#: src/slic3r/GUI/FirmwareDialog.cpp:810 msgid "Rescan" msgstr "Skanuj ponownie" -#: src/slic3r/GUI/Tab.cpp:1879 +#: src/slic3r/GUI/Tab.cpp:1904 msgid "Rescan serial ports" msgstr "Przeskanuj porty szeregowe" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:318 msgid "Reset" msgstr "Reset" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 msgid "Reset clipping plane" msgstr "Reset płaszczyzny przecinania" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 msgid "Reset direction" msgstr "Reset kierunku" -#: src/slic3r/GUI/Plater.cpp:2603 +#: src/slic3r/GUI/Plater.cpp:2707 msgid "Reset Project" msgstr "Resetuj Projekt" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:303 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "Resetuj obrót" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:328 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 msgid "Reset Rotation" msgstr "Resetuj Obrót" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:285 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:290 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:397 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:399 msgid "Reset scale" msgstr "Resetuj skalę" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:257 msgid "Reset to base" -msgstr "Resetuj do bazy" +msgstr "Resetuj do bazowego ust." -#: src/slic3r/GUI/Tab.cpp:2584 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Reset to Filament Color" msgstr "Zresetuj do koloru filamentu" -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "Rozdzielczość" -#: src/libslic3r/PrintConfig.cpp:1459 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "Długość retrakcji przed ruchem czyszczącym" -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" msgstr "Retrakcja przy zmianie warstwy" -#: src/slic3r/GUI/Tab.cpp:2268 +#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 +#: src/slic3r/GUI/Tab.cpp:2366 msgid "Retraction" msgstr "Retrakcja" -#: src/libslic3r/PrintConfig.cpp:1453 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "Retraction is not triggered when travel moves are shorter than this length." msgstr "Retrakcja nie zostanie wykonana przy ruchu jałowym krótszym niż ta wartość." -#: src/libslic3r/PrintConfig.cpp:1474 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "Długość retrakcji" -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "Długość Retrakcji (zmiana narzędzia)" -#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "Prędkość retrakcji" -#: src/slic3r/GUI/Tab.cpp:2284 +#: src/slic3r/GUI/Tab.cpp:2382 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retrakcja gdy dany ekstruder nie jest w użyciu (funkcja zaawansowana dla drukarek z kilkoma ekstruderami)" -#: src/slic3r/GUI/GUI_Preview.cpp:244 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Retractions" msgstr "Retrakcje" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "Prawo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:381 +#: src/slic3r/GUI/GUI_ObjectList.cpp:400 msgid "Right button click the icon to change the object printable property" -msgstr "Kliknij na ikonę prawym przyciskiem, aby zmienić możliwą do wydrukowania właściwość modelu" +msgstr "Kliknij na ikonę prawym przyciskiem, aby włączyć/wyłączyć drukowanie modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Right button click the icon to change the object settings" msgstr "Kliknij na ikonę prawym przyciskiem, aby zmienić ustawienia modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:250 +#: src/slic3r/GUI/GUI_ObjectList.cpp:357 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Kliknij prawym przyciskiem myszy na ikonę, aby naprawić plik STL przez serwis Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 msgid "Right click" msgstr "Prawy przycisk" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:248 msgid "Right mouse button:" msgstr "Prawy przycisk myszki:" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "Widok prawy" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253 -#: src/libslic3r/PrintConfig.cpp:3062 +#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 +#: src/libslic3r/PrintConfig.cpp:3436 msgid "Rotate" msgstr "Obróć" -#: src/libslic3r/PrintConfig.cpp:3067 +#: src/libslic3r/PrintConfig.cpp:3441 msgid "Rotate around X" msgstr "Obróć wokół osi X" -#: src/libslic3r/PrintConfig.cpp:3072 +#: src/libslic3r/PrintConfig.cpp:3446 msgid "Rotate around Y" msgstr "Obróć wokół osi Y" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "Obróć dolną część do góry nogami" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "Obróć zaznaczone o 45 stopni w lewo" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "Obróć zaznaczone o 45 stopni w prawo" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:321 +#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Obrót" @@ -5510,118 +6123,124 @@ msgstr "Obrót" msgid "Rotation (deg)" msgstr "Obrót (stopnie)" -#: src/libslic3r/PrintConfig.cpp:3068 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Rotation angle around the X axis in degrees." msgstr "Kąt obrotu w stopniach wokół osi X." -#: src/libslic3r/PrintConfig.cpp:3073 +#: src/libslic3r/PrintConfig.cpp:3447 msgid "Rotation angle around the Y axis in degrees." msgstr "Kąt obrotu w stopniach wokół osi Y." -#: src/libslic3r/PrintConfig.cpp:3063 +#: src/libslic3r/PrintConfig.cpp:3437 msgid "Rotation angle around the Z axis in degrees." msgstr "Kąt obrotu w stopniach wokół osi Z." -#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658 +#: src/slic3r/GUI/GUI_App.cpp:797 #, possible-c-format msgid "Run %s" msgstr "Uruchom %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 msgid "Running post-processing scripts" msgstr "Wykonywanie skryptów przetwarzania końcowego (post-processing)" -#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81 -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612 -#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671 -#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252 -#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319 +#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 +#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 +#: src/libslic3r/PrintConfig.cpp:2557 msgid "s" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:466 src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end G-code" msgstr "W&yślij G-code" -#: src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "S&end to print" msgstr "W&yślij do druku" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3401 #, possible-c-format msgid "Save %s as:" msgstr "Zapisz %s jako:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:828 #, possible-c-format msgid "Save %s file as:" msgstr "Zapisz plik %s jako:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 msgid "Save changes?" msgstr "Zapisać zmiany?" -#: src/libslic3r/PrintConfig.cpp:2997 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Save config file" msgstr "Zapisz plik konfiguracyjny" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:927 msgid "Save configuration as:" msgstr "Zapisz konfigurację jako:" -#: src/libslic3r/PrintConfig.cpp:2998 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Save configuration to the specified file." msgstr "Zapisz konfigurację jako wskazany plik." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:133 +#: src/slic3r/GUI/Tab.cpp:135 #, possible-c-format msgid "Save current %s" msgstr "Zapisz bieżące %s" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "Zapisz obecny projekt" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "Zapisz obecny projekt jako" -#: src/slic3r/GUI/Plater.cpp:1938 +#: src/slic3r/GUI/Plater.cpp:2588 msgid "Save file as:" msgstr "Zapisz plik jako:" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save G-code file as:" msgstr "Zapisz plik G-code jako:" -#: src/slic3r/GUI/MainFrame.cpp:757 +#: src/slic3r/GUI/MainFrame.cpp:901 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Zapisz plik OBJ (mniej podatny na błędy współrzędnych niż STL) jako:" -#: src/slic3r/GUI/Tab.hpp:417 +#: src/slic3r/GUI/Tab.hpp:442 msgid "Save preset" msgstr "Zapisz zestaw ustawień" -#: src/slic3r/GUI/MainFrame.cpp:843 +#: src/slic3r/GUI/MainFrame.cpp:982 msgid "Save presets bundle as:" msgstr "Zapisz paczkę ustawień jako:" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "Zapisz Projekt j&ako" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Save project (3MF)" -msgstr "Zapisz projekt (3MF)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "Zapisz projekt (3mf)" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "Zapisz projekt jako (3mf)" + +#: src/slic3r/GUI/Plater.cpp:4854 msgid "Save SL1 file as:" msgstr "Zapisz plik SL1 jako:" -#: src/slic3r/GUI/MainFrame.cpp:692 +#: src/slic3r/GUI/MainFrame.cpp:840 msgid "Save zip file as:" msgstr "Zapisz plik .zip jako:" @@ -5631,10 +6250,11 @@ msgstr "Zapisz plik .zip jako:" msgid "Saving mesh into the 3MF container failed." msgstr "Niepowodzenie zapisywania siatki jako 3MF." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254 -#: src/libslic3r/PrintConfig.cpp:3077 +#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Scale" msgstr "Skaluj" @@ -5642,47 +6262,51 @@ msgstr "Skaluj" msgid "Scale (%)" msgstr "Skala (%)" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Współczynnik skalowania" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "Scale selection to fit print volume\nin Gizmo scale" +msgstr "Skaluj zaznaczenie do wielkości przestrzeni roboczej\nw skalowaniu z uchwytem" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale the selected object to fit the print volume" msgstr "Skaluj wybrany model, aby zmieścił się w przestrzeni roboczej" -#: src/libslic3r/PrintConfig.cpp:3086 +#: src/libslic3r/PrintConfig.cpp:3460 msgid "Scale to Fit" msgstr "Skaluj, aby dopasować" -#: src/slic3r/GUI/Selection.cpp:947 +#: src/slic3r/GUI/Selection.cpp:939 msgid "Scale To Fit" msgstr "Skaluj aby zmieścić" -#: src/libslic3r/PrintConfig.cpp:3087 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Scale to fit the given volume." msgstr "Skaluj, aby wypełnić zadaną objętość." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 msgid "Scale to print volume" msgstr "Skaluj do obszaru roboczego" -#: src/libslic3r/PrintConfig.cpp:3078 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Scaling factor or percentage." msgstr "Współczynnik lub procent skalowania." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Ustawianie harmonogramu przesyłania do `%1%`. Zobacz okno -> Kolejka serwera druku" -#: src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "Pozycja szwu" -#: src/libslic3r/PrintConfig.cpp:1572 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "Preferowany kierunek szwu" -#: src/libslic3r/PrintConfig.cpp:1581 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "Kierunek jitter wyznaczany przez szew" @@ -5690,115 +6314,119 @@ msgstr "Kierunek jitter wyznaczany przez szew" msgid "Searching for devices" msgstr "Wyszukiwanie urządzeń" -#: src/slic3r/GUI/Plater.cpp:2190 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Searching for optimal orientation" msgstr "Wyszukiwanie optymalnej orientacji" -#: src/slic3r/GUI/GUI_App.cpp:1100 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Wybierz plik gcode:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 -msgid "Select All objects" -msgstr "Zaznacz Wszystkie modele" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" +msgstr "Zaznacz wszystkie modele" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 msgid "Select all points" msgstr "Zaznacz wszystkie punkty" -#: src/slic3r/GUI/ConfigWizard.cpp:1089 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "Select all standard printers" msgstr "Zaznacz wszystkie podstawowe drukarki" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 msgid "Select by rectangle" msgstr "Zaznaczenie prostokątem" -#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870 +#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 msgid "Select configuration to load:" msgstr "Wybierz konfigurację do wczytania:" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:82 msgid "Select coordinate space, in which the transformation will be performed." msgstr "Wybierz płaszczyznę, w której ma nastąpić przekształcenie." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2834 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 msgid "Select extruder number for selected objects and/or parts" msgstr "Wybierz numer ekstrudera dla wybranych modeli i/lub części" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2847 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 msgid "Select extruder number:" msgstr "Wybierz numer ekstrudera:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 msgid "Select Filament Settings Tab" msgstr "Wybierz Zakładkę Ustawień Filamentu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1251 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 msgid "Select new extruder for the object/part" msgstr "Wybierz nowy ekstruder dla modelu/części" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "Select Plater Tab" msgstr "Wybierz Zakładkę Podglądu Stołu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Select Print Settings Tab" msgstr "Wybierz Zakładkę Ustawień Druku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Select Printer Settings Tab" msgstr "Wybierz Zakładkę Ustawień Drukarki" -#: src/slic3r/GUI/GUI_ObjectList.cpp:917 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 msgid "Select showing settings" msgstr "Wybierz widok ustawień" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "Wybierz język" -#: src/slic3r/GUI/Tab.cpp:57 +#: src/slic3r/GUI/Tab.cpp:59 msgid "Select the print profiles this profile is compatible with." msgstr "Wybierz profile druku, z którymi kompatybilny jest ten profil." -#: src/slic3r/GUI/Tab.cpp:51 +#: src/slic3r/GUI/Tab.cpp:53 msgid "Select the printers this profile is compatible with." msgstr "Wybierz drukarki kompatybilne z tym profilem." -#: src/slic3r/GUI/MainFrame.cpp:744 +#: src/slic3r/GUI/MainFrame.cpp:891 msgid "Select the STL file to repair:" msgstr "Wybierz plik STL do naprawy:" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:241 msgid "Select toolbar icon size in respect to the default one." msgstr "Wybierz rozmiar ikon w odniesieniu do domyślnego." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2545 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Select type of part" msgstr "Wybierz rodzaj części" -#: src/slic3r/GUI/Plater.cpp:606 +#: src/slic3r/GUI/Plater.cpp:635 msgid "Select what kind of pad do you need" msgstr "Wybierz rodzaj wymaganej podkładki" -#: src/slic3r/GUI/Plater.cpp:421 +#: src/slic3r/GUI/Plater.cpp:495 msgid "Select what kind of support do you need" msgstr "Wybierz rodzaj potrzebnych podpór" +#: src/slic3r/GUI/DoubleSlider.cpp:1890 +msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" +msgstr "Wybierz TAK, jeśli chcesz usunąć wszystkie zapisane zmiany narzędzi,\nNIE, jeśli chcesz przełączyć zmiany narzędzi na zmiany koloru lub\nANULUJ, aby pozostawić bez zmian." + #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" msgstr "Zaznaczenie-Dodaj" -#: src/slic3r/GUI/Selection.cpp:384 +#: src/slic3r/GUI/Selection.cpp:376 msgid "Selection-Add All" msgstr "Zaznaczenie-Dodaj wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 msgid "Selection-Add from list" msgstr "Zaznaczenie-Dodaj z listy" -#: src/slic3r/GUI/GLCanvas3D.cpp:5623 +#: src/slic3r/GUI/GLCanvas3D.cpp:6659 msgid "Selection-Add from rectangle" msgstr "Zaznaczenie-Dodaj z prostokąta" @@ -5814,15 +6442,15 @@ msgstr "Zaznaczenie-Dodaj Model" msgid "Selection-Remove" msgstr "Zaznaczenie-Usuń" -#: src/slic3r/GUI/Selection.cpp:410 +#: src/slic3r/GUI/Selection.cpp:402 msgid "Selection-Remove All" msgstr "Zaznaczenie-Usuń Wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 msgid "Selection-Remove from list" msgstr "Zaznaczenie-Usunięcie z listy" -#: src/slic3r/GUI/GLCanvas3D.cpp:5642 +#: src/slic3r/GUI/GLCanvas3D.cpp:6678 msgid "Selection-Remove from rectangle" msgstr "Zaznaczenie-Usuń z prostokąta" @@ -5834,11 +6462,11 @@ msgstr "Zaznaczenie-Usuń kopię" msgid "Selection-Remove Object" msgstr "Zaznaczenie-Usuń model" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "Zaznacza wszystkie modele" -#: src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:5556 msgid "Send G-code" msgstr "Wyślij G-code" @@ -5846,27 +6474,31 @@ msgstr "Wyślij G-code" msgid "Send G-Code to printer host" msgstr "Wyślij G-code do serwera druku" -#: src/slic3r/GUI/MainFrame.cpp:466 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "Wyślij zawartość stołu do druku jako G-code" -#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 msgid "Send to printer" msgstr "Wyślij do drukarki" -#: src/slic3r/GUI/Tab.cpp:1169 +#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +msgid "Seq." +msgstr "Sekw." + +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Sequential printing" msgstr "Drukowanie sekwencyjne (model po modelu)" -#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591 +#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Port szeregowy" -#: src/libslic3r/PrintConfig.cpp:1599 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "Szybkość portu szeregowego" -#: src/slic3r/GUI/FirmwareDialog.cpp:769 +#: src/slic3r/GUI/FirmwareDialog.cpp:807 msgid "Serial port:" msgstr "Port szeregowy:" @@ -5874,17 +6506,17 @@ msgstr "Port szeregowy:" msgid "Service name" msgstr "Nazwa usługi" -#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025 -#: src/slic3r/GUI/Tab.cpp:3008 +#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 +#: src/slic3r/GUI/Tab.cpp:3160 msgid "Set" msgstr "Ustaw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1192 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Object" msgstr "Ustaw jako osobny model" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 msgid "Set as a Separated Objects" msgstr "Ustaw jako Osobne Modele" @@ -5892,7 +6524,7 @@ msgstr "Ustaw jako Osobne Modele" msgid "Set extruder change for every" msgstr "Ustaw zmianę ekstrudera dla każdej" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2833 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 msgid "Set extruder for selected items" msgstr "Ustaw ekstruder dla wybranych elementów" @@ -5900,6 +6532,10 @@ msgstr "Ustaw ekstruder dla wybranych elementów" msgid "Set extruder sequence" msgstr "Ustaw sekwencję ekstruderów" +#: src/slic3r/GUI/DoubleSlider.cpp:1504 +msgid "Set extruder sequence for the entire print" +msgstr "Ustaw sekwencję ekstruderów dla całego wydruku" + #: src/slic3r/GUI/wxExtensions.cpp:3080 msgid "Set extruder sequence for whole print" msgstr "Ustaw sekwencję ekstruderów dla całego wydruku" @@ -5908,667 +6544,695 @@ msgstr "Ustaw sekwencję ekstruderów dla całego wydruku" msgid "Set extruder(tool) sequence" msgstr "Ustaw sekwencję ekstruderów (narzędzi) " -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 msgid "Set lower thumb to current slider thumb" msgstr "Ustaw punkt zmiany koloru na poziomie dolnego suwaka" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:245 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:297 msgid "Set Mirror" msgstr "Ustaw Odbicie" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3953 msgid "Set number of instances" msgstr "Ustaw liczbę kopii" -#: src/slic3r/GUI/Plater.cpp:4163 +#: src/slic3r/GUI/Plater.cpp:4771 #, possible-c-format msgid "Set numbers of copies to %d" msgstr "Ustaw ilość kopii na %d" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:746 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" msgstr "Ustaw Orientację" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:715 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:750 msgid "Set Position" msgstr "Ustaw Pozycję" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" -msgstr "Ustaw możliwe do wydrukowania" +msgstr "Zaznacz do drukowania" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" -msgstr "Ustaw możliwą do wydrukowania kopię" +msgstr "Włącz drukowanie kopii" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:811 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:846 msgid "Set Scale" msgstr "Ustaw Skalę" -#: src/libslic3r/PrintConfig.cpp:2228 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Ustaw właściwą orientację ekranu LCD wewnątrz drukarki SLA. Tryb portretowy spowoduje zamianę parametrów szerokości i wysokości a obrazek wyjściowy będzie obrócony o 90 stopni." -#: src/slic3r/GUI/ConfigWizard.cpp:527 +#: src/slic3r/GUI/ConfigWizard.cpp:933 msgid "Set the shape of your printer's bed." msgstr "Ustaw kształt stołu roboczego drukarki." -#: src/libslic3r/PrintConfig.cpp:524 +#: src/libslic3r/PrintConfig.cpp:556 msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstrudowanej linii. Jeśli ustawisz zero, Slic3r obliczy szerokość ekstruzji na podstawie średnicy dyszy (zobacz wskazówki dla szerokości ekstruzji obrysów, wypełnienia itp). Jeśli ustawisz wartość procentową (np. 230%) to zostanie obliczona z wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:417 +#: src/libslic3r/PrintConfig.cpp:448 msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstruzji obrysów zewnętrznych. Jeśli ustawisz zero, szerokość będzie miała wartość domyślną, czyli 1.125x średnicy dyszy. Jeśli ustawisz wartość procentową (np. 200%) to zostanie obliczona z wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:831 +#: src/libslic3r/PrintConfig.cpp:878 msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstruzji pierwszej warstwy. Dzięki tej funkcji możesz wymusić grubsze linie dla lepszej przyczepności. Jeśli ustawisz wartość procentową (np. 120%) to będzie oliczona z wysokości pierwszej warstwy. Ustaw zero dla wartości domyślnej." -#: src/libslic3r/PrintConfig.cpp:1689 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstruzji wypełnienia powierzchni zwartych. Jeśli ustawisz zero, szerokość będzie miała wartość domyślną, czyli 1.125x średnicy dyszy. Jeśli ustawisz wartość procentową (np. 90%) to zostanie obliczona z wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:2019 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstruzji zwartego wypełnienia górnych warstw. Możesz ustawić mniejszą szerokość aby wypełnić szczeliny i uzyskać gładsze wykończenie. Jeśli ustawisz zero, szerokość będzie miała wartość domyślną, czyli będzie równa średnicy dyszy. Jeśli ustawisz wartość procentową (np. 90%) to zostanie obliczona z wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstruzji wypełnienia. Jeśli ustawisz zero to szerokość będzie miała wartość domyślną, czyli 1.125x średnicy dyszy. Możesz ustawić większą szerokość aby przyspieszyć druk wypełnienia i zwiększyć wytrzymałość wydruków. Jeśli ustawisz wartość procentową (np. 90%) to zostanie obliczona z wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:1350 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstruzji obrysów. Możesz ustawić większą szerokość aby uzyskać dokładniejsze wykończenie powierzchni. Jeśli ustawisz zero to szerokość będzie miała wartość domyślną, czyli 1.125x średnicy dyszy. Jeśli ustawisz wartość procentową (np. 200%) to zostanie obliczona z wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości ekstruzji materiału podporowego. Jeśli ustawisz zero to szerokość będzie miała wartość domyślną, czyli będzie równa średnicy dyszy. Jeśli ustawisz wartość procentową (np. 90%) to zostanie obliczona z wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:480 +#: src/libslic3r/PrintConfig.cpp:512 msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater." msgstr "Określa promień okręgu opisanego na całym zespole ekstrudera (matematycznie - wyobraź sobie, że chcesz narysować okrąg opisany na zespole ekstrudera patrząc na niego z góry). Jeśli sam ekstruder nie jest dokładnie na środku, użyj największego promienia. Ta wartość jest używana do wykrywania możliwych kolizji z wydrukowanymi modelami i jako graficzna reprezentacja na wirtualnym stole." -#: src/libslic3r/PrintConfig.cpp:65 +#: src/libslic3r/PrintConfig.cpp:81 msgid "Set this to the maximum height that can be reached by your extruder while printing." msgstr "Ustaw tutaj maksymalną wysokość, jaką może osiągnąć Twój ekstruder podczas drukowania." -#: src/libslic3r/PrintConfig.cpp:469 +#: src/libslic3r/PrintConfig.cpp:501 msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Określa pionową odległość końcówki dyszy od (zazwyczaj) prętów osi X. Inaczej mówiąc (matematycznie), jest to wysokość cylindra opisanego na zespole ekstrudera i określa maksymalną głębokość, na którą może opuścić się ekstruder aby nie uderzyć w obiekt znajdujący się bezpośrednio pod prętami osi X." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" -msgstr "Ustaw niemożliwe do wydrukowania" +msgstr "Zaznacz do ignorowania przy drukowaniu" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" -msgstr "Ustaw niemożliwą do wydrukowania kopię" +msgstr "Ignoruj drukowanie kopii" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 msgid "Set upper thumb to current slider thumb" msgstr "Ustaw punkt zmiany koloru na poziomie górnego suwaka" -#: src/slic3r/GUI/BedShapeDialog.cpp:143 +#: src/libslic3r/PrintConfig.cpp:3494 +msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." +msgstr "Ustawia czułość logowania. 0:krytyczne, 1:błędy, 2:ostrzeżenia, 3:info, 4:debug, 5:trace\nNp: loglevel=2 loguje krytyczne, błędy i ostrzeżenia." + +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Ustawienia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Settings for height range" msgstr "Ustawienie zakresu wysokości" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "Czy chcesz zmienić te ustawienia dla podpór?" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "Czy chcesz zmienić te ustawienia, aby włączyć tryb wazy?" -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "Czy chcesz zmienić te ustawienia, aby włączyć wieżę czyszczącą?" -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "Czy chcesz zmienić wzór wypełnienia na linie równoległe?" -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Czy chcesz zsynchronizować warstwy podporowe, aby włączyć wieżę czyszczącą?" -#: src/slic3r/GUI/BedShapeDialog.cpp:60 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 msgid "Shape" msgstr "Kształt" -#: src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/GUI_Preview.cpp:258 msgid "Shells" msgstr "Powłoki" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:254 msgid "Shift + Left mouse button:" msgstr "Shift + lewy przycisk myszki:" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:260 msgid "Shift + Right mouse button:" msgstr "Shift + Prawy przycisk myszki:" -#: src/slic3r/GUI/GUI_Preview.cpp:221 +#: src/slic3r/GUI/GUI_Preview.cpp:233 msgid "Show" msgstr "Pokaż" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show &Configuration Folder" msgstr "Pokaż folder &Konfiguracyjny" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show &labels" +msgstr "Pokaż e&tykiety" + +#: src/slic3r/GUI/MainFrame.cpp:707 msgid "Show about dialog" msgstr "Pokaż okienko" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show advanced settings" msgstr "Pokaż ustawienia zaawansowane" -#: src/slic3r/GUI/PrintHostDialogs.cpp:158 +#: src/slic3r/GUI/PrintHostDialogs.cpp:159 msgid "Show error message" msgstr "Pokaż komunikat błędu" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "Show incompatible print and filament presets" msgstr "Pokaż niekompatybilne ustawienia druku i filamentów" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Show keyboard shortcuts list" msgstr "Pokaż listę skrótów klawiszowych" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:677 +msgid "Show object/instance labels in 3D scene" +msgstr "Pokaż etykiety modelu/kopii w widoku edycji 3D" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show simplified settings" msgstr "Pokaż ustawienia uproszczone" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "Pokaż podpory" + +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show system information" msgstr "Pokaż informacje o systemie" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "Pokaż widok edycji 3D" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "Pokaż podgląd cięcia 3D" -#: src/slic3r/GUI/MainFrame.cpp:480 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "Pokaż ustawienia filamentu" -#: src/libslic3r/PrintConfig.cpp:2983 +#: src/libslic3r/PrintConfig.cpp:3357 msgid "Show the full list of print/G-code configuration options." msgstr "Pokaż pełną listę opcji konfiguracji druku/G-code." -#: src/libslic3r/PrintConfig.cpp:2988 +#: src/libslic3r/PrintConfig.cpp:3362 msgid "Show the full list of SLA print configuration options." msgstr "Pokaż pełną listę opcji konfiguracji druku SLA." -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:710 msgid "Show the list of the keyboard shortcuts" msgstr "Pokaż listę skrótów klawiszowych" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" msgstr "Pokaż zawartość stołu" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "Pokaż ustawienia druku" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "Pokaż ustawienia drukarki" -#: src/libslic3r/PrintConfig.cpp:2977 +#: src/libslic3r/PrintConfig.cpp:3351 msgid "Show this help." msgstr "Pokaż tą wskazówkę pomocy." -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Show user configuration folder (datadir)" msgstr "Pokaż folder z konfiguracjami użytkownika (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 msgid "Show/Hide (L)egend" msgstr "Pokaż/Ukryj (L)egendę" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Pokaż/ukryj ustawienia urządzeń 3Dconnexion" -#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "Pokaż/ukryj legendę" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "Show/Hide object/instance labels" +msgstr "Ukryj/pokaż etykiety modelu/kopii" + +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "Prosty" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Simple mode" msgstr "Tryb Prosty" -#: src/slic3r/GUI/GUI_App.cpp:674 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "Tryb Widoku Prostego" -#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239 +#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 msgid "Single extruder MM setup" msgstr "Ustawienia MM dla jednego ekstrudera" -#: src/libslic3r/PrintConfig.cpp:1767 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" msgstr "Multi Material z jednym ekstruderem" -#: src/slic3r/GUI/Tab.cpp:2023 +#: src/slic3r/GUI/Tab.cpp:1865 msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" msgstr "Wybrano Multi Material z jednym ekstruderem,\nwięc wszystkie ekstrudery muszą mieć taką samą średnicę dyszy.\nCzy chcesz zmienić średnicę dyszy dla wszystkich ekstruderów na wartość z pierwszego?" -#: src/slic3r/GUI/Tab.cpp:2240 +#: src/slic3r/GUI/Tab.cpp:2303 msgid "Single extruder multimaterial parameters" msgstr "Parametry multimaterial przy jednym ekstruderze" -#: src/slic3r/GUI/BedShapeDialog.cpp:72 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137 -#: src/slic3r/GUI/Tab.cpp:2257 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 +#: src/slic3r/GUI/Tab.cpp:2320 msgid "Size" msgstr "Rozmiar" -#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014 +#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 msgid "Size and coordinates" msgstr "Rozmiar i koordynaty" -#: src/slic3r/GUI/BedShapeDialog.cpp:73 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." msgstr "Rozmiar X i Y stołu prostokątnego." -#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050 -#: src/libslic3r/GCode/PreviewData.cpp:171 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Skirt" -#: src/slic3r/GUI/Tab.cpp:1049 +#: src/slic3r/GUI/Tab.cpp:1112 msgid "Skirt and brim" msgstr "Skirt i brim" -#: src/libslic3r/PrintConfig.cpp:1617 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "Wysokość skirt" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "Liczba obrysów skirt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 msgid "SLA gizmo keyboard shortcuts" msgstr "Skróty klawiszowe \"uchwytów\" SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1150 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 msgid "SLA gizmo turned off" msgstr "Uchwyt SLA wyłączony" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1115 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 msgid "SLA gizmo turned on" msgstr "Uchwyt SLA włączony" -#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277 +#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 msgid "SLA material" msgstr "Materiał SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Material Profiles Selection" msgstr "Wybór profili materiałów SLA" -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 msgid "SLA material type" msgstr "Rodzaj materiału SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 msgid "SLA Materials" msgstr "Materiały SLA" -#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276 +#: src/slic3r/GUI/Preset.cpp:1473 msgid "SLA print" msgstr "Druk SLA" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2569 msgid "SLA print material notes" msgstr "Notatki dla materiału SLA" -#: src/slic3r/GUI/Plater.cpp:690 +#: src/slic3r/GUI/Plater.cpp:814 msgid "SLA print settings" msgstr "Ustawienia Druku SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 msgid "SLA Support Points" msgstr "Punkty podpór SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:722 +#: src/slic3r/GUI/GLCanvas3D.cpp:692 msgid "SLA supports outside the print area were detected" msgstr "Wykryto podpory SLA poza obszarem roboczym" -#: src/slic3r/GUI/ConfigWizard.cpp:1493 +#: src/slic3r/GUI/ConfigWizard.cpp:1533 msgid "SLA Technology Printers" msgstr "Drukarki SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Slab" msgstr "Tafla" -#: src/libslic3r/PrintConfig.cpp:1268 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host." msgstr "Slic3r może przesyłać pliki G-code do serwera druku. To pole powinno zawierać rodzaj serwera." -#: src/libslic3r/PrintConfig.cpp:89 +#: src/libslic3r/PrintConfig.cpp:105 msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." msgstr "Slic3r może przesyłać pliki G-code do serwera druku. To pole powinno zawierać klucz API lub hasło niezbędne do uwierzytelnienia." -#: src/libslic3r/PrintConfig.cpp:82 +#: src/libslic3r/PrintConfig.cpp:98 msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance." msgstr "Slic3r może przesyłać pliki G-code do serwera druku. Ta sekcja powinna zawierać nazwę hosta, adres IP lub adres URL serwera." -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r nie będzie skalował prędkości poniżej tej wartości." -#: src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Slice" msgstr "Cięcie" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "Cięcie jako G-code" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "Cięcie jako G-code, zapisz jako" -#: src/libslic3r/PrintConfig.cpp:71 +#: src/libslic3r/PrintConfig.cpp:87 msgid "Slice gap closing radius" msgstr "Promień zamykania szpar" -#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3618 +#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5140 msgid "Slice now" msgstr "Cięcie" -#: src/libslic3r/PrintConfig.cpp:2944 +#: src/libslic3r/PrintConfig.cpp:3318 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Cięcie modelu i eksport warstw SLA jako PNG." -#: src/libslic3r/PrintConfig.cpp:2965 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Slice the model and export toolpaths as G-code." msgstr "Cięcie modelu i eksport ścieżek narzędzi jako G-code." -#: src/libslic3r/PrintConfig.cpp:2971 +#: src/libslic3r/PrintConfig.cpp:3345 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Cięcie modelu jako FFF lub SLA oparte o ustawienie konfiguracji printer_technology." -#: src/slic3r/GUI/Plater.cpp:193 +#: src/slic3r/GUI/Plater.cpp:218 msgid "Sliced Info" msgstr "Informacje o cięciu" -#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159 -#: src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 +#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 +#: src/slic3r/GUI/Tab.cpp:3647 msgid "Slicing" msgstr "Cięcie" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 msgid "Slicing complete" msgstr "Cięcie zakończone" -#: src/libslic3r/SLAPrint.cpp:1459 +#: src/libslic3r/SLAPrint.cpp:760 msgid "Slicing done" msgstr "Cięcie zakończone" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:876 msgid "Slicing Done!" msgstr "Cięcie zakończone!" -#: src/libslic3r/SLAPrint.cpp:759 +#: src/libslic3r/SLAPrintSteps.cpp:209 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Cięcie zostało zatrzymane z powodu błędu wewnętrznego: nieciągły indeks cięcia." -#: src/libslic3r/SLAPrint.cpp:55 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Slicing model" msgstr "Cięcie modelu" -#: src/libslic3r/SLAPrint.cpp:59 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Slicing supports" msgstr "Cięcie podpór" -#: src/libslic3r/PrintConfig.cpp:2249 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "Wolne" -#: src/libslic3r/PrintConfig.cpp:1635 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "Zwolnij jeśli czas warstwy wynosi mniej niż" -#: src/libslic3r/PrintConfig.cpp:2250 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "Wolne przechylanie" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" msgstr "Małe obrysy" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:293 msgid "Smooth" -msgstr "Gładka" +msgstr "Gładki" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:263 msgid "Smoothing" msgstr "Wygładzanie" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "Nazwa zrzutu" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:688 msgid "Software &Releases" msgstr "Wersje oprogramowania" -#: src/slic3r/GUI/PresetHints.cpp:181 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "zwarte wypełnienie" -#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687 -#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Zwarte wypełnienie" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "Zwarte wypełnienie co" -#: src/libslic3r/PrintConfig.cpp:1667 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "Ekstruder do zwartego wypełnienia" -#: src/libslic3r/PrintConfig.cpp:1658 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" -msgstr "Próg powierzchni zwartego wypełnienia" +msgstr "Min. powierzchnia zwartego wypełnienia" -#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Zwarte warstwy" -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "Materiał rozpuszczalny" -#: src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." msgstr "Materiał rozpuszczalny jest używany zazwyczaj do rozpuszczalnych podpór." -#: src/libslic3r/PrintConfig.cpp:914 +#: src/libslic3r/PrintConfig.cpp:937 msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Niektóre komendy kodu G/M, wliczając kontrolę temperatury i inne, nie są uniwersalne. Ustaw tą opcję w firmware Twojej drukarki, aby uzyskać kompatybilny plik wyjściowy. Wariant \"no extrusion\" wyłączy generowanie jakichkolwiek wartości ekstruzji." +#: src/slic3r/GUI/GLCanvas3D.cpp:693 +msgid "Some objects are not visible" +msgstr "Niektóre obiekty są niewidoczne" + #: src/slic3r/GUI/GLCanvas3D.cpp:721 msgid "Some objects are not visible when editing supports" msgstr "Niektóre elementy nie będą widoczne podczas edytowania podpór" -#: src/libslic3r/Print.cpp:1162 +#: src/libslic3r/Print.cpp:1222 msgid "Some objects are too close; your extruder will collide with them." msgstr "Niektóre modele są zbyt blisko; ekstruder zderzy się z którymś z nich." -#: src/libslic3r/Print.cpp:1177 +#: src/libslic3r/Print.cpp:1224 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Niektóre modele są zbyt wysokie aby można było wydrukować je bez kolizji." -#: src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2815 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Niektóre modele można wydrukować z kilkoma mniejszymi podkładkami, zamiast jednej dużej. Ten parametr określa jak daleko od siebie powinny znajdować się dwie mniejsze podkładki. Jeśli znajdą się zbyt blisko, to zostaną złączone w jedną, dużą podkładkę." -#: src/libslic3r/PrintConfig.cpp:2086 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default." msgstr "Niektóre drukarki mogą mieć trudności z drukiem ze zmienną wysokością warstwy. Domyślnie włączone." -#: src/libslic3r/PrintConfig.cpp:1897 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." -msgstr "Rozmieszczenie linii warstwy łączącej. Ustaw zero dla zwartej warstwy łączącej." +msgstr "Rozstaw linii warstwy łączącej. Ustaw zero dla zwartej warstwy łączącej." -#: src/libslic3r/PrintConfig.cpp:1931 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." -msgstr "Rozmieszczenie linii materiału podporowego." +msgstr "Rozstaw linii materiału podporowego." -#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512 -#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084 -#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598 -#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698 -#: src/libslic3r/PrintConfig.cpp:2029 +#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 +#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "Prędkość" -#: src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "Szybkość transmisji portu USB/portu szeregowego do połączenia z drukarką." -#: src/libslic3r/GCode/PreviewData.cpp:400 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "Prędkość (mm/s)" -#: src/libslic3r/PrintConfig.cpp:872 +#: src/libslic3r/PrintConfig.cpp:920 msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Prędkość wypełniania szczelin krótkimi ruchami typu zygzak. Ustaw tą wartość na tyle nisko aby uniknąć wibracji i rezonansu. Ustaw 0 aby wyłączyć wypełnianie szczelin." -#: src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Tab.cpp:1160 msgid "Speed for non-print moves" msgstr "Prędkość ruchów jałowych" -#: src/libslic3r/PrintConfig.cpp:1362 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Prędkość obrysów (inaczej powłoki pionowej). Ustaw 0 dla prędkości automatycznej." -#: src/slic3r/GUI/Tab.cpp:1085 +#: src/slic3r/GUI/Tab.cpp:1148 msgid "Speed for print moves" msgstr "Prędkość ruchów drukujących" -#: src/libslic3r/PrintConfig.cpp:200 +#: src/libslic3r/PrintConfig.cpp:226 msgid "Speed for printing bridges." msgstr "Prędkość drukowania mostów." -#: src/libslic3r/PrintConfig.cpp:1699 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto." msgstr "Prędkość druku zwartych obszarów (góra/dół/poziome powłoki wewnętrzne). Może być wyrażona procentowo (np. 80%) ponad domyślną prędkość wypełnienia. Wpisz zero dla automatycznego ustawienia." -#: src/libslic3r/PrintConfig.cpp:1906 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed." msgstr "Prędkość druku warstw łączących materiału podporowego. Jeśli ustawisz wartość procentową (np. 50%) to zostanie obliczona z prędkości druku materiału podporowego." -#: src/libslic3r/PrintConfig.cpp:1940 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." msgstr "Prędkość druku materiału podporowego." -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." msgstr "Prędkość druku wewnętrznego wypełnienia. Ustaw 0 dla prędkości automatycznej." -#: src/libslic3r/PrintConfig.cpp:2030 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto." msgstr "Prędkość druku najwyższych warstw zwartych (dotyczy tylko najwyższych, zewnętrznych warstw i nie obejmuje zwartych warstw umieszczonych niżej). Warto obniżyć tą wartość dla ładniejszego wykończenia powierzchni. Jeśli ustawisz wartość procentową (np. 80%) to zosttanie obliczona z prędkości druku zwartego wypełnienia. Ustaw zero dla prędkości automatycznej." -#: src/libslic3r/PrintConfig.cpp:2052 +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "Prędkość ruchów jałowych (przeskoków pomiędzy punktami ekstruzji)." -#: src/libslic3r/PrintConfig.cpp:627 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "Prędkość pierwszego ruchu chłodzącego" -#: src/libslic3r/PrintConfig.cpp:646 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "Prędkość ostatniego ruchu chłodzącego" -#: src/libslic3r/PrintConfig.cpp:585 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "Prędkość używana podczas początkowej fazy ładowania filamentu." -#: src/libslic3r/PrintConfig.cpp:577 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "Prędkość ładowania filamentu podczas drukowania wieży czyszczącej." -#: src/libslic3r/PrintConfig.cpp:593 +#: src/libslic3r/PrintConfig.cpp:624 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Prędkość rozładowywania filamentu dla wieży czyszczącej (nie wpływa na początkową fazę rozładowywania zaraz po wyciskaniu)." -#: src/libslic3r/PrintConfig.cpp:602 +#: src/libslic3r/PrintConfig.cpp:633 msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Prędkość wycofywania (rozładowywania) końcówki filamentu bezpośrednio po wyciskaniu." -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Speed:" msgstr "Prędkość:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 msgid "Sphere" msgstr "Kula" -#: src/libslic3r/PrintConfig.cpp:1717 +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "Tryb wazy" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "Tryb wazy" -#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988 -#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082 +#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 msgid "Split" msgstr "Podziel" -#: src/slic3r/GUI/Plater.cpp:2971 +#: src/slic3r/GUI/Plater.cpp:4028 msgid "Split the selected object" msgstr "Podziel zaznaczony model" -#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988 +#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 msgid "Split the selected object into individual objects" -msgstr "Podziel wybrany model na osobne części" +msgstr "Podziel wybrany model na osobne modele" -#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008 +#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 msgid "Split the selected object into individual sub-parts" -msgstr "Podziel wybrany model na osobne elementy" +msgstr "Podziel wybrany model na części" -#: src/slic3r/GUI/GLCanvas3D.cpp:3490 +#: src/slic3r/GUI/GLCanvas3D.cpp:4599 msgid "Split to objects" msgstr "Podziel na osobne modele" -#: src/slic3r/GUI/Plater.cpp:2796 +#: src/slic3r/GUI/Plater.cpp:2965 msgid "Split to Objects" msgstr "Podziel na modele" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1110 +#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 msgid "Split to parts" msgstr "Podziel na części" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1904 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 msgid "Split to Parts" msgstr "Podziel na części" @@ -6576,11 +7240,11 @@ msgstr "Podziel na części" msgid "Standard" msgstr "Standard" -#: src/libslic3r/PrintConfig.cpp:799 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "Gwiazdki" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "Rozpocznij nowy projekt" @@ -6588,12 +7252,12 @@ msgstr "Rozpocznij nowy projekt" msgid "Start at height" msgstr "Zakres od" -#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949 -#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751 +#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "G-code startowy" -#: src/slic3r/GUI/MainFrame.cpp:403 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "Uruchom nowy proces cięcia" @@ -6601,23 +7265,23 @@ msgstr "Uruchom nowy proces cięcia" msgid "Start printing after upload" msgstr "Zacznij druk po przesłaniu" -#: src/slic3r/GUI/PrintHostDialogs.cpp:150 +#: src/slic3r/GUI/PrintHostDialogs.cpp:151 msgid "Status" msgstr "Stan" -#: src/slic3r/GUI/FirmwareDialog.cpp:782 +#: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Status:" msgstr "Stan:" -#: src/slic3r/GUI/Tab.cpp:2158 +#: src/slic3r/GUI/Tab.cpp:2205 msgid "Stealth" msgstr "Stealth" -#: src/slic3r/GUI/Plater.cpp:1084 +#: src/slic3r/GUI/Plater.cpp:1267 msgid "stealth mode" msgstr "tryb stealth" -#: src/slic3r/GUI/Plater.cpp:3545 +#: src/slic3r/GUI/Plater.cpp:5001 #, possible-c-format msgid "STL file exported to %s" msgstr "Plik STL wyeksportowany do %s" @@ -6626,736 +7290,803 @@ msgstr "Plik STL wyeksportowany do %s" msgid "Stop at height" msgstr "Zakres do" -#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 msgid "Success!" msgstr "Powodzenie!" -#: src/slic3r/GUI/PresetHints.cpp:200 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "podpora" -#: src/libslic3r/PrintConfig.cpp:2441 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Support base diameter" msgstr "Średnica stopy podpory" -#: src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2693 msgid "Support base height" msgstr "Wysokość stopy podpory" -#: src/libslic3r/PrintConfig.cpp:2566 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base safety distance" msgstr "Bezpieczna odległość stopy podpory" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Blocker" msgstr "Blokada podpór" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 msgid "Support Enforcer" msgstr "Wymuszenie podpór" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "Generator podpór" -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3593 msgid "Support head" msgstr "Łącznik podpory" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2611 msgid "Support head front diameter" msgstr "Średnica początku łącznika" -#: src/libslic3r/PrintConfig.cpp:2378 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head penetration" msgstr "Przenikanie łączników podpór" -#: src/libslic3r/PrintConfig.cpp:2387 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head width" msgstr "Szerokość łączników podpór" -#: src/slic3r/GUI/PresetHints.cpp:210 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "warstwa łącząca podpory z modelem" -#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70 -#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236 -#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060 -#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432 -#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786 -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806 -#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887 -#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905 -#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930 -#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939 -#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956 -#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 +#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" msgstr "Materiał podporowy" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904 -#: src/libslic3r/GCode/PreviewData.cpp:173 +#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Warstwa łącząca podpory z modelem" -#: src/libslic3r/PrintConfig.cpp:1957 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)." msgstr "Podpory nie będą generowane dla zwisów, których kąt przekracza zadany próg (90° = pion). Inaczej mówiąc, ta wartość określa największy kąt od poziomu (kąt mierzony od płaszczyzny poziomej), który będzie drukowany bez podpór." -#: src/libslic3r/PrintConfig.cpp:1877 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" msgstr "Ekstruder dla podpór/warstw łączących raft z modelem" -#: src/libslic3r/PrintConfig.cpp:1851 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" msgstr "Ekstruder dla podpór/tratwy (raft)/skirtu" -#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815 -#: src/libslic3r/PrintConfig.cpp:2423 +#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2665 msgid "Support on build plate only" -msgstr "Podpory jedynie na powierzchni stołu" +msgstr "Podpory tylko na stole" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:991 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 msgid "Support parameter change" msgstr "Zmiana parametrów podpór" -#: src/slic3r/GUI/Tab.cpp:3406 +#: src/slic3r/GUI/Tab.cpp:3598 msgid "Support pillar" msgstr "Słupek podpory" -#: src/libslic3r/PrintConfig.cpp:2407 +#: src/libslic3r/PrintConfig.cpp:2649 msgid "Support pillar connection mode" msgstr "Tryb łączenia słupków podpór" -#: src/libslic3r/PrintConfig.cpp:2397 +#: src/libslic3r/PrintConfig.cpp:2639 msgid "Support pillar diameter" msgstr "Średnica słupków podpór" -#: src/libslic3r/PrintConfig.cpp:2499 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "Support points density" msgstr "Gęstość punktów podpór" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 msgid "Support points edit" msgstr "Edycja punktów podpór" -#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519 -#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397 -#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363 -#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379 -#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398 -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431 -#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490 -#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508 +#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 +#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 +#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 +#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 +#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 +#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 +#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 +#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 +#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 +#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Supports" msgstr "Podpory" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "supports and pad" msgstr "podpory i podkładka" -#: src/libslic3r/PrintConfig.cpp:1043 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "Obsługa pozostałego czasu druku" -#: src/libslic3r/PrintConfig.cpp:1053 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "Wspiera tryb Stealth" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 +#: src/slic3r/GUI/ConfigManipulation.cpp:159 msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" msgstr "Podpory działają lepiej, jeśli włączone jest poniższe ustawienie:\n- Wykrywanie mostów przy obrysach" -#: src/slic3r/GUI/Preferences.cpp:76 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets" msgstr "Ukryj \" - domyślne - \" zestawy ustawień" -#: src/slic3r/GUI/Preferences.cpp:78 +#: src/slic3r/GUI/Preferences.cpp:91 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Ukryj \" - domyślne - \" zestawy ustawień w zakładkach Druk / Filament / Drukarka gdy dostępne są inne kompatybilne ustawienia." -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:828 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/DoubleSlider.cpp:1112 +msgid "Switch code to Change extruder" +msgstr "Przełącz kod na zmianę ekstrudera" + +#: src/slic3r/GUI/DoubleSlider.cpp:1147 +msgid "Switch code to Color change (%1%) for:" +msgstr "Zmień kod na zmianę koloru (%1%) dla:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 msgid "Switch to 3D" msgstr "Przełącz na 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 msgid "Switch to editing mode" msgstr "Tryb edycji" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 msgid "Switch to Preview" -msgstr "Przełącz na Podgląd" +msgstr " Przełącz na Podgląd cięcia" -#: src/slic3r/GUI/wxExtensions.cpp:2412 +#: src/slic3r/GUI/wxExtensions.cpp:703 #, possible-c-format msgid "Switch to the %s mode" msgstr "Przełącz na tryb %s" -#: src/slic3r/GUI/GUI_App.cpp:752 +#: src/slic3r/GUI/GUI_App.cpp:882 msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." msgstr "Zmiana języka spowoduje zrestartowanie aplikacji.\nZawartość stołu zostanie wyczyszczona." -#: src/slic3r/GUI/WipeTowerDialog.cpp:327 +#: src/slic3r/GUI/WipeTowerDialog.cpp:365 msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" msgstr "Włączenie trybu prostego spowoduje odrzucenie zmian wprowadzonych w trybie zaawansowanym! Czy chcesz kontynować?" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1016 msgid "symbolic profile name" msgstr "skrócona nazwa profilu" -#: src/libslic3r/PrintConfig.cpp:1949 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive." msgstr "Synchronizuj warstwy podporowe z warstwami modelu. Przydaje się przy drukarkach typu multi-material gdy zmiana używanego materiału jest kosztowna." -#: src/libslic3r/PrintConfig.cpp:1947 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "Synchronizuj z warstwami modelu" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "System &Info" msgstr "&Informacje o Systemie" -#: src/slic3r/GUI/SysInfoDialog.cpp:44 +#: src/slic3r/GUI/SysInfoDialog.cpp:78 msgid "System Information" msgstr "Informacje o systemie" -#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970 -#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067 -#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553 +#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 +#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 +#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 msgid "System presets" msgstr "Ustawienia systemowe" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" msgstr "Wykonaj Zr&zut Konfiguracji" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Zrzucanie konfiguracji" -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatura" -#: src/libslic3r/PrintConfig.cpp:1727 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped." msgstr "Różnica temperatur mająca zastosowanie gdy ekstruder nie jest używany. Włącza druk skirtu o wysokości równej wysokości modelu, dzięki której dysze będą co jakiś czas czyszczone." -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "Zmiana temperatury" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/ConfigWizard.cpp:1018 msgid "Temperatures" msgstr "Temperatury" -#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888 +#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 msgid "Test" msgstr "Test" -#: src/slic3r/GUI/BedShapeDialog.cpp:171 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "Tekstura" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Wzór wypełnienia %1% nie działa z gęstością ustawioną na 100%%." -#: src/slic3r/GUI/FirmwareDialog.cpp:530 +#: src/slic3r/GUI/FirmwareDialog.cpp:548 #, possible-c-format msgid "The %s device could not have been found" msgstr "Nie znaleziono urządzenia %s" -#: src/slic3r/GUI/FirmwareDialog.cpp:417 +#: src/slic3r/GUI/FirmwareDialog.cpp:436 #, possible-c-format msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." msgstr "Nie znaleziono urządzenia %s .\nJeśli urządzenie jest podłączone, to naciśnij przycisk Reset obok złącza USB ..." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." msgstr "Obecnie przekształcany model jest przechylony (kąty obrotu nie są wielokrotnością 90°).\nNierównomierne skalowanie przechylonych modeli jest możliwe tylko w globalnym systemie koordynat, po osadzeniu kątów obrotu w koordynatach modelu." -#: src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2717 msgid "The default angle for connecting support sticks and junctions." msgstr "Domyślny kąt łączenia słupków i \"skrzyżowań\" podpór." -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:631 msgid "The endings of the support pillars will be deployed on the gap between the object and the pad. 'Support base safety distance' has to be greater than the 'Pad object gap' parameter to avoid this." msgstr "Końcówki słupków podpór będą rozmieszczone w przestrzeni pomiędzy modelem a podkładką. Aby tego uniknąć, parametr \"Bezpieczna odległość stopy podpory\" powinien być większy niż \"Odstęp modelu od podkładki\"." -#: src/libslic3r/PrintConfig.cpp:457 +#: src/libslic3r/PrintConfig.cpp:489 msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders." msgstr "Używany ekstruder (jeśli nie są określone dokładniejsze ustawienia ekstuderów). To ustawienie nadpisuje ustawienia ekstruderów dla obrysów i wypełnienia, ale nie tych dla podpór." -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "Ekstruder używany do druku wypełnienia." -#: src/libslic3r/PrintConfig.cpp:1341 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "Ekstruder używany przy druku obrysów i brim. Pierwszy ekstruder ma nr 1." -#: src/libslic3r/PrintConfig.cpp:1669 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." msgstr "Ekstruder używany do druku zwartego wypełnienia." -#: src/libslic3r/PrintConfig.cpp:1879 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too." msgstr "Ekstruder używany przy druku warstw łączących podpory z modelem (1+, zero aby użyć obecnie wybranego ekstrudera i zminimalizować zmiany filamentu). Ma wpływ również na druk tratwy (raftu)." -#: src/libslic3r/PrintConfig.cpp:1853 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)." msgstr "Ekstruder używany przy druku podpór, tratwy (raft) i skirtu (1+, zero aby użyć obecnie wybranego ekstrudera i zminimalizować zmiany filamentu)." -#: src/libslic3r/PrintConfig.cpp:695 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "Rodzaj filamentu używanego przy własnym G-code." -#: src/libslic3r/PrintConfig.cpp:3105 +#: src/libslic3r/PrintConfig.cpp:3479 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Plik, w którym będzie zapisany efekt wyjściowy (jeśli nie zostanie określony, to będzie bazować na pliku wejściowym)." -#: src/libslic3r/PrintConfig.cpp:1054 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "Firmware wspiera tryb Stealth" -#: src/libslic3r/PrintConfig.cpp:351 +#: src/libslic3r/PrintConfig.cpp:377 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "Pierwsza warstwa zostanie zmniejszona o tą wartość w osiach X i Y aby zniwelować efekt stopy słonia (Elephant Foot - gdy pierwsza warstwa \"rozjeżdża\" się na boki)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2726 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 msgid "the following characters are not allowed:" msgstr "następujące znaki nie są dozwolone:" -#: src/slic3r/GUI/Tab.cpp:3311 +#: src/slic3r/GUI/Tab.cpp:3445 msgid "the following suffix is not allowed:" msgstr "następujący sufiks nie jest dozwolony:" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Odstęp między najniższą częścią modelu a wygenerowaną podkładką w trybie zerowego podniesienia." -#: src/libslic3r/PrintConfig.cpp:2453 +#: src/libslic3r/PrintConfig.cpp:2695 msgid "The height of the pillar base cone" msgstr "Wysokość stożka bazowego podpory" -#: src/libslic3r/PrintConfig.cpp:2481 +#: src/slic3r/GUI/DoubleSlider.cpp:1895 +msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." +msgstr "Dane ostatniej zmiany koloru zostały zapisane dla drukarki wielomateriałowej ze zmianami narzędzi dla całego wydruku." + +#: src/slic3r/GUI/DoubleSlider.cpp:1889 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "Dane ostatniej zmiany koloru zostały zapisane dla druku wielomateriałowego." + +#: src/slic3r/GUI/DoubleSlider.cpp:1873 +msgid "The last color change data was saved for a multiple extruder printer profile." +msgstr "Dane ostatniej zmiany koloru zostały zapisane dla profilu drukarki z wieloma ekstruderami." + +#: src/slic3r/GUI/DoubleSlider.cpp:1872 +msgid "The last color change data was saved for a single extruder printer profile." +msgstr "Dane ostatniej zmiany koloru zostały zapisane dla profilu drukarki z jednym ekstruderem." + +#: src/slic3r/GUI/DoubleSlider.cpp:1897 +msgid "The last color change data was saved for a single extruder printing." +msgstr "Dane ostatniej zmiany koloru zostały zapisane dla druku z jednym ekstruderem." + +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "Maksymalny dystans pomiędzy słupkami podpór, które powinny zostać połączone. Wartość 0 zapobiegnie łączeniu słupków podpór." -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/libslic3r/PrintConfig.cpp:2727 msgid "The max length of a bridge" msgstr "Maksymalna długość mostu" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2705 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Minimalny odstęp stopy słupka od modelu, wyrażony w mm. Ma zastosowanie w trybie zerowego podniesienia, gdy odstęp określony tym parametrem będzie oddzielał model od podkładki." -#: src/libslic3r/PrintConfig.cpp:2176 +#: src/libslic3r/PrintConfig.cpp:175 +msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." +msgstr "Liczba dolnych warstw jest zwiększona ponad bottom_solid_layers, jeśli to konieczne, aby spełnić warunek minimalnej grubości powłoki." + +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." +msgstr "Liczba górnych warstw jest zwiększona ponad top_solid_layers, jeśli to konieczne, aby spełnić warunek minimalnej grubości powłoki. Przydaje się do uniknięcia efektu \"pillowingu\" (wypychania górnych warstw) podczas drukowania ze zmienną wysokością warstwy." + +#: src/libslic3r/PrintConfig.cpp:2277 msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes." msgstr "Model zostanie zmniejszony lub zwiększony w osiach X i Y o zadaną wartość (ujemna = zmniejszenie, dotatnia = zwiększenie). Może być przydatne przy kalibracji średnic otworów." -#: src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "The object will be raised by this number of layers, and support material will be generated under it." msgstr "Model zostanie podniesiony o zadaną ilość warstw i umieszczony na podporach." -#: src/libslic3r/PrintConfig.cpp:2259 +#: src/libslic3r/PrintConfig.cpp:2424 msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" msgstr "Procentowa powierzchnia stołu.\nJeśli gabaryty wydruku przekraczają zadaną wartość,\nto zostanie użyte wolne przechylanie, w innym przypadku - szybkie" -#: src/slic3r/GUI/GUI_App.cpp:831 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "Ustawienia na następujących kartach zostały zmodyfikowane" -#: src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "Drukarka przechodzi pomiędzy filamentami używając jednego hotendu." -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Format/3mf.cpp:1630 msgid "The selected 3mf file has been saved with a newer version of %1% and is not compatible." msgstr "Wybrany plik 3mf został zapisany przy pomocy nowszej wersji %1% i nie jest kompatybilny." -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "The selected amf file has been saved with a newer version of %1% and is not compatible." msgstr "Wybrany plik amf został zapisany przy pomocy nowszej wersji %1% i nie jest kompatybilny." -#: src/slic3r/GUI/BedShapeDialog.cpp:342 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "Wybrany plik nie zawiera żadnego kształtu." -#: src/slic3r/GUI/BedShapeDialog.cpp:346 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Wybrany plik zawiera kilka rozłączonych obszarów. Taki plik nie jest obsługiwany." -#: src/slic3r/GUI/Plater.cpp:2271 +#: src/slic3r/GUI/Plater.cpp:2954 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "Wybrany model nie może być podzielony ponieważ składa się z więcej niż jednej części lub zawiera więcej niż jeden materiał." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 msgid "The selected object couldn't be split because it contains only one part." msgstr "Wybrany model nie może być rozdzielony ponieważ zawiera tylko jedną część." -#: src/slic3r/GUI/MainFrame.cpp:410 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "Wybrany projekt nie jest dostępny" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." +msgstr "Druk sekwencyjny jest włączony.\nNiemożliwe jest dodawanie własnego G-code do modeli drukowanych sekwencyjnie.\nTen kod nie będzie przetwarzany podczas generowania pliku G-code." + +#: src/libslic3r/PrintConfig.cpp:2837 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "Kąt pochylenia ścian podkładki względem powierzchni stołu. 90 stopni oznacza proste ściany." -#: src/libslic3r/PrintConfig.cpp:1544 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used." msgstr "Prędkość powrotu filamentu do ekstrudera po retrakcji (dotyczy tylko silnika ekstrudera). Ustaw zero aby użyć prędkości retrakcji." -#: src/libslic3r/PrintConfig.cpp:1536 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "Prędkość retrakcji (stosowana tylko dla silnika ekstrudera)." +#: src/slic3r/GUI/ConfigManipulation.cpp:81 +#, no-c-format +msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" +msgstr "Wymagania trybu wazy:\n- jeden obrys\n- brak górnych warstw\n- 0% wypełnienia\n- brak materiału podporowego\n- wyłączone ustawienie \"Zagwarantuj grubość ścianki\"\n- wyłączone wykrywanie cienkich ścian" + #: src/slic3r/GUI/ConfigManipulation.cpp:75 #, no-c-format msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" msgstr "Wymagania trybu wazy:\n- jeden obrys\n- brak górnych warstw\n- 0% wypełnienia\n- brak materiału podporowego\n- wyłączone ustawienie \"Zagwarantuj grubość ścianki\"" -#: src/libslic3r/Print.cpp:1187 +#: src/libslic3r/Print.cpp:1233 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "Tryb Wazy może być aktywny tylko podczas druku pojedynczego modelu." -#: src/libslic3r/Print.cpp:1189 +#: src/libslic3r/Print.cpp:1240 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "Tryb Wazy może być używany jedynie podczas druku z jednego materiału." -#: src/slic3r/GUI/Tab.cpp:2900 +#: src/slic3r/GUI/Tab.cpp:3052 msgid "The supplied name is empty. It can't be saved." msgstr "Podana nazwa jest pusta. Nie można zapisać." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3449 msgid "The supplied name is not available." msgstr "Podana nazwa jest niedostępna." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2725 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278 -#: src/slic3r/GUI/Tab.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:3444 msgid "The supplied name is not valid;" msgstr "Podana nazwa nie jest prawidłowa;" -#: src/libslic3r/Print.cpp:1268 +#: src/libslic3r/Print.cpp:1218 msgid "The supplied settings will cause an empty print." msgstr "Wprowadzone ustawienia spowodują pusty wydruk." -#: src/libslic3r/PrintConfig.cpp:2524 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "The thickness of the pad and its optional cavity walls." msgstr "Grubość podkładki i opcjonalnie wydrążenie ścianek." -#: src/libslic3r/PrintConfig.cpp:1825 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Dystans w pionie między modelem a warstwą łączącą materiału podporowego. Ustawienie na 0 wyłączy ustawienie mostu (prędkości i przepływu) dla pierwszej warstwy modelu nad warstwą łączącą." -#: src/slic3r/GUI/Tab.cpp:2429 +#: src/slic3r/GUI/Tab.cpp:2571 msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" msgstr "Opcja czyszczenia dyszy nie jest dostępna z funkcją Retrakcji w Firmware (Firmware Retraction).\n\nWyłączyć ją aby włączyć Firmware Retraction?" -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "Wieża czyszcząca obecnie nie obsługuje wolumetrycznego parametru E (use_volumetric_e=0)." -#: src/slic3r/GUI/ConfigManipulation.cpp:107 +#: src/slic3r/GUI/ConfigManipulation.cpp:115 msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "Wieża czyszcząca obsługuje podpory nierozpuszczalne jedynie, gdy są drukowane tym samym ekstruderem - bez wywoływania zmiany narzędzia (zarówno support_material_extruder i support_material_interface_extruder muszą być ustawione na 0)." -#: src/libslic3r/Print.cpp:1306 +#: src/libslic3r/Print.cpp:1396 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "Wieża Czyszcząca obsługuje podpory nierozpuszczalne jedynie, gdy są drukowane tym samym ekstruderem - bez wywoływania zmiany narzędzia (zarówno support_material_extruder i support_material_interface_extruder muszą być ustawione na 0)." -#: src/libslic3r/Print.cpp:1200 +#: src/libslic3r/Print.cpp:1266 +msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." +msgstr "Wieża czyszcząca jest obecnie niedostępna dla wielomateriałowego druku sekwencyjnego." + +#: src/libslic3r/Print.cpp:1258 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Wieża Czyszcząca jest obecnie dostępna tylko dla G-code w stylu Marlin, RepRap/Sprinter i Repetier." -#: src/libslic3r/Print.cpp:1202 +#: src/libslic3r/Print.cpp:1260 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Wieża Czyszcząca jest obecnie dostępna tylko przy relatywnym adresowaniu ekstrudera (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1225 +#: src/libslic3r/Print.cpp:1289 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "Wieża Czyszcząca jest dostępna dla wielu modeli tylko gdy są drukowane na takiej samej ilości warstw tratwy (raft)" -#: src/libslic3r/Print.cpp:1227 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że ustawienie support_material_contact_distance jest jednakowe dla każdego z nich" -#: src/libslic3r/Print.cpp:1229 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "Wieża Czyszcząca jest dostępna dla kilku modeli tylko jeśli są cięte z taką samą wysokością warstwy." -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1287 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że mają one równą wysokość warstwy" -#: src/libslic3r/Print.cpp:1155 +#: src/libslic3r/Print.cpp:1253 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "Wieża Czyszcząca jest dostępna tylko, gdy wszystkie ekstrudery mają taką samą średnicę dyszy i używają filamentów i takiej samej średnicy." -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1335 msgid "The Wipe tower is only supported if all objects have the same variable layer height" -msgstr "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że mają one równą wysokość warstwy" +msgstr "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że mają one taką samą wysokość warstwy" -#: src/slic3r/GUI/UpdateDialogs.cpp:127 +#: src/libslic3r/SLAPrintSteps.cpp:596 +msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." +msgstr "Na stole są modele niemożliwe do wydrukowania. Spróbuj zmienić ustawienia podpór, aby możliwe było ich drukowanie." + +#: src/slic3r/GUI/DoubleSlider.cpp:996 +msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." +msgstr "Występuje zmiana koloru dla ekstrudera, który nie był jeszcze używany.\nSprawdź ustawienia, aby uniknąć niepotrzebnych zmian koloru." + +#: src/slic3r/GUI/DoubleSlider.cpp:990 +msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." +msgstr "Występuje zmiana koloru dla ekstrudera, który nie będzie używany do końca tego wydruku.\nTen kod nie będzie przetwarzany podczas generowania G-code." + +#: src/slic3r/GUI/DoubleSlider.cpp:993 +msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." +msgstr "Występuje zmiana koloru na używany przez ten sam ekstruder.\nTen kod nie będzie przetwarzany podczas generowania G-code." + +#: src/slic3r/GUI/UpdateDialogs.cpp:225 #, possible-c-format msgid "This %s version: %s" msgstr "%s wersja: %s" -#: src/libslic3r/PrintConfig.cpp:140 +#: src/libslic3r/PrintConfig.cpp:155 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Ten kod jest wykonywany pomiędzy drukiem poszczególnych modeli w trybie druku sekwencyjnego. Domyślnie przy komendzie non-wait temperatury dyszy i stołu są resetowane; jednakże jeśli przy tej opcji zostaną użyte komendy M104, M109, M140 lub M190 to Slic3r nie doda własnych komend do kontroli temperatury. Pamiętaj, że możesz używać zmiennych typu placeholder, więc np. komendę \"M109 S[first_layer_temperature]\" (temperatura pierwszej warstwy) możesz umieścić gdzie chcesz." -#: src/libslic3r/PrintConfig.cpp:1032 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ten kod jest wykonywany przy każdej zmianie warstwy - zaraz po podniesieniu głowicy na wysokość kolejnej warstwy ale zanim ekstruder przejdzie do pierwszego punktu nowej warstwy. Pamiętaj, że możesz użyć zmiennych typu placeholder dla wszystkich ustawień Slic3r, jak np. [layer_num] (numer warstwy) i [layer_z] (położenie warstwy w osi Z)." -#: src/libslic3r/PrintConfig.cpp:129 +#: src/libslic3r/PrintConfig.cpp:144 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ten kod jest wykonywany przy każdej zmianie warstwy, zaraz przed podniesieniem ekstrudera na wysokość nowej warstwy. Pamiętaj, że możesz użyć zmiennych typu placeholder dla wszystkich ustawień PrusaSlicer, jak np. [layer_num] (numer warstwy) i [layer_z] (położenie warstwy w osi Z)." -#: src/libslic3r/PrintConfig.cpp:2057 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "This custom code is inserted before every toolchange. Placeholder variables for all PrusaSlicer settings as well as {previous_extruder} and {next_extruder} can be used. When a tool-changing command which changes to the correct extruder is included (such as T{next_extruder}), PrusaSlicer will emit no other such command. It is therefore possible to script custom behaviour both before and after the toolchange." msgstr "Ten kod jest wykonywany przy każdej zmianie narzędzia (filamentu). Możesz użyć zmiennych dla wszystkich ustawień PrusaSlicer, jak i również {previous_extruder} i {next_extruder}. Po wysłaniu komendy zmiany narzędzia, która zmienia obecny ekstruder (np. T{next_extruder}), PrusaSlicer nie powtórzy tej komendy. Możliwe jest więc zdefiniowanie własnego zachowania zarówno przed jak i po zmianie narzędzia." -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:396 msgid "This end procedure is inserted at the end of the output file, before the printer end gcode (and before any toolchange from this filament in case of multimaterial printers). Note that you can use placeholder variables for all PrusaSlicer settings. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Ta procedura końcowa jest dodawana na końcu pliku wyjściowego, przed kodem końcowym (jak i również przed każdą zmianą z tego filamentu na kolejny w przypadku drukarek wielomateriałowych). Zauważ, że możesz używać zmiennych dla wszystkich ustawień PrusaSlicer. Jeśli masz kilka ekstruderów, to G-code jest wykonywany w ich kolejności." -#: src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:386 msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all PrusaSlicer settings." msgstr "Ta procedura końcowa jest dodawana na końcu pliku wyjściowego. Zauważ, że możesz używać zmiennych dla wszystkich ustawień PrusaSlicer." -#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds." msgstr "To ustawienie eksperymentalne jest używane do ograniczania szybkości zmian ilości ekstrudowanego materiału. Wartość 1.8 mm³/s² oznacza, że zmiana z ilości ekstrudowanego materiału z poziomu 1.8 mm³/s (czyli 0.45 mm szerokości ekstruzji, 0.2 mm wysokości warstwy przy prędkości 20 mm/s) na 5.4 mm³/s (prędkość 60 mm/s) zajmie co najmniej 2 sekundy." -#: src/libslic3r/PrintConfig.cpp:1183 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports." msgstr "Ta eksperymentalna funkcja określa maksymalną prędkość objętościową, którą jest w stanie wytłoczyć Twój ekstruder." -#: src/libslic3r/PrintConfig.cpp:2061 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." msgstr "Ta eksperymentalna funkcja używa komend G10 i G11 aby przerzucić kontrolę retrakcji na firmware. Jest wspierana jedynie przez najnowsze wersje Marlina." -#: src/libslic3r/PrintConfig.cpp:2075 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Ta eksperymentalna funkcja określa wyjściowe dane E (ilość ekstruzji) w milimetrach sześciennych zamiast długości. Jeśli średnica filamentu nie została jeszcze ustawiona w firmware, możesz użyć komendy \"M200 D[filament_diameter_0] T0\" w skrypcie startowym aby włączyć tryb objętościowy i użyć filamentu powiązanego z ustawionym w Slic3r. Ta funkcja jest wspierana jedynie przez najnowsze wersje Marlina." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2848 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 msgid "This extruder will be set for selected items" msgstr "Ten ekstruder zostanie ustawiony dla wybranych elementów" -#: src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Ten współczynnik określa ilość plastiku wytłaczaną przy drukowaniu mostów. Możesz delikatnie zmniejszyć tą wartość aby zapobiec opadaniu drukowanej linii, jednakże standardowe ustawienia są zazwyczaj dobrze dobrane i najpierw poeksperymentuj z chłodzeniem wydruku." -#: src/libslic3r/PrintConfig.cpp:514 +#: src/libslic3r/PrintConfig.cpp:546 msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Ten współczynnik określa proporcjonalną ilość przepływu plastiku. Możesz zmienić tą wartość aby uzyskać gładsze powierzchnie i poprawną szerokość ścian drukowanych z 1 linii. Ten współczynnik waha się zazwyczaj od 0.9 do 1.1. Jeśli musisz wykroczyć poza ten zakres to najpierw zmierz średnicę filamentu i kroki ekstrudera (E steps)." -#: src/libslic3r/PrintConfig.cpp:178 +#: src/libslic3r/PrintConfig.cpp:204 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Ta prędkość wentylatora zostanie zastosowana przy druku mostów i zwisów." -#: src/libslic3r/PrintConfig.cpp:944 +#: src/libslic3r/PrintConfig.cpp:992 msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy." msgstr "Ta funkcja pozwala ustawić oddzielne wysokości dla wypełnienia i obrysów modelu i przyspieszyć wydruk ustawiając np. wyższą warstwę wypełnienia zachowując nominalną wysokość obrysów, co pozwoli zachować wysoką jakość i dokładność wydruku." -#: src/libslic3r/PrintConfig.cpp:1677 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height." msgstr "Ta funkcja pozwoli wstawić zwartą warstwę wypełnienia pomiędzy określoną liczbą warstw. Ustaw zero aby wyłączyć. Możesz ustawić tu dowolną wartość (np. 9999) a Slic3r automatycznie wybierze maksymalną możliwą liczbę warstw biorąc pod uwagę średnicę dyszy i wysokość warstwy." -#: src/libslic3r/PrintConfig.cpp:1718 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Ta funkcja pozwala drukować modele z 1 zewnętrzną ścianką z ciągłym podnoszeniem Z, aby uniknąć widocznego szwu (czyli ekstruder nie będzie drukował po 1 warstwie na 1 wysokości, lecz będzie podnosił się płynnie w formie spirali). Wymaga użycia 1 obrysu, zerowego wypełnienia, braku warstw górnych i braku podpór. Możesz ustawić dowolną ilość dolnych warstw jak i obrysów skirt/brim. Nie zadziała przy druku więcej niż jednego modelu." -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2351 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Ten plik nie może zostać wczytany w Trybie Prostym. Czy chcesz przełączyć na Tryb Zaawansowany?" -#: src/slic3r/GUI/Plater.cpp:2361 +#: src/slic3r/GUI/Plater.cpp:2341 msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" -msgstr "Ten plik zawiera kilka modeli umieszczonych na różnych wysokościach. Potraktować go jako\njeden model składający się z kilku części?" +msgstr "Ten plik zawiera kilka modeli umieszczonych na różnych wysokościach. \nPotraktować go jako\njeden model składający się z kilku części?" -#: src/slic3r/GUI/FirmwareDialog.cpp:313 +#: src/slic3r/GUI/FirmwareDialog.cpp:332 #, possible-c-format msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." msgstr "Ten plik .hex z firmware nie jest przeznaczony dla tej drukarki.\nPlik .hex jest przeznaczony dla: %s\nWykryta drukarka: %s\n\nCzy chcesz kontynuować i mimo wszystko wgrać ten plik .hex?\nKontynuuj tylko, jeśli wiesz, że tak powinno być." -#: src/libslic3r/PrintConfig.cpp:278 +#: src/libslic3r/PrintConfig.cpp:304 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Ta flaga umożliwia automatyczne sterowanie chłodzeniem przez zmianę prędkości druku i wentylatora względem czasu druku jednej warstwy." -#: src/slic3r/GUI/Plater.cpp:448 +#: src/slic3r/GUI/Plater.cpp:533 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Ta flaga włącza brim, który zostanie wydrukowany na pierwszej warstwie wokół każdego modelu." -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "Ta flaga wymusza retrakcję przy każdej zmianie wysokości Z." -#: src/libslic3r/PrintConfig.cpp:2093 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Ta flaga włączy ruch dyszy przy retrakcji aby zminimalizować formowanie się kropli filamentu wokół końcówki dyszy przy ekstruderach, które mają tendencję do wyciekania filamentu." -#: src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a default preset." msgstr "To jest domyślny zestaw ustawień." -#: src/libslic3r/PrintConfig.cpp:2501 +#: src/libslic3r/PrintConfig.cpp:2757 msgid "This is a relative measure of support points density." msgstr "To jest względna miara gęstości punktów podpór." -#: src/slic3r/GUI/Tab.cpp:2528 +#: src/slic3r/GUI/Tab.cpp:2334 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "To jest drukarka wielomateriałowa z jednym ekstruderem, więc średnice wszystkich ekstruderów zostaną zastąpione nową wartością. Kontynuować?" -#: src/slic3r/GUI/Tab.cpp:923 +#: src/slic3r/GUI/Tab.cpp:957 msgid "This is a system preset." msgstr "To jest systemowy zestaw ustawień." -#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." msgstr "Ta funkcja jest używana jedynie w interfejsie Slic3ra jako pomoc wizualna." -#: src/libslic3r/PrintConfig.cpp:300 +#: src/libslic3r/PrintConfig.cpp:326 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Do tej wartości przyspieszenia drukarka wróci gdy ustawione zostaną przyspieszenia dla określonych ruchów (obrysy/wypełnienie). Ustaw zero aby wyłączyć resetowanie przyspieszeń." -#: src/libslic3r/PrintConfig.cpp:158 +#: src/libslic3r/PrintConfig.cpp:184 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "To jest przyspieszenie stosowane przy druku mostów. Ustaw zero aby wyłączyć osobne ustawienia przyspieszenia dla mostów." -#: src/libslic3r/PrintConfig.cpp:813 +#: src/libslic3r/PrintConfig.cpp:860 msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer." msgstr "To jest przyspieszenie stosowane przy druku pierwszej warstwy. Ustaw zero aby wyłączyć osobne ustawienia przyspieszenia dla pierwszej warstwy." -#: src/libslic3r/PrintConfig.cpp:934 +#: src/libslic3r/PrintConfig.cpp:982 msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill." msgstr "To jest przyspieszenie stosowane przy druku wypełnienia. Ustaw zero aby wyłączyć osobne ustawienia przyspieszenia dla wypełnienia." -#: src/libslic3r/PrintConfig.cpp:1331 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters." msgstr "To jest przyspieszenie stosowane przy druku obrysów. Wysoka wartość, np. 9000 zazwyczaj daje dobre rezultaty - pod warunkiem, że Twój sprzęt się do tego nadaje. Ustaw zero aby wyłączyć osobne ustawienia przyspieszenia dla obrysów." -#: src/libslic3r/PrintConfig.cpp:1262 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "To jest średnica dyszy ekstrudera (np. 0.5, 0.35 itp.)" -#: src/libslic3r/PrintConfig.cpp:1162 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter." msgstr "To jest najwyższa możliwa do wydrukowania wysokość warstwy dla tego ekstrudera i jednocześnie górny limit dla funkcji zmiennej wysokości warstwy i materiału podporowego. Zalecana jest wartość nie większa niż 75% szerokości ekstruzji aby zapewnić dobrą przyczepność warstw do siebie. Jeśli ustawisz zero, wysokość warstwy zostanie ograniczona do 75% średnicy dyszy." -#: src/libslic3r/PrintConfig.cpp:1225 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm." msgstr "To jest najniższa możliwa do wydrukowania wysokość warstwy dla tego ekstrudera i jednocześnie dolny limit dla funkcji zmiennej wysokości warstwy. Zazwyczaj jest to 0.05 lub 0.1 mm." -#: src/libslic3r/GCode.cpp:630 +#: src/libslic3r/GCode.cpp:639 msgid "This is usually caused by negligibly small extrusions or by a faulty model. Try to repair the model or change its orientation on the bed." msgstr "Dzieje się to zazwyczaj z powodu zbyt małych odcinków ekstruzji (są one pomijane) lub uszkodzenia modelu. Spróbuj naprawić model lub zmienić jego orientację na stole." -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools." msgstr "Ta formuła określa objętość (w milimetrach sześciennych) wymaganą do wyczyszczenia filamentu na wieży czyszczącej dla danej pary narzędzi (filamentów)." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 msgid "This operation is irreversible.\nDo you want to proceed?" msgstr "Tej czynności nie można cofnąć.\nCzy chcesz kontynuować?" -#: src/libslic3r/PrintConfig.cpp:1372 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." msgstr "To ustawienie określa ilość obrysów, które będą generowane dla każdej warstwy. Weź po uwagę, że Slic3r może zwiększyć tą liczbę automatycznie gdy wykryje zwisy, w których wydruku pomoże dodatkowa ilość obrysów przy jednocześnie włączonej opcji \"Dodatkowe obrysy jeśli potrzebne\"." -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures." msgstr "Ta funkcja obniży temperatury nieużywanych ekstruderów aby zapobiec wyciekaniu filamentu z dyszy. Równocześnie włączy wysoki skirt i przesunie ekstrudery poza jego obrys przy zmianie temperatury." -#: src/libslic3r/PrintConfig.cpp:980 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved." msgstr "Ta opcja wygeneruje wypełnienie jedynie w miejscach, gdzie jest potrzebne do podparcia górnych warstw (zadziała na zasadzie wewnętrznych podpór). Włączenie jej spowolni generowanie G-code ze względu na konieczność kilkukrotnej weryfikacji." -#: src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "This option will switch the print order of perimeters and infill, making the latter first." msgstr "Ta opcja zamieni kolejność druku obrysów i wypełnienia, aby te drugie były drukowane jako pierwsze." -#: src/libslic3r/PrintConfig.cpp:427 +#: src/libslic3r/PrintConfig.cpp:459 msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "To ustawienie steruje prędkością zewnętrznych (widocznych) obrysów. Jeśli ustawisz wartość procentową (np. 80%) to zostanie obliczona z prędkości obrysów ustawionej powyżej. Ustaw zero aby pozwolić na sterowanie automatyczne." -#: src/libslic3r/PrintConfig.cpp:1648 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "To ustawienie reguluje prędkość obrysów posiadających promień mniejszy lub równy 6.5 mm (zazwyczaj chodzi o otwory). Jeśli ustawisz wartość procentową (np. 80%) to zostanie obliczona z prędkości obrysów ustawionej powyżej. Ustaw zero aby użyć nastawów automatycznych." -#: src/libslic3r/PrintConfig.cpp:989 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width." msgstr "To ustawienie odpowiada za dodatkowe nakładanie na siebie linii obrysów i wypełnienia dla lepszego spojenia. Teoretycznie nie powinno być potrzebne ale luz może powodować szczeliny. Jeśli ustawisz wartość procentową (np. 15%) to zostanie obliczona z szerokości ekstruzji obrysów." -#: src/libslic3r/PrintConfig.cpp:57 +#: src/libslic3r/PrintConfig.cpp:73 msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print." msgstr "To ustawienie odpowiada za wysokość warstwy (czyli cięcia), a w konsekwencji za ich liczbę. Niższe warstwy zapewniają lepszą dokładność i jakość, ale wydłużają ogólny czas wydruku." -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "To ustawienie odpowiada za maksymalną prędkość wentylatora." -#: src/libslic3r/PrintConfig.cpp:1216 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "To ustawienie wyraża minimalny PWM (Pulse Width Modulation), który jest niezbędny dla wentylatora." -#: src/libslic3r/PrintConfig.cpp:1801 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "This start procedure is inserted at the beginning, after any printer start gcode (and after any toolchange to this filament in case of multi-material printers). This is used to override settings for a specific filament. If PrusaSlicer detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order." msgstr "Ta procedura startowa jest dodawana po kodzie startowym drukarki (i po zmianie filamentu w przypadku drukarek wielomateriałowych). Jest używana, aby nadpisać ustawienia dla konkretnego filamentu. Jeśli PrusaSlicer wykryje M104, M109, M140 lub M190 w Twoich kodach, to takie komendy nie będą automatycznie poprzedzane, więc możesz dowolnie ustawić kolejność nagrzewania i inne skonfigurowane przez siebie akcje. Zauważ, że możesz używać zmiennych dla wszystkich ustawień PrusaSlicer, więc możesz umieścić komendę \"M109 S[first_layer_temperature]\" gdzie tylko zechcesz. Jeśli masz kilka ekstruderów, to ten G-code jest wykonywany zgodnie z kolejnością ekstruderów." -#: src/libslic3r/PrintConfig.cpp:1786 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If PrusaSlicer detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Ta procedura startowa jest dodawana na początku, po osiągnięciu przez stół zadanej temperatury i rozpoczęciu nagrzewania ekstrudera, ale przed zakończeniem tego procesu. Jeśli PrusaSlicer wykryje M140 lub M190 w Twoich kodach, to takie komendy nie będą automatycznie poprzedzane, więc możesz dowolnie ustawić kolejność nagrzewania i inne skonfigurowane przez siebie akcje. Zauważ, że możesz używać zmiennych dla wszystkich ustawień PrusaSlicer, więc możesz umieścić komendę \"M109 S[first_layer_temperature]\" gdzie tylko zechcesz." -#: src/libslic3r/PrintConfig.cpp:664 +#: src/libslic3r/PrintConfig.cpp:695 msgid "This string is edited by RammingDialog and contains ramming specific parameters." msgstr "Ten ciąg jest edytowany przez RammingDialog i zawiera parametry właściwe dla wyciskania." -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." msgstr "Wartość tego ustawienia zostanie dodana (lub odjęta) od wszystkich koordynat w osi Z w pliku wyjściowym G-code. Jest używana dla korekcji złego położenia wyłącznika krańcowego osi Z. Np. jeśli końcówka dyszy znajduje się 0.3 mm ponad położeniem zerowym, ustaw tutaj -0.3 (lub napraw krańcówkę)." -#: src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." msgstr "To ustawienie określa wymaganą objętość wieży czyszczącej przy zmianie danego narzędzia. Te wartości używane są do uproszczenia określenia pełnych wartości czyszczenia poniżej." -#: src/slic3r/GUI/UpdateDialogs.cpp:155 +#: src/slic3r/GUI/UpdateDialogs.cpp:216 #, possible-c-format msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." msgstr "Ta wersja %s nie jest kompatybilna z aktualnie zainstalowanym zestawem konfiguracji.\nPrawdopodobnie stało się tak, ponieważ uruchomiono starszy %s po użyciu nowszego.\n\nMożesz zamknąć %s i spróbować ponownie z nowszą wersją, lub możesz też uruchomić ponownie konfigurację początkową. Spowoduje to stworzenie kopii istniejącej konfiguracji przed zainstalowaniem plików kompatybilnych z %s ." -#: src/libslic3r/PrintConfig.cpp:2284 +#: src/libslic3r/PrintConfig.cpp:2449 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "To ustawienie zastosuje korekcję gamma do zrasteryzowanych wielokątów 2D. Wartość 0 oznacza ustawienie progu w środku zakresu. Spowoduje to wyeliminowanie antaliasing bez utraty otworów w wielokątach." -#: src/libslic3r/PrintConfig.cpp:1994 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "Wątki" -#: src/libslic3r/PrintConfig.cpp:1995 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Wątki są używane do równoległego przetwarzania zadań wymagających używa wielu zasobów. Optymalna liczba wątków powinna być odrobinę większa od dostępnej liczby rdzeni lub procesorów." -#: src/slic3r/GUI/Tab.cpp:2052 +#: src/slic3r/GUI/Tab.cpp:2091 msgid "Tilt" msgstr "Przechylanie" -#: src/slic3r/GUI/Tab.cpp:2053 +#: src/slic3r/GUI/Tab.cpp:2092 msgid "Tilt time" msgstr "Czas przechylania" @@ -7363,27 +8094,35 @@ msgstr "Czas przechylania" msgid "Time" msgstr "Czas" -#: src/libslic3r/PrintConfig.cpp:655 +#: src/libslic3r/PrintConfig.cpp:687 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Czas, który drukarka (lub dodatek Multi Material 2.0) poświęca na ładowanie nowego filamentu podczas zmiany narzędzia (przy wykonywaniu kodu T). Ten czas jest dodawany do szacowanego czasu druku." -#: src/libslic3r/PrintConfig.cpp:670 +#: src/libslic3r/PrintConfig.cpp:702 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "Czas, który drukarka (lub dodatek Multi Material 2.0) poświęca na rozładowanie nowego filamentu podczas zmiany narzędzia (przy wykonywaniu kodu T). Ten czas jest dodawany do szacowanego czasu druku." -#: src/libslic3r/PrintConfig.cpp:2242 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "Czas szybkiego przechylania" -#: src/libslic3r/PrintConfig.cpp:2251 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "Czas wolnego przechylania" -#: src/libslic3r/PrintConfig.cpp:610 +#: src/libslic3r/PrintConfig.cpp:641 msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Czas bezczynności po rozładowaniu filamentu. Może pomóc w bezproblemowej zmianie narzędzia podczas druku z materiałami elastycznymi, które mogą potrzebować więcej czasu na skurcz termiczny wracając do nominalnego rozmiaru." -#: src/slic3r/GUI/Tab.cpp:916 +#: src/slic3r/GUI/DoubleSlider.cpp:962 +msgid "To add another code use Ctrl + Left click" +msgstr "Aby dodać kolejny kod, naciśnij Ctrl + lewy przycisk myszki" + +#: src/slic3r/GUI/DoubleSlider.cpp:963 +msgid "To add another code use Right click" +msgstr "Aby dodać kolejny kod, naciśnij prawy przycisk myszki" + +#: src/slic3r/GUI/Tab.cpp:968 msgid "To do that please specify a new name for the preset." msgstr "Aby to zrobić ustaw nową nazwę zestawu ustawień." @@ -7391,118 +8130,140 @@ msgstr "Aby to zrobić ustaw nową nazwę zestawu ustawień." msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" msgstr "Aby pozbyć się niepotrzebnych zmian narzędzi,\nusunięte zostały zmiany kolorów dla nieużywanych ekstruderów." -#: src/slic3r/GUI/Plater.cpp:2966 +#: src/slic3r/GUI/Plater.cpp:4023 msgid "To objects" msgstr "Do modeli" -#: src/slic3r/GUI/Plater.cpp:2968 +#: src/slic3r/GUI/Plater.cpp:4025 msgid "To parts" msgstr "Na części" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:212 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 #, possible-c-format msgid "Toggle %c axis mirroring" msgstr "Włącz odbicie w osi %c" -#: src/libslic3r/Zipper.cpp:37 +#: src/libslic3r/Zipper.cpp:34 msgid "too many files" msgstr "zbyt wiele plików" -#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315 -#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404 +#: src/libslic3r/SLAPrintSteps.cpp:154 +msgid "Too much overlapping holes." +msgstr "Zbyt wiele nakładających się otworów." + +#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 +#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 +#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Narzędzie" -#: src/slic3r/GUI/WipeTowerDialog.cpp:240 +#: src/slic3r/GUI/WipeTowerDialog.cpp:276 msgid "Tool #" msgstr "Narzędzie #" -#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006 +#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code wykonywany przy zmianie narzędzia" -#: src/slic3r/GUI/Tab.cpp:1530 +#: src/slic3r/GUI/Tab.cpp:1493 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parametry zmiany narzędzia dla drukarek MM z jednym ekstruderem" #. TRN To be shown in the main menu View->Top -#: src/slic3r/GUI/MainFrame.cpp:522 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "Górne" -#: src/libslic3r/PrintConfig.cpp:388 +#: src/slic3r/GUI/PresetHints.cpp:300 +msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "Porada dot. grubości dolnej / górnej powłoki: niedostępne z powodu nieprawidłowej wysokości warstwy." + +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "Wzór wypełnienia górnej warstwy" -#: src/slic3r/GUI/PresetHints.cpp:189 +#: src/slic3r/GUI/PresetHints.cpp:319 +msgid "Top is open." +msgstr "Góra jest otwarta." + +#: src/slic3r/GUI/PresetHints.cpp:313 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "Górna powłoka ma %1% mm grubości dla warstwy o wysokości %2% mm." + +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" msgstr "zwarte wypełnienie na szczycie" -#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017 -#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Zwarte wypełnienie górne" -#: src/libslic3r/PrintConfig.cpp:2046 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" msgstr "Zwarte warstwy górne" -#: src/slic3r/GUI/MainFrame.cpp:522 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "Widok z góry" -#: src/slic3r/GUI/WipeTowerDialog.cpp:247 +#: src/slic3r/GUI/WipeTowerDialog.cpp:285 msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded." msgstr "Całkowita objętość czyszczenia jest obliczana z sumy obydwóch wartości poniżej, w zależności która para narzędzi jest rozładowana/ładowana." -#: src/slic3r/GUI/WipeTowerDialog.cpp:84 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 msgid "Total rammed volume" msgstr "Całkowita objętość wyciskania" -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 +#: src/slic3r/GUI/WipeTowerDialog.cpp:83 msgid "Total ramming time" msgstr "Całkowity czas wyciskania" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:516 msgid "Translate" msgstr "Konwersja" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Tłumaczenie" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051 +#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Jałowy" -#: src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "Trójkąty" -#: src/libslic3r/PrintConfig.cpp:3059 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Podejmij próbę naprawienia wszystkich niezamkniętych obszarów siatki (ta opcja jest dodana w przypadku, w którym potrzebujemy pociąć model, aby przeprowadzić jakieś zadanie)." -#: src/libslic3r/PrintConfig.cpp:1397 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "Rodzaj drukarki." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2549 +#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 msgid "Type:" msgstr "Typ:" -#: src/libslic3r/Zipper.cpp:35 +#: src/slic3r/GUI/Plater.cpp:3436 +msgid "Unable to reload:" +msgstr "Nie można wczytać:" + +#: src/libslic3r/Zipper.cpp:32 msgid "undefined error" msgstr "nieznany błąd" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3609 -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Cofnij" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 +#: src/slic3r/GUI/GLCanvas3D.cpp:4103 #, possible-c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" @@ -7511,11 +8272,11 @@ msgstr[1] "Cofnij %1$d akcji" msgstr[2] "Cofnij %1$d akcji" msgstr[3] "Cofnij %1$d akcji" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4085 msgid "Undo History" msgstr "Historia Cofnięć" -#: src/libslic3r/Zipper.cpp:59 +#: src/libslic3r/Zipper.cpp:56 msgid "unexpected decompressed size" msgstr "nieoczekiwany rozmiar po rozpakowaniu" @@ -7523,96 +8284,102 @@ msgstr "nieoczekiwany rozmiar po rozpakowaniu" msgid "Unknown" msgstr "Nieznane" -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 msgid "Unknown error occured" msgstr "Wystąpił nieznany błąd" -#: src/slic3r/GUI/WipeTowerDialog.cpp:234 +#: src/slic3r/GUI/WipeTowerDialog.cpp:263 msgid "unloaded" msgstr "rozładowano" -#: src/libslic3r/PrintConfig.cpp:591 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "Prędkość rozładowania" -#: src/libslic3r/PrintConfig.cpp:600 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "Początkowa prędkość rozładowania" -#: src/slic3r/GUI/Tab.cpp:3069 +#: src/slic3r/GUI/Tab.cpp:3240 msgid "UNLOCKED LOCK" msgstr "OTWARTA KŁÓDKA" -#: src/slic3r/GUI/Tab.cpp:3362 +#: src/slic3r/GUI/Tab.cpp:3266 msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." msgstr "OTWARTA KŁÓDKA oznacza, że niektóre ustawienia zostały zmodyfikowane i nie odpowiadają wartościom systemowym (lub domyślnym) w obecnej grupie opcji.\nKliknij aby zresetować wszystkie ustawienia obecnej grupy ustawień do wartości systemowych (lub domyślnych)." -#: src/slic3r/GUI/Tab.cpp:3377 +#: src/slic3r/GUI/Tab.cpp:3281 msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." msgstr "OTWARTA KŁÓDKA oznacza, że niektóre wartości zostały zmodyfikowane i nie odpowiadają systemowym (lub domyślnym).\nKliknij ikonę aby zresetować do wartości systemowej (lub domyślnej)." -#: src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Unretractions" msgstr "Powrót retrakcji" -#: src/slic3r/GUI/Tab.cpp:2785 +#: src/slic3r/GUI/Tab.cpp:2931 msgid "Unsaved Changes" msgstr "Niezapisane zmiany" -#: src/slic3r/GUI/GUI_App.cpp:790 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "Niezapisane zestawy ustawień" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 msgid "Unselect gizmo / Clear selection" -msgstr "Uchwyt do odznaczania / usuń zaznaczenie" +msgstr "Odznacz uchwyt / wyczyść zaznaczenie" -#: src/libslic3r/Zipper.cpp:63 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "Odznacz uchwyt lub wyczyść zaznaczenie" + +#: src/libslic3r/Zipper.cpp:60 msgid "unsupported central directory size" msgstr "nieobsługiwany rozmiar katalogu centralnego" -#: src/libslic3r/Zipper.cpp:43 +#: src/libslic3r/Zipper.cpp:40 msgid "unsupported encryption" msgstr "nieobsługiwane szyfrowanie" -#: src/libslic3r/Zipper.cpp:45 +#: src/libslic3r/Zipper.cpp:42 msgid "unsupported feature" msgstr "nieobsługiwana funkcja" -#: src/libslic3r/Zipper.cpp:41 +#: src/libslic3r/Zipper.cpp:38 msgid "unsupported method" msgstr "nieobsługiwana metoda" -#: src/libslic3r/Zipper.cpp:53 +#: src/libslic3r/Zipper.cpp:50 msgid "unsupported multidisk archive" msgstr "nieobsługiwane archiwum wielodyskowe" -#: src/slic3r/GUI/GUI_App.cpp:305 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "Nieobsługiwana wersja OpenGL" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 msgid "Unsupported selection" msgstr "Niewłaściwy wybór" -#: src/libslic3r/GCode/PreviewData.cpp:495 +#: src/slic3r/GUI/GLCanvas3D.cpp:960 #, possible-c-format msgid "up to %.2f mm" msgstr "do %.2f mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/UpdateDialogs.cpp:38 msgid "Update available" msgstr "Dostępna jest aktualizacja" -#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 msgid "Update built-in Presets automatically" msgstr "Automatyczna aktualizacja wbudowanych zestawów ustawień" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:760 msgid "Updates" msgstr "Aktualizacje" -#: src/slic3r/GUI/ConfigWizard.cpp:426 +#: src/slic3r/GUI/ConfigWizard.cpp:785 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Aktualizacje nie są stosowane bez wiedzy użytkownika i nigdy nie nadpisują zapisanych ustawień własnych." @@ -7620,11 +8387,11 @@ msgstr "Aktualizacje nie są stosowane bez wiedzy użytkownika i nigdy nie nadpi msgid "Upgrade" msgstr "Aktualizacja" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" msgstr "Wgraj obraz firmware do drukarki opartej na Adruino" -#: src/slic3r/Utils/FlashAir.cpp:60 +#: src/slic3r/Utils/FlashAir.cpp:58 msgid "Upload not enabled on FlashAir card." msgstr "Przesyłanie wyłączone w karcie FlashAir." @@ -7632,32 +8399,32 @@ msgstr "Przesyłanie wyłączone w karcie FlashAir." msgid "Upload to Printer Host with the following filename:" msgstr "Prześlij do Serwera Druku z następującą nazwą pliku:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:229 +#: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "Przesyłanie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 msgid "Upper Layer" msgstr "Górna Warstwa" -#: src/slic3r/GUI/Tab.cpp:1873 +#: src/slic3r/GUI/Tab.cpp:1898 msgid "USB/Serial connection" msgstr "Połączenie USB/szeregowe" -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "Port USB/szeregowy do połączenia z drukarką." -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 +#: src/slic3r/GUI/DoubleSlider.cpp:1115 msgid "Use another extruder" msgstr "Użyj innego ekstrudera" -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:147 msgid "Use custom size for toolbar icons" msgstr "Użyj własnego rozmiaru ikon pasków narzędzi" -#: src/libslic3r/PrintConfig.cpp:2060 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "Użyj retrakcji z firmware" @@ -7665,51 +8432,59 @@ msgstr "Użyj retrakcji z firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Użyj prawego ukośnika ( / ) jako separatora katalogu w razie potrzeby." -#: src/libslic3r/PrintConfig.cpp:2515 +#: src/slic3r/GUI/Preferences.cpp:129 +msgid "Use free camera" +msgstr "Użyj wolnego widoku" + +#: src/libslic3r/PrintConfig.cpp:2771 msgid "Use pad" msgstr "Użyj podkładki" -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "Use perspective camera" msgstr "Użyj widoku perspektywicznego" -#: src/libslic3r/PrintConfig.cpp:2067 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "Użyj względnych wartości E (ekstruzji)" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "Use Retina resolution for the 3D scene" msgstr "Użyj rozdzielczości Retina dla generowania podglądu 3D" -#: src/libslic3r/PrintConfig.cpp:508 +#: src/libslic3r/PrintConfig.cpp:540 msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)." msgstr "Ta opcja określa literę, którą Twoja drukarka opisuje oś ekstrudera (zazwyczaj jest to E ale niektóre drukarki używają A)." -#: src/libslic3r/PrintConfig.cpp:1807 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "Use this setting to rotate the support material pattern on the horizontal plane." msgstr "To ustawienie odpowiada za obrót materiału podporowego w płaszczyźnie poziomej." -#: src/libslic3r/PrintConfig.cpp:2074 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "Użyj wolumetrycznej wartości E" -#: src/slic3r/GUI/Plater.cpp:214 +#: src/slic3r/GUI/DoubleSlider.cpp:1139 +msgid "used" +msgstr "używany" + +#: src/slic3r/GUI/Plater.cpp:239 msgid "Used Filament (g)" msgstr "Użyty filament (g)" -#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041 +#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 msgid "Used Filament (m)" msgstr "Użyty filament (m)" -#: src/slic3r/GUI/Plater.cpp:213 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Filament (mm³)" msgstr "Użyty filament (mm³)" -#: src/slic3r/GUI/Plater.cpp:1015 +#: src/slic3r/GUI/Plater.cpp:1188 msgid "Used Material (ml)" msgstr "Używany materiał (ml)" -#: src/slic3r/GUI/Plater.cpp:215 +#: src/slic3r/GUI/Plater.cpp:240 msgid "Used Material (unit)" msgstr "Używany materiał (jednostka)" @@ -7717,117 +8492,117 @@ msgstr "Używany materiał (jednostka)" msgid "User" msgstr "Użytkownik" -#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071 -#: src/slic3r/GUI/PresetBundle.cpp:1558 +#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 +#: src/slic3r/GUI/PresetBundle.cpp:1670 msgid "User presets" msgstr "Zestawy użytkownika" -#: src/libslic3r/Zipper.cpp:93 +#: src/libslic3r/Zipper.cpp:90 msgid "validation failed" msgstr "niepowodzenie weryfikacji" -#: src/slic3r/GUI/ButtonsDescription.cpp:41 +#: src/slic3r/GUI/ButtonsDescription.cpp:36 msgid "Value is the same as the system value" msgstr "Wartość jest taka sama jak systemowa" -#: src/slic3r/GUI/ButtonsDescription.cpp:58 +#: src/slic3r/GUI/ButtonsDescription.cpp:53 msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Wartość została zmieniona i nie równa się wartości systemowej lub tej z ostatnio zapisanego zestawu ustawień" -#: src/slic3r/GUI/Tab.cpp:2151 +#: src/slic3r/GUI/Tab.cpp:2198 msgid "Values in this column are for Normal mode" msgstr "Wartości w tej kolumnie dotyczą trybu Normal" -#: src/slic3r/GUI/Tab.cpp:2157 +#: src/slic3r/GUI/Tab.cpp:2204 msgid "Values in this column are for Stealth mode" msgstr "Wartości w tej kolumnie dotyczą trybu Stealth" -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 msgid "Variable layer height" msgstr "Zmienna wysokość warstwy" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1713 msgid "Variable layer height - Adaptive" msgstr "Zmienna wysokość warstwy - Adaptacyjna" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:604 msgid "Variable layer height - Manual edit" msgstr " Zmienna wysokość warstwy - ręczna edycja" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1705 msgid "Variable layer height - Reset" msgstr "Zmienna wysokość warstwy - Reset" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1721 msgid "Variable layer height - Smooth all" msgstr "Zmienna wysokość warstwy - Wygładź wszystko" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "variants" msgstr "warianty" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 msgid "vendor" msgstr "dostawca" -#: src/slic3r/GUI/ConfigWizard.cpp:536 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "Producent:" -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "G-code rozszerzony" -#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "Wersja" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 msgid "version" msgstr "wersja" -#: src/slic3r/GUI/Tab.cpp:1002 +#: src/slic3r/GUI/Tab.cpp:1055 msgid "Vertical shells" msgstr "Powłoka pionowa" -#: src/slic3r/GUI/GUI_Preview.cpp:209 +#: src/slic3r/GUI/GUI_Preview.cpp:220 msgid "View" msgstr "Widok" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:814 msgid "View mode" msgstr "Widok" -#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867 -#: src/libslic3r/SLAPrint.cpp:915 +#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 +#: src/libslic3r/SLAPrintSteps.cpp:430 msgid "Visualizing supports" msgstr "Wizualizacja podpór" -#: src/slic3r/GUI/Plater.cpp:138 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Volume" msgstr "Objętość" -#: src/slic3r/GUI/WipeTowerDialog.cpp:248 +#: src/slic3r/GUI/WipeTowerDialog.cpp:286 msgid "Volume to purge (mm³) when the filament is being" msgstr "Objętość do wyczyszczenia (mm³), gdy filament jest" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 msgid "Volumes in Object reordered" msgstr "Części modelu przeorganizowane" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "Objętościowy" -#: src/slic3r/GUI/Tab.cpp:1800 +#: src/slic3r/GUI/Tab.cpp:1593 msgid "Volumetric flow hints not available" msgstr "Podpowiedzi dot. objętości przepływu są niedostępne" -#: src/slic3r/GUI/GUI_Preview.cpp:216 +#: src/slic3r/GUI/GUI_Preview.cpp:228 msgid "Volumetric flow rate" msgstr "Objętościowa wartość przepływu" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "Objętościowy współczynnik przepływu (mm³/s)" @@ -7835,300 +8610,313 @@ msgstr "Objętościowy współczynnik przepływu (mm³/s)" msgid "Volumetric speed" msgstr "Prędkość objętościowa" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283 -#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328 +#: src/libslic3r/PrintConfig.cpp:2906 +msgid "Wall thickness" +msgstr "Grubość ścianki" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 +#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Ostrzeżenie" -#: src/slic3r/GUI/ConfigWizard.cpp:294 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "Witaj" -#: src/slic3r/GUI/ConfigWizard.cpp:296 +#: src/slic3r/GUI/ConfigWizard.cpp:427 #, possible-c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Witamy w Asystencie Konfiguracji %s" -#: src/slic3r/GUI/ConfigWizard.cpp:298 +#: src/slic3r/GUI/ConfigWizard.cpp:429 #, possible-c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Witamy w Asystencie Konfiguracji %s" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:99 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Zaznaczenie tej opcji spowoduje wyświetlanie wszystkich ustawień druku i filamentów w edytorze zestawów ustawień, nawet jeśli są oznaczone jak niekompatybilne z wybraną drukarką" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "podczas druku" -#: src/libslic3r/PrintConfig.cpp:217 +#: src/libslic3r/PrintConfig.cpp:243 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "To ustawienie sprawi, że podczas druku modeli z wielu materiałów, PrusaSlicer przytnie nachodzące na siebie części (druga część zostanie przycięta przez pierwszą, trzecia przez pierwszą i drugą itd.)" -#: src/libslic3r/PrintConfig.cpp:269 +#: src/libslic3r/PrintConfig.cpp:295 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Włączenie tej opcji sprawi, że przy druku kilku modeli drukarka wydrukuje jeden model w całości zanim przejdzie do następnego (zaczynając od najniższej warstwy). Przydaje się aby uniknąć ryzyka niepowodzenia wydruku kilku części. Slic3r powinien ostrzec przed możliwością kolizji z ekstruderem, ale zachowaj ostrożność." -#: src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:891 msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height." msgstr "Podczas druku z bardzo małą wysokością warstwy warto mimo wszystko wydrukować najniższą warstwę o większej wysokości aby zwiększyć przyczepność i tolerancję na niedoskonałości powierzchni druki. Może być wyrażona jako wartość bezwzględna lub procentowa (np. 150%) nominalnej wysokości warstwy." -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Kiedy retrakcja zostaje wykonana przed zmianą ekstrudera, filament o określonej długości jest wciągany z powrotem (mierzona jest długość nieprzetworzonego filamentu, zanim wejdzie do ekstrudera)." -#: src/libslic3r/PrintConfig.cpp:1475 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "Kiedy zostaje wykonana retrakcja to filament o określonej długości jest wciągany z powrotem (mierzona jest długość nieprzetworzonego filamentu, zanim wejdzie do ekstrudera)." -#: src/libslic3r/PrintConfig.cpp:1347 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." msgstr "Gdy ta wartość wynosi zero, to długość ładowania filamentu z pozycji zaparkowanej jest dokładnie taka sama, jak podczas rozładowywania. Jeśli jest dodatnia to jest większa (więcej filamentu zostanie załadowane), jeśli ujemna to jest mniejsza niż przy rozładowywaniu." -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow." msgstr "Ustawienie pozostałych prędkości na 0 spowoduje, ze Slic3r będzie automatycznie przeliczał optymalną prędkość dla utrzymania stałego ciśnienia materiału w ekstruderze. To eksperymentalne ustawienie określa maksymalną dozwoloną prędkość druku." -#: src/libslic3r/PrintConfig.cpp:1527 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Jeśli retrakcja jest korygowana po zmianie narzędzia, ekstruder przepchnie taką dodatkową ilość filamentu." -#: src/libslic3r/PrintConfig.cpp:1519 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Jeśli retrakcja jest korygowana po ruchu jałowym, ekstruder przepchnie taką dodatkową ilość filamentu. Ta opcja jest rzadko potrzebna." -#: src/slic3r/GUI/Tab.cpp:3076 +#: src/slic3r/GUI/Tab.cpp:3247 msgid "WHITE BULLET" msgstr "BIAŁA KROPKA" -#: src/slic3r/GUI/Tab.cpp:3365 +#: src/slic3r/GUI/Tab.cpp:3269 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "BIAŁA KROPKA oznacza niesystemowy (lub inny niż domyślny) zestaw ustawień." -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3272 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "BIAŁA KROPKA oznacza, że ustawienia są takie same jak w ostatnio zapisanym zestawie ustawień dla obecnej grupy opcji." -#: src/slic3r/GUI/Tab.cpp:3126 +#: src/slic3r/GUI/Tab.cpp:3287 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "BIAŁA KROPKA oznacza, że wartość jest taka sama jak w ostatnio zapisanym zestawie ustawień." -#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Szerokość" -#: src/libslic3r/GCode/PreviewData.cpp:398 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "Szerokość (mm)" -#: src/libslic3r/PrintConfig.cpp:2389 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "Width from the back sphere center to the front sphere center" msgstr "Odstęp pomiędzy środkami przedniej i tylnej części łącznika podpory" -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "Szerokość wieży czyszczącej" -#: src/libslic3r/PrintConfig.cpp:2761 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Średnica słupków łączących model z wygenerowaną podkładką." -#: src/libslic3r/PrintConfig.cpp:2203 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "Szerokość wyświetlacza" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "będzie zawsze pracować w %1%%%" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "będzie wyłączony." -#: src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction." msgstr "Trójkąty 2D zostaną rozciągnięte lub ściśnięte zgodnie z kierunkiem korekcji." -#: src/libslic3r/PrintConfig.cpp:2160 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "Czyszczenie na tym modelu" -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "Czyszczenie na wypełnieniu modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:564 src/libslic3r/PrintConfig.cpp:2202 -#: src/libslic3r/PrintConfig.cpp:2210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 +#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Opcje czyszczenia" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130 -#: src/libslic3r/GCode/PreviewData.cpp:174 +#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Wieża czyszcząca" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 msgid "wipe tower" msgstr "wieża czyszcząca" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "Wieża czyszcząca" -#: src/slic3r/GUI/WipeTowerDialog.cpp:141 +#: src/slic3r/GUI/WipeTowerDialog.cpp:142 msgid "Wipe tower - Purging volume adjustment" msgstr "Wieża czyszcząca - dostosowanie objętości czyszczenia" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1490 msgid "Wipe tower parameters" msgstr "Parametry wieży czyszczącej" -#: src/libslic3r/PrintConfig.cpp:2144 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "Kąt obrotu wieży czyszczącej" -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "Obrót wieży czyszczącej względem osi X." -#: src/libslic3r/PrintConfig.cpp:2092 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "Czyszczenie przy retrakcji" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "ze współczynnikiem objętościowym" -#: src/libslic3r/PrintConfig.cpp:1460 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement." msgstr "Przy ekstruderze typu bowden warto wykonać szybką retrakcję przed ruchem czyszczącym." -#: src/libslic3r/PrintConfig.cpp:1969 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" -msgstr "Z osłoną wokół podpór" +msgstr "Osłona wokół podpór" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:62 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:105 msgid "World coordinates" msgstr "Globalny układ współrzędnych" -#: src/slic3r/GUI/UpdateDialogs.cpp:76 +#: src/slic3r/GUI/UpdateDialogs.cpp:92 msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" msgstr "Czy chcesz kontynuować instalację?\n\nWeź pod uwagę, że najpierw zostanie stworzony zrzut konfiguracji. Może być przywrócony w każdej chwili, gdyby okazało się, że nowa wersja powoduje problemy.\n\nZaktualizowane paczki konfiguracyjne:" -#: src/libslic3r/Zipper.cpp:95 +#: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "błąd write calledback" -#: src/libslic3r/PrintConfig.cpp:2993 +#: src/libslic3r/PrintConfig.cpp:3367 msgid "Write information about the model to the console." msgstr "Zapis informacji o modelu do konsoli." -#: src/slic3r/Utils/Duet.cpp:148 +#: src/slic3r/Utils/Duet.cpp:131 msgid "Wrong password" msgstr "Nieprawidłowe hasło" -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "Koordynata X wieży czyszczącej od przedniego lewego narożnika" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" msgstr "Odstęp materiału podporowego od modelu w osiach XY" -#: src/libslic3r/PrintConfig.cpp:1795 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." msgstr "Odstęp materiału podporowego od modelu w osiach XY. Jeśli ustawisz wartość procentową (np. 15%) to zostanie obliczona z szerokości ekstruzji obrysów zewnętrznych." -#: src/libslic3r/PrintConfig.cpp:2174 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" msgstr "Korekta wymiarów XY" -#: src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Koordynata wieży czyszczącej w osi Y od przedniego lewego narożnika" -#: src/slic3r/GUI/Plater.cpp:992 +#: src/slic3r/GUI/Plater.cpp:1167 msgid "Yes" msgstr "Tak" -#: src/libslic3r/PrintConfig.cpp:1252 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "You can put here your personal notes. This text will be added to the G-code header comments." msgstr "Tutaj możesz umieścić notatki, które zostaną dodane do nagłówka pliku G-code." -#: src/libslic3r/PrintConfig.cpp:557 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "Tutaj możesz umieścić notatki dotyczące filamentu." -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "Tutaj możesz umieścić notatki dotyczące drukarki." -#: src/libslic3r/PrintConfig.cpp:2332 +#: src/libslic3r/PrintConfig.cpp:2570 msgid "You can put your notes regarding the SLA print material here." msgstr "Tutaj możesz umieścić notatki dotyczące materiału druku SLA." -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:350 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Wpisując tutaj wartość dodatnią możesz wyłączyć wentylator podczas druku pierwszych warstw, aby nie pogarszać przyczepności do stołu." -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Możesz użyć wszystkich opcji konfiguracjnych jako zmiennych w tym szablonie, takich jak np: [layer_height] - wysokość warstwy, [fill_density] - gęstość wypełnienia, itp. Możesz również użyć [timestamp] - czas, [year] - rok, [month] - miesiąc, [day] - dzień, [hour] - godzina, [minute] - minuta, [second] - sekunda, [version] - wersja, [input_filename] - pełna nazwa pliku wejściowego, [input_filename_base] - nazwa pliku wejściowego bez rozszerzenia." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 msgid "You can't change a type of the last solid part of the object." msgstr "Nie możesz zmienić typu ostatniej zwartej części modelu." -#: src/slic3r/GUI/Plater.cpp:2243 -msgid "You can't load SLA project if there is at least one multi-part object on the bed" -msgstr "Nie można wczytać projektu SLA, jeśli na stole jest co najmniej jeden model wieloczęściowy" - -#: src/slic3r/GUI/Plater.cpp:1746 +#: src/slic3r/GUI/Plater.cpp:2374 #, possible-c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Nie możesz dodać obiektu/ów z %s, ponieważ jeden lub więcej modeli składa się z wielu części" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:565 +#: src/slic3r/GUI/Plater.cpp:2295 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "Nie możesz wczytać projektu SLA mając na stole wieloczęściowy model." + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" msgstr "Nie możesz używać skalowania nierównomiernego dla kliku modeli/części" -#: src/slic3r/GUI/ConfigWizard.cpp:1637 +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" msgstr "Musisz wybrać co najmniej jeden filament dla zaznaczonych drukarek" -#: src/slic3r/GUI/ConfigWizard.cpp:1643 +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "Musisz wybrać co najmniej jeden materiał dla zaznaczonych drukarek" -#: src/slic3r/GUI/GUI_App.cpp:300 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "Może być wymagana aktualizacja sterowników karty graficznej." -#: src/slic3r/GUI/Preferences.cpp:130 +#: src/slic3r/GUI/Preferences.cpp:176 #, possible-c-format msgid "You need to restart %s to make the changes effective." msgstr "Wymagany jest restart %s, aby wprowadzić zmiany." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 #, possible-c-format msgid "You started your selection with %s Item." msgstr "Wybór rozpoczęty przez %s." -#: src/slic3r/GUI/MainFrame.cpp:772 +#: src/slic3r/GUI/DoubleSlider.cpp:1875 +msgid "Your current changes will delete all saved color changes." +msgstr "Wprowadzane zmiany usuną wszystkie zmiany kolorów." + +#: src/slic3r/GUI/DoubleSlider.cpp:1896 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "Obecne zmiany spowodują usunięcie wszystkich zapisanych zmian ekstruderów (narzędzi)." + +#: src/slic3r/GUI/MainFrame.cpp:913 msgid "Your file was repaired." msgstr "Twój plik został naprawiony." -#: src/slic3r/GUI/Plater.cpp:1874 +#: src/slic3r/GUI/Plater.cpp:2512 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Importowany model przekracza wymiary przestrzeni roboczej i został przeskalowany do odpowiednich rozmiarów." -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" -msgstr "Margines Z" +msgstr "Z Offset" #: src/slic3r/GUI/ConfigManipulation.cpp:60 msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." @@ -8138,37 +8926,47 @@ msgstr "Zerowa wysokość pierwszej warstwy jest nieprawidłowa.\n\nWysokość p msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." msgstr "Zerowa wysokość warstwy jest nieprawidłowa.\n\nWysokość warstwy zostanie ustawiona na 0,01." -#: src/libslic3r/PrintConfig.cpp:2416 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +#: src/slic3r/GUI/Mouse3DController.cpp:326 +#: src/slic3r/GUI/Mouse3DController.cpp:337 +msgid "Zoom" +msgstr "Zoom" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Zoom in" msgstr "Przybliżenie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Zoom out" msgstr "Oddalenie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 msgid "Zoom to all objects in scene, if none selected" msgstr "Ustaw zbliżenie na wszystkie modele, jeśli żaden nie został wybrany" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 msgid "Zoom to Bed" msgstr "Zbliżenie na Stół" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "Zoom to selected object\nor all objects in scene, if none selected" +msgstr "Ustaw zbliżenie na wybrany model\nlub wszystkie na stole, jeśli żaden nie został wybrany" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 msgid "Zoom to selected object" msgstr "Przybliż na wybrany model" -#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733 -#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580 -#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962 -#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463 +#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 +#: src/libslic3r/PrintConfig.cpp:2839 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627 +#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 msgid "°C" msgstr "°C" From d1e35ff60eb6d9dad7b2e5c5a229ea36ed508562 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Fri, 21 Feb 2020 17:56:32 +0100 Subject: [PATCH 52/91] Localization: Deleted context "markers" from PO files, updated MO files --- resources/localization/cs/PrusaSlicer.mo | Bin 249679 -> 249667 bytes resources/localization/cs/PrusaSlicer_cs.po | 2 +- resources/localization/de/PrusaSlicer.mo | Bin 257498 -> 257486 bytes resources/localization/de/PrusaSlicer_de.po | 2 +- resources/localization/es/PrusaSlicer.mo | Bin 256131 -> 256119 bytes resources/localization/es/PrusaSlicer_es.po | 2 +- resources/localization/fr/PrusaSlicer.mo | Bin 263899 -> 263887 bytes resources/localization/fr/PrusaSlicer_fr.po | 2 +- resources/localization/it/PrusaSlicer.mo | Bin 252394 -> 252382 bytes resources/localization/it/PrusaSlicer_it.po | 2 +- resources/localization/ja/PrusaSlicer.mo | Bin 253144 -> 253104 bytes resources/localization/ja/PrusaSlicer_ja.po | 6 +++--- resources/localization/pl/PrusaSlicer.mo | Bin 250876 -> 250864 bytes resources/localization/pl/PrusaSlicer_pl.po | 2 +- 14 files changed, 9 insertions(+), 9 deletions(-) diff --git a/resources/localization/cs/PrusaSlicer.mo b/resources/localization/cs/PrusaSlicer.mo index 34042f5ec91bc08e45fe04164ebbdf201341d0cc..9bd5f8121948785245b42f2896fa740d2873ec1f 100644 GIT binary patch delta 7669 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 VvrF&|?2SL*2<*_sGhg9CT!PtM?aXhXW||Ub z2RIGmsn14D;9wm4{}P4MG-&O%b@NO*9!Bl=d%D|fj>8Mo$KXor*u!>w8nunC;BW@o zx~GlM)4lA0vm2G9pI}$~9koOq<2|zsbA1YQ2C`4;e+vp7p;Yrks{);*f0=@0P!cae* zB2c*zh5C)x6gA*>&fcj0MxnOjqo{Ag0@TU53CRiHoTH!tTtX$q4b+Qk^sysufvR`F zk%V{%Dx@3x+JT-zE!8#DeHHuJ7dLdaM-8+us{e1I`+pD( z6%y@s8-^pPZ@>VdzTvz%)czX2HOw>9xjr(_J#Nw7NeFT=V5#F1|RXv zMCu(eglq9}Jc3%ncBAd*c@a*g{u;((gE5}b#M8$3o*6>n6&iG)+(fNaw=~<~UOY_w zJidg_kM+zC*!C};*^i-d_Qbr1hp4wpw_m$b)Dkq!uwT{j&ONB)4UG3pimv+<#!!&@ z{Cif0TVWwSfcx+~mZFmH_(Z!j zV;;4U^gnim36pFnZ=m*V+GC#i4{J3Y|D>KW*)yl*6wjQXJ$9;RvhlyuJo60gBXanW zO8qh_f(;+{%s=o&{DAg^nO^xHDr)93LF#=mA;A92o@GP0Yqn>$@IY7|yMP;ZViBI2 z7#ybr&`rrQ7B z)1Em+Lra{6Wmt%l=Xqv6{)#0yXTDedSF+4}l8J%6gj$j+3q11*Zo%hq=t7&sS23LX zA{W`Uu3zYxuem-0J7LOV{=MLH!%_;BaoaN-iMab&&n)JKqf6{RCI>F{%K!4Q2(JY> z>#--Ef6g<*xUbeqUdVHqc$WIgzcVoE=`Yxb-C1SNiM=m+W-ZqbV?!j=p z@)G-BKNw1AQ1;%yo*1>xer$&0Wa_D?fu2B}kRM|M`~kIXBi7p=FvBpK`b1oaPhmq0 z-(XL|W~dkU$I3WtgKvKlJwk(iv1Flg;0ag%4i%X@sIOb#WxE@qa4+?!jrOB+3h$?W z74cvlBJ@kDF+HOUteY+DCkv(4%bsP<&6 zgELSwFT{?x5v$?_%)_rR0@JqGkJw|VkDI@Of=2i@>V`6`j)ATAABmBuk#|FNJOUN^ zMc4g)9~DrCn{ zIdTSD;J5fFM!jMWmbs|pdJXlR{}P+xEmUMHDQL~MVnsZR%7x>o zrT7rF_FteryWgYk3+}Kl495`l&Zs0!MIF6asOQ$A2J|W_LZ?ypeSs;w-;_|05AL+T zT92b14DGT5XphR;9@q@~p=LG>H{vSXigB;kC7?_?glxYyp$_f7kvPf;VhjB)rKY6i{r+3nUFHNb`V78YR*9JSvjWfp3n^H7o9 zfx2Fd+9e;MlGhwy|0_uv9I!`XFH|ntC28WaqIx^;<{m61DoL z{YA7G$I$)_D!U&%Y7eldup9NG&f9n&_0Gra?~O5-Mt!?aL0KPOZ2vaf2(@olqHfrL zL-7yPnVopt9!SZk?K&Ej8;_#;$-zGOjH`cuiew3@-=w$g{b{Ie?q^ZZTIFIbT<_eA z3hilEzkqr{DQbI$yAP)>mpPn-bM}NEb4`yqLS@L)bkN1?SNu1M*FS{ z1>Km8+MmII z#!j>!Mr+@XqM#FMDrx|0oUfvmrWiw5fg(c4CUHd9jXxE`mzHP3)3-$ayS3izg+xJkRzJ%)cd(?|>ppy7c zR0J!XW&ejLG&pM?=z+R15jDb8S5HH&^+Z$$vrsScozJ0`Y7-K9a}<@l#m;l630y)g z^?y(UFz@>|8EU_8*RCx#r#%Ig j78Vu+_7@feKbsUWY)0nenKKj9r)18ZyPyB=y>j{g5@uQr diff --git a/resources/localization/cs/PrusaSlicer_cs.po b/resources/localization/cs/PrusaSlicer_cs.po index 66dc8de884..eddf8c8458 100644 --- a/resources/localization/cs/PrusaSlicer_cs.po +++ b/resources/localization/cs/PrusaSlicer_cs.po @@ -5470,7 +5470,7 @@ msgstr "Přednastavení s názvem \"%1%\" již existuje." #: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" -msgstr "PresetName||%1% - Kopie" +msgstr "%1% - Kopie" #: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "" diff --git a/resources/localization/de/PrusaSlicer.mo b/resources/localization/de/PrusaSlicer.mo index 77d5f81b8f871e4de308fe88f40e6468d3841eb9..5417f2b605261e30bec4d2a92c35b7c7ded71d11 100644 GIT binary patch delta 7669 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 F{{t-}ar*!O delta 7682 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 diff --git a/resources/localization/es/PrusaSlicer_es.po b/resources/localization/es/PrusaSlicer_es.po index 269aead6b7..14f50726e3 100644 --- a/resources/localization/es/PrusaSlicer_es.po +++ b/resources/localization/es/PrusaSlicer_es.po @@ -5364,7 +5364,7 @@ msgstr "Ya existe un preset con el nombre \"% 1%\"." #: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" -msgstr "PresetName||%1% - Copiar" +msgstr "%1% - Copiar" #: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" diff --git a/resources/localization/fr/PrusaSlicer.mo b/resources/localization/fr/PrusaSlicer.mo index 282c98e38b79fc9c4ed04447c44be330fa30da93..d71142b7ae01cf3e2a7ec1247f6efc4c5b293b33 100644 GIT binary patch delta 7669 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 delta 7682 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 J-@T{q{vQY2W?=vT diff --git a/resources/localization/fr/PrusaSlicer_fr.po b/resources/localization/fr/PrusaSlicer_fr.po index f5715f6d66..9411cfd38d 100644 --- a/resources/localization/fr/PrusaSlicer_fr.po +++ b/resources/localization/fr/PrusaSlicer_fr.po @@ -5364,7 +5364,7 @@ msgstr "Un préréglage avec le nom \"%1%\" existe déjà." #: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" -msgstr "PresetName||%1% - Copie" +msgstr "%1% - Copie" #: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" diff --git a/resources/localization/it/PrusaSlicer.mo b/resources/localization/it/PrusaSlicer.mo index 52a196e8c08b660117cf520a84536dc721b207cd..fd631eefa095af221084b0f12da1827d10dd80c5 100644 GIT binary patch delta 7669 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 G%l`*z^n1tv delta 7682 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 ZFrcck|zk4TK`agK}eqjIr diff --git a/resources/localization/it/PrusaSlicer_it.po b/resources/localization/it/PrusaSlicer_it.po index 05739bdb0f..ec34a5d9a3 100644 --- a/resources/localization/it/PrusaSlicer_it.po +++ b/resources/localization/it/PrusaSlicer_it.po @@ -5364,7 +5364,7 @@ msgstr "Preset con il nome \"%1%\" già esistente." #: src/slic3r/GUI/Tab.cpp:3029 msgctxt "PresetName" msgid "%1% - Copy" -msgstr "NomePreset||%1% - Copia" +msgstr "%1% - Copia" #: src/slic3r/GUI/KBShortcutsDialog.cpp:152 msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" diff --git a/resources/localization/ja/PrusaSlicer.mo b/resources/localization/ja/PrusaSlicer.mo index c770e0b226a7d1ec64f4edc5f6c5e99d1346127c..32d829ce935a19c6ad1e6e47fc41f484aca40023 100644 GIT binary patch delta 9521 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 delta 9562 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 VoieA`-YIi@wMXvde{{Ru_&<~yV|oAp delta 7674 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 Date: Fri, 21 Feb 2020 18:18:01 +0100 Subject: [PATCH 53/91] Fix of a regression from e0811e4aa580983cc5316427414c46b9af7867d6 Due to refactoring of G-code export some "don't care" extrusions were not extruded at all. --- src/libslic3r/GCode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index b7a7c18c4d..899b35cc3f 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -3407,7 +3407,7 @@ const std::vector& GCode::ObjectByExtru if (this_override == nullptr || (*this_override)[copy] == -int(extruder)-1) target_eec.emplace_back(entities[i]); } - for (; i < overrides.size(); ++ i) + for (; i < entities.size(); ++ i) target_eec.emplace_back(entities[i]); } } From a28c373d224e810354e64c008297129b6f5f9e8b Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 21 Feb 2020 18:43:26 +0100 Subject: [PATCH 54/91] Updated bundled profiles. --- resources/profiles/Creality.idx | 1 + resources/profiles/Creality.ini | 2 +- resources/profiles/PrusaResearch.idx | 5 ++++- resources/profiles/PrusaResearch.ini | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/resources/profiles/Creality.idx b/resources/profiles/Creality.idx index 9ac64e8cf1..1647e1c31b 100644 --- a/resources/profiles/Creality.idx +++ b/resources/profiles/Creality.idx @@ -1,4 +1,5 @@ min_slic3r_version = 2.2.0-alpha3 +0.0.2-beta Update for PrusaSlicer 2.2.0-beta 0.0.2-alpha1 Extended list of default filaments to be installed 0.0.2-alpha0 Print bed textures are now configurable from the Preset Bundle. Requires PrusaSlicer 2.2.0-alpha3 and newer. # The following line (max_slic3r_version) forces the users of PrusaSlicer 2.2.0-alpha3 and newer to update the profiles to 1.1.1-alpha3 and newer, diff --git a/resources/profiles/Creality.ini b/resources/profiles/Creality.ini index ddb0437758..054347efb8 100644 --- a/resources/profiles/Creality.ini +++ b/resources/profiles/Creality.ini @@ -5,7 +5,7 @@ name = Creality # Configuration version of this file. Config file will only be installed, if the config_version differs. # This means, the server may force the PrusaSlicer configuration to be downgraded. -config_version = 0.0.2-alpha1 +config_version = 0.0.2-beta # Where to get the updates from? config_update_url = http://files.prusa3d.com/wp-content/uploads/repository/PrusaSlicer-settings-master/live/Creality/ # changelog_url = http://files.prusa3d.com/?latest=slicer-profiles&lng=%1% diff --git a/resources/profiles/PrusaResearch.idx b/resources/profiles/PrusaResearch.idx index d063303d92..3cc89e6fbd 100644 --- a/resources/profiles/PrusaResearch.idx +++ b/resources/profiles/PrusaResearch.idx @@ -1,4 +1,5 @@ min_slic3r_version = 2.2.0-alpha3 +1.1.1-beta Updated for PrusaSlicer 2.2.0-beta 1.1.1-alpha4 Extended list of default filaments to be installed, top/bottom_solid_min_thickness defined, infill_acceleration changed etc 1.1.1-alpha3 Print bed textures are now configurable from the Preset Bundle. Requires PrusaSlicer 2.2.0-alpha3 and newer. # The following line (max_slic3r_version) forces the users of PrusaSlicer 2.2.0-alpha3 and newer to update the profiles to 1.1.1-alpha3 and newer, @@ -8,6 +9,8 @@ min_slic3r_version = 2.2.0-alpha0 1.1.1-alpha2 Bumped up config version, so our in house customer will get updated profiles. 1.1.0 Filament aliases, Creality profiles and other goodies for PrusaSlicer 2.2.0-alpha0 min_slic3r_version = 2.1.1-beta0 +1.0.8 Various changes in FFF profiles, new filaments/materials added. See changelog. +1.0.7 Updated layer height limits for MINI 1.0.6 Added Prusa MINI profiles min_slic3r_version = 2.1.0-alpha0 1.0.5 Added SLA materials @@ -118,4 +121,4 @@ min_slic3r_version = 1.40.0-alpha 0.1.3 Fixed an incorrect position of the max_print_height parameter 0.1.2 Wipe tower changes 0.1.1 Minor print speed adjustments -0.1.0 Initial +0.1.0 Initial \ No newline at end of file diff --git a/resources/profiles/PrusaResearch.ini b/resources/profiles/PrusaResearch.ini index cc791097d2..571195c149 100644 --- a/resources/profiles/PrusaResearch.ini +++ b/resources/profiles/PrusaResearch.ini @@ -5,7 +5,7 @@ name = Prusa Research # Configuration version of this file. Config file will only be installed, if the config_version differs. # This means, the server may force the PrusaSlicer configuration to be downgraded. -config_version = 1.1.1-alpha4 +config_version = 1.1.1-beta # Where to get the updates from? config_update_url = http://files.prusa3d.com/wp-content/uploads/repository/PrusaSlicer-settings-master/live/PrusaResearch/ changelog_url = http://files.prusa3d.com/?latest=slicer-profiles&lng=%1% From 6ddb21fe067d1ec05cdab7d0701cd660ff6a5755 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 21 Feb 2020 18:44:53 +0100 Subject: [PATCH 55/91] Bumped up version to 2.2.0-beta Changed the profile directory from PrusaSlicer-alpha to PrusaSlicer-beta --- src/slic3r/GUI/GUI_App.cpp | 2 +- version.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index ad76dc37fb..cf9ab6e4d9 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -188,7 +188,7 @@ bool GUI_App::on_init_inner() // Profiles for the alpha are stored into the PrusaSlicer-alpha directory to not mix with the current release. // SetAppName(SLIC3R_APP_KEY); - SetAppName(SLIC3R_APP_KEY "-alpha"); + SetAppName(SLIC3R_APP_KEY "-beta"); SetAppDisplayName(SLIC3R_APP_NAME); // Enable this to get the default Win32 COMCTRL32 behavior of static boxes. diff --git a/version.inc b/version.inc index 997d44ab28..26b035484b 100644 --- a/version.inc +++ b/version.inc @@ -3,7 +3,7 @@ set(SLIC3R_APP_NAME "PrusaSlicer") set(SLIC3R_APP_KEY "PrusaSlicer") -set(SLIC3R_VERSION "2.2.0-alpha4") +set(SLIC3R_VERSION "2.2.0-beta") set(SLIC3R_BUILD_ID "PrusaSlicer-${SLIC3R_VERSION}+UNKNOWN") set(SLIC3R_RC_VERSION "2,2,0,0") set(SLIC3R_RC_VERSION_DOTS "2.2.0.0") From d5bffd28167eefcbb9a71ab14d2a64130c368128 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 24 Feb 2020 10:41:20 +0100 Subject: [PATCH 56/91] Fixed crash on reading profiles with the "thumbnails" settings different from the parent profile. --- src/slic3r/GUI/Preset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Preset.cpp b/src/slic3r/GUI/Preset.cpp index f83afba9d6..94761a52a0 100644 --- a/src/slic3r/GUI/Preset.cpp +++ b/src/slic3r/GUI/Preset.cpp @@ -1372,7 +1372,7 @@ inline t_config_option_keys deep_diff(const ConfigBase &config_this, const Confi const ConfigOption *other_opt = config_other.option(opt_key); if (this_opt != nullptr && other_opt != nullptr && *this_opt != *other_opt) { - if (opt_key == "bed_shape" || opt_key == "compatible_prints" || opt_key == "compatible_printers") { + if (opt_key == "bed_shape" || opt_key == "thumbnails" || opt_key == "compatible_prints" || opt_key == "compatible_printers") { diff.emplace_back(opt_key); continue; } From 15ea6f5609f82eb2889280cdcd6aa1dbd364ae09 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 24 Feb 2020 10:54:50 +0100 Subject: [PATCH 57/91] Several translation-related fixes ConfigWizard name was missing translation macro in several places Few typos corrected Some string conversions fixed Two strings were not marked for translation --- src/slic3r/GUI/ConfigWizard.cpp | 4 ++-- src/slic3r/GUI/GUI_App.cpp | 2 +- src/slic3r/GUI/Plater.cpp | 4 ++-- src/slic3r/GUI/UpdateDialogs.cpp | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/slic3r/GUI/ConfigWizard.cpp b/src/slic3r/GUI/ConfigWizard.cpp index cc16bf1cee..69f11c9cfc 100644 --- a/src/slic3r/GUI/ConfigWizard.cpp +++ b/src/slic3r/GUI/ConfigWizard.cpp @@ -432,7 +432,7 @@ PageWelcome::PageWelcome(ConfigWizard *parent) , welcome_text(append_text(wxString::Format( _(L("Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print.")), SLIC3R_APP_NAME, - ConfigWizard::name()) + _(ConfigWizard::name())) )) , cbox_reset(append( new wxCheckBox(this, wxID_ANY, _(L("Remove user profiles - install from scratch (a snapshot will be taken beforehand)"))) @@ -1946,7 +1946,7 @@ bool ConfigWizard::priv::check_sla_selected() // Public ConfigWizard::ConfigWizard(wxWindow *parent) - : DPIDialog(parent, wxID_ANY, wxString(SLIC3R_APP_NAME) + " - " + _(name().ToStdString()), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) + : DPIDialog(parent, wxID_ANY, wxString(SLIC3R_APP_NAME) + " - " + _(name()), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) , p(new priv(this)) { this->SetFont(wxGetApp().normal_font()); diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index cf9ab6e4d9..e1973049f3 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -793,7 +793,7 @@ void GUI_App::add_config_menu(wxMenuBar *menu) auto local_menu = new wxMenu(); wxWindowID config_id_base = wxWindow::NewControlId(int(ConfigMenuCnt)); - const auto config_wizard_name = _(ConfigWizard::name(true).wx_str()); + const auto config_wizard_name = _(ConfigWizard::name(true)); const auto config_wizard_tooltip = wxString::Format(_(L("Run %s")), config_wizard_name); // Cmd+, is standard on OS X - what about other operating systems? local_menu->Append(config_id_base + ConfigMenuWizard, config_wizard_name + dots, config_wizard_tooltip); diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 14f24a9993..f5fc9ee790 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -4743,8 +4743,8 @@ void Plater::set_number_of_copies(/*size_t num*/) ModelObject* model_object = p->model.objects[obj_idx]; - const int num = wxGetNumberFromUser( " ", _("Enter the number of copies:"), - _("Copies of the selected object"), model_object->instances.size(), 0, 1000, this ); + const int num = wxGetNumberFromUser( " ", _(L("Enter the number of copies:")), + _(L("Copies of the selected object")), model_object->instances.size(), 0, 1000, this ); if (num < 0) return; diff --git a/src/slic3r/GUI/UpdateDialogs.cpp b/src/slic3r/GUI/UpdateDialogs.cpp index 5e4712ac60..389189d88f 100644 --- a/src/slic3r/GUI/UpdateDialogs.cpp +++ b/src/slic3r/GUI/UpdateDialogs.cpp @@ -277,7 +277,7 @@ MsgDataLegacy::MsgDataLegacy() : "Please proceed with the %s that follows to set up the new presets " "and to choose whether to enable automatic preset updates." )), - SLIC3R_APP_NAME, ConfigWizard::name() + SLIC3R_APP_NAME, _(ConfigWizard::name()) )); text->Wrap(CONTENT_WIDTH * wxGetApp().em_unit()); content_sizer->Add(text); @@ -300,14 +300,14 @@ MsgDataLegacy::~MsgDataLegacy() {} // MsgNoUpdate MsgNoUpdates::MsgNoUpdates() : - MsgDialog(nullptr, _(L("Configuration updates")), _(L("No updates aviable"))) + MsgDialog(nullptr, _(L("Configuration updates")), _(L("No updates available"))) { auto* text = new wxStaticText(this, wxID_ANY, wxString::Format( _(L( - "%s has no configuration updates aviable." + "%s has no configuration updates available." )), - SLIC3R_APP_NAME, ConfigWizard::name() + SLIC3R_APP_NAME )); text->Wrap(CONTENT_WIDTH * wxGetApp().em_unit()); content_sizer->Add(text); From e16786b701fe4c96794f919444f073ea73aad197 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 24 Feb 2020 14:54:44 +0100 Subject: [PATCH 58/91] Added a missing localization L mark --- src/slic3r/GUI/Plater.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index f5fc9ee790..89c517fed5 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -5194,7 +5194,10 @@ void Plater::drive_ejected_callback() if (RemovableDriveManager::get_instance().get_did_eject()) { RemovableDriveManager::get_instance().set_did_eject(false); - wxString message = "Unmounting successful. The device " + RemovableDriveManager::get_instance().get_ejected_name() + "(" + RemovableDriveManager::get_instance().get_ejected_path() + ")" + " can now be safely removed from the computer."; + wxString message = wxString::Format( + "Unmounting successful. The device %s(%s) can now be safely removed from the computer.", + RemovableDriveManager::get_instance().get_ejected_name(), + RemovableDriveManager::get_instance().get_ejected_path()); wxMessageBox(message); } p->show_action_buttons(false); From d4d5076e495a2e67c2197460ee10d97f0dcbb097 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 24 Feb 2020 15:23:34 +0100 Subject: [PATCH 59/91] Generalization of translate() / translate_utf8() to wxString arguments. --- src/slic3r/GUI/I18N.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/slic3r/GUI/I18N.hpp b/src/slic3r/GUI/I18N.hpp index 8cf226a730..f65e03b507 100644 --- a/src/slic3r/GUI/I18N.hpp +++ b/src/slic3r/GUI/I18N.hpp @@ -40,21 +40,25 @@ namespace I18N { inline wxString translate(const wchar_t *s) { return wxGetTranslation(s); } inline wxString translate(const std::string &s) { return wxGetTranslation(wxString(s.c_str(), wxConvUTF8)); } inline wxString translate(const std::wstring &s) { return wxGetTranslation(s.c_str()); } + inline wxString translate(const wxString &s) { return wxGetTranslation(s); } inline wxString translate(const char *s, const char *plural, unsigned int n) { return wxGetTranslation(wxString(s, wxConvUTF8), wxString(plural, wxConvUTF8), n); } inline wxString translate(const wchar_t *s, const wchar_t *plural, unsigned int n) { return wxGetTranslation(s, plural, n); } inline wxString translate(const std::string &s, const std::string &plural, unsigned int n) { return wxGetTranslation(wxString(s.c_str(), wxConvUTF8), wxString(plural.c_str(), wxConvUTF8), n); } inline wxString translate(const std::wstring &s, const std::wstring &plural, unsigned int n) { return wxGetTranslation(s.c_str(), plural.c_str(), n); } + inline wxString translate(const wxString &s, const wxString &plural, unsigned int n) { return wxGetTranslation(s, plural, n); } inline std::string translate_utf8(const char *s) { return wxGetTranslation(wxString(s, wxConvUTF8)).ToUTF8().data(); } inline std::string translate_utf8(const wchar_t *s) { return wxGetTranslation(s).ToUTF8().data(); } inline std::string translate_utf8(const std::string &s) { return wxGetTranslation(wxString(s.c_str(), wxConvUTF8)).ToUTF8().data(); } inline std::string translate_utf8(const std::wstring &s) { return wxGetTranslation(s.c_str()).ToUTF8().data(); } + inline std::string translate_utf8(const wxString &s) { return wxGetTranslation(s).ToUTF8().data(); } inline std::string translate_utf8(const char *s, const char *plural, unsigned int n) { return translate(s, plural, n).ToUTF8().data(); } inline std::string translate_utf8(const wchar_t *s, const wchar_t *plural, unsigned int n) { return translate(s, plural, n).ToUTF8().data(); } inline std::string translate_utf8(const std::string &s, const std::string &plural, unsigned int n) { return translate(s, plural, n).ToUTF8().data(); } inline std::string translate_utf8(const std::wstring &s, const std::wstring &plural, unsigned int n) { return translate(s, plural, n).ToUTF8().data(); } + inline std::string translate_utf8(const wxString &s, const wxString &plural, unsigned int n) { return translate(s, plural, n).ToUTF8().data(); } #if wxCHECK_VERSION(3, 1, 1) #define _wxGetTranslation_ctx(S, CTX) wxGetTranslation((S), wxEmptyString, (CTX)) @@ -66,11 +70,13 @@ namespace I18N { inline wxString translate(const wchar_t *s, const char* ctx) { return _wxGetTranslation_ctx(s, ctx); } inline wxString translate(const std::string &s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s.c_str(), wxConvUTF8), ctx); } inline wxString translate(const std::wstring &s, const char* ctx) { return _wxGetTranslation_ctx(s.c_str(), ctx); } + inline wxString translate(const wxString &s, const char* ctx) { return _wxGetTranslation_ctx(s, ctx); } inline std::string translate_utf8(const char *s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s, wxConvUTF8), ctx).ToUTF8().data(); } inline std::string translate_utf8(const wchar_t *s, const char* ctx) { return _wxGetTranslation_ctx(s, ctx).ToUTF8().data(); } inline std::string translate_utf8(const std::string &s, const char* ctx) { return _wxGetTranslation_ctx(wxString(s.c_str(), wxConvUTF8), ctx).ToUTF8().data(); } inline std::string translate_utf8(const std::wstring &s, const char* ctx) { return _wxGetTranslation_ctx(s.c_str(), ctx).ToUTF8().data(); } + inline std::string translate_utf8(const wxString &s, const char* ctx) { return _wxGetTranslation_ctx(s, ctx).ToUTF8().data(); } #undef _wxGetTranslation_ctx } // namespace I18N From f475d994b3848efeb86942b89b4b9de4bdd2ba1e Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 24 Feb 2020 15:22:01 +0100 Subject: [PATCH 60/91] Fixup of previous commit - actually added the translation macros --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 89c517fed5..466fca4caf 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -5195,7 +5195,7 @@ void Plater::drive_ejected_callback() { RemovableDriveManager::get_instance().set_did_eject(false); wxString message = wxString::Format( - "Unmounting successful. The device %s(%s) can now be safely removed from the computer.", + _(L("Unmounting successful. The device %s(%s) can now be safely removed from the computer.")), RemovableDriveManager::get_instance().get_ejected_name(), RemovableDriveManager::get_instance().get_ejected_path()); wxMessageBox(message); From c326b31c92b4288d5520b50fa883e5587d86583e Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Tue, 25 Feb 2020 10:57:16 +0100 Subject: [PATCH 61/91] Enabled text-wrapping for tooltips in hollowing gizmo --- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 827df2a81e..43f83d11b8 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -752,14 +752,16 @@ RENDER_AGAIN: } m_imgui->disabled_begin(! m_enable_hollowing); - + float max_tooltip_width = ImGui::GetFontSize() * 20.0f; m_imgui->text(m_desc.at("offset")); ImGui::SameLine(settings_sliders_left); ImGui::PushItemWidth(window_width - settings_sliders_left); ImGui::SliderFloat(" ", &offset, offset_min, offset_max, "%.1f mm"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); - ImGui::TextUnformatted(_(opts[0].second->tooltip).ToUTF8()); + ImGui::PushTextWrapPos(max_tooltip_width); + ImGui::TextUnformatted((_utf8(opts[0].second->tooltip)).c_str()); + ImGui::PopTextWrapPos(); ImGui::EndTooltip(); } bool slider_clicked = ImGui::IsItemClicked(); // someone clicked the slider @@ -772,7 +774,9 @@ RENDER_AGAIN: ImGui::SliderFloat(" ", &quality, quality_min, quality_max, "%.1f"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); - ImGui::TextUnformatted(_(opts[1].second->tooltip).ToUTF8()); + ImGui::PushTextWrapPos(max_tooltip_width); + ImGui::TextUnformatted((_utf8(opts[1].second->tooltip)).c_str()); + ImGui::PopTextWrapPos(); ImGui::EndTooltip(); } slider_clicked |= ImGui::IsItemClicked(); @@ -786,7 +790,9 @@ RENDER_AGAIN: ImGui::SliderFloat(" ", &closing_d, closing_d_min, closing_d_max, "%.1f mm"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); - ImGui::TextUnformatted(_(opts[2].second->tooltip).ToUTF8()); + ImGui::PushTextWrapPos(max_tooltip_width); + ImGui::TextUnformatted((_utf8(opts[2].second->tooltip)).c_str()); + ImGui::PopTextWrapPos(); ImGui::EndTooltip(); } slider_clicked |= ImGui::IsItemClicked(); From aa8c97803c966b6c40c87e03bd2617d884acd1cd Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Tue, 25 Feb 2020 15:43:54 +0100 Subject: [PATCH 62/91] Fix of #3695 Ternary operator is given wxString and std::string, which does not work when implicit conversions between std::string and wxString are disabled --- src/slic3r/GUI/DoubleSlider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index 9afbb73ed6..5bc054dd45 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -1010,7 +1010,7 @@ wxString Control::get_tooltip(int tick/*=-1*/) tick_code_it->gcode == ToolChangeCode ? from_u8((boost::format(_utf8(L("Extruder (tool) is changed to Extruder \"%1%\""))) % tick_code_it->extruder ).str()) : - tick_code_it->gcode; + from_u8(tick_code_it->gcode); // If tick is marked as a conflict (exclamation icon), // we should to explain why From 69e1e46dd74787b7a5df4d94e3931beb60c293aa Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Wed, 26 Feb 2020 08:56:05 +0100 Subject: [PATCH 63/91] Fixed reload from disk for modifiers --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 466fca4caf..0f9b21b78a 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3267,7 +3267,7 @@ void Plater::priv::reload_from_disk() else missing_input_paths.push_back(volume->source.input_file); } - else if (!object->input_file.empty() && !volume->name.empty()) + else if (!object->input_file.empty() && volume->is_model_part() && !volume->name.empty()) missing_input_paths.push_back(volume->name); } From 47604b6326d40bfe66c46ed471adb43d1d153e66 Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Wed, 26 Feb 2020 10:18:04 +0100 Subject: [PATCH 64/91] #3707 - Fixed buttons layout after closing preference dialog --- src/slic3r/GUI/MainFrame.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 428dc283bd..966fb7c8e2 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -1148,11 +1148,12 @@ void MainFrame::add_to_recent_projects(const wxString& filename) // Update the UI based on the current preferences. void MainFrame::update_ui_from_settings() { - const bool bp_on = wxGetApp().app_config->get("background_processing") == "1"; +// const bool bp_on = wxGetApp().app_config->get("background_processing") == "1"; // m_menu_item_reslice_now->Enable(!bp_on); - m_plater->sidebar().show_reslice(!bp_on); - m_plater->sidebar().show_export(bp_on); - m_plater->sidebar().Layout(); +// m_plater->sidebar().show_reslice(!bp_on); +// m_plater->sidebar().show_export(bp_on); +// m_plater->sidebar().Layout(); + if (m_plater) m_plater->update_ui_from_settings(); for (auto tab: wxGetApp().tabs_list) From 5e10e5ae5f31786d20c624a04e6a1f0a32567912 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 26 Feb 2020 15:00:11 +0100 Subject: [PATCH 65/91] new hollowing icon --- resources/icons/hollowing.svg | 66 ++++++++++++++++++++--------- resources/icons/white/hollowing.svg | 66 ++++++++++++++++++++--------- 2 files changed, 92 insertions(+), 40 deletions(-) diff --git a/resources/icons/hollowing.svg b/resources/icons/hollowing.svg index 65c7592c83..bfd40adb73 100644 --- a/resources/icons/hollowing.svg +++ b/resources/icons/hollowing.svg @@ -1,25 +1,51 @@ - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/icons/white/hollowing.svg b/resources/icons/white/hollowing.svg index 65c7592c83..77f50b6b83 100644 --- a/resources/icons/white/hollowing.svg +++ b/resources/icons/white/hollowing.svg @@ -1,25 +1,51 @@ - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 70f5efbfc37e75478bee5c0c99eddf7459df7e8d Mon Sep 17 00:00:00 2001 From: David Kocik Date: Wed, 26 Feb 2020 15:01:44 +0100 Subject: [PATCH 66/91] eject sd card/usb icon --- resources/icons/eject_sd.svg | 11 ++ resources/icons/export_to_sd.svg | 188 +++---------------------- resources/icons/white/export_to_sd.svg | 22 +++ src/slic3r/GUI/Plater.cpp | 2 +- 4 files changed, 55 insertions(+), 168 deletions(-) create mode 100644 resources/icons/eject_sd.svg create mode 100644 resources/icons/white/export_to_sd.svg diff --git a/resources/icons/eject_sd.svg b/resources/icons/eject_sd.svg new file mode 100644 index 0000000000..0efe87badf --- /dev/null +++ b/resources/icons/eject_sd.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/resources/icons/export_to_sd.svg b/resources/icons/export_to_sd.svg index 516cec4355..bd28c6a0a9 100644 --- a/resources/icons/export_to_sd.svg +++ b/resources/icons/export_to_sd.svg @@ -1,168 +1,22 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + diff --git a/resources/icons/white/export_to_sd.svg b/resources/icons/white/export_to_sd.svg new file mode 100644 index 0000000000..ebeacb9054 --- /dev/null +++ b/resources/icons/white/export_to_sd.svg @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 0f9b21b78a..704284d4aa 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -871,7 +871,7 @@ Sidebar::Sidebar(Plater *parent) }; init_scalable_btn(&p->btn_send_gcode , "export_gcode", _(L("Send to printer")) + "\tCtrl+Shift+G"); - init_scalable_btn(&p->btn_remove_device, "cross" , _(L("Remove device"))); + init_scalable_btn(&p->btn_remove_device, "eject_sd" , _(L("Remove device"))); init_scalable_btn(&p->btn_export_gcode_removable, "export_to_sd", _(L("Export to SD card / Flash drive"))); // regular buttons "Slice now" and "Export G-code" From 26c89300f32f4b5a27339b247fdfe8e66a0c9719 Mon Sep 17 00:00:00 2001 From: David Kocik Date: Thu, 27 Feb 2020 10:44:25 +0100 Subject: [PATCH 67/91] copy file result enum --- src/libslic3r/Utils.hpp | 16 +++++++++---- src/libslic3r/utils.cpp | 26 ++++++++++----------- src/slic3r/GUI/BackgroundSlicingProcess.cpp | 17 ++++++++------ 3 files changed, 35 insertions(+), 24 deletions(-) diff --git a/src/libslic3r/Utils.hpp b/src/libslic3r/Utils.hpp index 06c4358099..5cdf75037c 100644 --- a/src/libslic3r/Utils.hpp +++ b/src/libslic3r/Utils.hpp @@ -64,15 +64,23 @@ extern std::string normalize_utf8_nfc(const char *src); // for a short while, so the file may not be movable. Retry while we see recoverable errors. extern std::error_code rename_file(const std::string &from, const std::string &to); +enum CopyFileResult { + SUCCESS = 0, + FAIL_COPY_FILE, + FAIL_FILES_DIFFERENT, + FAIL_RENAMING, + FAIL_CHECK_ORIGIN_NOT_OPENED, + FAIL_CHECK_TARGET_NOT_OPENED +}; // Copy a file, adjust the access attributes, so that the target is writable. -int copy_file_inner(const std::string &from, const std::string &to); +CopyFileResult copy_file_inner(const std::string &from, const std::string &to); // Copy file to a temp file first, then rename it to the final file name. // If with_check is true, then the content of the copied file is compared to the content // of the source file before renaming. -extern int copy_file(const std::string &from, const std::string &to, const bool with_check = false); +extern CopyFileResult copy_file(const std::string &from, const std::string &to, const bool with_check = false); -// Compares two files, returns 0 if identical, -1 if different. -extern int check_copy(const std::string& origin, const std::string& copy); +// Compares two files if identical. +extern CopyFileResult check_copy(const std::string& origin, const std::string& copy); // Ignore system and hidden files, which may be created by the DropBox synchronisation process. // https://github.com/prusa3d/PrusaSlicer/issues/1298 diff --git a/src/libslic3r/utils.cpp b/src/libslic3r/utils.cpp index 104d0c5ffa..ad91e5239b 100644 --- a/src/libslic3r/utils.cpp +++ b/src/libslic3r/utils.cpp @@ -417,7 +417,7 @@ std::error_code rename_file(const std::string &from, const std::string &to) #endif } -int copy_file_inner(const std::string& from, const std::string& to) +CopyFileResult copy_file_inner(const std::string& from, const std::string& to) { const boost::filesystem::path source(from); const boost::filesystem::path target(to); @@ -433,40 +433,40 @@ int copy_file_inner(const std::string& from, const std::string& to) boost::filesystem::permissions(target, perms, ec); boost::filesystem::copy_file(source, target, boost::filesystem::copy_option::overwrite_if_exists, ec); if (ec) { - return -1; + return FAIL_COPY_FILE; } boost::filesystem::permissions(target, perms, ec); - return 0; + return SUCCESS; } -int copy_file(const std::string &from, const std::string &to, const bool with_check) +CopyFileResult copy_file(const std::string &from, const std::string &to, const bool with_check) { std::string to_temp = to + ".tmp"; - int ret_val = copy_file_inner(from,to_temp); - if(ret_val == 0) + CopyFileResult ret_val = copy_file_inner(from,to_temp); + if(ret_val == SUCCESS) { if (with_check) ret_val = check_copy(from, to_temp); if (ret_val == 0 && rename_file(to_temp, to)) - ret_val = -3; + ret_val = FAIL_RENAMING; } return ret_val; } -int check_copy(const std::string &origin, const std::string ©) +CopyFileResult check_copy(const std::string &origin, const std::string ©) { boost::nowide::ifstream f1(origin, std::ifstream::in | std::ifstream::binary | std::ifstream::ate); boost::nowide::ifstream f2(copy, std::ifstream::in | std::ifstream::binary | std::ifstream::ate); if (f1.fail()) - return -4; + return FAIL_CHECK_ORIGIN_NOT_OPENED; if (f2.fail()) - return -5; + return FAIL_CHECK_TARGET_NOT_OPENED; std::streampos fsize = f1.tellg(); if (fsize != f2.tellg()) - return -2; + return FAIL_FILES_DIFFERENT; f1.seekg(0, std::ifstream::beg); f2.seekg(0, std::ifstream::beg); @@ -483,12 +483,12 @@ int check_copy(const std::string &origin, const std::string ©) if (origin_cnt != copy_cnt || (origin_cnt > 0 && std::memcmp(buffer_origin.data(), buffer_copy.data(), origin_cnt) != 0)) // Files are different. - return -2; + return FAIL_FILES_DIFFERENT; fsize -= origin_cnt; } while (f1.good() && f2.good()); // All data has been read and compared equal. - return (f1.eof() && f2.eof() && fsize == 0) ? 0 : -2; + return (f1.eof() && f2.eof() && fsize == 0) ? SUCCESS : FAIL_FILES_DIFFERENT; } // Ignore system and hidden files, which may be created by the DropBox synchronisation process. diff --git a/src/slic3r/GUI/BackgroundSlicingProcess.cpp b/src/slic3r/GUI/BackgroundSlicingProcess.cpp index c4e6272bad..c3cbba395a 100644 --- a/src/slic3r/GUI/BackgroundSlicingProcess.cpp +++ b/src/slic3r/GUI/BackgroundSlicingProcess.cpp @@ -104,21 +104,24 @@ void BackgroundSlicingProcess::process_fff() bool with_check = GUI::RemovableDriveManager::get_instance().is_path_on_removable_drive(export_path); int copy_ret_val = copy_file(m_temp_output_path, export_path, with_check); switch (copy_ret_val){ - case 0: break; // no error - case -2: + case SUCCESS: break; // no error + case FAIL_COPY_FILE: + throw std::runtime_error(_utf8(L("Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?"))); + break; + case FAIL_FILES_DIFFERENT: throw std::runtime_error((boost::format(_utf8(L("Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp."))) % export_path).str()); break; - case -3: + case FAIL_RENAMING: throw std::runtime_error((boost::format(_utf8(L("Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again."))) % export_path).str()); break; - case -4: + case FAIL_CHECK_ORIGIN_NOT_OPENED: throw std::runtime_error((boost::format(_utf8(L("Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp."))) % m_temp_output_path % export_path).str()); break; - case -5: + case FAIL_CHECK_TARGET_NOT_OPENED: throw std::runtime_error((boost::format(_utf8(L("Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp."))) % export_path).str()); break; default: - throw std::runtime_error(_utf8(L("Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?"))); + BOOST_LOG_TRIVIAL(warning) << "Unexpected fail code(" << (int)copy_ret_val << ") durring copy_file() to " << export_path << "."; break; } @@ -473,7 +476,7 @@ void BackgroundSlicingProcess::prepare_upload() if (m_print == m_fff_print) { m_print->set_status(95, _utf8(L("Running post-processing scripts"))); - if (copy_file(m_temp_output_path, source_path.string()) != 0) { + if (copy_file(m_temp_output_path, source_path.string()) != SUCCESS) { throw std::runtime_error(_utf8(L("Copying of the temporary G-code to the output G-code failed"))); } run_post_process_scripts(source_path.string(), m_fff_print->config()); From b4d0d9610e23ad46b9f4ad6b32467f527611aa71 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Thu, 27 Feb 2020 11:44:01 +0100 Subject: [PATCH 68/91] Various changes in handling of profile compatiblilities and the "show incompatible profiles" option. It was not able to select the incompatible Print profile, which is possible now. (see Cannot select incompatible printer profile #3715) When the Printer profile derived from the Prusa3D system profile was active or a system Prusa3D profile was active, and when the Print profile with the removed "inherits" field was active (or any other profile derived from the "-- default --" profile was active), then the filament selector offered just the profiles with the removed "inherits" field (or any other profile derived from the "-- default--") profile. This behavior has been now changed, so that in this scenario the Filament selector will offer the Prusa3D vendor profiles compatible with the active Print and Printer profile as well as the user profiles. Slicer was also changed to keep an incompatible preset selected at its respective tab if its respective "Red flag" is enabled. For example, if an incompatible Print preset is selected and a Printer profile is switched to another one which is not compatible with the active Print preset that was red already, the active Print preset is not switched if the Print "Red flag" is active. However, if the Print profile was compatible before the Printer profile is switched and now the Print profile becomes incompatible, another compatible Print profile is selected. A likely bug in wxWidgets was worked around when switching a Print preset on Plater, if the last item in the Print preset was active and incompatible, and another Print preset was selected by the user. On Windows, an CBN_EDITCHANGE is sent just after combo box selection change event and the CBN_EDITCHANGE holds an index of the combo box item, which will be removed by the 1st event, therefore leading to an assert in wxWidgets on CBN_EDITCHANGE. The workaround is to disable processing of CBN_EDITCHANGE on Windows for the Plater preset selection combo boxes. --- src/slic3r/GUI/GUI_App.cpp | 2 +- src/slic3r/GUI/GUI_ObjectList.cpp | 2 +- src/slic3r/GUI/Plater.cpp | 5 +++ src/slic3r/GUI/Preset.cpp | 12 +++++--- src/slic3r/GUI/Preset.hpp | 17 ++++++++--- src/slic3r/GUI/PresetBundle.cpp | 51 ++++++++++++++++++------------- src/slic3r/GUI/PresetBundle.hpp | 3 +- src/slic3r/GUI/Tab.cpp | 26 +++++++++++----- src/slic3r/GUI/Tab.hpp | 5 +-- 9 files changed, 79 insertions(+), 44 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index e1973049f3..2696844549 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -754,7 +754,7 @@ Tab* GUI_App::get_tab(Preset::Type type) { for (Tab* tab: tabs_list) if (tab->type() == type) - return tab->complited() ? tab : nullptr; // To avoid actions with no-completed Tab + return tab->completed() ? tab : nullptr; // To avoid actions with no-completed Tab return nullptr; } diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index f5f5548309..efb0dd0f9d 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -3413,7 +3413,7 @@ bool ObjectList::check_last_selection(wxString& msg_str) (type & itInstance && !(m_selection_mode & smInstance)) ) { - // Inform user why selection isn't complited + // Inform user why selection isn't completed const wxString item_type = m_selection_mode & smInstance ? _(L("Object or Instance")) : m_selection_mode & smVolume ? _(L("Part")) : _(L("Layer")); diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 704284d4aa..fbc8778e47 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -262,6 +262,11 @@ PresetBitmapComboBox(parent, wxSize(15 * wxGetApp().em_unit(), -1)), m_em_unit(wxGetApp().em_unit()) { SetFont(wxGetApp().normal_font()); +#ifdef _WIN32 + // Workaround for ignoring CBN_EDITCHANGE events, which are processed after the content of the combo box changes, so that + // the index of the item inside CBN_EDITCHANGE may no more be valid. + EnableTextChangedEvents(false); +#endif /* _WIN32 */ Bind(wxEVT_COMBOBOX, [this](wxCommandEvent &evt) { auto selected_item = this->GetSelection(); diff --git a/src/slic3r/GUI/Preset.cpp b/src/slic3r/GUI/Preset.cpp index 94761a52a0..252b39d144 100644 --- a/src/slic3r/GUI/Preset.cpp +++ b/src/slic3r/GUI/Preset.cpp @@ -313,9 +313,9 @@ std::string Preset::label() const return this->name + (this->is_dirty ? g_suffix_modified : ""); } -bool is_compatible_with_print(const PresetWithVendorProfile &preset, const PresetWithVendorProfile &active_print) +bool is_compatible_with_print(const PresetWithVendorProfile &preset, const PresetWithVendorProfile &active_print, const PresetWithVendorProfile &active_printer) { - if (preset.vendor != nullptr && preset.vendor != active_print.vendor) + if (preset.vendor != nullptr && preset.vendor != active_printer.vendor) // The current profile has a vendor assigned and it is different from the active print's vendor. return false; auto &condition = preset.preset.compatible_prints_condition(); @@ -1042,7 +1042,7 @@ void PresetCollection::set_default_suppressed(bool default_suppressed) } } -size_t PresetCollection::update_compatible_internal(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, bool unselect_if_incompatible) +size_t PresetCollection::update_compatible_internal(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, PresetSelectCompatibleType unselect_if_incompatible) { DynamicPrintConfig config; config.set_key_value("printer_preset", new ConfigOptionString(active_printer.preset.name)); @@ -1054,10 +1054,12 @@ size_t PresetCollection::update_compatible_internal(const PresetWithVendorProfil Preset &preset_selected = m_presets[idx_preset]; Preset &preset_edited = selected ? m_edited_preset : preset_selected; const PresetWithVendorProfile this_preset_with_vendor_profile = this->get_preset_with_vendor_profile(preset_edited); + bool was_compatible = preset_edited.is_compatible; preset_edited.is_compatible = is_compatible_with_printer(this_preset_with_vendor_profile, active_printer, &config); if (active_print != nullptr) - preset_edited.is_compatible &= is_compatible_with_print(this_preset_with_vendor_profile, *active_print); - if (! preset_edited.is_compatible && selected && unselect_if_incompatible) + preset_edited.is_compatible &= is_compatible_with_print(this_preset_with_vendor_profile, *active_print, active_printer); + if (! preset_edited.is_compatible && selected && + (unselect_if_incompatible == PresetSelectCompatibleType::Always || (unselect_if_incompatible == PresetSelectCompatibleType::OnlyIfWasCompatible && was_compatible))) m_idx_selected = -1; if (selected) preset_selected.is_compatible = preset_edited.is_compatible; diff --git a/src/slic3r/GUI/Preset.hpp b/src/slic3r/GUI/Preset.hpp index 83970419cc..46008eadb4 100644 --- a/src/slic3r/GUI/Preset.hpp +++ b/src/slic3r/GUI/Preset.hpp @@ -247,10 +247,19 @@ protected: static std::string remove_suffix_modified(const std::string &name); }; -bool is_compatible_with_print (const PresetWithVendorProfile &preset, const PresetWithVendorProfile &active_print); +bool is_compatible_with_print (const PresetWithVendorProfile &preset, const PresetWithVendorProfile &active_print, const PresetWithVendorProfile &active_printer); bool is_compatible_with_printer(const PresetWithVendorProfile &preset, const PresetWithVendorProfile &active_printer, const DynamicPrintConfig *extra_config); bool is_compatible_with_printer(const PresetWithVendorProfile &preset, const PresetWithVendorProfile &active_printer); +enum class PresetSelectCompatibleType { + // Never select a compatible preset if the newly selected profile is not compatible. + Never, + // Only select a compatible preset if the active profile used to be compatible, but it is no more. + OnlyIfWasCompatible, + // Always select a compatible preset if the active profile is no more compatible. + Always +}; + // Collections of presets of the same type (one of the Print, Filament or Printer type). class PresetCollection { @@ -412,13 +421,13 @@ public: // For Print / Filament presets, disable those, which are not compatible with the printer. template - void update_compatible(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, bool select_other_if_incompatible, PreferedCondition prefered_condition) + void update_compatible(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, PresetSelectCompatibleType select_other_if_incompatible, PreferedCondition prefered_condition) { if (this->update_compatible_internal(active_printer, active_print, select_other_if_incompatible) == (size_t)-1) // Find some other compatible preset, or the "-- default --" preset. this->select_preset(this->first_compatible_idx(prefered_condition)); } - void update_compatible(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, bool select_other_if_incompatible) + void update_compatible(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, PresetSelectCompatibleType select_other_if_incompatible) { this->update_compatible(active_printer, active_print, select_other_if_incompatible, [](const std::string&){return true;}); } size_t num_visible() const { return std::count_if(m_presets.begin(), m_presets.end(), [](const Preset &preset){return preset.is_visible;}); } @@ -515,7 +524,7 @@ private: std::deque::const_iterator find_preset_renamed(const std::string &name) const { return const_cast(this)->find_preset_renamed(name); } - size_t update_compatible_internal(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, bool unselect_if_incompatible); + size_t update_compatible_internal(const PresetWithVendorProfile &active_printer, const PresetWithVendorProfile *active_print, PresetSelectCompatibleType unselect_if_incompatible); static std::vector dirty_options(const Preset *edited, const Preset *reference, const bool is_printer_type = false); diff --git a/src/slic3r/GUI/PresetBundle.cpp b/src/slic3r/GUI/PresetBundle.cpp index ebfe6e40eb..70857e6483 100644 --- a/src/slic3r/GUI/PresetBundle.cpp +++ b/src/slic3r/GUI/PresetBundle.cpp @@ -238,7 +238,7 @@ void PresetBundle::load_presets(AppConfig &config, const std::string &preferred_ errors_cummulative += err.what(); } this->update_multi_material_filament_presets(); - this->update_compatible(false); + this->update_compatible(PresetSelectCompatibleType::Never); if (! errors_cummulative.empty()) throw std::runtime_error(errors_cummulative); @@ -424,7 +424,7 @@ void PresetBundle::load_selections(AppConfig &config, const std::string &preferr // or from the preferred_model_id suggestion passed in by ConfigWizard. // If the printer profile enumerated by the config are not visible, select an alternate preset. // Do not select alternate profiles for the print / filament profiles as those presets - // will be selected by the following call of this->update_compatible(true). + // will be selected by the following call of this->update_compatible(PresetSelectCompatibleType::Always). const Preset *initial_printer = printers.find_preset(initial_printer_profile_name); const Preset *preferred_printer = printers.find_by_model_id(preferred_model_id); @@ -457,7 +457,7 @@ void PresetBundle::load_selections(AppConfig &config, const std::string &preferr // Always try to select a compatible print and filament preset to the current printer preset, // as the application may have been closed with an active "external" preset, which does not // exist. - this->update_compatible(true); + this->update_compatible(PresetSelectCompatibleType::Always); this->update_multi_material_filament_presets(); } @@ -889,7 +889,7 @@ void PresetBundle::load_config_file_config(const std::string &name_or_path, bool default: break; } - this->update_compatible(false); + this->update_compatible(PresetSelectCompatibleType::Never); } // Load the active configuration of a config bundle from a boost property_tree. This is a private method called from load_config_file. @@ -951,7 +951,7 @@ void PresetBundle::load_config_file_config_bundle(const std::string &path, const for (size_t i = 1; i < std::min(tmp_bundle.filament_presets.size(), this->filament_presets.size()); ++ i) this->filament_presets[i] = load_one(this->filaments, tmp_bundle.filaments, tmp_bundle.filament_presets[i], false); - this->update_compatible(false); + this->update_compatible(PresetSelectCompatibleType::Never); } // Process the Config Bundle loaded as a Boost property tree. @@ -1351,7 +1351,7 @@ size_t PresetBundle::load_configbundle(const std::string &path, unsigned int fla this->update_multi_material_filament_presets(); for (size_t i = 0; i < std::min(this->filament_presets.size(), active_filaments.size()); ++ i) this->filament_presets[i] = filaments.find_preset(active_filaments[i], true)->name; - this->update_compatible(false); + this->update_compatible(PresetSelectCompatibleType::Never); } return presets_loaded; @@ -1399,7 +1399,7 @@ void PresetBundle::update_multi_material_filament_presets() } } -void PresetBundle::update_compatible(bool select_other_if_incompatible) +void PresetBundle::update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible) { const Preset &printer_preset = this->printers.get_edited_preset(); const PresetWithVendorProfile printer_preset_with_vendor_profile = this->printers.get_preset_with_vendor_profile(printer_preset); @@ -1412,25 +1412,32 @@ void PresetBundle::update_compatible(bool select_other_if_incompatible) const std::string &prefered_print_profile = printer_preset.config.opt_string("default_print_profile"); const std::vector &prefered_filament_profiles = printer_preset.config.option("default_filament_profile")->values; prefered_print_profile.empty() ? - this->prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_if_incompatible) : - this->prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_if_incompatible, + this->prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_print_if_incompatible) : + this->prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_print_if_incompatible, [&prefered_print_profile](const std::string& profile_name) { return profile_name == prefered_print_profile; }); const PresetWithVendorProfile print_preset_with_vendor_profile = this->prints.get_edited_preset_with_vendor_profile(); + // Remember whether the filament profiles were compatible before updating the filament compatibility. + std::vector filament_preset_was_compatible(this->filament_presets.size(), false); + for (size_t idx = 0; idx < this->filament_presets.size(); ++ idx) { + std::string &filament_name = this->filament_presets[idx]; + Preset *preset = this->filaments.find_preset(filament_name, false); + filament_preset_was_compatible[idx] = preset != nullptr && preset->is_compatible; + } prefered_filament_profiles.empty() ? - this->filaments.update_compatible(printer_preset_with_vendor_profile, &print_preset_with_vendor_profile, select_other_if_incompatible) : - this->filaments.update_compatible(printer_preset_with_vendor_profile, &print_preset_with_vendor_profile, select_other_if_incompatible, + this->filaments.update_compatible(printer_preset_with_vendor_profile, &print_preset_with_vendor_profile, select_other_filament_if_incompatible) : + this->filaments.update_compatible(printer_preset_with_vendor_profile, &print_preset_with_vendor_profile, select_other_filament_if_incompatible, [&prefered_filament_profiles](const std::string& profile_name) { return std::find(prefered_filament_profiles.begin(), prefered_filament_profiles.end(), profile_name) != prefered_filament_profiles.end(); }); - if (select_other_if_incompatible) { + if (select_other_filament_if_incompatible != PresetSelectCompatibleType::Never) { // Verify validity of the current filament presets. - if (this->filament_presets.size() == 1) - this->filament_presets.front() = this->filaments.get_edited_preset().name; - else - { - for (size_t idx = 0; idx < this->filament_presets.size(); ++idx) { + if (this->filament_presets.size() == 1) { + if (select_other_filament_if_incompatible == PresetSelectCompatibleType::Always || filament_preset_was_compatible.front()) + this->filament_presets.front() = this->filaments.get_edited_preset().name; + } else { + for (size_t idx = 0; idx < this->filament_presets.size(); ++ idx) { std::string &filament_name = this->filament_presets[idx]; Preset *preset = this->filaments.find_preset(filament_name, false); - if (preset == nullptr || !preset->is_compatible) { + if (preset == nullptr || (! preset->is_compatible && (select_other_filament_if_incompatible == PresetSelectCompatibleType::Always || filament_preset_was_compatible[idx]))) { // Pick a compatible profile. If there are prefered_filament_profiles, use them. if (prefered_filament_profiles.empty()) filament_name = this->filaments.first_compatible().name; @@ -1453,13 +1460,13 @@ void PresetBundle::update_compatible(bool select_other_if_incompatible) const PresetWithVendorProfile sla_print_preset_with_vendor_profile = this->sla_prints.get_edited_preset_with_vendor_profile(); const std::string &prefered_sla_print_profile = printer_preset.config.opt_string("default_sla_print_profile"); (prefered_sla_print_profile.empty()) ? - this->sla_prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_if_incompatible) : - this->sla_prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_if_incompatible, + this->sla_prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_print_if_incompatible) : + this->sla_prints.update_compatible(printer_preset_with_vendor_profile, nullptr, select_other_print_if_incompatible, [&prefered_sla_print_profile](const std::string& profile_name){ return profile_name == prefered_sla_print_profile; }); const std::string &prefered_sla_material_profile = printer_preset.config.opt_string("default_sla_material_profile"); prefered_sla_material_profile.empty() ? - this->sla_materials.update_compatible(printer_preset_with_vendor_profile, &sla_print_preset_with_vendor_profile, select_other_if_incompatible) : - this->sla_materials.update_compatible(printer_preset_with_vendor_profile, &sla_print_preset_with_vendor_profile, select_other_if_incompatible, + this->sla_materials.update_compatible(printer_preset_with_vendor_profile, &sla_print_preset_with_vendor_profile, select_other_filament_if_incompatible) : + this->sla_materials.update_compatible(printer_preset_with_vendor_profile, &sla_print_preset_with_vendor_profile, select_other_filament_if_incompatible, [&prefered_sla_material_profile](const std::string& profile_name){ return profile_name == prefered_sla_material_profile; }); break; } diff --git a/src/slic3r/GUI/PresetBundle.hpp b/src/slic3r/GUI/PresetBundle.hpp index b818107338..33c9d5ff4a 100644 --- a/src/slic3r/GUI/PresetBundle.hpp +++ b/src/slic3r/GUI/PresetBundle.hpp @@ -127,7 +127,8 @@ public: // Also updates the is_visible flag of each preset. // If select_other_if_incompatible is true, then the print or filament preset is switched to some compatible // preset if the current print or filament preset is not compatible. - void update_compatible(bool select_other_if_incompatible); + void update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible); + void update_compatible(PresetSelectCompatibleType select_other_if_incompatible) { this->update_compatible(select_other_if_incompatible, select_other_if_incompatible); } void load_default_preset_bitmaps(); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index fefc8e1135..19d0854200 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -38,8 +38,6 @@ namespace GUI { wxDEFINE_EVENT(EVT_TAB_VALUE_CHANGED, wxCommandEvent); wxDEFINE_EVENT(EVT_TAB_PRESETS_CHANGED, SimpleEvent); -// Tab::Tab(wxNotebook* parent, const wxString& title, const char* name) : -// m_parent(parent), m_title(title), m_name(name) Tab::Tab(wxNotebook* parent, const wxString& title, Preset::Type type) : m_parent(parent), m_title(title), m_type(type) { @@ -264,7 +262,7 @@ void Tab::create_preset_tab() // Initialize the DynamicPrintConfig by default keys/values. build(); rebuild_page_tree(); - m_complited = true; + m_completed = true; } void Tab::add_scaled_button(wxWindow* parent, @@ -833,7 +831,7 @@ void Tab::load_key_value(const std::string& opt_key, const boost::any& value, bo // Mark the print & filament enabled if they are compatible with the currently selected preset. if (opt_key == "compatible_printers" || opt_key == "compatible_prints") { // Don't select another profile if this profile happens to become incompatible. - m_preset_bundle->update_compatible(false); + m_preset_bundle->update_compatible(PresetSelectCompatibleType::Never); } m_presets->update_dirty_ui(m_presets_choice); on_presets_changed(); @@ -2778,6 +2776,7 @@ void Tab::select_preset(std::string preset_name, bool delete_current) bool print_tab = m_presets->type() == Preset::TYPE_PRINT || m_presets->type() == Preset::TYPE_SLA_PRINT; bool printer_tab = m_presets->type() == Preset::TYPE_PRINTER; bool canceled = false; + bool technology_changed = false; m_dependent_tabs = {}; if (current_dirty && ! may_discard_current_dirty_preset()) { canceled = true; @@ -2786,10 +2785,12 @@ void Tab::select_preset(std::string preset_name, bool delete_current) // are compatible with the new print. // If it is not compatible and the current filament or SLA material are dirty, let user decide // whether to discard the changes or keep the current print selection. - PrinterTechnology printer_technology = m_preset_bundle->printers.get_edited_preset().printer_technology(); + PresetWithVendorProfile printer_profile = m_preset_bundle->printers.get_edited_preset_with_vendor_profile(); + PrinterTechnology printer_technology = printer_profile.preset.printer_technology(); PresetCollection &dependent = (printer_technology == ptFFF) ? m_preset_bundle->filaments : m_preset_bundle->sla_materials; bool old_preset_dirty = dependent.current_is_dirty(); - bool new_preset_compatible = is_compatible_with_print(dependent.get_edited_preset_with_vendor_profile(), m_presets->get_preset_with_vendor_profile(*m_presets->find_preset(preset_name, true))); + bool new_preset_compatible = is_compatible_with_print(dependent.get_edited_preset_with_vendor_profile(), + m_presets->get_preset_with_vendor_profile(*m_presets->find_preset(preset_name, true)), printer_profile); if (! canceled) canceled = old_preset_dirty && ! new_preset_compatible && ! may_discard_current_dirty_preset(&dependent, preset_name); if (! canceled) { @@ -2842,6 +2843,8 @@ void Tab::select_preset(std::string preset_name, bool delete_current) } } } + if (! canceled) + technology_changed = old_printer_technology != new_printer_technology; } if (! canceled && delete_current) { @@ -2870,8 +2873,15 @@ void Tab::select_preset(std::string preset_name, bool delete_current) // Mark the print & filament enabled if they are compatible with the currently selected preset. // The following method should not discard changes of current print or filament presets on change of a printer profile, // if they are compatible with the current printer. + auto update_compatible_type = [](bool technology_changed, bool on_page, bool show_incompatible_presets) { + return technology_changed ? PresetSelectCompatibleType::Always : + on_page ? PresetSelectCompatibleType::Never : + (show_incompatible_presets ? PresetSelectCompatibleType::OnlyIfWasCompatible : PresetSelectCompatibleType::Always); + }; if (current_dirty || delete_current || print_tab || printer_tab) - m_preset_bundle->update_compatible(true); + m_preset_bundle->update_compatible( + update_compatible_type(technology_changed, print_tab, (print_tab ? this : wxGetApp().get_tab(Preset::TYPE_PRINT))->m_show_incompatible_presets), + update_compatible_type(technology_changed, false, wxGetApp().get_tab(Preset::TYPE_FILAMENT)->m_show_incompatible_presets)); // Initialize the UI from the current preset. if (printer_tab) static_cast(this)->update_pages(); @@ -3084,7 +3094,7 @@ void Tab::save_preset(std::string name /*= ""*/) // Save the preset into Slic3r::data_dir / presets / section_name / preset_name.ini m_presets->save_current_preset(name); // Mark the print & filament enabled if they are compatible with the currently selected preset. - m_preset_bundle->update_compatible(false); + m_preset_bundle->update_compatible(PresetSelectCompatibleType::Never); // Add the new item into the UI component, remove dirty flags and activate the saved item. update_tab_ui(); // Update the selection boxes at the plater. diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp index 09662bf814..c3016fa04c 100644 --- a/src/slic3r/GUI/Tab.hpp +++ b/src/slic3r/GUI/Tab.hpp @@ -218,7 +218,7 @@ protected: int m_em_unit; // To avoid actions with no-completed Tab - bool m_complited { false }; + bool m_completed { false }; ConfigOptionMode m_mode = comExpert; // to correct first Tab update_visibility() set mode to Expert public: @@ -244,7 +244,8 @@ public: // std::string name() const { return m_name; } std::string name() const { return m_presets->name(); } Preset::Type type() const { return m_type; } - bool complited() const { return m_complited; } + // The tab is already constructed. + bool completed() const { return m_completed; } virtual bool supports_printer_technology(const PrinterTechnology tech) = 0; void create_preset_tab(); From abca180f9f141812c322da6032d133da013a554a Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 14:11:20 +0100 Subject: [PATCH 69/91] More polishing of translations --- src/slic3r/GUI/BedShapeDialog.cpp | 4 ++-- src/slic3r/GUI/DoubleSlider.cpp | 2 +- src/slic3r/GUI/Plater.cpp | 2 +- src/slic3r/GUI/UpdateDialogs.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/slic3r/GUI/BedShapeDialog.cpp b/src/slic3r/GUI/BedShapeDialog.cpp index 44f5e60211..58c76fe26b 100644 --- a/src/slic3r/GUI/BedShapeDialog.cpp +++ b/src/slic3r/GUI/BedShapeDialog.cpp @@ -220,7 +220,7 @@ wxPanel* BedShapePanel::init_texture_panel() if (m_custom_texture != NONE) { if (!exists) - tooltip_text += _(L("Not found: ")); + tooltip_text += _(L("Not found:")) + " "; tooltip_text += _(m_custom_texture); } @@ -299,7 +299,7 @@ wxPanel* BedShapePanel::init_model_panel() if (m_custom_model != NONE) { if (!exists) - tooltip_text += _(L("Not found: ")); + tooltip_text += _(L("Not found:")) + " "; tooltip_text += _(m_custom_model); } diff --git a/src/slic3r/GUI/DoubleSlider.cpp b/src/slic3r/GUI/DoubleSlider.cpp index 5bc054dd45..f3694e4e7f 100644 --- a/src/slic3r/GUI/DoubleSlider.cpp +++ b/src/slic3r/GUI/DoubleSlider.cpp @@ -1916,7 +1916,7 @@ bool Control::check_ticks_changed_event(const std::string& gcode) _(L("The last color change data was saved for a multi extruder printing.")) + "\n\n" + _(L("Select YES if you want to delete all saved tool changes, \n\t" "NO if you want all tool changes switch to color changes, \n\t" - "or CANCEL to leave it unchanged")) + "\n\n\t" + + "or CANCEL to leave it unchanged.")) + "\n\n\t" + _(L("Do you want to delete all saved tool changes?")) ) : ( // t_mode::MultiExtruder _(L("The last color change data was saved for a multi extruder printing with tool changes for whole print.")) + "\n\n" + diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index fbc8778e47..cd6a6919a0 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3336,7 +3336,7 @@ void Plater::priv::reload_from_disk() const auto& path = input_paths[i].string(); wxBusyCursor wait; - wxBusyInfo info(_(L("Reload from: ")) + from_u8(path), q->get_current_canvas3D()->get_wxglcanvas()); + wxBusyInfo info(_(L("Reload from:")) + " " + from_u8(path), q->get_current_canvas3D()->get_wxglcanvas()); Model new_model; try diff --git a/src/slic3r/GUI/UpdateDialogs.cpp b/src/slic3r/GUI/UpdateDialogs.cpp index 389189d88f..9619846da3 100644 --- a/src/slic3r/GUI/UpdateDialogs.cpp +++ b/src/slic3r/GUI/UpdateDialogs.cpp @@ -145,7 +145,7 @@ MsgUpdateConfig::~MsgUpdateConfig() {} //MsgUpdateForced MsgUpdateForced::MsgUpdateForced(const std::vector& updates) : - MsgDialog(nullptr, wxString::Format(_(L("%s incompatibility")), SLIC3R_APP_NAME), _(L("Is necessary to install a configuration update. ")), wxID_NONE) + MsgDialog(nullptr, wxString::Format(_(L("%s incompatibility")), SLIC3R_APP_NAME), _(L("You must install a configuration update.")) + " ", wxID_NONE) { auto* text = new wxStaticText(this, wxID_ANY, wxString::Format(_(L( "%s will now start updates. Otherwise it won't be able to start.\n\n" From d6b86b5e2b7841f7a91f4ef3a3a0b08807bbfbe8 Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Thu, 27 Feb 2020 14:55:27 +0100 Subject: [PATCH 70/91] Workaround to remove crash when closing PrusaSlicer on OSX 10.9.5 --- src/libslic3r/Technologies.hpp | 6 ++++-- src/slic3r/GUI/GLCanvas3DManager.cpp | 28 ++++++++++++++++++++++++++++ src/slic3r/GUI/GLCanvas3DManager.hpp | 16 ++++++++++++++++ 3 files changed, 48 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/Technologies.hpp b/src/libslic3r/Technologies.hpp index 8ebfc3472f..bd1e6d1959 100644 --- a/src/libslic3r/Technologies.hpp +++ b/src/libslic3r/Technologies.hpp @@ -43,9 +43,11 @@ //================== -// 2.2.0.beta1 techs +// 2.2.0.rc1 techs //================== -#define ENABLE_2_2_0_BETA1 1 +#define ENABLE_2_2_0_RC1 1 +// Enable hack to remove crash when closing on OSX 10.9.5 +#define ENABLE_HACK_CLOSING_ON_OSX_10_9_5 (1 && ENABLE_2_2_0_RC1) #endif // _technologies_h_ diff --git a/src/slic3r/GUI/GLCanvas3DManager.cpp b/src/slic3r/GUI/GLCanvas3DManager.cpp index a5d75d6012..fcdbe9af17 100644 --- a/src/slic3r/GUI/GLCanvas3DManager.cpp +++ b/src/slic3r/GUI/GLCanvas3DManager.cpp @@ -16,6 +16,11 @@ #include #include +#if ENABLE_HACK_CLOSING_ON_OSX_10_9_5 +// Part of temporary hack to remove crash when closing on OSX 10.9.5 +#include +#endif // ENABLE_HACK_CLOSING_ON_OSX_10_9_5 + #ifdef __APPLE__ #include "../Utils/MacDarkMode.hpp" #endif // __APPLE__ @@ -192,6 +197,11 @@ GLCanvas3DManager::EMultisampleState GLCanvas3DManager::s_multisample = GLCanvas bool GLCanvas3DManager::s_compressed_textures_supported = false; GLCanvas3DManager::EFramebufferType GLCanvas3DManager::s_framebuffers_type = GLCanvas3DManager::FB_None; GLCanvas3DManager::GLInfo GLCanvas3DManager::s_gl_info; +#if ENABLE_HACK_CLOSING_ON_OSX_10_9_5 +#ifdef __APPLE__ +GLCanvas3DManager::OSInfo GLCanvas3DManager::s_os_info; +#endif // __APPLE__ +#endif // ENABLE_HACK_CLOSING_ON_OSX_10_9_5 GLCanvas3DManager::GLCanvas3DManager() : m_context(nullptr) @@ -223,6 +233,15 @@ bool GLCanvas3DManager::add(wxGLCanvas* canvas, Bed3D& bed, Camera& camera, GLTo m_context = new wxGLContext(canvas); if (m_context == nullptr) return false; + +#if ENABLE_HACK_CLOSING_ON_OSX_10_9_5 +#ifdef __APPLE__ + // Part of temporary hack to remove crash when closing on OSX 10.9.5 + s_os_info.major = wxPlatformInfo::Get().GetOSMajorVersion(); + s_os_info.minor = wxPlatformInfo::Get().GetOSMinorVersion(); + s_os_info.micro = wxPlatformInfo::Get().GetOSMicroVersion(); +#endif //__APPLE__ +#endif // ENABLE_HACK_CLOSING_ON_OSX_10_9_5 } canvas3D->set_context(m_context); @@ -307,6 +326,15 @@ void GLCanvas3DManager::destroy() { if (m_context != nullptr) { +#if ENABLE_HACK_CLOSING_ON_OSX_10_9_5 +#ifdef __APPLE__ + // this is a temporary ugly hack to solve the crash happening when closing the application on OSX 10.9.5 + // the crash is inside wxGLContext destructor + if (s_os_info.major == 10 && s_os_info.minor == 9 && s_os_info.micro == 5) + return; +#endif //__APPLE__ +#endif // ENABLE_HACK_CLOSING_ON_OSX_10_9_5 + delete m_context; m_context = nullptr; } diff --git a/src/slic3r/GUI/GLCanvas3DManager.hpp b/src/slic3r/GUI/GLCanvas3DManager.hpp index 940e0230ae..c7301f2b4e 100644 --- a/src/slic3r/GUI/GLCanvas3DManager.hpp +++ b/src/slic3r/GUI/GLCanvas3DManager.hpp @@ -68,6 +68,17 @@ public: void detect() const; }; +#if ENABLE_HACK_CLOSING_ON_OSX_10_9_5 +#ifdef __APPLE__ + struct OSInfo + { + int major{ 0 }; + int minor{ 0 }; + int micro{ 0 }; + }; +#endif //__APPLE__ +#endif // ENABLE_HACK_CLOSING_ON_OSX_10_9_5 + private: enum EMultisampleState : unsigned char { @@ -81,6 +92,11 @@ private: CanvasesMap m_canvases; wxGLContext* m_context; static GLInfo s_gl_info; +#if ENABLE_HACK_CLOSING_ON_OSX_10_9_5 +#ifdef __APPLE__ + static OSInfo s_os_info; +#endif //__APPLE__ +#endif // ENABLE_HACK_CLOSING_ON_OSX_10_9_5 bool m_gl_initialized; static EMultisampleState s_multisample; static bool s_compressed_textures_supported; From b2b257424465b7342d6ffd21d9a0382ebef37e88 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 10:21:36 +0100 Subject: [PATCH 71/91] Fixed a crash when deleting an object after switching from SLA to FDM --- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 4 ---- src/slic3r/GUI/Gizmos/GLGizmosManager.cpp | 6 +++++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index aa9ce50144..5236407d1e 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -63,10 +63,6 @@ bool GLGizmoSlaSupports::on_init() void GLGizmoSlaSupports::set_sla_support_data(ModelObject* model_object, const Selection& selection) { - // Update common data for hollowing and sla support gizmos. - if (wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() == ptSLA) - m_c->update_from_backend(m_parent, model_object); - if (m_c->recent_update) { if (m_state == On) m_c->build_AABB_if_needed(); diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp index 7d747ceff1..91735d9861 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp @@ -345,9 +345,13 @@ void GLGizmosManager::set_flattening_data(const ModelObject* model_object) void GLGizmosManager::set_sla_support_data(ModelObject* model_object) { - if (!m_enabled || m_gizmos.empty()) + if (! m_enabled + || m_gizmos.empty() + || wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() != ptSLA) return; + m_common_gizmos_data->update_from_backend(m_parent, model_object); + auto* gizmo_supports = dynamic_cast(m_gizmos[SlaSupports].get()); auto* gizmo_hollow = dynamic_cast(m_gizmos[Hollow].get()); From a3869736ba6073cd3346ac32d8f42984fe934ce6 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 10:54:24 +0100 Subject: [PATCH 72/91] SLA gizmos can now be opened when any instance is selected This was broken - only first instance worked --- src/slic3r/GUI/Gizmos/GLGizmoBase.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp index 52518878fa..fc644f5ca0 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp @@ -322,14 +322,20 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode m_old_mesh = nullptr; m_mesh = nullptr; m_backend_mesh_transformed.clear(); - if (m_model_object) { - m_active_instance = canvas.get_selection().get_instance_idx(); - m_active_instance_bb_radius = m_model_object->instance_bounding_box(m_active_instance).radius(); - } + object_changed = true; recent_update = true; } + if (m_model_object) { + int active_inst = canvas.get_selection().get_instance_idx(); + if (m_active_instance != active_inst) { + m_active_instance = active_inst; + m_active_instance_bb_radius = m_model_object->instance_bounding_box(m_active_instance).radius(); + recent_update = true; + } + } + if (! m_model_object || ! canvas.get_selection().is_from_single_instance()) return false; From 5a2da9597b5d0b20de7076112f3ae51e4660e8e4 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 11:26:38 +0100 Subject: [PATCH 73/91] Shared data for SLA gizmos have been removed from GLGizmoBase This commit introduces no functional changes, only code-shuffling --- src/slic3r/GUI/Gizmos/GLGizmoBase.cpp | 121 +---------------- src/slic3r/GUI/Gizmos/GLGizmoBase.hpp | 62 +-------- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 12 +- src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp | 13 +- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 7 +- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp | 6 +- src/slic3r/GUI/Gizmos/GLGizmosManager.cpp | 133 ++++++++++++++++++- src/slic3r/GUI/Gizmos/GLGizmosManager.hpp | 59 ++++++++ 8 files changed, 213 insertions(+), 200 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp index fc644f5ca0..2f988db12f 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.cpp @@ -5,10 +5,6 @@ #include "slic3r/GUI/GUI_App.hpp" #include "slic3r/GUI/GLCanvas3D.hpp" -#include "libslic3r/SLAPrint.hpp" -#include "slic3r/GUI/MeshUtils.hpp" - - @@ -138,7 +134,7 @@ void GLGizmoBase::Grabber::render_face(float half_size) const } -GLGizmoBase::GLGizmoBase(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id, CommonGizmosData* common_data_ptr) +GLGizmoBase::GLGizmoBase(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id) : m_parent(parent) , m_group_id(-1) , m_state(Off) @@ -149,7 +145,6 @@ GLGizmoBase::GLGizmoBase(GLCanvas3D& parent, const std::string& icon_filename, u , m_dragging(false) , m_imgui(wxGetApp().imgui()) , m_first_input_window_render(true) - , m_c(common_data_ptr) { ::memcpy((void*)m_base_color, (const void*)DEFAULT_BASE_COLOR, 4 * sizeof(float)); ::memcpy((void*)m_drag_color, (const void*)DEFAULT_DRAG_COLOR, 4 * sizeof(float)); @@ -306,119 +301,5 @@ unsigned char picking_checksum_alpha_channel(unsigned char red, unsigned char gr } - -bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* model_object) -{ - recent_update = false; - bool object_changed = false; - - if (m_model_object != model_object - || (model_object && m_model_object_id != model_object->id())) { - m_model_object = model_object; - m_print_object_idx = -1; - m_mesh_raycaster.reset(); - m_object_clipper.reset(); - m_supports_clipper.reset(); - m_old_mesh = nullptr; - m_mesh = nullptr; - m_backend_mesh_transformed.clear(); - - object_changed = true; - recent_update = true; - } - - if (m_model_object) { - int active_inst = canvas.get_selection().get_instance_idx(); - if (m_active_instance != active_inst) { - m_active_instance = active_inst; - m_active_instance_bb_radius = m_model_object->instance_bounding_box(m_active_instance).radius(); - recent_update = true; - } - } - - - if (! m_model_object || ! canvas.get_selection().is_from_single_instance()) - return false; - - int old_po_idx = m_print_object_idx; - - // First we need a pointer to the respective SLAPrintObject. The index into objects vector is - // cached so we don't have todo it on each render. We only search for the po if needed: - if (m_print_object_idx < 0 || (int)canvas.sla_print()->objects().size() != m_print_objects_count) { - m_print_objects_count = canvas.sla_print()->objects().size(); - m_print_object_idx = -1; - for (const SLAPrintObject* po : canvas.sla_print()->objects()) { - ++m_print_object_idx; - if (po->model_object()->id() == m_model_object->id()) - break; - } - } - - bool mesh_exchanged = false; - m_mesh = nullptr; - // Load either the model_object mesh, or one provided by the backend - // This mesh does not account for the possible Z up SLA offset. - // The backend mesh needs to be transformed and because a pointer to it is - // saved, a copy is stored as a member (FIXME) - if (m_print_object_idx >=0) { - const SLAPrintObject* po = canvas.sla_print()->objects()[m_print_object_idx]; - if (po->is_step_done(slaposDrillHoles)) { - m_backend_mesh_transformed = po->get_mesh_to_print(); - m_backend_mesh_transformed.transform(canvas.sla_print()->sla_trafo(*m_model_object).inverse()); - m_mesh = &m_backend_mesh_transformed; - m_has_drilled_mesh = true; - mesh_exchanged = true; - } - } - - if (! m_mesh) { - m_mesh = &m_model_object->volumes.front()->mesh(); - m_backend_mesh_transformed.clear(); - m_has_drilled_mesh = false; - } - - m_model_object_id = m_model_object->id(); - - if (m_mesh != m_old_mesh) { - // Update clipping plane position. - float new_clp_pos = m_clipping_plane_distance; - if (object_changed) { - new_clp_pos = 0.f; - m_clipping_plane_was_moved = false; - } else { - // After we got a drilled mesh, move the cp to 25% (if not used already) - if (m_clipping_plane_distance == 0.f && mesh_exchanged && m_has_drilled_mesh) { - new_clp_pos = 0.25f; - m_clipping_plane_was_moved = false; // so it uses current camera direction - } - } - m_clipping_plane_distance = new_clp_pos; - m_clipping_plane_distance_stash = new_clp_pos; - - m_schedule_aabb_calculation = true; - recent_update = true; - return true; - } - if (! recent_update) - recent_update = m_print_object_idx < 0 && old_po_idx >= 0; - - return recent_update; -} - - -void CommonGizmosData::build_AABB_if_needed() -{ - if (! m_schedule_aabb_calculation) - return; - - wxBusyCursor wait; - m_mesh_raycaster.reset(new MeshRaycaster(*m_mesh)); - m_object_clipper.reset(); - m_supports_clipper.reset(); - m_old_mesh = m_mesh; - m_schedule_aabb_calculation = false; -} - - } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp index 695946e3d6..5f159420ff 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoBase.hpp @@ -30,7 +30,6 @@ static const float CONSTRAINED_COLOR[4] = { 0.5f, 0.5f, 0.5f, 1.0f }; class ImGuiWrapper; -class CommonGizmosData; class GLCanvas3D; class ClippingPlane; @@ -101,13 +100,11 @@ protected: mutable std::vector m_grabbers; ImGuiWrapper* m_imgui; bool m_first_input_window_render; - CommonGizmosData* m_c = nullptr; public: GLGizmoBase(GLCanvas3D& parent, const std::string& icon_filename, - unsigned int sprite_id, - CommonGizmosData* common_data = nullptr); + unsigned int sprite_id); virtual ~GLGizmoBase() {} bool init() { return on_init(); } @@ -185,63 +182,6 @@ protected: // were not interpolated by alpha blending or multi sampling. extern unsigned char picking_checksum_alpha_channel(unsigned char red, unsigned char green, unsigned char blue); -class MeshRaycaster; -class MeshClipper; - -class CommonGizmosData { -public: - const TriangleMesh* mesh() const { - return (! m_mesh ? nullptr : m_mesh); //(m_cavity_mesh ? m_cavity_mesh.get() : m_mesh)); - } - - bool update_from_backend(GLCanvas3D& canvas, ModelObject* model_object); - - bool recent_update = false; - - static constexpr float HoleStickOutLength = 1.f; - - - - ModelObject* m_model_object = nullptr; - const TriangleMesh* m_mesh; - std::unique_ptr m_mesh_raycaster; - std::unique_ptr m_object_clipper; - std::unique_ptr m_supports_clipper; - - //std::unique_ptr m_cavity_mesh; - //std::unique_ptr m_volume_with_cavity; - - int m_active_instance = -1; - float m_active_instance_bb_radius = 0; - ObjectID m_model_object_id = 0; - int m_print_object_idx = -1; - int m_print_objects_count = -1; - int m_old_timestamp = -1; - - float m_clipping_plane_distance = 0.f; - std::unique_ptr m_clipping_plane; - bool m_clipping_plane_was_moved = false; - - void stash_clipping_plane() { - m_clipping_plane_distance_stash = m_clipping_plane_distance; - } - - void unstash_clipping_plane() { - m_clipping_plane_distance = m_clipping_plane_distance_stash; - } - - bool has_drilled_mesh() const { return m_has_drilled_mesh; } - - void build_AABB_if_needed(); - -private: - const TriangleMesh* m_old_mesh; - TriangleMesh m_backend_mesh_transformed; - float m_clipping_plane_distance_stash = 0.f; - bool m_has_drilled_mesh = false; - bool m_schedule_aabb_calculation = false; -}; - } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 43f83d11b8..b97a6f4bce 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -17,11 +17,10 @@ namespace Slic3r { namespace GUI { -GLGizmoHollow::GLGizmoHollow(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id, CommonGizmosData* cd) - : GLGizmoBase(parent, icon_filename, sprite_id, cd) +GLGizmoHollow::GLGizmoHollow(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id) + : GLGizmoBase(parent, icon_filename, sprite_id) , m_quadric(nullptr) { - m_c->m_clipping_plane.reset(new ClippingPlane(Vec3d::Zero(), 0.)); m_quadric = ::gluNewQuadric(); if (m_quadric != nullptr) // using GLU_FILL does not work when the instance's transformation @@ -1147,6 +1146,13 @@ void GLGizmoHollow::update_clipping_plane(bool keep_normal) const } +void GLGizmoHollow::on_set_hover_id() +{ + if (int(m_c->m_model_object->sla_drain_holes.size()) <= m_hover_id) + m_hover_id = -1; +} + + } // namespace GUI diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp index f3650c94d0..bc4549a0ed 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.hpp @@ -16,6 +16,7 @@ namespace GUI { class ClippingPlane; class MeshClipper; class MeshRaycaster; +class CommonGizmosData; enum class SLAGizmoEventType : unsigned char; class GLGizmoHollow : public GLGizmoBase @@ -28,7 +29,7 @@ private: public: - GLGizmoHollow(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id, CommonGizmosData* cd); + GLGizmoHollow(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); ~GLGizmoHollow() override; void set_sla_support_data(ModelObject* model_object, const Selection& selection); bool gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down); @@ -42,6 +43,7 @@ public: bool is_selection_rectangle_dragging() const { return m_selection_rectangle.is_dragging(); } void update_clipping_plane(bool keep_normal = false) const; + void set_common_data_ptr(CommonGizmosData* ptr) { m_c = ptr; } private: bool on_init() override; @@ -72,6 +74,8 @@ private: sla::DrainHoles m_holes_stash; + CommonGizmosData* m_c = nullptr; + //std::unique_ptr m_clipping_plane; // This map holds all translated description texts, so they can be easily referenced during layout calculations @@ -99,12 +103,7 @@ private: protected: void on_set_state() override; - void on_set_hover_id() override - - { - if (int(m_c->m_model_object->sla_drain_holes.size()) <= m_hover_id) - m_hover_id = -1; - } + void on_set_hover_id() override; void on_start_dragging() override; void on_stop_dragging() override; void on_render_input_window(float x, float y, float bottom_limit) override; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index 5236407d1e..368dac0377 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -22,12 +22,11 @@ namespace Slic3r { namespace GUI { -GLGizmoSlaSupports::GLGizmoSlaSupports(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id, CommonGizmosData* cd) - : GLGizmoBase(parent, icon_filename, sprite_id, cd) +GLGizmoSlaSupports::GLGizmoSlaSupports(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id) + : GLGizmoBase(parent, icon_filename, sprite_id) , m_quadric(nullptr) , m_its(nullptr) -{ - m_c->m_clipping_plane.reset(new ClippingPlane(Vec3d::Zero(), 0.)); +{ m_quadric = ::gluNewQuadric(); if (m_quadric != nullptr) // using GLU_FILL does not work when the instance's transformation diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp index a2da5e506a..deddabe5fd 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp @@ -16,6 +16,7 @@ namespace GUI { class ClippingPlane; class MeshClipper; class MeshRaycaster; +class CommonGizmosData; enum class SLAGizmoEventType : unsigned char; class GLGizmoSlaSupports : public GLGizmoBase @@ -69,7 +70,7 @@ private: }; public: - GLGizmoSlaSupports(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id, CommonGizmosData* cd); + GLGizmoSlaSupports(GLCanvas3D& parent, const std::string& icon_filename, unsigned int sprite_id); ~GLGizmoSlaSupports() override; void set_sla_support_data(ModelObject* model_object, const Selection& selection); bool gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down); @@ -81,6 +82,7 @@ public: bool has_backend_supports() const; void reslice_SLA_supports(bool postpone_error_messages = false) const; void update_clipping_plane(bool keep_normal = false) const; + void set_common_data_ptr(CommonGizmosData* ptr) { m_c = ptr; } private: bool on_init() override; @@ -116,6 +118,8 @@ private: bool m_selection_empty = true; EState m_old_state = Off; // to be able to see that the gizmo has just been closed (see on_set_state) + CommonGizmosData* m_c = nullptr; + //mutable std::unique_ptr m_object_clipper; //mutable std::unique_ptr m_supports_clipper; diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp index 91735d9861..8be642922d 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp @@ -6,6 +6,8 @@ #include "slic3r/GUI/GUI_ObjectManipulation.hpp" #include "slic3r/GUI/PresetBundle.hpp" #include "slic3r/Utils/UndoRedo.hpp" +#include "libslic3r/SLAPrint.hpp" +#include "slic3r/GUI/MeshUtils.hpp" #include #include @@ -83,16 +85,18 @@ bool GLGizmosManager::init() return false; } - m_common_gizmos_data.reset(new CommonGizmosData()); - // Order of gizmos in the vector must match order in EType! m_gizmos.emplace_back(new GLGizmoMove3D(m_parent, "move.svg", 0)); m_gizmos.emplace_back(new GLGizmoScale3D(m_parent, "scale.svg", 1)); m_gizmos.emplace_back(new GLGizmoRotate3D(m_parent, "rotate.svg", 2)); m_gizmos.emplace_back(new GLGizmoFlatten(m_parent, "place.svg", 3)); m_gizmos.emplace_back(new GLGizmoCut(m_parent, "cut.svg", 4)); - m_gizmos.emplace_back(new GLGizmoHollow(m_parent, "hollow.svg", 5, m_common_gizmos_data.get())); - m_gizmos.emplace_back(new GLGizmoSlaSupports(m_parent, "sla_supports.svg", 6, m_common_gizmos_data.get())); + m_gizmos.emplace_back(new GLGizmoHollow(m_parent, "hollow.svg", 5)); + m_gizmos.emplace_back(new GLGizmoSlaSupports(m_parent, "sla_supports.svg", 6)); + + m_common_gizmos_data.reset(new CommonGizmosData()); + dynamic_cast(m_gizmos[Hollow].get())->set_common_data_ptr(m_common_gizmos_data.get()); + dynamic_cast(m_gizmos[SlaSupports].get())->set_common_data_ptr(m_common_gizmos_data.get()); for (auto& gizmo : m_gizmos) { if (! gizmo->init()) { @@ -1051,5 +1055,126 @@ bool GLGizmosManager::grabber_contains_mouse() const return (curr != nullptr) ? (curr->get_hover_id() != -1) : false; } + + +CommonGizmosData::CommonGizmosData() +{ + m_clipping_plane.reset(new ClippingPlane(Vec3d::Zero(), 0.)); +} + + + +bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* model_object) +{ + recent_update = false; + bool object_changed = false; + + if (m_model_object != model_object + || (model_object && m_model_object_id != model_object->id())) { + m_model_object = model_object; + m_print_object_idx = -1; + m_mesh_raycaster.reset(); + m_object_clipper.reset(); + m_supports_clipper.reset(); + m_old_mesh = nullptr; + m_mesh = nullptr; + m_backend_mesh_transformed.clear(); + + object_changed = true; + recent_update = true; + } + + if (m_model_object) { + int active_inst = canvas.get_selection().get_instance_idx(); + if (m_active_instance != active_inst) { + m_active_instance = active_inst; + m_active_instance_bb_radius = m_model_object->instance_bounding_box(m_active_instance).radius(); + recent_update = true; + } + } + + + if (! m_model_object || ! canvas.get_selection().is_from_single_instance()) + return false; + + int old_po_idx = m_print_object_idx; + + // First we need a pointer to the respective SLAPrintObject. The index into objects vector is + // cached so we don't have todo it on each render. We only search for the po if needed: + if (m_print_object_idx < 0 || (int)canvas.sla_print()->objects().size() != m_print_objects_count) { + m_print_objects_count = canvas.sla_print()->objects().size(); + m_print_object_idx = -1; + for (const SLAPrintObject* po : canvas.sla_print()->objects()) { + ++m_print_object_idx; + if (po->model_object()->id() == m_model_object->id()) + break; + } + } + + bool mesh_exchanged = false; + m_mesh = nullptr; + // Load either the model_object mesh, or one provided by the backend + // This mesh does not account for the possible Z up SLA offset. + // The backend mesh needs to be transformed and because a pointer to it is + // saved, a copy is stored as a member (FIXME) + if (m_print_object_idx >=0) { + const SLAPrintObject* po = canvas.sla_print()->objects()[m_print_object_idx]; + if (po->is_step_done(slaposDrillHoles)) { + m_backend_mesh_transformed = po->get_mesh_to_print(); + m_backend_mesh_transformed.transform(canvas.sla_print()->sla_trafo(*m_model_object).inverse()); + m_mesh = &m_backend_mesh_transformed; + m_has_drilled_mesh = true; + mesh_exchanged = true; + } + } + + if (! m_mesh) { + m_mesh = &m_model_object->volumes.front()->mesh(); + m_backend_mesh_transformed.clear(); + m_has_drilled_mesh = false; + } + + m_model_object_id = m_model_object->id(); + + if (m_mesh != m_old_mesh) { + // Update clipping plane position. + float new_clp_pos = m_clipping_plane_distance; + if (object_changed) { + new_clp_pos = 0.f; + m_clipping_plane_was_moved = false; + } else { + // After we got a drilled mesh, move the cp to 25% (if not used already) + if (m_clipping_plane_distance == 0.f && mesh_exchanged && m_has_drilled_mesh) { + new_clp_pos = 0.25f; + m_clipping_plane_was_moved = false; // so it uses current camera direction + } + } + m_clipping_plane_distance = new_clp_pos; + m_clipping_plane_distance_stash = new_clp_pos; + + m_schedule_aabb_calculation = true; + recent_update = true; + return true; + } + if (! recent_update) + recent_update = m_print_object_idx < 0 && old_po_idx >= 0; + + return recent_update; +} + + +void CommonGizmosData::build_AABB_if_needed() +{ + if (! m_schedule_aabb_calculation) + return; + + wxBusyCursor wait; + m_mesh_raycaster.reset(new MeshRaycaster(*m_mesh)); + m_object_clipper.reset(); + m_supports_clipper.reset(); + m_old_mesh = m_mesh; + m_schedule_aabb_calculation = false; +} + } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp index 2110e7b69b..a479b645b2 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp @@ -227,6 +227,65 @@ private: bool grabber_contains_mouse() const; }; + + +class MeshRaycaster; +class MeshClipper; + +// This class is only for sharing SLA related data between SLA gizmos +// and its synchronization with backend data. It should not be misused +// for anything else. +class CommonGizmosData { +public: + CommonGizmosData(); + const TriangleMesh* mesh() const { + return (! m_mesh ? nullptr : m_mesh); //(m_cavity_mesh ? m_cavity_mesh.get() : m_mesh)); + } + + bool update_from_backend(GLCanvas3D& canvas, ModelObject* model_object); + bool recent_update = false; + static constexpr float HoleStickOutLength = 1.f; + + ModelObject* m_model_object = nullptr; + const TriangleMesh* m_mesh; + std::unique_ptr m_mesh_raycaster; + std::unique_ptr m_object_clipper; + std::unique_ptr m_supports_clipper; + + //std::unique_ptr m_cavity_mesh; + //std::unique_ptr m_volume_with_cavity; + + int m_active_instance = -1; + float m_active_instance_bb_radius = 0; + ObjectID m_model_object_id = 0; + int m_print_object_idx = -1; + int m_print_objects_count = -1; + int m_old_timestamp = -1; + + float m_clipping_plane_distance = 0.f; + std::unique_ptr m_clipping_plane; + bool m_clipping_plane_was_moved = false; + + void stash_clipping_plane() { + m_clipping_plane_distance_stash = m_clipping_plane_distance; + } + + void unstash_clipping_plane() { + m_clipping_plane_distance = m_clipping_plane_distance_stash; + } + + bool has_drilled_mesh() const { return m_has_drilled_mesh; } + + void build_AABB_if_needed(); + +private: + const TriangleMesh* m_old_mesh; + TriangleMesh m_backend_mesh_transformed; + float m_clipping_plane_distance_stash = 0.f; + bool m_has_drilled_mesh = false; + bool m_schedule_aabb_calculation = false; +}; + } // namespace GUI } // namespace Slic3r From 08a6c86326b782b6c098f3f374971c53bdaab271 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 11:36:08 +0100 Subject: [PATCH 74/91] Slight change in clipping plane updating after hollowing finishes The clipping plane in SLA gizmos is only moved in case that the gizmo is currently active and hollowing is actually enabled. --- src/slic3r/GUI/Gizmos/GLGizmosManager.cpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp index 8be642922d..35292f31cf 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp @@ -1143,10 +1143,19 @@ bool CommonGizmosData::update_from_backend(GLCanvas3D& canvas, ModelObject* mode new_clp_pos = 0.f; m_clipping_plane_was_moved = false; } else { - // After we got a drilled mesh, move the cp to 25% (if not used already) + // After we got a drilled mesh, move the cp to 25%. This only applies when + // the hollowing gizmo is active and hollowing is enabled if (m_clipping_plane_distance == 0.f && mesh_exchanged && m_has_drilled_mesh) { - new_clp_pos = 0.25f; - m_clipping_plane_was_moved = false; // so it uses current camera direction + const DynamicPrintConfig& cfg = + (m_model_object && m_model_object->config.has("hollowing_enable")) + ? m_model_object->config + : wxGetApp().preset_bundle->sla_prints.get_edited_preset().config; + + if (cfg.has("hollowing_enable") && cfg.opt_bool("hollowing_enable") + && canvas.get_gizmos_manager().get_current_type() == GLGizmosManager::Hollow) { + new_clp_pos = 0.25f; + m_clipping_plane_was_moved = false; // so it uses current camera direction + } } } m_clipping_plane_distance = new_clp_pos; From 73ad48c135f7ce167a858542fdaacd34d36b99c6 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 14:36:56 +0100 Subject: [PATCH 75/91] Small fix of clipping plane positioning If the clipping plane is moved automatically after hollowed mesh was created, move the clipping plane and fix current direction so it is not reset when user wants to move it This is a quick solution for the 2.2.0 release. It should be later refactored as mentioned in the code. --- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index b97a6f4bce..5f3430a784 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -62,6 +62,14 @@ void GLGizmoHollow::set_sla_support_data(ModelObject*, const Selection&) update_clipping_plane(m_c->m_clipping_plane_was_moved); + // This is a temporary and not very nice hack, to make sure that + // if the cp was moved by the data returned by backend, it will + // remember its direction. FIXME: Refactor this mess and make + // the clipping plane itself part of the shared data. + if (! m_c->m_clipping_plane_was_moved && m_c->m_clipping_plane_distance == 0.25f) + m_c->m_clipping_plane_was_moved = true; + + if (m_c->m_model_object) { reload_cache(); if (m_c->has_drilled_mesh()) From 5ca46984004afe5fb70fdae0966d2f3a061b952b Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Thu, 27 Feb 2020 15:38:35 +0100 Subject: [PATCH 76/91] Reduce max texture size if physical ram is smaller than 6GB --- src/slic3r/GUI/GLCanvas3DManager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/slic3r/GUI/GLCanvas3DManager.cpp b/src/slic3r/GUI/GLCanvas3DManager.cpp index fcdbe9af17..e99d8b2f62 100644 --- a/src/slic3r/GUI/GLCanvas3DManager.cpp +++ b/src/slic3r/GUI/GLCanvas3DManager.cpp @@ -116,6 +116,9 @@ void GLCanvas3DManager::GLInfo::detect() const m_max_tex_size /= 2; + if (Slic3r::total_physical_memory() / (1024 * 1024 * 1024) < 6) + m_max_tex_size /= 2; + if (GLEW_EXT_texture_filter_anisotropic) glsafe(::glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &m_max_anisotropy)); From 27f50778b25b5cd342d215d591619d97d000ece7 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 15:45:23 +0100 Subject: [PATCH 77/91] Localization: Updated POT, new dictionaries for CZ, DE, ES, FR, IT, JA and PL --- resources/localization/PrusaSlicer.pot | 1411 ++--- resources/localization/cs/PrusaSlicer.mo | Bin 249667 -> 245289 bytes resources/localization/cs/PrusaSlicer_cs.po | 2845 +++++----- resources/localization/de/PrusaSlicer.mo | Bin 257486 -> 253014 bytes resources/localization/de/PrusaSlicer_de.po | 3431 +++++------ resources/localization/es/PrusaSlicer.mo | Bin 256119 -> 251528 bytes resources/localization/es/PrusaSlicer_es.po | 3445 +++++------ resources/localization/fr/PrusaSlicer.mo | Bin 263887 -> 259243 bytes resources/localization/fr/PrusaSlicer_fr.po | 3452 ++++++------ resources/localization/it/PrusaSlicer.mo | Bin 252382 -> 247922 bytes resources/localization/it/PrusaSlicer_it.po | 3422 +++++------ resources/localization/ja/PrusaSlicer.mo | Bin 253104 -> 272310 bytes resources/localization/ja/PrusaSlicer_ja.po | 5642 +++++++++++-------- resources/localization/pl/PrusaSlicer.mo | Bin 250864 -> 246620 bytes resources/localization/pl/PrusaSlicer_pl.po | 3497 ++++++------ 15 files changed, 14228 insertions(+), 12917 deletions(-) diff --git a/resources/localization/PrusaSlicer.pot b/resources/localization/PrusaSlicer.pot index 1f5bf3f925..41c5577132 100644 --- a/resources/localization/PrusaSlicer.pot +++ b/resources/localization/PrusaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-19 13:53+0100\n" +"POT-Creation-Date: 2020-02-27 14:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,31 +71,56 @@ msgid "" "not be affected." msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "" "Copying of the temporary G-code to the output G-code failed. Maybe the SD " "card is write locked?" msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 #, possible-c-format msgid "" "%s has encountered an error. It was likely caused by running out of memory. " @@ -103,15 +128,15 @@ msgid "" "and we would be glad if you reported it." msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2055 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "" @@ -121,7 +146,7 @@ msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:77 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 -#: src/slic3r/GUI/Tab.cpp:2326 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "" @@ -215,12 +240,12 @@ msgid "Load..." msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3114 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 -msgid "Not found: " +msgid "Not found:" msgstr "" #: src/slic3r/GUI/BedShapeDialog.cpp:251 @@ -311,7 +336,7 @@ msgid "" msgstr "" #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "" @@ -328,7 +353,7 @@ msgid "First layer height" msgstr "" #: src/slic3r/GUI/ConfigManipulation.cpp:81 -#, no-c-format +#, possible-c-format msgid "" "The Spiral Vase mode requires:\n" "- one perimeter\n" @@ -398,9 +423,9 @@ msgid "Shall I switch to rectilinear fill pattern?" msgstr "" #: src/slic3r/GUI/ConfigManipulation.cpp:211 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:522 -#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 #: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 @@ -455,7 +480,7 @@ msgstr "" msgid "PrusaSlicer version" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1519 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "" @@ -463,11 +488,11 @@ msgstr "" msgid "filaments" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1523 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "" @@ -521,12 +546,12 @@ msgid "Standard" msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3164 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:494 src/slic3r/GUI/Plater.cpp:634 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "" @@ -637,9 +662,9 @@ msgid "" "an update is applied." msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1660 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3950 src/slic3r/GUI/Plater.cpp:3203 -#: src/slic3r/GUI/Plater.cpp:3912 src/slic3r/GUI/Plater.cpp:3941 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 msgid "Reload from disk" msgstr "" @@ -694,7 +719,7 @@ msgstr "" msgid "Firmware Type" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1949 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "" @@ -796,8 +821,8 @@ msgstr "" msgid "SLA Technology Printers" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1903 -#: src/slic3r/GUI/DoubleSlider.cpp:1924 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "" @@ -850,7 +875,7 @@ msgstr "" msgid "Filament Profiles Selection" msgstr "" -#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3549 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "" @@ -882,59 +907,59 @@ msgstr "" msgid "Place bearings in slots and resume printing" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:948 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:950 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:953 +#: src/slic3r/GUI/DoubleSlider.cpp:955 #, possible-c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:955 src/slic3r/GUI/DoubleSlider.cpp:1527 -#: src/slic3r/GUI/DoubleSlider.cpp:1649 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 msgid "Jump to height" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:958 +#: src/slic3r/GUI/DoubleSlider.cpp:960 msgid "Edit current color - Right click the colored slider segment" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:968 +#: src/slic3r/GUI/DoubleSlider.cpp:970 msgid "Print mode" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:982 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "Add extruder change - Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:984 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "" "Add color change - Left click for predefined color or Shift + Left click for " "custom color selection" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:986 +#: src/slic3r/GUI/DoubleSlider.cpp:988 msgid "Add color change - Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:987 +#: src/slic3r/GUI/DoubleSlider.cpp:989 msgid "or press \"+\" key" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:989 +#: src/slic3r/GUI/DoubleSlider.cpp:991 msgid "Add another code - Ctrl + Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:992 msgid "Add another code - Right click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:996 +#: src/slic3r/GUI/DoubleSlider.cpp:998 msgid "" "The sequential print is on.\n" "It's impossible to apply any custom G-code for objects printing " @@ -942,200 +967,200 @@ msgid "" "This code won't be processed during G-code generation." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1005 msgid "Color change (\"%1%\")" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1006 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1007 +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Pause print (\"%1%\")" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1009 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1017 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "Note" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1019 +#: src/slic3r/GUI/DoubleSlider.cpp:1021 msgid "" "G-code associated to this tick mark is in a conflict with print mode.\n" "Editing it will cause changes of Slider data." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1022 +#: src/slic3r/GUI/DoubleSlider.cpp:1024 msgid "" "There is a color change for extruder that won't be used till the end of " "print job.\n" "This code won't be processed during G-code generation." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1025 +#: src/slic3r/GUI/DoubleSlider.cpp:1027 msgid "" "There is an extruder change set to the same extruder.\n" "This code won't be processed during G-code generation." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1028 +#: src/slic3r/GUI/DoubleSlider.cpp:1030 msgid "" "There is a color change for extruder that has not been used before.\n" "Check your settings to avoid redundant color changes." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1033 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1035 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 msgid "Edit tick mark - Ctrl + Left click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1036 +#: src/slic3r/GUI/DoubleSlider.cpp:1038 msgid "Edit tick mark - Right click" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1132 src/slic3r/GUI/DoubleSlider.cpp:1168 -#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1700 -#: src/slic3r/GUI/Tab.cpp:2322 src/libslic3r/GCode/PreviewData.cpp:445 +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 #, possible-c-format msgid "Extruder %d" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1133 src/slic3r/GUI/GUI_ObjectList.cpp:1701 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 msgid "active" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1142 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 msgid "Switch code to Change extruder" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1142 src/slic3r/GUI/GUI_ObjectList.cpp:1667 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1143 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Change extruder (N/A)" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1145 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1169 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 msgid "used" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1177 +#: src/slic3r/GUI/DoubleSlider.cpp:1179 msgid "Switch code to Color change (%1%) for:" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1178 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1475 +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1485 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1506 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1507 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1508 +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1514 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1515 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete tool change" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1516 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1517 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1530 +#: src/slic3r/GUI/DoubleSlider.cpp:1532 msgid "Set extruder sequence for the entire print" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1616 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1617 +#: src/slic3r/GUI/DoubleSlider.cpp:1619 msgid "Custom G-code on current layer (%1% mm)." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1632 +#: src/slic3r/GUI/DoubleSlider.cpp:1634 msgid "Enter short message shown on Printer display when a print is paused" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1633 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1648 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 msgid "Enter the height you want to jump to" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 msgid "The last color change data was saved for a single extruder printing." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1898 src/slic3r/GUI/DoubleSlider.cpp:1914 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 msgid "The last color change data was saved for a multi extruder printing." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1900 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 msgid "Your current changes will delete all saved color changes." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1901 src/slic3r/GUI/DoubleSlider.cpp:1922 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 msgid "Are you sure you want to continue?" msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1915 +#: src/slic3r/GUI/DoubleSlider.cpp:1917 msgid "" "Select YES if you want to delete all saved tool changes, \n" "\tNO if you want all tool changes switch to color changes, \n" -"\tor CANCEL to leave it unchanged" -msgstr "" - -#: src/slic3r/GUI/DoubleSlider.cpp:1918 -msgid "Do you want to delete all saved tool changes?" +"\tor CANCEL to leave it unchanged." msgstr "" #: src/slic3r/GUI/DoubleSlider.cpp:1920 +msgid "Do you want to delete all saved tool changes?" +msgstr "" + +#: src/slic3r/GUI/DoubleSlider.cpp:1922 msgid "" "The last color change data was saved for a multi extruder printing with tool " "changes for whole print." msgstr "" -#: src/slic3r/GUI/DoubleSlider.cpp:1921 +#: src/slic3r/GUI/DoubleSlider.cpp:1923 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "" @@ -1277,8 +1302,8 @@ msgstr "" msgid "Firmware image:" msgstr "" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1723 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "" @@ -1330,7 +1355,7 @@ msgstr "" msgid "Cancelling..." msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4568 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "" @@ -1452,143 +1477,143 @@ msgstr "" msgid "%.2f - %.2f mm" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:990 +#: src/slic3r/GUI/GLCanvas3D.cpp:995 #, possible-c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1300 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 msgid "Seq." msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1696 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1704 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:1712 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:2048 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:2916 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:2996 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:3500 +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4042 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4042 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4060 +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 #, possible-c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4060 +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 #, possible-c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "" msgstr[1] "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4462 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4470 src/slic3r/GUI/GUI_ObjectList.cpp:1714 -#: src/slic3r/GUI/Plater.cpp:3909 src/slic3r/GUI/Plater.cpp:3931 -#: src/slic3r/GUI/Tab.cpp:3114 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4479 src/slic3r/GUI/KBShortcutsDialog.cpp:129 -#: src/slic3r/GUI/Plater.cpp:4647 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4488 src/slic3r/GUI/KBShortcutsDialog.cpp:157 -#: src/slic3r/GUI/Plater.cpp:2732 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4488 src/slic3r/GUI/KBShortcutsDialog.cpp:158 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4500 +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4509 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4521 src/slic3r/GUI/Plater.cpp:3766 -#: src/slic3r/GUI/Plater.cpp:3778 src/slic3r/GUI/Plater.cpp:3918 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4532 src/slic3r/GUI/Plater.cpp:3920 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4545 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4555 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4619 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 #: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4619 src/slic3r/GUI/GLCanvas3D.cpp:4652 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4636 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4652 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 #: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:4668 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:6593 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "" -#: src/slic3r/GUI/GLCanvas3D.cpp:6612 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "" @@ -1689,27 +1714,27 @@ msgstr "" msgid "Show supports" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 msgid "Add drainage hole" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 msgid "Delete drainage hole" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:798 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 msgid "Hollowing parameter change" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:870 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 msgid "Change drainage hole diameter" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 msgid "Hollow and drill" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1040 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 msgid "Move drainage hole" msgstr "" @@ -1742,7 +1767,7 @@ msgid "Lock supports under new islands" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "" @@ -1751,12 +1776,12 @@ msgid "Remove all points" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "" @@ -1770,7 +1795,7 @@ msgid "Support points density" msgstr "" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "" @@ -1778,145 +1803,145 @@ msgstr "" msgid "Manual editing" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3074 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "" @@ -2011,11 +2036,11 @@ msgstr "" msgid "Simple View Mode" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 -#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 -#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 -#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1969 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 #: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 @@ -2086,7 +2111,7 @@ msgstr "" msgid "The presets on the following tabs were modified" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2936 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "" @@ -2094,7 +2119,7 @@ msgstr "" msgid "Unsaved Presets" msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2948 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "" @@ -2102,8 +2127,8 @@ msgstr "" msgid "Please check and fix your object list." msgstr "" -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2291 -#: src/slic3r/GUI/Tab.cpp:2950 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "" @@ -2127,8 +2152,8 @@ msgstr "" msgid "Add layer range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 -#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 #: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 @@ -2139,9 +2164,9 @@ msgstr "" msgid "Layers and Perimeters" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:246 -#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 #: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 @@ -2156,8 +2181,8 @@ msgstr "" msgid "Support material" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 #: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "" @@ -2182,8 +2207,8 @@ msgstr "" msgid "Add support blocker" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1147 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 #: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 @@ -2192,15 +2217,15 @@ msgstr "" msgid "Speed" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 #: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 #: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 #: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 @@ -2208,9 +2233,9 @@ msgstr "" msgid "Extrusion Width" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:490 src/slic3r/GUI/Tab.cpp:3594 -#: src/slic3r/GUI/Tab.cpp:3595 src/libslic3r/PrintConfig.cpp:2614 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 #: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 #: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 #: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 @@ -2222,9 +2247,9 @@ msgstr "" msgid "Supports" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:630 src/slic3r/GUI/Tab.cpp:3626 -#: src/slic3r/GUI/Tab.cpp:3627 src/libslic3r/PrintConfig.cpp:2781 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 #: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 #: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 #: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 @@ -2234,8 +2259,8 @@ msgstr "" msgid "Pad" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3644 -#: src/slic3r/GUI/Tab.cpp:3645 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 #: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 #: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 @@ -2243,443 +2268,443 @@ msgstr "" msgid "Hollowing" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 #: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:337 +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 #, possible-c-format msgid "Auto-repaired (%d errors):" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:344 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:345 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:347 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:348 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:349 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:357 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:400 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:402 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3961 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 -#: src/slic3r/GUI/GUI_ObjectList.cpp:4006 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 #: src/slic3r/GUI/ObjectDataViewModel.cpp:490 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1845 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 #, possible-c-format msgid "Quick Add Settings (%s)" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1595 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1607 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1607 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1617 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1632 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1643 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1653 src/slic3r/GUI/Plater.cpp:3944 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1660 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3950 src/slic3r/GUI/Plater.cpp:3912 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1667 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1700 src/libslic3r/PrintConfig.cpp:335 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1720 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1720 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1789 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2047 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1914 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1989 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2136 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2148 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2188 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2219 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2266 src/slic3r/GUI/Plater.cpp:2956 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "" "The selected object couldn't be split because it contains only one part." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2324 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2450 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2462 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2475 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2484 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2490 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2496 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2503 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2503 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2689 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2826 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2892 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2921 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2939 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2999 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3287 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3295 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3413 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3414 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 #, possible-c-format msgid "You started your selection with %s Item." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 #, possible-c-format msgid "In this mode you can select only other %s Items%s" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3426 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3501 src/slic3r/GUI/Plater.cpp:141 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3542 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3554 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3799 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3799 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3815 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3922 src/slic3r/GUI/Tab.cpp:3446 -#: src/slic3r/GUI/Tab.cpp:3450 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3816 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3923 src/slic3r/GUI/Tab.cpp:3447 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3965 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3966 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3991 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4088 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4088 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "" @@ -2815,7 +2840,7 @@ msgstr "" msgid "Width" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "" @@ -2877,7 +2902,7 @@ msgstr "" msgid "Gap fill" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "" @@ -2887,7 +2912,7 @@ msgstr "" msgid "Support material interface" msgstr "" -#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "" @@ -2952,12 +2977,12 @@ msgstr "" msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:886 -#: src/slic3r/GUI/Plater.cpp:5496 src/libslic3r/PrintConfig.cpp:3353 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5497 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "" @@ -3190,7 +3215,7 @@ msgid "Plater" msgstr "" #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 -#, no-c-format +#, possible-c-format msgid "" "Press to snap by 5% in Gizmo scale\n" "or to snap by 1mm in Gizmo move" @@ -3230,8 +3255,8 @@ msgstr "" msgid "Show/Hide Legend" msgstr "" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4083 -#: src/slic3r/GUI/Tab.cpp:2392 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "" @@ -3799,9 +3824,9 @@ msgstr "" msgid "Save zip file as:" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3099 -#: src/slic3r/GUI/Plater.cpp:5085 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3652 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "" @@ -3898,8 +3923,8 @@ msgstr "" msgid "Instance %d" msgstr "" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3502 -#: src/slic3r/GUI/Tab.cpp:3590 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "" @@ -3937,7 +3962,7 @@ msgstr "" msgid "Sliced Info" msgstr "" -#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1224 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "" @@ -3957,8 +3982,8 @@ msgstr "" msgid "Cost (money)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1211 -#: src/slic3r/GUI/Plater.cpp:1253 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "" @@ -3966,557 +3991,575 @@ msgstr "" msgid "Number of tool changes" msgstr "" -#: src/slic3r/GUI/Plater.cpp:338 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "" -#: src/slic3r/GUI/Plater.cpp:493 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "" -#: src/slic3r/GUI/Plater.cpp:495 src/libslic3r/PrintConfig.cpp:1901 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 #: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:619 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "" -#: src/slic3r/GUI/Plater.cpp:497 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "" -#: src/slic3r/GUI/Plater.cpp:529 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "" -#: src/slic3r/GUI/Plater.cpp:531 +#: src/slic3r/GUI/Plater.cpp:536 msgid "" "This flag enables the brim that will be printed around each object on the " "first layer." msgstr "" -#: src/slic3r/GUI/Plater.cpp:539 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "" -#: src/slic3r/GUI/Plater.cpp:633 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:810 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:811 src/slic3r/GUI/Tab.cpp:1427 -#: src/slic3r/GUI/Tab.cpp:1428 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Preset.cpp:1522 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "" -#: src/slic3r/GUI/Plater.cpp:873 src/slic3r/GUI/Plater.cpp:5497 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "" -#: src/slic3r/GUI/Plater.cpp:874 +#: src/slic3r/GUI/Plater.cpp:879 msgid "Remove device" msgstr "" -#: src/slic3r/GUI/Plater.cpp:875 +#: src/slic3r/GUI/Plater.cpp:880 msgid "Export to SD card / Flash drive" msgstr "" -#: src/slic3r/GUI/Plater.cpp:887 src/slic3r/GUI/Plater.cpp:3099 -#: src/slic3r/GUI/Plater.cpp:5088 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1037 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1147 -#, possible-c-format -msgid "%d (%d shells)" -msgstr "" - #: src/slic3r/GUI/Plater.cpp:1152 #, possible-c-format +msgid "%d (%d shells)" +msgstr "" + +#: src/slic3r/GUI/Plater.cpp:1157 +#, possible-c-format msgid "Auto-repaired (%d errors)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1155 +#: src/slic3r/GUI/Plater.cpp:1160 #, possible-c-format msgid "" "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d " "facets reversed, %d backwards edges" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1165 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1186 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1189 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1189 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1226 src/slic3r/GUI/Plater.cpp:1240 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1226 src/slic3r/GUI/Plater.cpp:1240 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1238 src/libslic3r/PrintConfig.cpp:760 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 #: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1256 -msgid "normal mode" -msgstr "" - -#: src/slic3r/GUI/Plater.cpp:1260 src/slic3r/GUI/Plater.cpp:1269 -#: src/libslic3r/PrintConfig.cpp:582 +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1265 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "" + +#: src/slic3r/GUI/Plater.cpp:1286 +msgid "normal mode" +msgstr "" + +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1373 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "" -#: src/slic3r/GUI/Plater.cpp:1377 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2129 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2261 +#: src/slic3r/GUI/Plater.cpp:2283 #, possible-c-format msgid "Processing input file %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2289 +#: src/slic3r/GUI/Plater.cpp:2311 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2290 src/slic3r/GUI/Tab.cpp:2949 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2335 +#: src/slic3r/GUI/Plater.cpp:2357 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should I consider\n" "this file as a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2338 src/slic3r/GUI/Plater.cpp:2391 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2345 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "" "This file cannot be loaded in a simple mode. Do you want to switch to an " "advanced mode?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2346 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2368 +#: src/slic3r/GUI/Plater.cpp:2390 #, possible-c-format msgid "" "You can't to add the object(s) from %s because of one or some of them " "is(are) multi-part" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2388 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" "these files to represent a single object having multiple parts?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2404 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2506 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "" "Your object appears to be too large, so it was automatically scaled down to " "fit your print bed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2507 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2569 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2576 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2690 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2701 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/Plater.cpp:2760 msgid "Hollow" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2745 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2791 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2813 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2820 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2836 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2869 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2870 +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2900 +#: src/slic3r/GUI/Plater.cpp:2922 msgid "Indexing hollowed object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:2904 +#: src/slic3r/GUI/Plater.cpp:2926 msgid "Hollowing cancelled." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2905 +#: src/slic3r/GUI/Plater.cpp:2927 msgid "Hollowing done." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2907 +#: src/slic3r/GUI/Plater.cpp:2929 msgid "Hollowing failed." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2948 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "" "The selected object can't be split because it contains more than one volume/" "material." msgstr "" -#: src/slic3r/GUI/Plater.cpp:2959 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3084 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3093 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3131 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3148 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "" -#: src/slic3r/GUI/Plater.cpp:3264 +#: src/slic3r/GUI/Plater.cpp:3286 msgid "Please select the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3299 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "It is not allowed to change the file to reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3299 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "Do you want to retry" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3317 -msgid "Reload from: " +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3406 +#: src/slic3r/GUI/Plater.cpp:3428 msgid "Unable to reload:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3411 +#: src/slic3r/GUI/Plater.cpp:3433 msgid "Error during reload" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3430 +#: src/slic3r/GUI/Plater.cpp:3452 msgid "Reload all from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3451 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3642 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3647 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3909 src/slic3r/GUI/Plater.cpp:3931 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3918 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3920 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3922 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3922 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3941 +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3944 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3973 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3973 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3977 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3977 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3980 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3980 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3992 src/slic3r/GUI/Plater.cpp:4012 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3994 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3994 src/slic3r/GUI/Plater.cpp:4026 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3997 src/slic3r/GUI/Plater.cpp:4012 -#: src/slic3r/GUI/Plater.cpp:4026 src/libslic3r/PrintConfig.cpp:3471 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "" -#: src/slic3r/GUI/Plater.cpp:3997 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4018 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4018 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "" -#: src/slic3r/GUI/Plater.cpp:4075 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4378 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "" "%1% printer was active at the time the target Undo / Redo snapshot was " "taken. Switching to %1% printer requires reloading of %1% presets." msgstr "" -#: src/slic3r/GUI/Plater.cpp:4553 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4581 +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4585 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4647 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "All objects will be removed, continue?" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4655 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4663 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4698 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4734 +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "" + +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "" + +#: src/slic3r/GUI/Plater.cpp:4756 #, possible-c-format msgid "Set numbers of copies to %d" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4764 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4817 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4817 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4963 +#: src/slic3r/GUI/Plater.cpp:4985 #, possible-c-format msgid "STL file exported to %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4980 +#: src/slic3r/GUI/Plater.cpp:5002 #, possible-c-format msgid "AMF file exported to %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:4983 +#: src/slic3r/GUI/Plater.cpp:5005 #, possible-c-format msgid "Error exporting AMF file %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5016 +#: src/slic3r/GUI/Plater.cpp:5038 #, possible-c-format msgid "3MF file exported to %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5021 +#: src/slic3r/GUI/Plater.cpp:5043 #, possible-c-format msgid "Error exporting 3MF file %s" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5496 +#: src/slic3r/GUI/Plater.cpp:5203 +#, possible-c-format +msgid "" +"Unmounting successful. The device %s(%s) can now be safely removed from the " +"computer." +msgstr "" + +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "" -#: src/slic3r/GUI/Plater.cpp:5581 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1798 -#: src/slic3r/GUI/Tab.cpp:2042 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "" @@ -4656,34 +4699,34 @@ msgstr "" msgid "modified" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1107 src/slic3r/GUI/Preset.cpp:1162 -#: src/slic3r/GUI/Preset.cpp:1240 src/slic3r/GUI/Preset.cpp:1282 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1166 src/slic3r/GUI/Preset.cpp:1286 -#: src/slic3r/GUI/PresetBundle.cpp:1670 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1199 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1201 +#: src/slic3r/GUI/Preset.cpp:1203 msgid "Add/Remove printers" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1520 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "" -#: src/slic3r/GUI/Preset.cpp:1521 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "" -#: src/slic3r/GUI/PresetBundle.cpp:1697 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "" @@ -4980,329 +5023,329 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:265 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "" -#: src/slic3r/GUI/Tab.cpp:53 +#: src/slic3r/GUI/Tab.cpp:51 msgid "Select the printers this profile is compatible with." msgstr "" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:280 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "" -#: src/slic3r/GUI/Tab.cpp:59 +#: src/slic3r/GUI/Tab.cpp:57 msgid "Select the print profiles this profile is compatible with." msgstr "" #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:135 +#: src/slic3r/GUI/Tab.cpp:133 #, possible-c-format msgid "Save current %s" msgstr "" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "" -#: src/slic3r/GUI/Tab.cpp:141 +#: src/slic3r/GUI/Tab.cpp:139 msgid "" "Hover the cursor over buttons to find more information \n" "or click this button." msgstr "" -#: src/slic3r/GUI/Tab.cpp:243 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:957 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:959 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:962 +#: src/slic3r/GUI/Tab.cpp:960 #, possible-c-format msgid "" "Current preset is inherited from:\n" "\t%s" msgstr "" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:967 +#: src/slic3r/GUI/Tab.cpp:965 msgid "" "Any modifications should be saved as a new preset inherited from this one." msgstr "" -#: src/slic3r/GUI/Tab.cpp:968 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:972 +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:978 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "" -#: src/slic3r/GUI/Tab.cpp:986 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:989 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1007 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1015 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1016 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3588 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1055 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1071 +#: src/slic3r/GUI/Tab.cpp:1069 msgid "Minimum shell thickness" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1082 +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1112 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1129 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1133 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1148 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1160 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1163 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1166 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1173 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1181 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1189 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1217 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1220 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1229 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3655 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1233 +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1235 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 -#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2014 src/slic3r/GUI/Tab.cpp:2015 -#: src/slic3r/GUI/Tab.cpp:2130 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3525 src/slic3r/GUI/Tab.cpp:3526 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2021 src/slic3r/GUI/Tab.cpp:2137 -#: src/slic3r/GUI/Tab.cpp:3533 src/slic3r/GUI/Tab.cpp:3661 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2022 src/slic3r/GUI/Tab.cpp:2138 -#: src/slic3r/GUI/Tab.cpp:3534 src/slic3r/GUI/Tab.cpp:3662 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2372 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1441 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1446 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 #: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1458 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1467 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1473 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1480 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1490 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1493 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1507 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1977 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1978 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1984 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1593 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1917 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1689 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1930 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1715 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1730 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1759 +#: src/slic3r/GUI/Tab.cpp:1757 #, possible-c-format msgid "" "HTTPS CA File:\n" @@ -5312,24 +5355,24 @@ msgid "" "Store / Keychain." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1799 src/slic3r/GUI/Tab.cpp:2043 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1804 src/slic3r/GUI/Tab.cpp:2048 -#: src/slic3r/GUI/Tab.cpp:3166 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1841 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1869 +#: src/slic3r/GUI/Tab.cpp:1867 msgid "" "Single Extruder Multi Material is selected, \n" "and all extruders must have the same diameter.\n" @@ -5337,72 +5380,72 @@ msgid "" "nozzle diameter value?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1872 src/slic3r/GUI/Tab.cpp:2342 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1902 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1903 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1908 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1930 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1933 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "" -#: src/slic3r/GUI/Tab.cpp:1946 src/slic3r/GUI/Tab.cpp:2125 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1990 src/libslic3r/PrintConfig.cpp:153 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:1996 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2002 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2008 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2080 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2095 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2096 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2102 src/slic3r/GUI/Tab.cpp:3509 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2119 src/slic3r/GUI/Tab.cpp:3505 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2190 src/slic3r/GUI/Tab.cpp:2275 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -5410,175 +5453,175 @@ msgstr "" msgid "Machine limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2210 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2211 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2219 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2224 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2231 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2236 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2300 src/slic3r/GUI/Tab.cpp:2308 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2309 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2340 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "" "This is a single extruder multimaterial printer, diameters of all extruders " "will be set to the new value. Do you want to proceed?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2364 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2375 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2388 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "" "Retraction when tool is disabled (advanced settings for multi-extruder " "setups)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2396 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2577 +#: src/slic3r/GUI/Tab.cpp:2575 msgid "" "The Wipe option is not available when using the Firmware Retraction mode.\n" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2579 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:2919 #, possible-c-format msgid "Default preset (%s)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2910 +#: src/slic3r/GUI/Tab.cpp:2920 #, possible-c-format msgid "Preset (%s)" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2933 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3035 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3058 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3063 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3072 +#: src/slic3r/GUI/Tab.cpp:3082 msgid "Preset with name \"%1%\" already exists." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3073 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3113 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3116 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3242 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3244 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "" "indicates that the settings are the same as the system (or default) values " "for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3246 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3248 +#: src/slic3r/GUI/Tab.cpp:3258 msgid "" "indicates that some settings were changed and are not equal to the system " "(or default) values for the current option group.\n" @@ -5586,23 +5629,23 @@ msgid "" "to the system (or default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3253 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3255 +#: src/slic3r/GUI/Tab.cpp:3265 msgid "" "for the left button: \tindicates a non-system (or non-default) preset,\n" "for the right button: \tindicates that the settings hasn't been modified." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3258 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3260 +#: src/slic3r/GUI/Tab.cpp:3270 msgid "" "indicates that the settings were changed and are not equal to the last saved " "preset for the current option group.\n" @@ -5610,13 +5653,13 @@ msgid "" "to the last saved preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3270 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "" "LOCKED LOCK icon indicates that the settings are the same as the system (or " "default) values for the current option group" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3282 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not " "equal to the system (or default) values for the current option group.\n" @@ -5624,17 +5667,17 @@ msgid "" "default) values." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3275 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3278 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "" "WHITE BULLET icon indicates that the settings are the same as in the last " "saved preset for the current option group." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3290 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal " "to the last saved preset for the current option group.\n" @@ -5642,26 +5685,26 @@ msgid "" "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3286 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "" "LOCKED LOCK icon indicates that the value is the same as the system (or " "default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3297 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to " "the system (or default) value.\n" "Click to reset current value to the system (or default) value." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3293 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "" "WHITE BULLET icon indicates that the value is the same as in the last saved " "preset." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3294 +#: src/slic3r/GUI/Tab.cpp:3304 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the " "last saved preset.\n" @@ -5669,56 +5712,56 @@ msgid "" msgstr "" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3407 +#: src/slic3r/GUI/Tab.cpp:3417 #, possible-c-format msgid "Save %s as:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3451 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3455 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "" -#: src/slic3r/GUI/Tab.cpp:3468 src/slic3r/GUI/Tab.cpp:3470 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3603 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "" -#: src/slic3r/GUI/Tab.cpp:3622 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "" -#: src/slic3r/GUI/Tab.hpp:354 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "" -#: src/slic3r/GUI/Tab.hpp:390 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "" -#: src/slic3r/GUI/Tab.hpp:415 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "" -#: src/slic3r/GUI/Tab.hpp:442 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "" @@ -5784,7 +5827,7 @@ msgid "%s incompatibility" msgstr "" #: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Is necessary to install a configuration update. " +msgid "You must install a configuration update." msgstr "" #: src/slic3r/GUI/UpdateDialogs.cpp:151 @@ -5859,12 +5902,12 @@ msgid "Configuration updates" msgstr "" #: src/slic3r/GUI/UpdateDialogs.cpp:303 -msgid "No updates aviable" +msgid "No updates available" msgstr "" #: src/slic3r/GUI/UpdateDialogs.cpp:308 #, possible-c-format -msgid "%s has no configuration updates aviable." +msgid "%s has no configuration updates available." msgstr "" #: src/slic3r/GUI/WipeTowerDialog.cpp:15 @@ -7058,7 +7101,7 @@ msgid "Extra perimeters if needed" msgstr "" #: src/libslic3r/PrintConfig.cpp:479 -#, no-c-format +#, possible-c-format msgid "" "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r " "keeps adding perimeters, until more than 70% of the loop immediately above " @@ -7786,7 +7829,7 @@ msgid "This setting represents the maximum speed of your fan." msgstr "" #: src/libslic3r/PrintConfig.cpp:1227 -#, no-c-format +#, possible-c-format msgid "" "This is the highest printable layer height for this extruder, used to cap " "the variable layer height and support layer height. Maximum recommended " diff --git a/resources/localization/cs/PrusaSlicer.mo b/resources/localization/cs/PrusaSlicer.mo index 9bd5f8121948785245b42f2896fa740d2873ec1f..d1105a97ec88b1b5b07d20014591da21c9b8217b 100644 GIT binary patch delta 47348 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 delta 49733 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 Dt)SnY diff --git a/resources/localization/cs/PrusaSlicer_cs.po b/resources/localization/cs/PrusaSlicer_cs.po index eddf8c8458..a892a4dac6 100644 --- a/resources/localization/cs/PrusaSlicer_cs.po +++ b/resources/localization/cs/PrusaSlicer_cs.po @@ -16,32 +16,32 @@ msgstr "" msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Nezapomeňte zkontrolovat aktualizace na http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:874 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " byl úspěšně slicován." -#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 #: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 #: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 -#: src/libslic3r/PrintConfig.cpp:2758 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/slic3r/GUI/GLCanvas3D.cpp:968 +#: src/slic3r/GUI/GLCanvas3D.cpp:963 #, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3110 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "%1% Přednastavení" -#: src/slic3r/GUI/Plater.cpp:4413 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "%1% tiskárna byla aktivní v době, kdy byly pořízeny kroky Zpět / Vpřed. Přepnutí na tiskárnu %1% vyžaduje opětovné načtení předvoleb %1%." -#: src/libslic3r/Print.cpp:1370 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm je příliš nízké na to, aby bylo možné tisknout ve výšce vrstvy %3% mm" @@ -50,27 +50,27 @@ msgstr "%1%=%2% mm je příliš nízké na to, aby bylo možné tisknout ve vý msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s při rychlosti filamentu %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:1149 +#: src/slic3r/GUI/Plater.cpp:1152 #, c-format msgid "%d (%d shells)" msgstr "%d (%d obalů)" -#: src/slic3r/GUI/Plater.cpp:1157 +#: src/slic3r/GUI/Plater.cpp:1160 #, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d poškozených faset, %d okrajů opraveno, %d faset odstraněno, %d faset přidáno, %d faset navráceno, %d zadních okrajů" -#: src/slic3r/GUI/PresetHints.cpp:269 +#: src/slic3r/GUI/PresetHints.cpp:270 #, c-format msgid "%d lines: %.2f mm" msgstr "%d perimetry: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:1029 +#: src/slic3r/GUI/MainFrame.cpp:1027 #, c-format msgid "%d presets successfully imported." msgstr "%d přednastavení úspěšně importováno." -#: src/slic3r/GUI/MainFrame.cpp:694 +#: src/slic3r/GUI/MainFrame.cpp:692 #, c-format msgid "%s &Website" msgstr "%s &Webová stránka" @@ -80,7 +80,7 @@ msgstr "%s &Webová stránka" msgid "%s configuration is incompatible" msgstr "Konfigurace %s není kompatibilní" -#: src/slic3r/GUI/Field.cpp:170 +#: src/slic3r/GUI/Field.cpp:175 #, c-format msgid "%s doesn't support percentage" msgstr "%s nepodporuje procenta" @@ -111,14 +111,14 @@ msgstr "" "\n" "Aplikace se nyní ukončí." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 #, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s zaznamenal chybu. Bylo to pravděpodobně způsobeno nedostatkem paměti. Pokud jste si jisti, že máte v systému dostatek paměti RAM, může to být také chyba programu a v takovém případě bychom byli rádi, kdybyste nám to nahlásili." #: src/slic3r/GUI/UpdateDialogs.cpp:308 #, c-format -msgid "%s has no configuration updates aviable." +msgid "%s has no configuration updates available." msgstr "%s nemá k dispozici žádné aktualizace konfigurace." #: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 @@ -163,10 +163,10 @@ msgstr "" "\n" "Aktualizované balíčky konfigurace:" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 #, c-format msgid "&About %s" -msgstr "O %s" +msgstr "&O %su" #: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" @@ -178,13 +178,13 @@ msgstr "Zálohy konfigura&ce" #: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" -msgstr "Kopírovat" +msgstr "&Kopírovat" #: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" -msgstr "&Smazat vybrané" +msgstr "Sma&zat vybrané" -#: src/slic3r/GUI/MainFrame.cpp:724 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" msgstr "&Editovat" @@ -192,19 +192,19 @@ msgstr "&Editovat" msgid "&Export" msgstr "&Exportovat" -#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "Panel nastavení &filamentu" -#: src/slic3r/GUI/MainFrame.cpp:723 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "&Soubor" -#: src/slic3r/GUI/ConfigWizard.cpp:1984 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "&Dokončit" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "&Pomoc" @@ -214,13 +214,13 @@ msgstr "&Importovat" #: src/slic3r/GUI/GUI_App.cpp:822 msgid "&Language" -msgstr "Jazyk (&L)" +msgstr "&Jazyk" #: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "&Nový projekt" -#: src/slic3r/GUI/ConfigWizard.cpp:1983 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "&Další>" @@ -230,7 +230,7 @@ msgstr "&Otevřít projekt" #: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" -msgstr "Vložit" +msgstr "Vloži&t" #: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" @@ -238,15 +238,15 @@ msgstr "&Panel Podložka" #: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" -msgstr "Nastavení" +msgstr "Nas&tavení" #: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" -msgstr "&Ukončit" +msgstr "Ukonči&t" #: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" -msgstr "Vp&řed" +msgstr "&Vpřed" #: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" @@ -254,21 +254,21 @@ msgstr "Op&ravit soubor STL" #: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" -msgstr "Uložit projekt" +msgstr "&Uložit projekt" #: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" -msgstr "Vybrat vše" +msgstr "Vybrat &vše" #: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "&Zpět" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" msgstr "&Zobrazení" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" msgstr "&Okno" @@ -280,19 +280,19 @@ msgstr "(Všechny)" msgid "(minimum)" msgstr "(minimálně)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "(Znovu)Slicovat" #: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" -msgstr "(Znovu) S&licovat" +msgstr "&(Znovu) Slicovat" -#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(Neznámý)" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ") nebyl nalezen." @@ -308,7 +308,7 @@ msgstr "0.2 (oddělitelné)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4108 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "Zobrazení 3D editoru" @@ -316,36 +316,36 @@ msgstr "Zobrazení 3D editoru" msgid "3D Honeycomb" msgstr "3D Plástev" -#: src/slic3r/GUI/Mouse3DController.cpp:291 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "Nastavení 3DConnexion" -#: src/slic3r/GUI/Plater.cpp:5068 +#: src/slic3r/GUI/Plater.cpp:5038 #, c-format msgid "3MF file exported to %s" msgstr "Soubor 3MF byl exportován do %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1982 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "<&Zpět" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:287 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Logický výraz může používat konfigurační hodnoty aktivního profilu tiskárny. Pokud je tento logický výraz pravdivý, potom je tento profil považován za kompatibilní s aktivním profilem tiskárny." -#: src/libslic3r/PrintConfig.cpp:262 +#: src/libslic3r/PrintConfig.cpp:272 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Logický výraz může používat konfigurační hodnoty aktivního profilu tiskárny. Pokud je tento logický výraz pravdivý, potom je tento profil považován za kompatibilní s aktivním profilem tiskárny." -#: src/slic3r/GUI/ConfigWizard.cpp:1035 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Obecným pravidlem je 160 až 230 °C pro PLA a 215 až 250 °C pro ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:1049 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Obecným pravidlem je 60 °C pro PLA a 110 °C pro ABS. Zadejte nula, pokud nemáte vyhřívanou podložku." -#: src/slic3r/GUI/GLCanvas3D.cpp:691 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "Byla detekována dráha mimo tiskovou oblast" @@ -354,7 +354,7 @@ msgstr "Byla detekována dráha mimo tiskovou oblast" msgid "About %s" msgstr "O %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:964 +#: src/slic3r/GUI/GLCanvas3D.cpp:959 #, c-format msgid "above %.2f mm" msgstr "nad %.2f mm" @@ -363,11 +363,11 @@ msgstr "nad %.2f mm" msgid "Above Z" msgstr "Nad Z" -#: src/slic3r/GUI/Tab.cpp:1166 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "Kontrola akcelerací (pokročilé)" -#: src/libslic3r/PrintConfig.cpp:2916 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Accuracy" msgstr "Přesnost" @@ -379,19 +379,19 @@ msgstr "Aktivovat" msgid "Active" msgstr "Aktivní" -#: src/slic3r/GUI/DoubleSlider.cpp:1103 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 msgid "active" msgstr "aktivní" -#: src/slic3r/GUI/GLCanvas3D.cpp:272 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "Adaptivní" -#: src/slic3r/GUI/Tab.cpp:243 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "Přidat novou tiskárnu" -#: src/libslic3r/PrintConfig.cpp:2773 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "Pod podepíraný model přidá podložku" @@ -399,47 +399,47 @@ msgstr "Pod podepíraný model přidá podložku" msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Přidá pouzdro (jednu obvodovou čáru) kolem podpěr. Díky tomu je podpora spolehlivější, ale také obtížnější na odstranění." -#: src/slic3r/GUI/DoubleSlider.cpp:989 +#: src/slic3r/GUI/DoubleSlider.cpp:991 msgid "Add another code - Ctrl + Left click" msgstr "Přidat další kód - Ctrl + Levé kliknutí" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:992 msgid "Add another code - Right click" msgstr "Přidání jiného kódu - Pravé tlačítko" -#: src/slic3r/GUI/DoubleSlider.cpp:1449 +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "Přidat změnu barvy" -#: src/slic3r/GUI/DoubleSlider.cpp:1148 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "Přidat změnu barvy (%1%) pro:" -#: src/slic3r/GUI/DoubleSlider.cpp:959 +#: src/slic3r/GUI/DoubleSlider.cpp:988 msgid "Add color change - Left click" msgstr "Přidat změnu barvy - Levé tlačítko myši" -#: src/slic3r/GUI/DoubleSlider.cpp:957 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" msgstr "Přidat změnu barvy - Levé tlačítko myši pro předdefinovanou barvu, nebo Shift + Levé tlačítko myši pro výběr vlastní barvy" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "Přidat značku změny barvy pro aktuální vrstvu" -#: src/slic3r/GUI/DoubleSlider.cpp:1462 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "Přidat vlastní G-code" -#: src/slic3r/GUI/GLCanvas3D.cpp:245 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "Přidat detail" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 msgid "Add drainage hole" msgstr "Přidání odtokového otvoru" -#: src/slic3r/GUI/DoubleSlider.cpp:955 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "Add extruder change - Left click" msgstr "Přidat změnu extruderu - Levé tlačítko myši" @@ -447,22 +447,22 @@ msgstr "Přidat změnu extruderu - Levé tlačítko myši" msgid "Add extruder to sequence" msgstr "Přidat extruder do seznamu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "Přidání obecného Dílčího objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "Přidání Rozsahu vrstev" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 -#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" msgstr "Přidat instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Add Instance of the selected object" msgstr "Přidat instanci vybraného objektu" @@ -470,7 +470,7 @@ msgstr "Přidat instanci vybraného objektu" msgid "Add layer range" msgstr "Přidat rozsah vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "Přidat Vrstvy" @@ -483,7 +483,7 @@ msgstr "Přidat modifikátor" msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Přidání více perimetrů, pokud je potřeba, pro vyvarování se tvorbě mezer v šikmých plochách. Slic3r pokračuje v přidávání perimetrů, dokud není podepřeno více než 70% perimetrů v následující vrstvě." -#: src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" msgstr "Přidejte jednu nebo více instancí vybraného objektu" @@ -491,48 +491,48 @@ msgstr "Přidejte jednu nebo více instancí vybraného objektu" msgid "Add part" msgstr "Přidat díl" -#: src/slic3r/GUI/DoubleSlider.cpp:1459 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "Přidat pozastavení tisku" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "Přidat bod" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "Přidat bod k výběru" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "Přidat nastavení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "Přidání Skupiny nastavení pro Výškový rozsah" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "Přidání skupiny nastavení pro Objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "Přidání skupiny nastavení pro Dílčí objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "Přidání nastavení pro Vrstvy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "Přidání nastavení pro Objekty" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "Přidání nastavení pro Dílčí objeky" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "Přidat Tvar" @@ -548,27 +548,27 @@ msgstr "Přidat blokátor podpěr" msgid "Add support enforcer" msgstr "Přidat vynucení podpěr" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "Přidání podpěrného bodu" -#: src/slic3r/GUI/GLCanvas3D.cpp:4516 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "Přidat..." -#: src/slic3r/GUI/PresetBundle.cpp:1697 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "Přidání / Odebrání filamentů" -#: src/slic3r/GUI/Preset.cpp:1151 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "Přidání / Odebrání materiálů" -#: src/slic3r/GUI/Preset.cpp:1153 +#: src/slic3r/GUI/Preset.cpp:1203 msgid "Add/Remove printers" msgstr "Přidat/Odebrat tiskárny" -#: src/slic3r/GUI/Tab.cpp:972 +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "Doplňující informace:" @@ -576,7 +576,7 @@ msgstr "Doplňující informace:" msgid "Additional Settings" msgstr "Další nastavení" -#: src/slic3r/GUI/ConfigWizard.cpp:790 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Dále je před nainstalováním aktualizace vytvořena záloha veškerého nastavení." @@ -584,18 +584,19 @@ msgstr "Dále je před nainstalováním aktualizace vytvořena záloha veškeré msgid "Address" msgstr "Adresa" -#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 -#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 -#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 -#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "Pokročilý" -#: src/slic3r/GUI/ConfigWizard.cpp:822 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "Pokročilý režim" @@ -611,15 +612,15 @@ msgstr "Pokročilý:  Výstupní log" msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Po výměně nástroje nemusí být známa přesná poloha nově zavedeného filamentu uvnitř trysky a tlak filamentu pravděpodobně ještě není stabilní. Před vyčištěním tiskové hlavy do výplně nebo do objektu bude Slic3r toto množství materiálu vždy vytlačovat do čistící věže, aby se spolehlivě vytvořily následné výplně nebo objekty." -#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-code po změně vrstvy" -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "Zarovnejte model s daným bodem." -#: src/libslic3r/PrintConfig.cpp:3382 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "Zarovnat XY" @@ -628,19 +629,15 @@ msgid "Aligned" msgstr "Zarovnaný" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3158 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "Všechny" -#: src/libslic3r/Print.cpp:1215 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "Všechny objekty jsou mimo tiskový prostor." -#: src/slic3r/GUI/Plater.cpp:3298 -msgid "All objects will be removed, continue ?" -msgstr "Všechny objekty budou odebrány, pokračovat?" - -#: src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "All objects will be removed, continue?" msgstr "Všechny objekty budou odebrány, pokračovat?" @@ -652,15 +649,15 @@ msgstr "Všechny běžné" msgid "allocation failed" msgstr "alokace selhala" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "Podél osy X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "Podél osy Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "Podél osy Z" @@ -668,12 +665,12 @@ msgstr "Podél osy Z" msgid "Alternate nozzles:" msgstr "Alternativní trysky:" -#: src/slic3r/GUI/Plater.cpp:5022 +#: src/slic3r/GUI/Plater.cpp:5002 #, c-format msgid "AMF file exported to %s" msgstr "Soubor AMF byl exportován do %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:690 msgid "" "An object outside the print area was detected\n" "Resolve the current problem to continue slicing" @@ -681,15 +678,15 @@ msgstr "" "Byl detekován objekt mimo tiskovou oblast\n" "Pro pokračování ve slicování vyřešte tento problém" -#: src/slic3r/GUI/GLCanvas3D.cpp:690 +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "Byl detekován objekt mimo tiskovou oblast" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "a má neuložené následující změny:" -#: src/slic3r/GUI/Plater.cpp:3154 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "V současné době běží jiná úloha exportu." @@ -698,7 +695,7 @@ msgstr "V současné době běží jiná úloha exportu." msgid "Any arrow" msgstr "Šipky" -#: src/slic3r/GUI/Tab.cpp:967 +#: src/slic3r/GUI/Tab.cpp:965 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Jakékoliv úpravy by měly být uloženy jako nové přednastavení zděděná z tohoto." @@ -711,7 +708,7 @@ msgid "Application preferences" msgstr "Nastavení aplikace" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "Aplikovat změny" @@ -728,7 +725,7 @@ msgid "archive is too large" msgstr "archiv je moc velký" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3107 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "Opravdu chcete %1% vybrané přednastavení?" @@ -740,11 +737,11 @@ msgstr "" "Opravdu chcete ukončit nahrávání firmware?\n" "Tiskárna může zůstat v nefunkčním stavu!" -#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 msgid "Are you sure you want to continue?" msgstr "Opravdu chcete pokračovat?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "Opravdu to chcete udělat?" @@ -752,50 +749,54 @@ msgstr "Opravdu to chcete udělat?" msgid "Area fill" msgstr "Zaplněná plocha" -#: src/slic3r/GUI/Plater.cpp:638 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "Okolo objektu" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "Uspořádat" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "Uspořádat výběr" -#: src/libslic3r/PrintConfig.cpp:3428 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Uspořádejte modely na tiskovou podložku a slučte je do jednoho modelu, abyste s nimi mohli provádět akce jednou." -#: src/slic3r/GUI/Plater.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "Uspořádávání" -#: src/slic3r/GUI/Plater.cpp:2825 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "Uspořádávání zrušeno." -#: src/slic3r/GUI/Plater.cpp:2826 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "Uspořádávání dokončeno." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "Šipka dolů" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "Šipka vlevo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "Šipka vpravo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "Šipka nahoru" @@ -803,8 +804,8 @@ msgstr "Šipka nahoru" msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Řešením může být spuštění PrusaSliceru se softwarovým vykreslováním 3D grafiky a to spuštěním prusa-slicer.exe s parametrem --sw_renderer." -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 -#: src/slic3r/GUI/Tab.cpp:2944 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "Pozor!" @@ -817,16 +818,16 @@ msgid "Auto-center parts" msgstr "Auto-centrování objektů" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "Automatické generování bodů" -#: src/slic3r/GUI/Plater.cpp:1154 +#: src/slic3r/GUI/Plater.cpp:1157 #, c-format msgid "Auto-repaired (%d errors)" msgstr "Automaticky opraveno (%d chyb)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:337 +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 #, c-format msgid "Auto-repaired (%d errors):" msgstr "Automaticky opraveno ( %d chyb):" @@ -835,19 +836,19 @@ msgstr "Automaticky opraveno ( %d chyb):" msgid "Autodetected" msgstr "Automaticky detekováno" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "Automatické generování podpěrných bodů" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "Automatické generování vymaže všechny ručně vytvořené body." -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "Automatické generování" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "Automatické aktualizace" @@ -855,19 +856,19 @@ msgstr "Automatické aktualizace" msgid "Automatically repair an STL file" msgstr "Automaticky opravit STL soubor" -#: src/slic3r/GUI/Tab.cpp:1173 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "Automatická rychlost (pokročilé)" -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "Vyhnout se přejíždění perimetrů" -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "ŠIPKA ZPĚT" -#: src/slic3r/GUI/Tab.cpp:3274 +#: src/slic3r/GUI/Tab.cpp:3290 msgid "" "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" "Click to reset all settings for the current option group to the last saved preset." @@ -875,7 +876,7 @@ msgstr "" "Ikona ŠIPKY ZPĚT indikuje, že došlo ke změně nastavení, které není shodné s naposledy uloženým přednastavením pro aktuální skupinu nastavení.\n" "Klikněte pro reset všech nastavení pro aktuální skupinu nastavení na naposledy uložené přednastavení." -#: src/slic3r/GUI/Tab.cpp:3288 +#: src/slic3r/GUI/Tab.cpp:3304 msgid "" "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" "Click to reset current value to the last saved preset." @@ -887,7 +888,7 @@ msgstr "" msgid "Background processing" msgstr "Zpracování na pozadí" -#: src/slic3r/GUI/GUI_ObjectList.cpp:349 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "zadní okraje" @@ -895,7 +896,7 @@ msgstr "zadní okraje" msgid "based on Slic3r" msgstr "založený na Slic3r" -#: src/slic3r/GUI/Tab.cpp:1441 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "Tisková podložka" @@ -907,7 +908,7 @@ msgstr "Vlastní model podložky" msgid "Bed custom texture" msgstr "Vlastní textura podložky" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "Tvar tiskové podložky" @@ -915,23 +916,23 @@ msgstr "Tvar tiskové podložky" msgid "Bed shape" msgstr "Tvar tiskové podložky" -#: src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "Tvar a rozměr podložky" -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "Teplota tiskové podložky" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Teplota tiskové podložky pro další vrstvy po první vrstvě. Nastavením na hodnotu nula vypnete ovládací příkazy teploty tiskové podložky ve výstupu." -#: src/slic3r/GUI/ConfigWizard.cpp:1052 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "Teplota tiskové podložky:" -#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "G-code před změnou vrstvy" @@ -939,7 +940,7 @@ msgstr "G-code před změnou vrstvy" msgid "Before roll back" msgstr "Před vrácením zpět" -#: src/slic3r/GUI/Plater.cpp:637 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "Pod objektem" @@ -947,27 +948,27 @@ msgstr "Pod objektem" msgid "Below Z" msgstr "Pod Z" -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "G-code mezi objekty" -#: src/slic3r/GUI/Tab.cpp:2004 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "G-code mezi objekty (pro sekvenční tisk)" -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "Objem láhve" -#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "Hmotnost láhve" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 -#: src/libslic3r/PrintConfig.cpp:173 +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "Zespod" @@ -975,15 +976,15 @@ msgstr "Zespod" msgid "Bottom fill pattern" msgstr "Vzor spodní výplně" -#: src/slic3r/GUI/PresetHints.cpp:338 +#: src/slic3r/GUI/PresetHints.cpp:342 msgid "Bottom is open." msgstr "Spodní část je otevřená." -#: src/slic3r/GUI/PresetHints.cpp:332 +#: src/slic3r/GUI/PresetHints.cpp:336 msgid "Bottom shell is %1% mm thick for layer height %2% mm." msgstr "Tloušťka spodní skořepiny je %1% mm při výšce vrstvy %2% mm." -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "Plné spodní vrstvy" @@ -991,37 +992,37 @@ msgstr "Plné spodní vrstvy" msgid "Bottom View" msgstr "Pohled zespod" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "Kostka" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "Most" -#: src/libslic3r/PrintConfig.cpp:212 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "Poměr průtoku při vytváření mostů" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Výplň mostů" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "Mosty" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "Rychlost ventilátoru při vytváření mostů" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "Úhel vytváření mostů" -#: src/libslic3r/PrintConfig.cpp:194 +#: src/libslic3r/PrintConfig.cpp:204 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Přepsání úhlu vytváření mostů. Nastavením hodnoty na nulu se bude úhel vytváření mostů vypočítávat automaticky. Při zadání jiného úhlu, bude pro všechny mosty použitý zadaný úhel. Pro nulový úhel zadejte 180°." @@ -1029,16 +1030,16 @@ msgstr "Přepsání úhlu vytváření mostů. Nastavením hodnoty na nulu se bu msgid "Bridging volumetric" msgstr "Volumetrická hodnota mostů" -#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "Límec" -#: src/libslic3r/PrintConfig.cpp:234 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "Šířka límce" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1719 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "Procházet" @@ -1054,15 +1055,15 @@ msgstr "Barvy pro textové popisky a tlačítka" msgid "by the print profile maximum" msgstr "maximem pro profil tisku" -#: src/slic3r/GUI/Preferences.cpp:115 +#: src/slic3r/GUI/Preferences.cpp:113 msgid "Camera" msgstr "Kamera" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "Pohled kamery" -#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Zrušit" @@ -1071,11 +1072,11 @@ msgstr "Zrušit" msgid "Cancel selected" msgstr "Zrušit vybrané" -#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Zrušeno" -#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Zrušení" @@ -1083,15 +1084,15 @@ msgstr "Zrušení" msgid "Cancelling..." msgstr "Ukončování..." -#: src/libslic3r/Flow.cpp:55 +#: src/libslic3r/Flow.cpp:61 msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." msgstr "Nelze vypočítat šířku extrudování pro %1%: Proměnná \"%2%\" není dostupná." -#: src/slic3r/GUI/Tab.cpp:3057 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "Nelze přepsat systémový profil." -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "Nelze přepsat externí profil." @@ -1099,7 +1100,7 @@ msgstr "Nelze přepsat externí profil." msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Nelze pokračovat bez podpěrných bodů! Přidejte podpěrné body nebo zakažte generování podpěr." -#: src/slic3r/GUI/Tab.cpp:1832 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "Možnosti" @@ -1107,39 +1108,39 @@ msgstr "Možnosti" msgid "Capture a configuration snapshot" msgstr "Vytvořit aktuální zálohu konfigurace" -#: src/libslic3r/PrintConfig.cpp:3409 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "Střed" -#: src/libslic3r/PrintConfig.cpp:3410 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "Vycentrujte tisk kolem daného středu." -#: src/slic3r/GUI/Tab.cpp:1726 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Soubory s certifikátem (*.crt, *.pem)|*.crt;*.pem|Všechny soubory|*.*" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 msgid "Change camera type (perspective, orthographic)" msgstr "Změna typu kamery (perspektivní, ortografická)" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 msgid "Change drainage hole diameter" msgstr "Změna poloměru odtokového otvoru" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "Změnit extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "Změnit Extruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1113 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Change extruder (N/A)" msgstr "Změnit extruder (N/A)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "Změnit Extrudery" @@ -1148,19 +1149,19 @@ msgstr "Změnit Extrudery" msgid "Change Option %s" msgstr "Změna parametru %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "Změna typu části" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "Změna průměru hrotu" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "Změní počet instancí vybraného objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "Změnit typ" @@ -1172,7 +1173,7 @@ msgstr "Changelog && Stažení" msgid "Changing of an application language" msgstr "Změnit jazyk aplikace" -#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Zkontrolovat aktualizace aplikace" @@ -1182,13 +1183,13 @@ msgstr "Zkontrolujte aktualizace konfigurace" #: src/slic3r/GUI/GUI_App.cpp:802 msgid "Check for updates" -msgstr "Zkontrolovat aktualizace" +msgstr "Zkontrolovat akt&ualizace" #: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Vyberte soubor, ze kterého chcete importovat texturu pro tiskovou podložku (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:775 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Zvolit soubor ke slicování (STL/OBJ/AMF/3MF/PRUSA):" @@ -1208,7 +1209,7 @@ msgstr "Vyberte jeden soubor (3MF/AMF):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Vyberte jeden nebo více souborů (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:896 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "Vyberte typ firmware používaný vaší tiskárnou." @@ -1216,23 +1217,23 @@ msgstr "Vyberte typ firmware používaný vaší tiskárnou." msgid "Circular" msgstr "Kruhový" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "Stiskem pravého tlačítka myši se zobrazí Historie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:402 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "Klepnutím na ikonu změníte příznak objektu, zda se bude tisknout či nikoliv" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "Pro změnu nastavení objektu klikněte na ikonu" -#: src/slic3r/GUI/Plater.cpp:340 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "Klikněte pro editaci přednastavení" -#: src/libslic3r/PrintConfig.cpp:242 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "Připnutí objektů z více částí k sobě" @@ -1242,25 +1243,25 @@ msgid "Clipping of view" msgstr "Řezová rovina" #: src/slic3r/GUI/FirmwareDialog.cpp:852 -#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Zavřít" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 msgid "Closing distance" msgstr "Vzdálenost uzavření" -#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 -#: src/libslic3r/PrintConfig.cpp:582 +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Barva" -#: src/slic3r/GUI/DoubleSlider.cpp:972 +#: src/slic3r/GUI/DoubleSlider.cpp:1005 msgid "Color change (\"%1%\")" msgstr "Změna barvy (\"%1%\")" -#: src/slic3r/GUI/DoubleSlider.cpp:973 +#: src/slic3r/GUI/DoubleSlider.cpp:1006 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Změna barvy (\"%1%\") pro Extruder %2%" @@ -1269,12 +1270,12 @@ msgstr "Změna barvy (\"%1%\") pro Extruder %2%" msgid "Color change for Extruder %d at %.2f mm" msgstr "Změna barvy pro extruder %d ve výšce %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 #: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Barevný tisk" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "Výška barevného tisku" @@ -1294,23 +1295,23 @@ msgstr "Příkazy" msgid "Comment:" msgstr "Komentář:" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "Kompatibilní tiskové profily" -#: src/libslic3r/PrintConfig.cpp:276 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "Stav kompatibilních tiskových profilů" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "Kompatibilní tiskárny" -#: src/libslic3r/PrintConfig.cpp:261 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "Stav kompatibilních tiskáren" -#: src/libslic3r/PrintConfig.cpp:294 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "Dokončení individuálních objektů" @@ -1326,15 +1327,15 @@ msgstr "komprese se nezdařila" msgid "Concentric" msgstr "Koncentrická" -#: src/slic3r/GUI/ConfigWizard.cpp:2113 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "Průvodce n&astavením" -#: src/slic3r/GUI/ConfigWizard.cpp:2116 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" -msgstr "Průvodce nastavením" +msgstr "Průvodce &nastavením" -#: src/slic3r/GUI/ConfigWizard.cpp:2112 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "Průvodce nastavení tiskárny" @@ -1354,15 +1355,11 @@ msgstr "Aktualizace nastavení" msgid "Configuration update is available" msgstr "Je k dispozici aktualizace nastavení" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Configuration update is necessary to install" -msgstr "Je nutné nainstalovat aktualizaci konfigurace." - #: src/slic3r/GUI/UpdateDialogs.cpp:303 msgid "Configuration updates" msgstr "Aktualizace konfigurace" -#: src/slic3r/GUI/ConfigWizard.cpp:2115 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "Průvodce nastavením" @@ -1370,11 +1367,11 @@ msgstr "Průvodce nastavením" msgid "Confirmation" msgstr "Potvrzení" -#: src/slic3r/GUI/Tab.cpp:1929 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "Připojení selhalo." -#: src/slic3r/GUI/Tab.cpp:3612 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "Spojení podpůrných tyčí a spojek" @@ -1394,7 +1391,7 @@ msgstr "Připojení k FlashAir funguje správně a nahrávání je povoleno." msgid "Connection to OctoPrint works correctly." msgstr "Připojení k OctoPrint pracuje správně." -#: src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "Připojení k tiskárně pracuje správně." @@ -1410,11 +1407,11 @@ msgstr "Mezera mezi podpěrami a objektem v ose Z" msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Příspěvky od Henrika Brixa Andersena, Nicolase Dandrimonta, Marka Hindessa, Petra Ledviny, Josefa Lenoxe, Y. Sapira, Mika Sheldrakeho, Vojtěcha Bubnika a mnoha dalších." -#: src/libslic3r/PrintConfig.cpp:2650 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Řídí typ mostu mezi dvěma sousedními sloupky. Může být zig-zag, cross (dvojitý zig-zag) nebo dynamic, který automaticky přepíná mezi prvními dvěma v závislosti na vzdálenosti dvou sloupků." -#: src/slic3r/GUI/Tab.cpp:1446 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "Chlazení" @@ -1426,19 +1423,23 @@ msgstr "Chladicí pohyby se postupně zrychlují a začínají touto rychlostí. msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Chladící pohyby se postupně zrychlují až k této rychlosti." -#: src/slic3r/GUI/Tab.cpp:1467 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "Podmínky chlazení" -#: src/libslic3r/PrintConfig.cpp:317 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "Délka chladící trubičky" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "Pozice chladící trubičky" -#: src/slic3r/GUI/GLCanvas3D.cpp:4554 +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "Kopie vybraného modelu" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "Kopírovat" @@ -1446,7 +1447,7 @@ msgstr "Kopírovat" msgid "Copy selection to clipboard" msgstr "Kopírovat výběr do schránky" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 msgid "Copy to clipboard" msgstr "Kopírovat do schránky" @@ -1454,36 +1455,48 @@ msgstr "Kopírovat do schránky" msgid "Copy to Clipboard" msgstr "Kopírovat do Schránky" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "Kopírování dočasného G-codu bylo dokončeno, ale exportovaný G-code nemohl být během kontroly kopírování otevřen. Výstupní G-cod je v %1%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "Kopírování dočasného G-codu bylo dokončeno, ale původní G-code na %1% nemohl být během kontroly kopírování otevřen. Výstupní G-code je v %2%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Kopírování dočasného G-codu do výstupního G-codu selhalo" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Kopírování dočasného G-codu do výstupního G-codu se nezdařilo. Není SD karta chráněná proti zápisu?" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "Kopírování dočasného G-codu do výstupního G-codu se nezdařilo. Může to být problém s cílovým zařízením. Zkuste exportovat znovu nebo použijte jiné zařízení. Poškozený výstupní G-code je v %1%.tmp." + #: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Autorská práva" -#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "Korekce expanze" -#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "Korekce" -#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "Náklady" -#: src/slic3r/GUI/Plater.cpp:241 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "Cena (peníze)" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Objekty nelze uspořádat! Některé geometrie mohou být neplatné." @@ -1507,7 +1520,7 @@ msgstr "Nelze se spojit s OctoPrintem" msgid "Could not connect to Prusa SLA" msgstr "Nelze se připojit k Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1689 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "Nelze získat platný odkaz na tiskový server" @@ -1527,15 +1540,15 @@ msgstr "Praskliny menší než 2x poloměr uzavření mezery se vyplní během s msgid "CRC-32 check failed" msgstr "CRC-32 kontrola selhala" -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "Vytvoří podložku kolem objektu a ignorujte nadzvednutí objektu podpěrami" -#: src/libslic3r/PrintConfig.cpp:2715 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "Kritický úhel" -#: src/libslic3r/PrintConfig.cpp:2659 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "Cross" @@ -1548,11 +1561,11 @@ msgstr "Kubická" msgid "Current mode is %s" msgstr "Aktuální režim je %s" -#: src/slic3r/GUI/Tab.cpp:959 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "Aktuální nastavení je zděděno z výchozího nastavení." -#: src/slic3r/GUI/Tab.cpp:962 +#: src/slic3r/GUI/Tab.cpp:960 #, c-format msgid "" "Current preset is inherited from:\n" @@ -1565,11 +1578,7 @@ msgstr "" msgid "Current version:" msgstr "Aktuální verze:" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "Rozhraní (mm)" - -#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Vlastní" @@ -1578,18 +1587,14 @@ msgstr "Vlastní" msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Pro HTTPS připojení OctoPrintu lze zadat vlastní CA certifikát ve formátu crt/pem. Pokud zůstane pole prázdné, použije se výchozí úložiště certifikátů OS CA." -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "Vlastní G-code" -#: src/slic3r/GUI/DoubleSlider.cpp:1591 +#: src/slic3r/GUI/DoubleSlider.cpp:1619 msgid "Custom G-code on current layer (%1% mm)." msgstr "Vlastní G-code v současné vrstvě (%1% mm)." -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "Vlastní G-code v současné vrstvě (%1% mm)." - #: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Vlastní tiskárna" @@ -1603,19 +1608,19 @@ msgid "Custom profile name:" msgstr "Vlastní název profilu:" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "Řezat" -#: src/slic3r/GUI/Plater.cpp:4801 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "Řez Rovinou" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "Rozříznout model v dané výšce Z." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "Válec" @@ -1623,11 +1628,11 @@ msgstr "Válec" msgid "D&eselect all" msgstr "Odznačit vš&e" -#: src/libslic3r/PrintConfig.cpp:3489 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "Složka Data" -#: src/slic3r/GUI/Mouse3DController.cpp:332 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "Mrtvá zóna:" @@ -1635,23 +1640,23 @@ msgstr "Mrtvá zóna:" msgid "decompression failed or archive is corrupted" msgstr "dekomprese selhala nebo je archiv poškozen" -#: src/slic3r/GUI/Plater.cpp:4735 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" msgstr "Odebrání Instancí" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "Výchozí" -#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 #: src/slic3r/GUI/ObjectDataViewModel.cpp:490 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "výchozí" @@ -1663,53 +1668,53 @@ msgstr "Výchozí úhel pro orientaci výplně. Bude pro něj použito křížov msgid "Default extrusion width" msgstr "Výchozí šířka extruze" -#: src/slic3r/GUI/Tab.cpp:989 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "výchozí profil filamentu" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "Výchozí profil filamentu" -#: src/libslic3r/PrintConfig.cpp:336 +#: src/libslic3r/PrintConfig.cpp:346 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Výchozí materiálový profil spojený se současným profilem tiskárny. Při výběru současného profilu tiskárny se aktivuje tento materiálový profil." -#: src/slic3r/GUI/Tab.cpp:2903 +#: src/slic3r/GUI/Tab.cpp:2919 #, c-format msgid "Default preset (%s)" msgstr "Výchozí přednastavení (%s)" -#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "Výchozí barva tisku" -#: src/slic3r/GUI/Tab.cpp:986 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "výchozí tiskový profil" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "Výchozí tiskový profil" -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 -#: src/libslic3r/PrintConfig.cpp:2594 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Výchozí tiskový profil spojený se současným profilem tiskárny. Při výběru současného profilu tiskárny se aktivuje tento tiskový profil." -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "výchozí profil pro SLA materiál" -#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "Výchozí profil pro SLA materiál" -#: src/slic3r/GUI/Tab.cpp:1007 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "výchozí SLA tiskový profil" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "výchozí hodnota" @@ -1717,11 +1722,11 @@ msgstr "výchozí hodnota" msgid "Define a custom printer profile" msgstr "Vytvořit vlastní tiskový profil" -#: src/libslic3r/PrintConfig.cpp:2789 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Definuje hloubku dutiny. Chcete-li dutinu vypnout, nastavte ji na nulu. Při povolování této funkce buďte opatrní, protože některé pryskyřice mohou způsobit extrémní sací efekt uvnitř dutiny, což ztěžuje odlupování tisku z fólie ve vaničce." -#: src/slic3r/GUI/GUI_ObjectList.cpp:344 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "degenerace facetů" @@ -1729,13 +1734,13 @@ msgstr "degenerace facetů" msgid "Delay after unloading" msgstr "Zpoždění po vyjmutí" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "smazat" -#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "Smazat" @@ -1743,51 +1748,40 @@ msgstr "Smazat" msgid "Delete &all" msgstr "Sm&azat vše" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "Smazat vše" - -#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "Smazat vše" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "Smazat všechny instance objektu" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "Smazat změnu barvy" -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "Smazat změnu barvy pro Extruder %1%" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "Odebrat značku změny barvy pro aktuální vrstvu" -#: src/slic3r/GUI/DoubleSlider.cpp:1491 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "Smazat vlastní G-code" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 msgid "Delete drainage hole" msgstr "Odstranění odtokového otvoru" -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "Smazat změnu extruderu na \"%1%\"" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "Odstranění Rozsahu vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" msgstr "Smazání Instance" -#: src/slic3r/GUI/Plater.cpp:2696 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "Smazat Objekt" @@ -1796,47 +1790,47 @@ msgstr "Smazat Objekt" msgid "Delete Option %s" msgstr "Odebrání parametru %s" -#: src/slic3r/GUI/DoubleSlider.cpp:1490 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "Odebrat pozastavení tisku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Delete selected" msgstr "Smazat vybrané" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "Smazání vybraných" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "Smazat vybrané položky" -#: src/slic3r/GUI/Plater.cpp:4692 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "Odstranit vybrané objekty" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "Smazat Nastavení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "Smazání dílčího objektu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "Odebrání podpěrného bodu" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "Smazat přednastavení" -#: src/slic3r/GUI/DoubleSlider.cpp:1001 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "Smazat značku - Levé tlačítko myši nebo klávesa \"-\"" -#: src/slic3r/GUI/DoubleSlider.cpp:1489 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete tool change" msgstr "Smazat změnu nástroje" @@ -1848,8 +1842,8 @@ msgstr "Smazat všechny objekty" msgid "Deletes the current selection" msgstr "Smaže aktuální výběr" -#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 -#: src/libslic3r/PrintConfig.cpp:2495 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "Hustota" @@ -1857,9 +1851,9 @@ msgstr "Hustota" msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Hustota vnitřní výplně, vyjádřená v rozmezí 0% až 100%." -#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "Závislosti" @@ -1871,7 +1865,7 @@ msgstr "Rychlost deretrakce" msgid "Deselect all" msgstr "Odznačit vše" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "Odznačit obdélníkovým výběrem myši" @@ -1891,15 +1885,15 @@ msgstr "Detekuje stěny o tloušťce jedné čáry (části, kam se dvě čáry msgid "Detect thin walls" msgstr "Detekovat tenké zdi" -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Rozpoznat nepřipojené části daného modelu(ů) a rozdělit je do samostatných objektů." -#: src/slic3r/GUI/Plater.cpp:2352 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "Byla detekována data z pokročilého režimu" -#: src/slic3r/GUI/Mouse3DController.cpp:306 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "Zařízení:" @@ -1907,15 +1901,15 @@ msgstr "Zařízení:" msgid "Diameter" msgstr "Průměr" -#: src/libslic3r/PrintConfig.cpp:2685 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "Průměr základny podpěr v mm" -#: src/libslic3r/PrintConfig.cpp:2641 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "Průměr podpěrných sloupů v mm" -#: src/libslic3r/PrintConfig.cpp:2613 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "Průměr konce podpůrného hrotu" @@ -1927,7 +1921,7 @@ msgstr "Průměr tiskové podložky. Přepokládaný počátek (0,0) je umístě msgid "Direction" msgstr "Směr" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "Vypnutí chlazení pro prvních" @@ -1935,24 +1929,20 @@ msgstr "Vypnutí chlazení pro prvních" msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Vypne retrakce, pokud dráha nepřekročí perimetr vrchní vrstvy (a proto bude pravděpodobně jakékoliv odkapávání neviditelné)." -#: src/slic3r/GUI/DoubleSlider.cpp:925 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "Odstranit všechny vámi provedené změny" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "Zahodit změny" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "Zahodit změny a pokračovat?" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "Posunutí (mm)" - -#: src/slic3r/GUI/Tab.cpp:2076 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "Displej" @@ -1980,7 +1970,7 @@ msgstr "Vertikální zrcadlení displeje" msgid "Display width" msgstr "Šířka displeje" -#: src/libslic3r/PrintConfig.cpp:367 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "Vzdálenost mezi kopiemi" @@ -1988,7 +1978,7 @@ msgstr "Vzdálenost mezi kopiemi" msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Vzdálenost mezi obrysem a objektem (objekty). Nastavte tuto hodnotu na nulu, pro sloučení obrysu s předmětem (předměty) a tvorbu límce pro dosažení lepší přilnavosti." -#: src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Rozteč mezi dvěmi spojkami, které spojují objekt s vygenerovanou podložkou." @@ -2000,7 +1990,7 @@ msgstr "Vzdálenost od objektu" msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Vzdálenost souřadnice 0,0 G-code od předního levého rohu obdélníku." -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Vzdálenost ze středu chladící trubičky ke špičce extruderu." @@ -2008,19 +1998,19 @@ msgstr "Vzdálenost ze středu chladící trubičky ke špičce extruderu." msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Vzdálenost špičky extruderu od místa, kde je zaparkován filament při vytažení. Měla by se shodovat s hodnotou ve firmware tiskárny." -#: src/libslic3r/PrintConfig.cpp:368 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Vzdálenost, použitá pro funkci automatického rozmístění po podložce." -#: src/libslic3r/PrintConfig.cpp:3471 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Nepodaří se, pokud neexistuje soubor dodaný k přepínači --load." -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Nepřeuspořádávejte modely před sloučením a tím ponecháním jejich původních souřadnic v XY." -#: src/slic3r/GUI/Field.cpp:235 +#: src/slic3r/GUI/Field.cpp:240 #, c-format msgid "" "Do you mean %s%% instead of %s %s?\n" @@ -2039,7 +2029,7 @@ msgstr "Chcete automaticky vybrat výchozí filamenty?" msgid "Do you want to automatic select default materials?" msgstr "Chcete automaticky vybrat výchozí materiály?" -#: src/slic3r/GUI/DoubleSlider.cpp:1893 +#: src/slic3r/GUI/DoubleSlider.cpp:1920 msgid "Do you want to delete all saved tool changes?" msgstr "Opravdu chcete odstranit všechny uložené změny nástrojů?" @@ -2047,15 +2037,15 @@ msgstr "Opravdu chcete odstranit všechny uložené změny nástrojů?" msgid "Do you want to proceed?" msgstr "Chcete pokračovat?" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "Do you want to retry" msgstr "Chcete to zkusit znovu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "Chcete uložit ručně upravené podpěrné body?" -#: src/libslic3r/PrintConfig.cpp:3414 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "Neuspořádávat" @@ -2063,7 +2053,7 @@ msgstr "Neuspořádávat" msgid "Don't notify about new releases any more" msgstr "Neupozorňovat na nové verze" -#: src/libslic3r/PrintConfig.cpp:359 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "Nevytvářet podpěry pod mosty" @@ -2071,17 +2061,17 @@ msgstr "Nevytvářet podpěry pod mosty" msgid "Downgrade" msgstr "Downgrade" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "Tažení" -#: src/libslic3r/SLAPrintSteps.cpp:42 +#: src/libslic3r/SLAPrintSteps.cpp:44 msgid "Drilling holes into model." -msgstr "Vrtání otvorů do modelu" +msgstr "Vrtání otvorů do modelu." -#: src/libslic3r/SLAPrintSteps.cpp:163 +#: src/libslic3r/SLAPrintSteps.cpp:199 msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." msgstr "Vrtání otvorů do meshe selhalo. Je to obvykle způsobené poškozeným modelem. Zkuste ho nejprve opravit." @@ -2090,11 +2080,11 @@ msgstr "Vrtání otvorů do meshe selhalo. Je to obvykle způsobené poškozený msgid "Drop to bed" msgstr "Spadnout na podložku" -#: src/libslic3r/PrintConfig.cpp:3418 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "Duplikovat" -#: src/libslic3r/PrintConfig.cpp:3423 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "Duplikovat mřížkou" @@ -2102,51 +2092,51 @@ msgstr "Duplikovat mřížkou" msgid "During the other layers, fan" msgstr "V průběhu ostatních vrstev, ventilátor" -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "Dynamic" -#: src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "E&xportovat" -#: src/slic3r/GUI/GUI_ObjectList.cpp:345 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "hrany opraveny" -#: src/slic3r/GUI/DoubleSlider.cpp:1480 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "Upravit barvu" -#: src/slic3r/GUI/DoubleSlider.cpp:933 +#: src/slic3r/GUI/DoubleSlider.cpp:960 msgid "Edit current color - Right click the colored slider segment" msgstr "Upravit aktuální barvu - Klik pravým tlačítkem na barevný segment posuvníku" -#: src/slic3r/GUI/DoubleSlider.cpp:1482 +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "Upravit vlastní G-code" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "Úprava Rozsahu vrstev" -#: src/slic3r/GUI/DoubleSlider.cpp:1481 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "Upravit zprávu při pozastavení tisku" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 msgid "Edit tick mark - Ctrl + Left click" msgstr "Upravit značku - Ctrl + Levé tlačítko myši" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1038 msgid "Edit tick mark - Right click" msgstr "Upravit značku - Pravé tlačítko myši" -#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "Editace" -#: src/libslic3r/PrintConfig.cpp:375 +#: src/libslic3r/PrintConfig.cpp:118 msgid "Elephant foot compensation" msgstr "Kompenzace rozplácnutí první vrstvy" @@ -2166,12 +2156,12 @@ msgstr "Vkládání M73 P[počet vytištěných procent] R[zbývající čas v m msgid "Empty layers detected, the output would not be printable." msgstr "Byly detekovány prázdné vrstvy, model by nebylo možné vytisknout." -#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 #: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Zapnout" -#: src/libslic3r/PrintConfig.cpp:303 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "Zapnutí automatického chlazení" @@ -2179,7 +2169,7 @@ msgstr "Zapnutí automatického chlazení" msgid "Enable fan if layer print time is below" msgstr "Zapnout ventilátor, pokud je doba tisku vrstvy kratší než" -#: src/libslic3r/PrintConfig.cpp:2899 +#: src/libslic3r/PrintConfig.cpp:2908 msgid "Enable hollowing" msgstr "Povolit tvorbu dutin" @@ -2207,7 +2197,7 @@ msgstr "Zapnout variabilní výšku vrstev" msgid "Enable vertical mirroring of output images" msgstr "Zapne vertikální zrcadlení výstupních obrázků" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "Konec G-code" @@ -2229,39 +2219,39 @@ msgstr "Zařazeno do fronty" msgid "Ensure vertical shell thickness" msgstr "Zajistit tloušťku svislých stěn" -#: src/slic3r/GUI/DoubleSlider.cpp:1590 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "Vložte vlastní G-code použitý v této vrstvě" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "Zadejte nový název" -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "Zpráva, která se zobrazí displeji tiskárny při pozastavení tisku" - -#: src/slic3r/GUI/DoubleSlider.cpp:1606 +#: src/slic3r/GUI/DoubleSlider.cpp:1634 msgid "Enter short message shown on Printer display when a print is paused" msgstr "Zadejte krátkou zprávu, která se zobrazí na displeji tiskárny při pozastavení tisku" -#: src/slic3r/GUI/ConfigWizard.cpp:1048 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Zadejte požadovanou teplotu filamentu, aby se spojil s vyhřívanou podložkou." -#: src/slic3r/GUI/ConfigWizard.cpp:980 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "Zadejte průměr vašeho filamentu." -#: src/slic3r/GUI/ConfigWizard.cpp:967 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Zadejte průměr trysky hotendu vaší tiskárny." -#: src/slic3r/GUI/DoubleSlider.cpp:1622 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 msgid "Enter the height you want to jump to" msgstr "Zadejte výšku, na kterou chcete přejít" -#: src/slic3r/GUI/ConfigWizard.cpp:1034 +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "Zadejte počet kopií:" + +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "Zadejte požadovanou teplotu pro extruzi vašeho filamentu." @@ -2277,7 +2267,7 @@ msgstr "Zde zadejte hustotu filamentu. Toto je pouze pro statistické informace. msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Zde zadejte průměr filamentu. Je zapotřebí správné přesnosti, proto použijte šupleru a proveďte několik měření podél filamentu, poté vypočtete průměr." -#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Chyba" @@ -2287,16 +2277,16 @@ msgstr "Chyba" msgid "Error accessing port at %s: %s" msgstr "Chyba při přístupu k portu na %s : %s" -#: src/slic3r/GUI/Plater.cpp:3441 +#: src/slic3r/GUI/Plater.cpp:3433 msgid "Error during reload" msgstr "Chyba při opětovném načtení souboru" -#: src/slic3r/GUI/Plater.cpp:5073 +#: src/slic3r/GUI/Plater.cpp:5043 #, c-format msgid "Error exporting 3MF file %s" msgstr "Chyba při exportu souboru 3MF %s" -#: src/slic3r/GUI/Plater.cpp:5025 +#: src/slic3r/GUI/Plater.cpp:5005 #, c-format msgid "Error exporting AMF file %s" msgstr "Chyba při exportu souboru AMF %s" @@ -2305,7 +2295,7 @@ msgstr "Chyba při exportu souboru AMF %s" msgid "Error Message" msgstr "Chybová hláška" -#: src/slic3r/GUI/AppConfig.cpp:118 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Chyba při načítání konfiguračního souboru PrusaSliceru. Soubor je pravděpodobně poškozen. Zkuste soubor ručně smazat . Vaše uživatelské profily nebudou ovlivněny." @@ -2317,7 +2307,7 @@ msgstr "Chyba při nahrávání do tiskového serveru:" msgid "Error with zip archive" msgstr "Chyba v zip archivu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "Chyba!" @@ -2334,12 +2324,12 @@ msgstr "Chyba: %s" msgid "ERROR: not enough resources to execute a new job." msgstr "CHYBA: nedostatek prostředků ke spuštění nové úlohy." -#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 -#: src/slic3r/GUI/Plater.cpp:1255 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "Odhadovaný čas tisku" -#: src/slic3r/GUI/Plater.cpp:499 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "Všude" @@ -2351,7 +2341,7 @@ msgstr "s výjimkou prvních %1% vrstev." msgid "except for the first layer." msgstr "vyjma první vrstvy." -#: src/libslic3r/Print.cpp:1373 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Příliš velká hodnota proměnné %1% =%2% mm pro tisk s průměrem trysky %3% mm" @@ -2360,7 +2350,7 @@ msgstr "Příliš velká hodnota proměnné %1% =%2% mm pro tisk s průměrem tr msgid "Exit %s" msgstr "Ukončit %s" -#: src/libslic3r/PrintConfig.cpp:361 +#: src/libslic3r/PrintConfig.cpp:371 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Experimentální nastavení pro zabránění tvorbě podpěr v oblastech po mosty." @@ -2372,7 +2362,7 @@ msgstr "Experimentální volba pro nastavení průtoku pro přesahy (použije se msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/ConfigWizard.cpp:823 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "Expertní režim" @@ -2380,7 +2370,7 @@ msgstr "Expertní režim" msgid "Expert View Mode" msgstr "Režim Expert" -#: src/slic3r/GUI/Plater.cpp:5555 +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "Exportovat" @@ -2388,7 +2378,7 @@ msgstr "Exportovat" msgid "Export &Config" msgstr "Exportovat Konfigura&ci" -#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" msgstr "Exportovat &G-code" @@ -2396,7 +2386,7 @@ msgstr "Exportovat &G-code" msgid "Export &toolpaths as OBJ" msgstr "Exportovat &trasy extruderu jako OBJ" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "Exportovat 3MF" @@ -2404,15 +2394,15 @@ msgstr "Exportovat 3MF" msgid "Export all presets to file" msgstr "Exportovat všechna přednastavení do souboru" -#: src/libslic3r/PrintConfig.cpp:3328 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "Exportovat AMF" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "Exportovat AMF soubor:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "Exportovat jako STL" @@ -2444,7 +2434,7 @@ msgstr "Exportovat stávající plochu jako STL" msgid "Export current plate as STL including supports" msgstr "Exportovat stávající plochu včetně podpěr jako STL" -#: src/slic3r/GUI/Plater.cpp:3673 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "Exportování selhalo" @@ -2452,21 +2442,20 @@ msgstr "Exportování selhalo" msgid "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Exportovat úplné zdrojové cesty modelů a dílů do souborů 3mf a amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 -#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "Exportovat G-code" -#: src/libslic3r/PrintConfig.cpp:3305 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "Exportovat OBJ" -#: src/slic3r/GUI/Plater.cpp:2594 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "Exportovat OBJ soubor:" -#: src/slic3r/Utils/FixModelByWin10.cpp:369 -#: src/slic3r/Utils/FixModelByWin10.cpp:374 +#: src/slic3r/Utils/FixModelByWin10.cpp:368 msgid "Export of a temporary 3mf file failed" msgstr "Export dočasného 3MF souboru selhalo" @@ -2482,43 +2471,43 @@ msgstr "Exportovat plochu jako &STL" msgid "Export plate as STL &including supports" msgstr "Exportovat t&iskovou plochu včetně podpěr jako STL" -#: src/libslic3r/PrintConfig.cpp:3317 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "Exportovat SLA" -#: src/slic3r/GUI/Preferences.cpp:73 +#: src/slic3r/GUI/Preferences.cpp:72 msgid "Export sources full pathnames to 3mf and amf" msgstr "Exportovat absolutní cesty k 3mf a amf souborům" -#: src/libslic3r/PrintConfig.cpp:3333 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "Exportovat STL" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "Exportovat STL soubor:" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "Exportovat model(y) jako 3MF." -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "Exportovat model(y) jako AMF." -#: src/libslic3r/PrintConfig.cpp:3306 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "Exportovat model(y) jako OBJ." -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "Exportovat model(y) jako STL." -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "Exportovat vybrané objekty jako STL soubor" -#: src/slic3r/GUI/Plater.cpp:877 +#: src/slic3r/GUI/Plater.cpp:880 msgid "Export to SD card / Flash drive" msgstr "Export na SD kartu / Flash disk" @@ -2526,7 +2515,7 @@ msgstr "Export na SD kartu / Flash disk" msgid "Export toolpaths as OBJ" msgstr "Exportovat trasy extruderu jako OBJ" -#: src/libslic3r/Print.cpp:1634 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "Exportování souboru G-code" @@ -2543,15 +2532,15 @@ msgstr "Exportování zdrojového modelu" msgid "Exposition time is out of printer profile bounds." msgstr "Doba osvitu je mimo rozsah profilu tiskárny." -#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "Osvit" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "Doba osvitu" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Vnější perimetr" @@ -2579,23 +2568,23 @@ msgstr "Extra délka při zavádění" msgid "Extra perimeters if needed" msgstr "Extra perimetry (pokud jsou potřeba)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 #: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 -#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 -#: src/libslic3r/GCode/PreviewData.cpp:445 +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 #, c-format msgid "Extruder %d" msgstr "Extruder %d" -#: src/slic3r/GUI/DoubleSlider.cpp:978 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Extruder (nástroj) se změní na Extruder \"%1%\"" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "Teploty extruderu a podložky" @@ -2603,7 +2592,7 @@ msgstr "Teploty extruderu a podložky" msgid "Extruder changed to" msgstr "Extruder změněn na" -#: src/slic3r/GUI/Tab.cpp:1235 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "Kolizní oblast extruderu (mm)" @@ -2623,8 +2612,8 @@ msgstr "Teplota extruderu pro první vrstvu. Chcete-li během tisku ručně ovl msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Teplota extruderu pro následující vrstvy po vrstvě první. Nastavte tuto hodnotu na nulu, abyste zakázali příkazy pro řízení teploty na výstupu." -#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 @@ -2639,15 +2628,15 @@ msgstr "Osa extruderu" msgid "Extrusion multiplier" msgstr "Násobič extruze" -#: src/slic3r/GUI/ConfigWizard.cpp:1038 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "Teplota extruze:" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "Šířka extruze" -#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 #: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 #: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 #: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 @@ -2655,23 +2644,23 @@ msgstr "Šířka extruze" msgid "Extrusion Width" msgstr "Šíře extruze" -#: src/slic3r/GUI/Plater.cpp:164 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "Facety" -#: src/slic3r/GUI/GUI_ObjectList.cpp:347 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "facety přidány" -#: src/slic3r/GUI/GUI_ObjectList.cpp:346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "facety odebrány" -#: src/slic3r/GUI/GUI_ObjectList.cpp:348 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "facety otočeny" -#: src/libslic3r/PrintConfig.cpp:2508 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "Vrstvy počátečního osvitu" @@ -2691,11 +2680,11 @@ msgstr "Zpracování šablony output_filename_format selhalo." msgid "Fan" msgstr "Ventilátor" -#: src/slic3r/GUI/Tab.cpp:1458 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "Nastavení ventilátoru" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "Rychlost ventilátoru" @@ -2715,33 +2704,33 @@ msgstr "Rychlý náklon" msgid "Fatal error" msgstr "Fatální chyba" -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 #: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Typ" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "Typy extruzí" -#: src/slic3r/GUI/ConfigWizard.cpp:1528 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "Tiskárny technologie FFF" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 -#: src/slic3r/GUI/Tab.cpp:1428 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1472 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "filament" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "Průměr filamentu a trysky" -#: src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "Průměr filamentu:" @@ -2757,7 +2746,7 @@ msgstr "Doba zavádění filamentu" msgid "Filament notes" msgstr "Poznámky k filamentu" -#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "Přepsání globálních hodnot" @@ -2765,15 +2754,15 @@ msgstr "Přepsání globálních hodnot" msgid "Filament parking position" msgstr "Parkovací pozice filamentu" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "Výběr Filamentových Profilů" -#: src/slic3r/GUI/Tab.cpp:1473 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "Vlastnosti filamentu" -#: src/slic3r/GUI/Tab.hpp:354 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "Nastavení filamentu" @@ -2789,7 +2778,7 @@ msgstr "Doba vysouvání filamentu" msgid "filaments" msgstr "filamenty" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "Filamenty" @@ -2801,7 +2790,7 @@ msgstr "zavření souboru selhalo" msgid "file create failed" msgstr "vytvoření souboru selhalo" -#: src/slic3r/GUI/MainFrame.cpp:793 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "Soubor nenalezen" @@ -2865,7 +2854,7 @@ msgstr "Nastavte vzor pro horní výplň. Ovlivňuje pouze horní viditelnou vrs msgid "Finished" msgstr "Dokončeno" -#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "Firmware" @@ -2877,11 +2866,11 @@ msgstr "Aktualizace firmware" msgid "Firmware image:" msgstr "Soubor s firmware:" -#: src/slic3r/GUI/Tab.cpp:2573 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "Firmware Retrakce" -#: src/slic3r/GUI/ConfigWizard.cpp:892 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "Typ firmware" @@ -2894,7 +2883,7 @@ msgstr "První vrstva" msgid "First layer height" msgstr "Výška první vrstvy" -#: src/libslic3r/Print.cpp:1418 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "Výška první vrstvy nesmí být větší než průměr trysky" @@ -2906,11 +2895,11 @@ msgstr "Rychlost první vrstvy" msgid "First layer volumetric" msgstr "Volumetrická hodnota první vrstvy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "Opravit pomocí služby Netfabb" -#: src/slic3r/GUI/Plater.cpp:3482 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "Opravit pomocí Netfabb" @@ -2942,7 +2931,7 @@ msgstr "Probíhá nahrávání firmware. Prosím neodpojujte tiskárnu!" msgid "Flashing succeeded!" msgstr "Nahrávání bylo úspěšné!" -#: src/slic3r/GUI/Tab.cpp:1220 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "Průtok" @@ -2950,44 +2939,16 @@ msgstr "Průtok" msgid "flow rate is maximized" msgstr "průtok je maximalizován" -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "Pro přidání dalšího kódu klikněte pravým tlačítkem myši" - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "Pro přidání změny extruderu stiskněte levé tlačítko myši" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "Pro přidání změny barvy stiskněte levé tlačítko myši" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "" -"For Delete \"%1%\" code use left mouse button click\n" -"For Edit \"%1%\" code use right mouse button click" -msgstr "" -"Pro Odstranění \"%1%\" kódu stiskněte levé tlačítko myši\n" -"Pro Editaci \"%1%\" kódu stiskněte pravé tlačítko myši" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "" -"For Delete color change use left mouse button click\n" -"For Edit color use right mouse button click" -msgstr "" -"Pro smazání změny barvy klikněte levým tlačítkem myši\n" -"Pro výběr barvy klikněte pravým tlačítkem myši" - #: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Pro více informací prosím navštivte naší wiki stránku:" -#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "Pouze pro vynucené podpěry" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3249 +#: src/slic3r/GUI/Tab.cpp:3265 msgid "" "for the left button: \tindicates a non-system (or non-default) preset,\n" "for the right button: \tindicates that the settings hasn't been modified." @@ -3003,13 +2964,13 @@ msgstr "" "U čistící věže pokud pracujte s rozpustnými materiály, je třeba\n" "synchronizovat vrstvy podpěr s vrstvami objektů." -#: src/libslic3r/Print.cpp:1392 +#: src/libslic3r/Print.cpp:1396 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "" "U čistící věže pokud pracujte s rozpustnými materiály, je třeba\n" "synchronizovat vrstvy podpěr s vrstvami objektů." -#: src/libslic3r/PrintConfig.cpp:2855 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "Vynutit podložku všude okolo objektů" @@ -3025,7 +2986,7 @@ msgstr "Vynucení vytváření pevných skořepin mezi sousedními materiály/ob msgid "From" msgstr "Předchozí extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "Ze seznamu objektů nemůžete smazat poslední část objektu." @@ -3037,15 +2998,15 @@ msgstr "Zepředu" msgid "Front View" msgstr "Pohled zepředu" -#: src/slic3r/GUI/Tab.cpp:1015 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "celé jméno profilu" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/DoubleSlider.cpp:987 +#: src/slic3r/GUI/DoubleSlider.cpp:1021 msgid "" "G-code associated to this tick mark is in a conflict with print mode.\n" "Editing it will cause changes of Slider data." @@ -3053,7 +3014,7 @@ msgstr "" "G-code na této značce je v rozporu s tiskovým režimem.\n" "Editace způsobí změny v posuvníku." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "G-code byl exportován do %1%" @@ -3065,17 +3026,17 @@ msgstr "Druh G-code" msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2496 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 #: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Výplň tenkých stěn" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 -#: src/slic3r/GUI/Tab.cpp:2038 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "Obecné" @@ -3091,23 +3052,23 @@ msgstr "Generovat podpěry" msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Vygeneruje podpěry pro zadaný počet vrstev počítaných od spodního okraje, bez ohledu na to, zda jsou povoleny standartní podpěry nebo nikoliv a bez ohledu na jakýkoli prah úhlu. To je užitečné pro získání větší přilnavosti předmětů s velmi tenkou nebo špatnou stopou na tiskové podložce." -#: src/libslic3r/PrintConfig.cpp:2604 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "Generovat podpěry" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "Generovat podpěry modelů" -#: src/libslic3r/Print.cpp:1610 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "Generování límce" -#: src/libslic3r/Print.cpp:1638 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "Generování G-code" -#: src/libslic3r/SLAPrintSteps.cpp:46 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "Generování podložky" @@ -3115,7 +3076,7 @@ msgstr "Generování podložky" msgid "Generating perimeters" msgstr "Generování perimetrů" -#: src/libslic3r/Print.cpp:1602 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "Generování obrysových smyček" @@ -3123,35 +3084,35 @@ msgstr "Generování obrysových smyček" msgid "Generating support material" msgstr "Generování podpěr" -#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "Generování podpěrných bodů" -#: src/libslic3r/SLAPrintSteps.cpp:45 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "Generování podpěr typu strom" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "Obecný" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 msgid "Gizmo cut" msgstr "Gizmo řez" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 msgid "Gizmo move" msgstr "Gizmo posuv" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 msgid "Gizmo Place face on bed" msgstr "Gizmo Umístit plochou na podložku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 msgid "Gizmo rotate" msgstr "Gizmo rotace" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 msgid "Gizmo scale" msgstr "Gizmo měřítko" @@ -3159,25 +3120,25 @@ msgstr "Gizmo měřítko" msgid "Gizmo SLA hollow" msgstr "Gizmo SLA dutina" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 msgid "Gizmo SLA support points" msgstr "Gizmo SLA podpěrné body" -#: src/slic3r/GUI/GLCanvas3D.cpp:2945 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "Gizmo-Posuv" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "Gizmo-Umístit plochou na podložku" -#: src/slic3r/GUI/GLCanvas3D.cpp:3025 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "Gizmo-Otáčení" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "Gizmo-Měřítko" @@ -3189,7 +3150,7 @@ msgstr "Gizma" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, verze 3" -#: src/slic3r/GUI/ConfigWizard.cpp:981 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Je zapotřebí velká přesnost, proto použijte posuvné měřítko (šupleru) a proveďte několik měření po délce filamentu, poté vypočítejte průměr." @@ -3197,11 +3158,11 @@ msgstr "Je zapotřebí velká přesnost, proto použijte posuvné měřítko (š msgid "Grid" msgstr "Mřížka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "Manipulace se skupinou" -#: src/slic3r/GUI/Preferences.cpp:137 +#: src/slic3r/GUI/Preferences.cpp:133 msgid "GUI" msgstr "GUI" @@ -3209,7 +3170,7 @@ msgstr "GUI" msgid "Gyroid" msgstr "Gyroid" -#: src/slic3r/GUI/Tab.cpp:2921 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "má neuložené následující změny:" @@ -3225,7 +3186,7 @@ msgstr "Průnik hrotu podpěry by neměl být větší než je tloušťka hrotu msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Teplota vyhřívané tiskové podložky pro první vrstvu. Nastavením tuto hodnoty na nulu vypnete příkazy pro řízení teploty ve vrstvě ve výstupu." -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Výška" @@ -3241,32 +3202,32 @@ msgstr "Výška obrysu vyjádřená ve vrstvách. Nastavte tuto hodnotu vysokou, msgid "Height of the display" msgstr "Výška displeje" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "Modifikátor Výškového rozsahu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "Výškové rozsahy" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "Výšky, při kterých má dojít ke změně filamentu." #: src/slic3r/GUI/ConfigWizard.cpp:433 #, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." -msgstr "Zdravím, vítejte v %s! Tento %s vám pomůže se základní konfigurací; jen několik nastavení a budete připraveni k tisku." +msgstr "Ahoj, vítejte v %su! Tento %s vám pomůže se základní konfigurací; jen několik nastavení a budete připraveni tisknout." -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "Nápověda" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "Nápověda (pro FFF)" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "Nápověda (pro SLA)" @@ -3278,7 +3239,7 @@ msgstr "Zde můžete upravit požadovaný objem čištění (mm³) pro kteroukol msgid "High extruder current on filament swap" msgstr "Zvýšený proud do extruderového motoru při výměně filamentu" -#: src/slic3r/GUI/GLCanvas3D.cpp:282 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 msgid "Higher print quality versus higher print speed." msgstr "Vyšší kvalita tisku versus vyšší rychlost tisku." @@ -3286,7 +3247,7 @@ msgstr "Vyšší kvalita tisku versus vyšší rychlost tisku." msgid "Hilbert Curve" msgstr "Hilbertova křivka" -#: src/slic3r/GUI/Plater.cpp:1039 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "Stiskni Shift pro Slicování & Export G-codu" @@ -3298,15 +3259,15 @@ msgstr "Hloubka otvoru" msgid "Hole diameter" msgstr "Průměr otvoru" -#: src/slic3r/GUI/Plater.cpp:2744 +#: src/slic3r/GUI/Plater.cpp:2760 msgid "Hollow" msgstr "Vydutit" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 msgid "Hollow and drill" msgstr "Vydutit a vyvrtat" -#: src/libslic3r/PrintConfig.cpp:2901 +#: src/libslic3r/PrintConfig.cpp:2910 msgid "Hollow out a model to have an empty interior" msgstr "Vyduťte model, abyste měli vnitřek prázdný" @@ -3314,60 +3275,48 @@ msgstr "Vyduťte model, abyste měli vnitřek prázdný" msgid "Hollow this object" msgstr "Vydutit tento objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 -#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 -#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 -#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 -#: src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 msgid "Hollowing" msgstr "Vytvoření dutiny" -#: src/libslic3r/PrintConfig.cpp:2916 -msgid "Hollowing accuracy" -msgstr "Přesnost" - -#: src/slic3r/GUI/Plater.cpp:2910 +#: src/slic3r/GUI/Plater.cpp:2926 msgid "Hollowing cancelled." msgstr "Vytváření dutiny bylo zrušeno." -#: src/libslic3r/PrintConfig.cpp:2925 -msgid "Hollowing closing distance" -msgstr "Vzdálenost uzavření" - -#: src/slic3r/GUI/Plater.cpp:2911 +#: src/slic3r/GUI/Plater.cpp:2927 msgid "Hollowing done." msgstr "Vydutění dokončeno." -#: src/slic3r/GUI/Plater.cpp:2913 +#: src/slic3r/GUI/Plater.cpp:2929 msgid "Hollowing failed." msgstr "Vydutění selhalo." -#: src/libslic3r/PrintConfig.cpp:2928 +#: src/libslic3r/PrintConfig.cpp:2937 msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." msgstr "Tvorba dutiny se provádí ve dvou krocích: nejprve se imaginární vnitřní stěna vypočítá hlouběji (offset plus vzdálenost uzavření) v objektu a poté se nafoukne zpět na zadaný offset. Díky větší vzdálenosti uzavření je vnitřek modelu zaoblenější. Při nulové hodnotě se vnitřek modelu nejvíce podobá vnějšku modelu." -#: src/libslic3r/SLAPrintSteps.cpp:41 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Hollowing model" msgstr "Vydutění modelu" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 msgid "Hollowing parameter change" msgstr "Změna parametru dutiny" -#: src/libslic3r/PrintConfig.cpp:2906 -msgid "Hollowing thickness" -msgstr "Tloušťka stěny" - #: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Plástev" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "Vodorovné stěny" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:245 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Šírka límce který bude vytištěn v první vrstvě okolo každého objektu." @@ -3387,7 +3336,7 @@ msgstr "Název serveru" msgid "Hostname, IP or URL" msgstr "Název serveru, IP nebo URL" -#: src/slic3r/GUI/Tab.cpp:141 +#: src/slic3r/GUI/Tab.cpp:139 msgid "" "Hover the cursor over buttons to find more information \n" "or click this button." @@ -3395,19 +3344,19 @@ msgstr "" "Pro více informací přejeďte kurzorem nad tlačítky\n" "nebo na tlačítko klikněte." -#: src/libslic3r/PrintConfig.cpp:2803 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "Jak široká má být podložka kolem geometrie" -#: src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Jak hluboko mají spojky proniknou do modelu." -#: src/libslic3r/PrintConfig.cpp:2622 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "Jak moc hrot podpěry pronikne do povrchu modelu" -#: src/libslic3r/PrintConfig.cpp:2746 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "O kolik mají podpěry nadzvednout podporovaný objekt. V případě zvolení možnosti \"Podložka okolo objektu\" bude tato hodnota ignorována." @@ -3419,7 +3368,7 @@ msgstr "Soubor HTTPS CA" msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "Soubor HTTPS CA je volitelný. Je nutný pouze pokud použijte HTTPS certifikát s vlastním podpisem." -#: src/slic3r/GUI/Tab.cpp:1755 +#: src/slic3r/GUI/Tab.cpp:1757 #, c-format msgid "" "HTTPS CA File:\n" @@ -3429,7 +3378,7 @@ msgstr "" "Soubor HTTPS CA:\n" "V tomto systému používá %s certifikáty HTTPS ze systému Certificate Store nebo Keychain. Chcete-li použít vlastní soubor CA, importujte soubor CA do Certificate Store / Keychain." -#: src/slic3r/GUI/Preferences.cpp:226 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "Velikost ikon vůči výchozí velikosti" @@ -3441,12 +3390,12 @@ msgstr "ID" msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Pokud je zaškrtnuto, budou podpěry generovány automaticky na základě prahové hodnoty převisu. Pokud není zaškrtnuto, bude podpěra generována pouze v místech, kde je umístěn objekt pro \"Vynucení podpěr\"." -#: src/slic3r/GUI/ConfigWizard.cpp:772 +#: src/slic3r/GUI/ConfigWizard.cpp:773 #, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Pokud je povoleno, kontroluje %s nově dostupné verze. V případě, že je nová verze k dispozici, zobrazí se notifikace při dalším startu programu (nikdy během užívání aplikace). Tento systém slouží pouze pro upozornění uživatele, nedochází k automatické instalaci." -#: src/slic3r/GUI/ConfigWizard.cpp:782 +#: src/slic3r/GUI/ConfigWizard.cpp:783 #, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Pokud je povoleno, stáhne %s na pozadí aktualizace vestavěných systémových přednastavení. Tyto aktualizace jsou staženy do dočasného umístění. Pokud je k dispozici nové přednastavení, zobrazí se upozornění při startu programu." @@ -3463,7 +3412,7 @@ msgstr "" "Pokud je povoleno, v případě vyžádání, umožňuje funkci „Znovu načíst z disku“ automaticky vyhledat a načíst soubory.\n" "Pokud není povoleno, funkce „Znovu načíst z disku“ požádá o zadání cest ke každému souboru pomocí dialogového okna." -#: src/slic3r/GUI/Preferences.cpp:75 +#: src/slic3r/GUI/Preferences.cpp:74 msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." msgstr "Pokud je povoleno, v případě vyžádání, umožňuje funkci „Znovu načíst z disku“ automaticky vyhledat a načíst soubory." @@ -3471,11 +3420,11 @@ msgstr "Pokud je povoleno, v případě vyžádání, umožňuje funkci „Znovu msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Pokud je povoleno, PrusaSlicer kontroluje nově dostupné verze programu. V případě, že je nová verze k dispozici, zobrazí se notifikace při dalším startu programu (nikdy během užívání aplikace). Tento systém slouží pouze pro upozornění uživatele, nedochází k automatické instalaci." -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Pokud je povoleno, stáhne Slic3r na pozadí aktualizace vestavěných systémových přednastavení. Tyto aktualizace jsou staženy do dočasného umístění. Pokud je k dispozici nové přednastavení, zobrazí se upozornění při startu programu." -#: src/slic3r/GUI/Preferences.cpp:108 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Pokud je tato volba povolena, bude 3D scéna vykreslena v rozlišení Retina. Pokud dochází k potížím s výkonem, zkuste tuto volbu vypnout." @@ -3483,15 +3432,15 @@ msgstr "Pokud je tato volba povolena, bude 3D scéna vykreslena v rozlišení Re msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Pokud je tato možnost povolena, nebude čistící věž vytištěna ve vrstvách bez změny barvy. U vrstev s výměnou sjede extruder směrem dolů a vytiskne vrstvu čistící věže. Uživatel je odpovědný za to, že nedojde ke kolizi tiskové hlavy s tiskem." -#: src/slic3r/GUI/Preferences.cpp:131 +#: src/slic3r/GUI/Preferences.cpp:128 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Pokud je zaškrtnuto, použije „free kameru“. Pokud není, použije „constrained kameru“." -#: src/slic3r/GUI/Preferences.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Pokud je zaškrtnuto, použije perspektivní kameru. Pokud není, použije ortografickou kameru." -#: src/slic3r/GUI/Preferences.cpp:149 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Pokud je zaškrtnuto, můžete nastavit velikost ikon na panelu nástrojů." @@ -3555,7 +3504,7 @@ msgstr "Pokud firmware nezpracovává umístění extruderu správně, potřebuj msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Pokud váš firmware vyžaduje relativní hodnoty E, zaškrtněte toto, jinak nechte nezaškrtnuté. Většina firmwarů používá absolutní hodnoty." -#: src/libslic3r/PrintConfig.cpp:3470 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "Ignorovat neexistující konfigurační soubory" @@ -3575,15 +3524,15 @@ msgstr "Načíst konfiguraci z &projektu" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Načíst konfiguraci ze souboru ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:4616 +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "Importovat Objekt" -#: src/slic3r/GUI/Plater.cpp:4620 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "Importovat Objekty" -#: src/slic3r/Utils/FixModelByWin10.cpp:390 +#: src/slic3r/Utils/FixModelByWin10.cpp:383 msgid "Import of the repaired 3mf file failed" msgstr "Import opraveného 3MF souboru selhal" @@ -3591,15 +3540,11 @@ msgstr "Import opraveného 3MF souboru selhal" msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importovat STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "Nahrát soubor STL/OBJ/AMF/3MF bez konfigurace (zachová stávající tiskovou plochu)" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importovat STL/OBJ/AMF/3MF bez konfigurace, zachová stávající podložku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 #, c-format msgid "In this mode you can select only other %s Items%s" msgstr "V tomto režimu můžete vybrat pouze jinou/jiný %s %s" @@ -3613,20 +3558,20 @@ msgstr "Nekompatibilní balíky:" msgid "Incompatible with this %s" msgstr "Nekompatibilní s tímto %s" -#: src/slic3r/GUI/Plater.cpp:4700 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" msgstr "Přidání Instancí" -#: src/slic3r/GUI/GLCanvas3D.cpp:269 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "Zvětšit / zmenšit oblast úprav" -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2922 msgid "Indexing hollowed object" msgstr "Indexování dutého objektu" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 +#: src/slic3r/GUI/Tab.cpp:3258 msgid "" "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" "Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." @@ -3635,22 +3580,22 @@ msgstr "" "Klikněte na ikonu ODEMKNUTÉHO ZÁMKU pro reset všech nastavení aktuální skupiny nastavení na systémové (nebo výchozí) hodnoty." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indikuje, že nastavení jsou stejná jako systémové (výchozí) hodnoty pro aktuální skupinu nastavení" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3254 +#: src/slic3r/GUI/Tab.cpp:3270 msgid "" "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" "Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "indikuje, že došlo ke změně nastavení, které není shodné s naposledy uloženým přednastavením pro aktuální skupinu nastavení. Klikněte na ikonu ŠIPKY ZPĚT pro reset všech nastavení pro aktuální skupinu nastavení na naposledy uložené přednastavení." #: src/slic3r/GUI/ConfigManipulation.cpp:211 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 -#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 -#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 #: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 @@ -3676,12 +3621,12 @@ msgstr "Extruder pro výplň" msgid "Infill/perimeters overlap" msgstr "Přesah pro výplň/perimetry" -#: src/libslic3r/Print.cpp:1580 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "Generování výplně vrstev" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "Info" @@ -3693,15 +3638,15 @@ msgstr "Zdědí profil" msgid "Initial exposition time is out of printer profile bounds." msgstr "Doba počátečního osvitu je mimo rozsah profilu tiskárny." -#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "Doba počátečního osvitu" -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "Výška první vrstvy" -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "Zadaná hodnota je mimo rozsah" @@ -3715,7 +3660,7 @@ msgstr "Zkontrolovat / aktivovat zálohy konfigurace" msgid "Instance %d" msgstr "Instance %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "Manipulace s instancí objektu" @@ -3723,8 +3668,8 @@ msgstr "Manipulace s instancí objektu" msgid "Instances" msgstr "Instance" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "Změna instance na samostatný objekt" @@ -3748,11 +3693,11 @@ msgstr "Mezilehlé stěny" msgid "internal error" msgstr "interní chyba" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Vnitřní výplň" -#: src/slic3r/GUI/Plater.cpp:3090 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "Neplatná data" @@ -3773,7 +3718,7 @@ msgstr "Neplatný průnik podpěry do modelu" msgid "invalid header or archive is corrupted" msgstr "neplatná hlavička nebo je archiv poškozen" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Neplatný číselný vstup." @@ -3791,15 +3736,11 @@ msgstr "Průměr hrotu podpěry je neplatný" msgid "is licensed under the" msgstr "je licencován pod" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Is necessary to install a configuration update. " -msgstr "Je nutné nainstalovat aktualizaci konfigurace." - -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "není kompatibilní s tiskovým profilem" -#: src/slic3r/GUI/Tab.cpp:2924 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "není kompatibilní s tiskárnou" @@ -3811,11 +3752,11 @@ msgstr "Izometrické" msgid "Iso View" msgstr "Izometrické zobrazení" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "Nelze smazat nebo upravit." -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "It is not allowed to change the file to reload" msgstr "Není možné změnit soubor, který má být znovu načten" @@ -3823,11 +3764,11 @@ msgstr "Není možné změnit soubor, který má být znovu načten" msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Může být užitečné zvýšit proud motoru extruderu během sekvence výměny filamentu, aby se umožnily vysoké rychlosti zavádění filamentu a aby se překonal odpor při zavádění filamentu s ošklivě tvarovanou špičkou." -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "SLA technologií nelze tisknout vícedílné objekty." -#: src/slic3r/GUI/Tab.cpp:2225 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "Ryv limity" @@ -3835,12 +3776,12 @@ msgstr "Ryv limity" msgid "Jitter" msgstr "Rozkmit (Jitter)" -#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 -#: src/slic3r/GUI/DoubleSlider.cpp:1623 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 msgid "Jump to height" msgstr "Přechod do výšky" -#: src/slic3r/GUI/DoubleSlider.cpp:928 +#: src/slic3r/GUI/DoubleSlider.cpp:955 #, c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "Přechod do výšky %s nebo Nastavení sekvence extruderů pro celý tisk" @@ -3853,7 +3794,7 @@ msgstr "Ventilátor vždy zapnutý" msgid "Keep lower part" msgstr "Zachovat spodní část" -#: src/slic3r/GUI/GLCanvas3D.cpp:309 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "Zachovat minima" @@ -3861,7 +3802,7 @@ msgstr "Zachovat minima" msgid "Keep upper part" msgstr "Zachovat horní část" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "Klávesové zkratky" @@ -3869,7 +3810,7 @@ msgstr "Klávesové zkratky" msgid "Keyboard shortcuts" msgstr "Klávesové zkratky" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" @@ -3889,57 +3830,57 @@ msgstr "Jazyk" msgid "Language selection" msgstr "Výběr jazyka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "Poslední instanci objektu nelze odstranit." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "Vrstva" #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Výška vrstvy" -#: src/libslic3r/Print.cpp:1423 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "Výška vrstvy nemůže být větší než je průměr trysky" -#: src/slic3r/GUI/Tab.cpp:2358 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "Výškové limity vrstvy" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "Výška vrstvy:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "Nastavení pro vrstvy v rozsahu" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 #: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 #: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 #: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "vrstva(y)" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 -#: src/slic3r/GUI/Tab.cpp:3585 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "Vrstvy" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "Vrstvy a perimetry" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 -#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 #: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 @@ -3953,16 +3894,12 @@ msgstr "Vrstvy a perimetry" msgid "Layers Slider" msgstr "Posuvníky" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 -msgid "Layers Slider Shortcuts" -msgstr "Posuvníky" - -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" msgstr "Spodních" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" msgstr "Vrchních" @@ -3971,13 +3908,13 @@ msgstr "Vrchních" msgid "Left" msgstr "Zleva" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "Levý klik" -#: src/slic3r/GUI/GLCanvas3D.cpp:242 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "Levé tlačítko myši:" @@ -3985,7 +3922,7 @@ msgstr "Levé tlačítko myši:" msgid "Left View" msgstr "Pohled zleva" -#: src/slic3r/GUI/GUI_Preview.cpp:259 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "Legenda" @@ -3993,7 +3930,7 @@ msgstr "Legenda" msgid "Length" msgstr "Vzdálenost" -#: src/libslic3r/PrintConfig.cpp:318 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Délka kovové trubičky určené pro ochlazení a zformování filamentu po vytažení z extruderu." @@ -4010,7 +3947,7 @@ msgstr "Zvednout Z" msgid "Line" msgstr "Čára" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "Načíst" @@ -4018,22 +3955,14 @@ msgstr "Načíst" msgid "Load a model" msgstr "Načíst model" -#: src/libslic3r/PrintConfig.cpp:3490 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Načtěte a uložte nastavení z/do daného adresáře. To je užitečné pro udržování různých profilů nebo konfigurací ze síťového úložiště." -#: src/libslic3r/PrintConfig.cpp:3474 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "Načíst konfigurační soubor" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "Načíst konfiguraci z .ini/amf/3mf/gcode" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "Načíst konfiguraci z .ini/amf/3mf/gcode a sloučit" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Načíst konfiguraci zesouboru ini/amf/3mf/gcode a sloučit" @@ -4042,7 +3971,7 @@ msgstr "Načíst konfiguraci zesouboru ini/amf/3mf/gcode a sloučit" msgid "Load configuration from project file" msgstr "Načíst konfiguraci z projektu" -#: src/libslic3r/PrintConfig.cpp:3475 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Načíst konfiguraci ze zadaného souboru. Může být použito vícekrát než jednou pro načtení z více souborů." @@ -4050,15 +3979,15 @@ msgstr "Načíst konfiguraci ze zadaného souboru. Může být použito vícekr msgid "Load exported configuration file" msgstr "Načíst exportovaný konfigurační soubor" -#: src/slic3r/GUI/Plater.cpp:1375 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "Načtení souboru" -#: src/slic3r/GUI/Plater.cpp:1379 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "Naštení souborů" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "Přidání části" @@ -4066,7 +3995,7 @@ msgstr "Přidání části" msgid "Load presets from a bundle" msgstr "Načíst přednastavení z balíku" -#: src/slic3r/GUI/Plater.cpp:4588 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "Načíst Projekt" @@ -4082,11 +4011,11 @@ msgstr "Načíst..." msgid "loaded" msgstr "zaváděn" -#: src/slic3r/GUI/Plater.cpp:2410 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "Načteno" -#: src/slic3r/GUI/Plater.cpp:2257 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "Načítání" @@ -4099,7 +4028,7 @@ msgid "Loading of current presets" msgstr "Načítání aktuálních předvoleb" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:378 msgid "Loading repaired model" msgstr "Načítaní opraveného modelu" @@ -4120,19 +4049,19 @@ msgstr "Lokální souřadnice" msgid "Lock supports under new islands" msgstr "Ukotvi podpěry pod novými ostrůvky" -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "ZAMČENÝ ZÁMEK" -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "Ikona ZAMKNUTÉHO ZÁMKU indikuje, že nastavení jsou stejná jako systémové (nebo výchozí) hodnoty pro aktuální skupinu nastavení" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "Ikona ZAMKNUTÉHO ZÁMKU indikuje, že hodnota je shodná se systémovou (výchozí) hodnotou." -#: src/libslic3r/PrintConfig.cpp:3493 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "Úroveň logování" @@ -4140,12 +4069,12 @@ msgstr "Úroveň logování" msgid "Loops (minimum)" msgstr "Smyček (minimálně)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 msgid "Lower Layer" msgstr "Nižší vrstva" -#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -4153,11 +4082,7 @@ msgstr "Nižší vrstva" msgid "Machine limits" msgstr "Limity stroje" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "Hlavní" - -#: src/slic3r/GUI/Plater.cpp:168 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "Model OK" @@ -4165,23 +4090,23 @@ msgstr "Model OK" msgid "Manual editing" msgstr "Manuální úprava" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "Soubor pro SLA byl exportován do %1%" -#: src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "Panel nastavení mate&riálu" -#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "Materiál" -#: src/slic3r/GUI/Tab.hpp:415 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "Nastavení materiálu" -#: src/slic3r/GUI/Plater.cpp:165 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "Materiálů" @@ -4189,15 +4114,15 @@ msgstr "Materiálů" msgid "Max" msgstr "Maximum" -#: src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "Maximální délka mostu" -#: src/libslic3r/PrintConfig.cpp:2813 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "Maximální vzdálenost pro sloučení" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "Max. vzdálenost propojení podpěr" @@ -4281,11 +4206,11 @@ msgstr "Maximální zrychlení Y" msgid "Maximum acceleration Z" msgstr "Maximální zrychlení Z" -#: src/slic3r/GUI/Tab.cpp:2218 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "Maximální zrychlení" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "Maximální doba osvitu" @@ -4321,11 +4246,11 @@ msgstr "Maximální rychlost posuvu Y" msgid "Maximum feedrate Z" msgstr "Maximální rychlost posuvu Z" -#: src/slic3r/GUI/Tab.cpp:2213 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "Maximální rychlosti posuvu" -#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "Maximální doba počátečního osvitu" @@ -4365,15 +4290,15 @@ msgstr "Maximální ryv Z" msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Maximální povolený objem průtoku pro tento filament. Omezuje maximální rychlost průtoku pro tisk až na minimální rychlost průtoku pro tisk a filament. Zadejte nulu pro nastavení bez omezení." -#: src/libslic3r/PrintConfig.cpp:3427 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "Sloučit" -#: src/libslic3r/PrintConfig.cpp:2674 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Sloučení mostů nebo podpěr do jiných podpěr může zvýšit poloměr. Hodnota 0 znamená žádné zvýšení, hodnota 1 znamená maximální zvýšení." -#: src/libslic3r/SLAPrintSteps.cpp:62 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "Slučování tiskových vrstev a výpočet statistik" @@ -4381,14 +4306,10 @@ msgstr "Slučování tiskových vrstev a výpočet statistik" msgid "Mesh repair failed." msgstr "Oprava meshe selhala." -#: src/slic3r/GUI/DoubleSlider.cpp:1607 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "Zpráva při pozastavení tisku na aktuální vrstvě ve výšce (%1% mm)." -#: src/libslic3r/PrintConfig.cpp:3120 -msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -msgstr "Zprávy se závažností nižší nebo rovnou úrovni logování budou vypsány. 0: trace, 1: debug, 2: info, 3: warning, 4: error, 5: fatal" - #: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Minimum" @@ -4401,7 +4322,7 @@ msgstr "Minimální rychlost tisku" msgid "min PrusaSlicer version" msgstr "min PrusaSlicer verze" -#: src/libslic3r/PrintConfig.cpp:2763 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "Minimální vzdálenost podpěrných bodů" @@ -4417,11 +4338,11 @@ msgstr "Minimální vzdálenost bodů" msgid "Minimal purge on wipe tower" msgstr "Minimální vytlačený objem na čistící věži" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:187 msgid "Minimum bottom shell thickness" msgstr "Minimální tloušťka spodní skořepiny" -#: src/slic3r/GUI/PresetHints.cpp:335 +#: src/slic3r/GUI/PresetHints.cpp:339 msgid "Minimum bottom shell thickness is %1% mm." msgstr "Minimální tloušťka spodní skořepiny je %1% mm." @@ -4429,7 +4350,7 @@ msgstr "Minimální tloušťka spodní skořepiny je %1% mm." msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Minimální rozlišení detailů, které se používají pro zjednodušení vstupního souboru pro urychlení slicovací úlohy a snížení využití paměti. Modely s vysokým rozlišením často obsahují více detailů než tiskárny dokážou vykreslit. Nastavte na nulu, chcete-li zakázat jakékoli zjednodušení a použít vstup v plném rozlišení." -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "Minimální doba osvitu" @@ -4441,15 +4362,15 @@ msgstr "Minimální rychlosti posuvu během extruze" msgid "Minimum feedrate when extruding (M205 S)" msgstr "Minimální rychlosti posuvu během extruze (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2230 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "Minimální rychlosti posuvu" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "Minimální doba počátečního osvitu" -#: src/slic3r/GUI/Tab.cpp:1071 +#: src/slic3r/GUI/Tab.cpp:1069 msgid "Minimum shell thickness" msgstr "Minimální tloušťka skořepiny" @@ -4461,7 +4382,7 @@ msgstr "Minimální tloušťka vrchní / spodní skořepiny" msgid "Minimum top shell thickness" msgstr "Minimální tloušťka vrchní skořepiny" -#: src/slic3r/GUI/PresetHints.cpp:316 +#: src/slic3r/GUI/PresetHints.cpp:320 msgid "Minimum top shell thickness is %1% mm." msgstr "Minimální tloušťka vrchní skořepiny je %1% mm." @@ -4477,15 +4398,15 @@ msgstr "Minimální rychlost při přesunu" msgid "Minimum travel feedrate (M205 T)" msgstr "Minimální rychlost při přesunu (M205 T)" -#: src/libslic3r/PrintConfig.cpp:2908 +#: src/libslic3r/PrintConfig.cpp:2917 msgid "Minimum wall thickness of a hollowed model." -msgstr "Minimální tloušťka stěny dutého modelu" +msgstr "Minimální tloušťka stěny dutého modelu." #: src/libslic3r/PrintConfig.cpp:2449 msgid "Minimum width of features to maintain when doing elephant foot compensation." msgstr "Minimální šířka prvků, které je třeba zachovat při provádění kompenzace rozplácnutí první vrstvy." -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "Zrcadlit" @@ -4493,23 +4414,23 @@ msgstr "Zrcadlit" msgid "Mirror horizontally" msgstr "Zrcadlit horizontálně" -#: src/slic3r/GUI/GLCanvas3D.cpp:2075 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "Zrcadlit Objekt" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "Zrcadlit vybraný objekt" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "Zrcadlit rozměr vybraného objektu podél osy X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "Zrcadlit rozměr vybraného objektu podél osy Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "Zrcadlit rozměr vybraného objektu podél osy Z" @@ -4526,21 +4447,21 @@ msgstr "Nesprávný typ tiskového serveru: % s" msgid "Mixed" msgstr "Smíšený" -#: src/libslic3r/PrintConfig.cpp:2482 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" #: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 #: src/slic3r/GUI/ObjectDataViewModel.cpp:94 #: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 #: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 -#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 -#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 -#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 #: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 #: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 #: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 @@ -4555,17 +4476,18 @@ msgstr "ml" #: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 #: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 #: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 -#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 #: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 -#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 -#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 -#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 -#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 -#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 -#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 -#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" @@ -4582,7 +4504,7 @@ msgstr "mm (nula pro vypnutí)" msgid "mm or %" msgstr "mm nebo %" -#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 #: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 #: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 #: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 @@ -4601,7 +4523,7 @@ msgstr "mm/s" msgid "mm/s or %" msgstr "mm/s nebo %" -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 #: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 #: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 #: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 @@ -4627,7 +4549,7 @@ msgstr "mm³/s²" #: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" -msgstr "Režim" +msgstr "Reži&m" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" @@ -4641,24 +4563,24 @@ msgstr "Model" msgid "Model fixing" msgstr "Opravování modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model Repair by the Netfabb service" msgstr "Oprava modelu službou Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:413 +#: src/slic3r/Utils/FixModelByWin10.cpp:406 msgid "Model repair canceled" msgstr "Oprava modelu byla zrušena" -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model repair failed:" msgstr "Oprava modelu selhala:" -#: src/slic3r/Utils/FixModelByWin10.cpp:407 +#: src/slic3r/Utils/FixModelByWin10.cpp:400 msgid "Model repair finished" msgstr "Oprava modelu byla dokončena" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 msgid "Model repaired successfully" msgstr "Model byl úspěšně opraven" @@ -4666,15 +4588,15 @@ msgstr "Model byl úspěšně opraven" msgid "modified" msgstr "upraveno" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "Modifikátor" -#: src/slic3r/GUI/Tab.cpp:1163 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "Modifikátory" -#: src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "cena/láhev" @@ -4682,11 +4604,11 @@ msgstr "cena/láhev" msgid "money/kg" msgstr "korun/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "Kolečko myši" -#: src/slic3r/GUI/GLCanvas3D.cpp:266 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "Kolečko myši:" @@ -4694,27 +4616,27 @@ msgstr "Kolečko myši:" msgid "Move" msgstr "Přesunout" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "Posunout řezovou rovinu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Move current slider thumb Down" msgstr "Posunout aktivní posuvník dolů" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Move current slider thumb Up" msgstr "Posunout aktivní posuvník nahoru" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 msgid "Move drainage hole" msgstr "Posun odtokového otvoru" -#: src/slic3r/GUI/GLCanvas3D.cpp:3538 +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "Posunutí Objektu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "Posunout bod" @@ -4734,7 +4656,7 @@ msgstr "Posun výběru o 10 mm v kladném směru osy X" msgid "Move selection 10 mm in positive Y direction" msgstr "Posun výběru o 10 mm v kladném směru osy Y" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "Posun podpěrného bodu" @@ -4750,7 +4672,7 @@ msgstr "Krok pro posun výběru o velikosti 1 mm" msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Multimateriálové tiskárny mohou potřebovat, aby při výměně nástrojů vyčistili extrudery. Vytlačí přebytečný materiál do čistící věže." -#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "Detekován objekt obsahující více částí" @@ -4759,11 +4681,11 @@ msgstr "Detekován objekt obsahující více částí" msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Bylo nalezeno více zařízení %s . Během flashování mějte připojené pouze jedno." -#: src/slic3r/GUI/Tab.cpp:1181 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "Více Extruderů" -#: src/slic3r/GUI/Plater.cpp:2394 +#: src/slic3r/GUI/Plater.cpp:2410 msgid "" "Multiple objects were loaded for a multi-material printer.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -4773,19 +4695,19 @@ msgstr "" "Mají být vloženy jako jeden objekt obsahující více částí, \n" "namísto vložení několika objektů?" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "Vynásobí kopie vytvořením mřížky." -#: src/libslic3r/PrintConfig.cpp:3419 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "Vynásobí kopie tímto číslem." -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Název" @@ -4810,7 +4732,7 @@ msgstr "Nejbližší" msgid "Network lookup" msgstr "Hledání v síti" -#: src/slic3r/GUI/Plater.cpp:2135 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "Nový Projekt" @@ -4827,11 +4749,11 @@ msgstr "Je dostupná nová verze %s" msgid "New version:" msgstr "Nová verze:" -#: src/slic3r/GUI/GLCanvas3D.cpp:4722 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "Akce vpřed: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:4690 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "Akce zpět: %1%" @@ -4839,11 +4761,11 @@ msgstr "Akce zpět: %1%" msgid "No extrusion" msgstr "Žádná extruze" -#: src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "Pro aktuální model nelze vygenerovat žádnou podložku" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "Žádné dříve slicované soubory." @@ -4855,25 +4777,25 @@ msgstr "ŽÁDNÁ RAPIDNÍ EXTRUZE" msgid "No sparse layers (EXPERIMENTAL)" msgstr "Bez řídkých vrstev (EXPERIMENTÁLNÍ)" -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "Žádné podpůrné body nebudou umístěny blíže než je tento práh." #: src/slic3r/GUI/UpdateDialogs.cpp:303 -msgid "No updates aviable" +msgid "No updates available" msgstr "Žádné aktualizace nejsou dostupné" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Žádné" -#: src/slic3r/GUI/Tab.cpp:2199 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "Normální" -#: src/slic3r/GUI/Plater.cpp:1258 +#: src/slic3r/GUI/Plater.cpp:1286 msgid "normal mode" msgstr "normální režim" @@ -4882,10 +4804,10 @@ msgid "not a ZIP archive" msgstr "není ZIP archiv" #: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 -msgid "Not found: " +msgid "Not found:" msgstr "Nenalezeno:" -#: src/slic3r/GUI/DoubleSlider.cpp:985 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "Note" msgstr "Poznámka" @@ -4901,20 +4823,20 @@ msgstr "Poznámka: Vyžaduje se FlashAir s firmwarem 2.00.02 nebo novějším a msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Poznámka: Je vyžadován OctoPrint ve verzi alespoň 1.1.0." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Poznámka: některé zkratky nefungují v režimu editace." -#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 -#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 -#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 -#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "Poznámky" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 -#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "Oznámení" @@ -4922,12 +4844,12 @@ msgstr "Oznámení" msgid "nozzle" msgstr "tryska" -#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Průměr trysky" -#: src/slic3r/GUI/ConfigWizard.cpp:970 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "Průměr trysky:" @@ -4935,7 +4857,7 @@ msgstr "Průměr trysky:" msgid "Number of cooling moves" msgstr "Počet chladících pohybů" -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "Počet extrudérů tiskárny." @@ -4959,7 +4881,7 @@ msgstr "Počet pixelů v ose X" msgid "Number of pixels in Y" msgstr "Počet pixelů v ose Y" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Počet plných vrstev." @@ -4971,19 +4893,19 @@ msgstr "Počet plných vrstev generovaných na vrchních a spodních površích. msgid "Number of solid layers to generate on top surfaces." msgstr "Počet vrchních generovaných plných vrstev." -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Počet vrstev potřebných pro přechod z počáteční doby osvitu na dobu osvitu" -#: src/slic3r/GUI/Plater.cpp:243 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "Počet změn nástroje" -#: src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "Nadzvednutí objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "Manipulace s objektem" @@ -4991,19 +4913,19 @@ msgstr "Manipulace s objektem" msgid "Object name" msgstr "Jméno objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "Objekt nebo Instanci" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "Zěna pořadí objektů" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "Změna nastavení objektu" -#: src/slic3r/GUI/Plater.cpp:2513 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "Objekt moc velký?" @@ -5011,11 +4933,11 @@ msgstr "Objekt moc velký?" msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "Objekty budou použity k vyčištění barvy filamentu v trysce po změně extruderu, aby se ušetřil materiál, který by jinak skončil v čistící věži. Výsledkem budou objekty s náhodně mixovanými barvami." -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "objekt(y)" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "objekty" @@ -5027,7 +4949,7 @@ msgstr "Octagram Spiral" msgid "OctoPrint version" msgstr "Verze OctoPrintu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "současného Objektu" @@ -5035,15 +4957,15 @@ msgstr "současného Objektu" msgid "Offset" msgstr "Odsazení" -#: src/slic3r/GUI/DoubleSlider.cpp:923 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "Zobrazení po jedné vrstvě" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1365 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Jeden nebo více objektů bylo přiřazeno extruderu, který tiskárna nemá." -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Podpěry vytvářet pouze v případě, že leží na tiskové podložce. Nevytváří podpěry na výtisky." @@ -5051,7 +4973,7 @@ msgstr "Podpěry vytvářet pouze v případě, že leží na tiskové podložce msgid "Only infill where needed" msgstr "Výplň pouze kde je potřeba" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "Pouze zvednout Z" @@ -5067,11 +4989,11 @@ msgstr "Zvednout Z pouze pod" msgid "Only retract when crossing perimeters" msgstr "Provést retrakci pouze při přejíždění perimetrů" -#: src/slic3r/GUI/Tab.cpp:1189 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "Prevence odkapávání" -#: src/libslic3r/Print.cpp:1262 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "V současné době není funkce \"Prevence odkapávání\" filamentu podporována společně s povolenou čistící věží." @@ -5079,7 +5001,7 @@ msgstr "V současné době není funkce \"Prevence odkapávání\" filamentu pod msgid "Open a project file" msgstr "Otevřít soubor s projektem" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "Otevřít soubor s certifikátem CA" @@ -5096,52 +5018,48 @@ msgstr "Otevře stránku pro stažení programu" msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Otevřít projekt STL/OBJ/AMF/3MF s konfigurací, odstranit modely na podložce" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "Otevřít soubor STL/OBJ/AMF/3MF s konfigurací (smaže tiskovou plochu)" - -#: src/slic3r/GUI/MainFrame.cpp:695 +#: src/slic3r/GUI/MainFrame.cpp:693 #, c-format msgid "Open the %s website in your browser" msgstr "Otevřít webovou stránku %s v prohlížeči" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Otevřít stránku pro stahování Prusa 3D ovladačů ve vašem prohlížeči" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "Otevřít stránku s verzemi tohoto softwaru ve vašem prohlížeči" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "Optimalizovat orientaci" -#: src/slic3r/GUI/Plater.cpp:2751 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "Optimalizovat Orientaci" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "Optimalizujte rotaci objektu pro lepší výsledky tisku." -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimalizovat rychloposuny do pořadí aby se minimalizovalo přejíždění perimetrů. Nejvíce užitečné u Bowdenových extruderů které trpí na vytékání filamentu. Toto nastavení zpomaluje tisk i generování G-code." -#: src/slic3r/GUI/Tab.cpp:1133 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "Volby pro podpěry a raft" -#: src/slic3r/GUI/DoubleSlider.cpp:960 +#: src/slic3r/GUI/DoubleSlider.cpp:989 msgid "or press \"+\" key" msgstr "nebo stiskněte klávesu „+“" -#: src/slic3r/GUI/Plater.cpp:2876 +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "Orientace nalezena." -#: src/slic3r/GUI/Plater.cpp:2875 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "Hledání optimální orientace zrušeno." @@ -5149,23 +5067,23 @@ msgstr "Hledání optimální orientace zrušeno." msgid "Origin" msgstr "Počátek" -#: src/slic3r/GUI/Tab.cpp:1229 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "Ostatní" -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Ostatní vrstvy" -#: src/slic3r/GUI/ConfigWizard.cpp:857 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "Ostatní výrobci" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "Výstupní soubor" -#: src/libslic3r/PrintConfig.cpp:3478 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "Výstupní soubor" @@ -5173,15 +5091,15 @@ msgstr "Výstupní soubor" msgid "Output filename format" msgstr "Formát názvu výstupního souboru" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "Info o výstupním modelu" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "Možnosti výstupu" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Perimetr převisu" @@ -5189,23 +5107,23 @@ msgstr "Perimetr převisu" msgid "Overhang threshold" msgstr "Mezní úhel převisu" -#: src/slic3r/GUI/Tab.cpp:1217 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "Překrytí" #: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" -msgstr "Panel nastavení tisku" +msgstr "Panel nastavení &tisku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 -#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 -#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 -#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 -#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 -#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 -#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 -#: src/libslic3r/PrintConfig.cpp:2890 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "Podložka" @@ -5213,15 +5131,15 @@ msgstr "Podložka" msgid "Pad and Support" msgstr "Podložka a Podpěry" -#: src/libslic3r/PrintConfig.cpp:2846 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "Podložka okolo objektu" -#: src/libslic3r/PrintConfig.cpp:2853 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "Podložka všude okolo objektu" -#: src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "Velikost límce podložky" @@ -5229,31 +5147,31 @@ msgstr "Velikost límce podložky" msgid "Pad brim size is too small for the current configuration." msgstr "Velikost okraje podložky je pro aktuální konfiguraci příliš malá." -#: src/libslic3r/PrintConfig.cpp:2889 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "Průnik spojky Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2871 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "Rozteč spojek Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2880 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "Šířka spojky Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2860 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "Mezera Podložka-Objekt" -#: src/libslic3r/PrintConfig.cpp:2788 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "Výška bočnice podložky" -#: src/libslic3r/PrintConfig.cpp:2835 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "Sklon bočnice podložky" -#: src/libslic3r/PrintConfig.cpp:2778 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "Tloušťka stěny podložky" @@ -5265,28 +5183,28 @@ msgstr "Page Down" msgid "Page Up" msgstr "Page Up" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "název parametru" -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "Validace parametru" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "Část" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "Manipulace s částmi" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "Změna nastavení části" -#: src/slic3r/GUI/GLCanvas3D.cpp:4563 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "Vložit" @@ -5294,11 +5212,11 @@ msgstr "Vložit" msgid "Paste clipboard" msgstr "Vložit ze schránky" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 msgid "Paste from clipboard" msgstr "Vložit ze schránky" -#: src/slic3r/GUI/Plater.cpp:5640 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "Vložení ze schránky" @@ -5318,12 +5236,16 @@ msgstr "Rozteč podpěr" msgid "Pattern used to generate support material." msgstr "Vzor použitý pro generování podpěr." -#: src/slic3r/GUI/DoubleSlider.cpp:976 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "Pozastavení" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Pause print (\"%1%\")" msgstr "Pozastavení tisku (\"%1%\")" -#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 -#: src/slic3r/GUI/GLCanvas3D.cpp:987 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "Pozastavit tisk nebo vložit vlastní G-code" @@ -5331,11 +5253,11 @@ msgstr "Pozastavit tisk nebo vložit vlastní G-code" msgid "Perform cut" msgstr "Provést řez" -#: src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2927 msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." msgstr "Rychlost vs. přesnost výpočtu. Nižší hodnoty mohou způsobit nežádoucí artefakty." -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Perimetr" @@ -5352,7 +5274,7 @@ msgstr "perimetry" msgid "Perimeters" msgstr "Perimetry" -#: src/slic3r/GUI/ConfigWizard.cpp:861 +#: src/slic3r/GUI/ConfigWizard.cpp:860 #, c-format msgid "Pick another vendor supported by %s" msgstr "Vyberte si jiného výrobce, který je podporováný programem %s" @@ -5361,7 +5283,7 @@ msgstr "Vyberte si jiného výrobce, který je podporováný programem %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Velikosti obrázků, které mají být uloženy do souborů .gcode a .sl1" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "Koeficient rozšiřování podpěry" @@ -5369,10 +5291,6 @@ msgstr "Koeficient rozšiřování podpěry" msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Průměr hrotu podpěry by měl být menší než průměr podpěrných sloupů." -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "Vložte ložiska do otvorů a pokračujte" - #: src/slic3r/GUI/DoubleSlider.cpp:79 msgid "Place bearings in slots and resume printing" msgstr "Vložte ložiska do otvorů a pokračujte v tisku" @@ -5381,23 +5299,19 @@ msgstr "Vložte ložiska do otvorů a pokračujte v tisku" msgid "Place on face" msgstr "Umístit plochou na podložku" -#: src/slic3r/GUI/MainFrame.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Podložka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 -msgid "Plater Shortcuts" -msgstr "Podložka" - #: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Zkontrolujte a opravte seznam objektů." -#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "Před změnou nastavení zkontrolujte prosím seznam objektů." -#: src/slic3r/GUI/Plater.cpp:3272 +#: src/slic3r/GUI/Plater.cpp:3286 msgid "Please select the file to reload" msgstr "Vyberte soubor, který chcete znovu načíst" @@ -5414,14 +5328,10 @@ msgstr "Orientace na výšku" msgid "Position" msgstr "Pozice" -#: src/slic3r/GUI/Tab.cpp:2363 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "Pozice (pro tiskárny s více extrudery)" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "Pozice (mm)" - #: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Pozice začátku perimetrů." @@ -5434,15 +5344,15 @@ msgstr "Pozice X" msgid "Position Y" msgstr "Pozice Y" -#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Postprodukční skripty" #: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" -msgstr "Náhled" +msgstr "&Náhled" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Nastavení" @@ -5458,49 +5368,28 @@ msgstr "Preferovaný směr švu - rozkmit" msgid "Preparing infill" msgstr "Příprava výplně" -#: src/slic3r/GUI/Tab.cpp:2904 +#: src/slic3r/GUI/Tab.cpp:2920 #, c-format msgid "Preset (%s)" msgstr "Přednastavení (%s)" -#: src/slic3r/GUI/Tab.cpp:3066 +#: src/slic3r/GUI/Tab.cpp:3082 msgid "Preset with name \"%1%\" already exists." msgstr "Přednastavení s názvem \"%1%\" již existuje." -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - Kopie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "" -"Press to activate deselection rectangle\n" -"or to scale or rotate selected objects\n" -"around their own center" -msgstr "" -"Stiskem aktivujete obdélníkové odstranění \n" -"výběru nebo změnu velikosti nebo otočení \n" -"vybraných objektů kolem vlastních středů" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Press to activate deselection rectangle" msgstr "Stiskem aktivujete obdélníkové odstranění výběru" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Stiskem aktivujete změnu velikosti pouze v jednom směru" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "" -"Press to activate selection rectangle\n" -"or to snap by 5% in Gizmo scale\n" -"or to snap by 1mm in Gizmo move" -msgstr "" -"Stiskem aktivujete obdélníkvý výběr\n" -"nebo 5% krok při změně velikosti\n" -"nebo 1mm krok při posunu" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:162 msgid "Press to activate selection rectangle" msgstr "Stiskem aktivujete obdélníkový výběr" @@ -5513,18 +5402,6 @@ msgstr "" "Změna velikosti nebo rotace\n" "vybraných objektů kolem vlastních středů" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "" -"Press to scale selection to fit print volume\n" -"in Gizmo scale" -msgstr "" -"Stiskem v režimu Gizmo měřítko vyplní tiskovou\n" -"plochu aktivním výběrem" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "Stisknutím vyberte více objektů nebo přesuňte více objektů pomocí myši" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 msgid "" "Press to select multiple objects\n" @@ -5533,14 +5410,6 @@ msgstr "" "Stisknutím vyberte více objektů\n" "nebo přesuňte více objektů pomocí myši" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "" -"Press to select multiple objects\n" -"or move multiple objects with a mouse" -msgstr "" -"Stisknutím vyberte více objektů\n" -"nebo přesuňte více objektů pomocí myši" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format msgid "" @@ -5550,7 +5419,8 @@ msgstr "" "Stiskni pro 5% krok při změně velikosti,\n" "nebo 1mm krok při posunu" -#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "Náhled" @@ -5558,11 +5428,7 @@ msgstr "Náhled" msgid "Preview hollowed and drilled model" msgstr "Náhled dutého modelu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 -msgid "Preview Shortcuts" -msgstr "Náhled" - -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "Dříve slicovaný soubor (" @@ -5570,7 +5436,7 @@ msgstr "Dříve slicovaný soubor (" msgid "Prime all printing extruders" msgstr "Příprava všech tiskových extruderů" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "tisk" @@ -5582,32 +5448,32 @@ msgstr "Fronta na&hrávání do tiskového serveru" msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Tisk obrysových perimetrů od vnějších po vnitřní namísto opačného výchozího pořadí." -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "Parametry extruderu" -#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "Nahrání do tiskového serveru" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Fronta nahrávaní do tiskového serveru" -#: src/slic3r/GUI/DoubleSlider.cpp:941 +#: src/slic3r/GUI/DoubleSlider.cpp:970 msgid "Print mode" msgstr "Režim tisku" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "Nastavení tisku" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "Nastavení tisku" -#: src/slic3r/GUI/Tab.cpp:1480 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "Přepsání rychlosti tisku" @@ -5617,17 +5483,17 @@ msgstr "Tisk ve výšce" #: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" -msgstr "Panel nastavení tiskárny" +msgstr "Panel nastav&ení tiskárny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "Tisknout objekt" -#: src/slic3r/GUI/Plater.cpp:816 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "Tiskárna" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "tiskárna" @@ -5635,11 +5501,11 @@ msgstr "tiskárna" msgid "Printer absolute correction" msgstr "Absolutní korekce tiskárny" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "Gamma korekce tiskárny" -#: src/slic3r/GUI/Tab.cpp:978 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "model tiskárny" @@ -5652,7 +5518,7 @@ msgstr "Poznámky o tiskárně" msgid "Printer scaling correction" msgstr "Korekce měřítka tisku" -#: src/slic3r/GUI/Tab.hpp:390 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "Nastavení tiskárny" @@ -5672,17 +5538,17 @@ msgstr "Varianta tiskárny" msgid "Printer vendor" msgstr "Prodejce tiskárny" -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1388 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Tisk s více extrudery různých průměrů trysek. Má-li být podpěra tisknuta aktuálním extruderem (support_material_extruder == 0 nebo support_material_interface_extruder == 0), musí mít všechny trysky stejný průměr." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:851 +#: src/slic3r/GUI/MainFrame.cpp:849 #, c-format msgid "Processing %s" msgstr "Zpracovávám %s" -#: src/slic3r/GUI/Plater.cpp:2267 +#: src/slic3r/GUI/Plater.cpp:2283 #, c-format msgid "Processing input file %s" msgstr "Zpracovávám vstupní soubor %s" @@ -5691,9 +5557,9 @@ msgstr "Zpracovávám vstupní soubor %s" msgid "Processing triangulated mesh" msgstr "Zpracovávám tringulační sítě" -#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 -#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "Profilové závislosti" @@ -5709,15 +5575,15 @@ msgstr "Průběh" msgid "Progress:" msgstr "Průběh:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" msgstr "Prusa 3&D Ovladače" -#: src/slic3r/GUI/ConfigWizard.cpp:1998 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "Prusa tiskárny technologie FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:2001 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Prusa tiskárny technologie MSLA" @@ -5736,7 +5602,7 @@ msgstr "PrusaSlicer vyžaduje grafický ovladač s funkčním OpenGL 2.0. Zatím msgid "PrusaSlicer version" msgstr "verze PrusaSliceru" -#: src/slic3r/GUI/ConfigWizard.cpp:816 +#: src/slic3r/GUI/ConfigWizard.cpp:815 msgid "" "PrusaSlicer's user interfaces comes in three variants:\n" "Simple, Advanced, and Expert.\n" @@ -5750,7 +5616,7 @@ msgstr "" msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Vyčištění trysky po výměně filamentu se provede uvnitř výplní tohoto objektu. Tím se snižuje množství odpadu, ale může to mít za následek delší dobu tisku v důsledku dodatečných pohybů." -#: src/slic3r/GUI/Plater.cpp:541 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "Objemy čištění" @@ -5766,18 +5632,18 @@ msgstr "Objemy čištění - matice" msgid "Quality" msgstr "Kvalita" -#: src/slic3r/GUI/Tab.cpp:1082 +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "Kvalita (pomalejší slicing)" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 +#: src/slic3r/GUI/GLCanvas3D.cpp:273 msgid "Quality / Speed" msgstr "Kvalita / Rychlost" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 #, c-format msgid "Quick Add Settings (%s)" msgstr "Rychlé přidání nastavení (%s)" @@ -5795,11 +5661,11 @@ msgstr "Rychlé Slicování a Uložit jako" msgid "Quit %s" msgstr "Ukončit %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Rádius" -#: src/slic3r/GUI/Tab.cpp:1129 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "Raft" @@ -5833,7 +5699,7 @@ msgstr "Šířka linky při rapidní extruzi" msgid "Ramming parameters" msgstr "Parametry rapidní extruze" -#: src/slic3r/GUI/Tab.cpp:1507 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "Nastavení rapidní extruze" @@ -5845,13 +5711,13 @@ msgstr "Náhodný" msgid "Range" msgstr "Rozsah" -#: src/libslic3r/SLAPrintSteps.cpp:63 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "Rasterizace vrstev" #: src/slic3r/GUI/MainFrame.cpp:596 msgid "Re&load from disk" -msgstr "Znovu načíst z disku (&l)" +msgstr "Znovu &načíst z disku" #: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" @@ -5861,7 +5727,7 @@ msgstr "Přenastavit" msgid "Ready" msgstr "Připraveno" -#: src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "Připraven ke slicování" @@ -5875,7 +5741,7 @@ msgstr "Pohled zezadu" #: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" -msgstr "Poslední projekty" +msgstr "N&edávné projekty" #: src/slic3r/GUI/PresetHints.cpp:263 #, c-format @@ -5907,11 +5773,12 @@ msgstr "Přímočará" msgid "Rectilinear grid" msgstr "Přímočará mřížka" -#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Vpřed" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 #, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" @@ -5919,26 +5786,26 @@ msgstr[0] "%1$d Akce Vpřed" msgstr[1] "%1$d Akce Vpřed" msgstr[2] "%1$d Akcí Vpřed" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "Historie operací Vpřed" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "Zkracování tiskového času" -#: src/slic3r/GUI/Plater.cpp:3461 +#: src/slic3r/GUI/Plater.cpp:3452 msgid "Reload all from disk" msgstr "Vše znovu načíst z disku" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 -#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 msgid "Reload from disk" msgstr "Znovu načíst z disku" -#: src/slic3r/GUI/Plater.cpp:3328 -msgid "Reload from: " +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" msgstr "Znovu načíst z:" #: src/slic3r/GUI/KBShortcutsDialog.cpp:134 @@ -5949,12 +5816,12 @@ msgstr "Znovu načíst podložku z disku" msgid "Reload the plater from disk" msgstr "Znovu načíst podložku z disku" -#: src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "Znovu načíst vybraný objekt z disku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" msgstr "Znovu načíst vybrané objekty z disku" @@ -5962,12 +5829,12 @@ msgstr "Znovu načíst vybrané objekty z disku" msgid "Remember output directory" msgstr "Pamatovat si výstupní složku" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "odebrat" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "Odebrat" @@ -5979,11 +5846,11 @@ msgstr "Odebrat všechny otvory" msgid "Remove all points" msgstr "Odebrat všechny body" -#: src/slic3r/GUI/GLCanvas3D.cpp:251 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "Ubrat detail" -#: src/slic3r/GUI/Plater.cpp:876 +#: src/slic3r/GUI/Plater.cpp:879 msgid "Remove device" msgstr "Odebrat zařízení" @@ -5991,11 +5858,11 @@ msgstr "Odebrat zařízení" msgid "Remove extruder from sequence" msgstr "Odebrat extruder ze seznamu" -#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" msgstr "Odebrat instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Remove Instance of the selected object" msgstr "Odebrat instanci vybraného objektu" @@ -6003,7 +5870,7 @@ msgstr "Odebrat instanci vybraného objektu" msgid "Remove layer range" msgstr "Odstranit rozsah vrstev" -#: src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" msgstr "Odebere jednu instanci vybraného objektu" @@ -6011,11 +5878,11 @@ msgstr "Odebere jednu instanci vybraného objektu" msgid "Remove parameter" msgstr "Odebrat parametr" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "Odebrat bod" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "Odebrat bod z výběru" @@ -6024,11 +5891,11 @@ msgid "Remove selected holes" msgstr "Smazat označené otvory" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "Odebrat označené body" -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "Odstranit vybraný objekt" @@ -6036,47 +5903,51 @@ msgstr "Odstranit vybraný objekt" msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Odstranit uživatelské profily - čistá instalace (nejprve bude provedena záloha)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "Přejmenovat" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "Přejmenování objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "Přejmenování dílčího objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "Přejmenování" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "Přejmenování G-codu po zkopírování do vybrané cílové složky se nezdařilo. Aktuální cesta je %1%.tmp. Zkuste to prosím znovu." + +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "Vykreslení pomocí softwaru" -#: src/libslic3r/PrintConfig.cpp:3501 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Vykreslení pomocí softwaru. Namísto výchozího ovladače OpenGL je načten dodaný softwarový renderer MESA." -#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "Oprava" -#: src/slic3r/Utils/FixModelByWin10.cpp:394 +#: src/slic3r/Utils/FixModelByWin10.cpp:387 msgid "Repaired 3MF file contains more than one object" msgstr "Opravený soubor 3MF obsahuje více než jeden objekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:398 +#: src/slic3r/Utils/FixModelByWin10.cpp:391 msgid "Repaired 3MF file contains more than one volume" msgstr "Opravený soubor 3MF obsahuje více než jedno těleso" -#: src/slic3r/Utils/FixModelByWin10.cpp:392 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Repaired 3MF file does not contain any object" msgstr "Opravený soubor 3MF neobsahuje žádný objekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:396 +#: src/slic3r/Utils/FixModelByWin10.cpp:389 msgid "Repaired 3MF file does not contain any volume" msgstr "Opravený soubor 3MF neobsahuje žádný objemové těleso" @@ -6092,15 +5963,15 @@ msgstr "Opakovat poslední rychlé slicování" msgid "Repeat Last Quick Slice" msgstr "Opakovat poslední rychlé slicování" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "Nahradit?" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" msgstr "Nahlá&sit chybu" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 #, c-format msgid "Report an issue on %s" msgstr "Nahlásit chybu v programu %s" @@ -6124,15 +5995,15 @@ msgstr "vyžaduje min. %s a max. %s" msgid "Rescan" msgstr "Skenovat" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "Znovu prohledat sériové porty" -#: src/slic3r/GUI/GLCanvas3D.cpp:318 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "Výchozí" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "Obnovit řezovou rovinu" @@ -6141,7 +6012,7 @@ msgstr "Obnovit řezovou rovinu" msgid "Reset direction" msgstr "Resetovat směr" -#: src/slic3r/GUI/Plater.cpp:2707 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "Resetovat Projekt" @@ -6158,11 +6029,11 @@ msgstr "Výchozí Natočení" msgid "Reset scale" msgstr "Výchozí měřítko" -#: src/slic3r/GUI/GLCanvas3D.cpp:257 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "Obnovit na výchozí" -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "Obnovit barvu filamentu" @@ -6178,8 +6049,8 @@ msgstr "Délka retrakce před očištěním" msgid "Retract on layer change" msgstr "Retrakce při změně vrstvy" -#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2366 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "Retrakce" @@ -6199,11 +6070,11 @@ msgstr "Vzdálenost retrakce (při změně extruderu)" msgid "Retraction Speed" msgstr "Rychlost retrakce" -#: src/slic3r/GUI/Tab.cpp:2382 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retrakce pro neaktivní extruder (pokročilé nastavení pro tiskárny typu MultiMaterial)" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "Retrakce" @@ -6211,23 +6082,23 @@ msgstr "Retrakce" msgid "Right" msgstr "Zprava" -#: src/slic3r/GUI/GUI_ObjectList.cpp:400 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "Klepnutím pravým tlačítkem myši na ikonu změníte nastavení tisku pro objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "Klepnutím pravým tlačítkem myši na ikonu změníte nastavení objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:357 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Klepnutím pravým tlačítkem myši se spustí oprava STL souboru pomocí služby Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "Pravý klik" -#: src/slic3r/GUI/GLCanvas3D.cpp:248 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "Pravé tlačítko myši:" @@ -6239,15 +6110,15 @@ msgstr "Pohled zprava" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "Otočit" -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "Otočit okolo osy X" -#: src/libslic3r/PrintConfig.cpp:3446 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Otočit okolo osy Y" @@ -6265,24 +6136,20 @@ msgstr "Otočení výběru o 45 ° po směru hodinových ručiček" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 #: src/slic3r/GUI/Mouse3DController.cpp:321 -#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Otáčení" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491 -msgid "Rotation (deg)" -msgstr "Otáčení (stupně)" - -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "Úhel otočení kolem osy X ve stupních." -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Úhel otočení kolem osy Y ve stupních." -#: src/libslic3r/PrintConfig.cpp:3437 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Úhel otočení kolem osy Z ve stupních." @@ -6291,58 +6158,58 @@ msgstr "Úhel otočení kolem osy Z ve stupních." msgid "Run %s" msgstr "Spustit %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "Vykonávají se postprodukční skripty" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 #: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 #: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 -#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 -#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 -#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 -#: src/libslic3r/PrintConfig.cpp:2557 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" msgstr "Od&eslat G-code" -#: src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "Od&eslat do tiskárny" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3417 #, c-format msgid "Save %s as:" msgstr "Uložit %s jako:" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 #, c-format msgid "Save %s file as:" msgstr "Uložit %s soubor jako:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "Uložit změny?" -#: src/libslic3r/PrintConfig.cpp:3371 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "Uložit konfigurační soubor" -#: src/slic3r/GUI/MainFrame.cpp:927 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "Uložit konfiguraci jako:" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "Uložit konfiguraci do zadaného souboru." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:135 +#: src/slic3r/GUI/Tab.cpp:133 #, c-format msgid "Save current %s" msgstr "Uložit stávající %s" @@ -6355,23 +6222,23 @@ msgstr "Uložit stávající projekt" msgid "Save current project file as" msgstr "Uložit stávající projekt jako" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "Uložit soubor jako:" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "Uložit G-code jako:" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Uložit soubor OBJ (méně náchylný na chyby souřadnic než STL) jako:" -#: src/slic3r/GUI/Tab.hpp:442 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "Uložit přednastavení" -#: src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "Uložit balík přednastavení jako:" @@ -6387,11 +6254,11 @@ msgstr "Uložit projekt (3mf)" msgid "Save project as (3mf)" msgstr "Uložit projekt jako (3mf)" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "Uložit SL1 soubor jako:" -#: src/slic3r/GUI/MainFrame.cpp:840 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "Uložit ZIP soubor jako:" @@ -6405,14 +6272,10 @@ msgstr "Ukládání meshe do 3MF kontejneru selhalo." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3451 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "Měřítko" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276 -msgid "Scale (%)" -msgstr "Měřítko (%)" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Měřítka" @@ -6425,11 +6288,11 @@ msgstr "" "Vyplnit tiskovou plochu aktivním výběrem\n" "v Gizmo režimu měřítko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "Přizpůsobit měřítko vybraného objektu, aby se objekt vešel do tiksového objemu" -#: src/libslic3r/PrintConfig.cpp:3460 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "Vyplnit tiskový objem" @@ -6437,19 +6300,19 @@ msgstr "Vyplnit tiskový objem" msgid "Scale To Fit" msgstr "Vyplnit tiskový objem" -#: src/libslic3r/PrintConfig.cpp:3461 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "Změnit velikost, aby se objekt vešel do zadaného tiskového prostoru." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "Změnit velikost podle tiskového objemu" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "Procentuální měřítko." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Plánování nahrávání do `%1%`. Viz Okno -> Fronta nahrávaní do tiskového serveru" @@ -6469,7 +6332,7 @@ msgstr "Seam preferred direction jitter" msgid "Searching for devices" msgstr "Hledám zařízení" -#: src/slic3r/GUI/Plater.cpp:2842 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "Hledání optimální orientace" @@ -6481,19 +6344,19 @@ msgstr "Vyberte soubor gcode:" msgid "Select all objects" msgstr "Vybrat všechny objekty" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "Vybrat všechny body" -#: src/slic3r/GUI/ConfigWizard.cpp:1979 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "Vybrat všechny standardní tiskárny" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "Označit obdélníkovým výběrem myši" -#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "Zvolte konfiguraci k načtení:" @@ -6501,35 +6364,27 @@ msgstr "Zvolte konfiguraci k načtení:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Vyberte souřadnicový prostor, ve kterém bude provedena transformace." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 -msgid "Select extruder number for selected objects and/or parts" -msgstr "Vyberte číslo extruderu pro vybrané objekty a / nebo části" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "Vyberte číslo extruderu:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "Zobrazit panel Nastavení filamentu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 -msgid "Select new extruder for the object/part" -msgstr "Vyberte nový extruder pro objekt/část" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 msgid "Select Plater Tab" msgstr "Zobrazit panel Podložka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "Zobrazit panel Nastavení tisku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "Zobrazit panel Nastavení tiskárny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "Zvolte nastavení zobrazení" @@ -6537,43 +6392,43 @@ msgstr "Zvolte nastavení zobrazení" msgid "Select the language" msgstr "Výběr jazyka" -#: src/slic3r/GUI/Tab.cpp:59 +#: src/slic3r/GUI/Tab.cpp:57 msgid "Select the print profiles this profile is compatible with." msgstr "Vyberte tiskové profily, s nimiž je tento profil kompatibilní." -#: src/slic3r/GUI/Tab.cpp:53 +#: src/slic3r/GUI/Tab.cpp:51 msgid "Select the printers this profile is compatible with." msgstr "Vyberte tiskárny, s nimiž je tento profil kompatibilní." -#: src/slic3r/GUI/MainFrame.cpp:891 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "Vyberte STL soubor k opravě:" -#: src/slic3r/GUI/Preferences.cpp:241 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "Vyberte velikost ikon na panelu nástrojů vzhledem k výchozí velikosti." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "Vyberte typ součásti" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "Vyberte, jaký typ podložky potřebujete" -#: src/slic3r/GUI/Plater.cpp:495 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "Vyberte typ podpěr, které potřebujete" -#: src/slic3r/GUI/DoubleSlider.cpp:1890 +#: src/slic3r/GUI/DoubleSlider.cpp:1917 msgid "" "Select YES if you want to delete all saved tool changes, \n" "\tNO if you want all tool changes switch to color changes, \n" -"\tor CANCEL to leave it unchanged" +"\tor CANCEL to leave it unchanged." msgstr "" "Vyberte ANO, pokud chcete odstranit všechny uložené změny nástroje,\n" "NE, pokud chcete, aby se všechny změny nástroje přepnout na změny barev,\n" -"nebo ZRUŠIT pro ponechání beze změny" +"nebo ZRUŠIT pro ponechání beze změny." #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" @@ -6583,11 +6438,11 @@ msgstr "Výběř - Přidání" msgid "Selection-Add All" msgstr "Výběr - Označení všeho" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "Výběr - Přidání v seznamu" -#: src/slic3r/GUI/GLCanvas3D.cpp:6659 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "Výběr - Přidání obdélníkovým výběrem" @@ -6607,11 +6462,11 @@ msgstr "Výběr - Odebrání" msgid "Selection-Remove All" msgstr "Výběr - Zrušení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "Výběr - Odebrání v seznamu" -#: src/slic3r/GUI/GLCanvas3D.cpp:6678 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "Výběr - Odebrání obdélníkovým výběrem" @@ -6627,7 +6482,7 @@ msgstr "Výběr - Odebrání Objektu" msgid "Selects all objects" msgstr "Vybrat všechny objekty" -#: src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "Odeslat G-code" @@ -6639,19 +6494,19 @@ msgstr "Odeslat G-Code do tiskového serveru" msgid "Send to print current plate as G-code" msgstr "Odeslat k tisku stávající plochu jako G-code" -#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "Odeslat do tiskárny" -#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 msgid "Seq." msgstr "Sekv." -#: src/slic3r/GUI/Tab.cpp:1233 +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "Sekvenční tisk" -#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Sériový port" @@ -6667,17 +6522,17 @@ msgstr "Sériový port:" msgid "Service name" msgstr "Název služby" -#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 -#: src/slic3r/GUI/Tab.cpp:3160 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "Nastavit" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "Změnit na samostatný objekt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "Převést na oddělené objekty" @@ -6685,7 +6540,7 @@ msgstr "Převést na oddělené objekty" msgid "Set extruder change for every" msgstr "Nastavit změnu extruderu po každých" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "Zvolte extruder pro vybrané položky" @@ -6693,19 +6548,15 @@ msgstr "Zvolte extruder pro vybrané položky" msgid "Set extruder sequence" msgstr "Nastavte pořadí extruderu" -#: src/slic3r/GUI/DoubleSlider.cpp:1504 +#: src/slic3r/GUI/DoubleSlider.cpp:1532 msgid "Set extruder sequence for the entire print" msgstr "Nastavení sekvence extruderů pro celý tisk" -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "Nastavte pořadí extruderů pro celý tisk" - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 msgid "Set extruder(tool) sequence" msgstr "Nastavte pořadí extruderu(nástroje)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "Aktivovat spodní ukazatel aktivního posuvníku" @@ -6713,11 +6564,11 @@ msgstr "Aktivovat spodní ukazatel aktivního posuvníku" msgid "Set Mirror" msgstr "Zrcadlení" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "Zadat počet instancí" -#: src/slic3r/GUI/Plater.cpp:4771 +#: src/slic3r/GUI/Plater.cpp:4756 #, c-format msgid "Set numbers of copies to %d" msgstr "Nastavení počtu kopií na %d" @@ -6730,7 +6581,7 @@ msgstr "Změna orientace" msgid "Set Position" msgstr "Nastavení pozice" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Zvolen příznak Tisknout objekt" @@ -6746,7 +6597,7 @@ msgstr "Nastavení měřítka" msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Nastavte skutečnou orientaci LCD displeje uvnitř SLA tiskárny. Režim Orientace na výšku převrátí význam parametrů šířky a výšky a výstupní obrazy budou otočeny o 90 stupňů." -#: src/slic3r/GUI/ConfigWizard.cpp:933 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "Nastavte tvar a rozměry vaší tiskové podložky." @@ -6794,7 +6645,7 @@ msgstr "Nastavte tuto hodnotu na maximální výšku, která může být dosaže msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Zadejte vertikální vzdálenost mezi tryskou a (obvykle) tyčemi osy X. Jinými slovy, je to výška kolizního prostoru okolo extruderu a představuje maximální hloubku, které může extruder dosáhnout před kolizí s jinými, již vytištěnými, objekty." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Odebrán příznak Tisknout objekt" @@ -6802,11 +6653,11 @@ msgstr "Odebrán příznak Tisknout objekt" msgid "Set Unprintable Instance" msgstr "Odebrán příznak Tisknout Instanci" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Set upper thumb to current slider thumb" msgstr "Aktivovat horní ukazatel aktivního posuvníku" -#: src/libslic3r/PrintConfig.cpp:3494 +#: src/libslic3r/PrintConfig.cpp:3509 msgid "" "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" "For example. loglevel=2 logs fatal, error and warning level messages." @@ -6818,7 +6669,7 @@ msgstr "" msgid "Settings" msgstr "Nastavení" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "Nastavení pro výškový rozsah" @@ -6842,35 +6693,35 @@ msgstr "Mám přepnout na přímočarý vzor výplně?" msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Mám synchronizovat vrstvy podpěr, aby bylo možné zapnout Čistící Věž?" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "Tvar" -#: src/slic3r/GUI/GUI_Preview.cpp:258 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "Skořepiny" -#: src/slic3r/GUI/GLCanvas3D.cpp:254 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "Shift + Levé tlačítko myši:" -#: src/slic3r/GUI/GLCanvas3D.cpp:260 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "Shift + Pravé tlačítko myši:" -#: src/slic3r/GUI/GUI_Preview.cpp:233 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "Zobrazit" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" -msgstr "Otevřít adresář nastavení" +msgstr "Otevřít adresář s &konfiguracemi" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show &labels" -msgstr "Zobrazit popisky (&l)" +msgstr "Zobrazit &popisky" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "Zobrazit okno o Slic3ru" @@ -6882,15 +6733,15 @@ msgstr "Zobrazit rozšířená nastavení" msgid "Show error message" msgstr "Zobrazit chybovou hlášku" -#: src/slic3r/GUI/Preferences.cpp:97 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "Zobrazit nekompatibilní přednastavení tisku a filamentu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "Zobrazit přehled klávesových zkratek" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show object/instance labels in 3D scene" msgstr "Zobrazit popisky objektů / instancí ve 3D scéně" @@ -6902,7 +6753,7 @@ msgstr "Zobrazit jednoduché nastavení" msgid "Show supports" msgstr "Zobrazit podpěry" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "Zobrazit systémové informace" @@ -6918,15 +6769,15 @@ msgstr "Zobrazit 3D náhled vrstev" msgid "Show the filament settings" msgstr "Zobrazit nastavení filamentu" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "Zobrazit kompletní seznam možností konfigurace tisku / G-codu." -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "Zobrazit kompletní seznam možností konfigurace SLA tisku." -#: src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "Zobrazit seznam klávesových zkratek" @@ -6942,19 +6793,15 @@ msgstr "Zobrazit nastavení tisku" msgid "Show the printer settings" msgstr "Zobrazit nastavení tiskárny" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "Zobrazí tuto nápovědu." -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "Zobrazit uživatelský adresář konfigurace (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Show/Hide (L)egend" -msgstr "Zobrazit/Skrýt (L)egendu" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Zobrazit / skrýt dialogové okno nastavení zařízení 3Dconnexion" @@ -6962,7 +6809,7 @@ msgstr "Zobrazit / skrýt dialogové okno nastavení zařízení 3Dconnexion" msgid "Show/Hide Legend" msgstr "Zobrazit/Skrýt Legendu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Show/Hide object/instance labels" msgstr "Zobrazit/skrýt popisky objektů/instancí" @@ -6970,7 +6817,7 @@ msgstr "Zobrazit/skrýt popisky objektů/instancí" msgid "Simple" msgstr "Jednoduchý" -#: src/slic3r/GUI/ConfigWizard.cpp:821 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "Jednoduchý režim" @@ -6978,7 +6825,7 @@ msgstr "Jednoduchý režim" msgid "Simple View Mode" msgstr "Jednoduchý režim" -#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "Nastavení jednoho extruderu MM" @@ -6986,7 +6833,7 @@ msgstr "Nastavení jednoho extruderu MM" msgid "Single Extruder Multi Material" msgstr "MultiMaterial tisk s jedním extrudérem" -#: src/slic3r/GUI/Tab.cpp:1865 +#: src/slic3r/GUI/Tab.cpp:1867 msgid "" "Single Extruder Multi Material is selected, \n" "and all extruders must have the same diameter.\n" @@ -6996,17 +6843,17 @@ msgstr "" "a proto všechny extrudery musí mít stejný průměr.\n" "Chcete nastavit průměry všech extruderových trysek podle průměru prvního extruderu?" -#: src/slic3r/GUI/Tab.cpp:2303 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "Parametry jednoho multi materiálového extruderu" #: src/slic3r/GUI/BedShapeDialog.cpp:77 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 -#: src/slic3r/GUI/Tab.cpp:2320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "Rozměr" -#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "Rozměry a počátek" @@ -7014,12 +6861,12 @@ msgstr "Rozměry a počátek" msgid "Size in X and Y of the rectangular plate." msgstr "Rozměr obdélníkové tiskové podložky v ose X a Y." -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Obrys" -#: src/slic3r/GUI/Tab.cpp:1112 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "Obrys a límec" @@ -7031,59 +6878,59 @@ msgstr "Výška obrysu" msgid "Skirt Loops" msgstr "Počet obrysových smyček" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "Klávesové zkratky pro SLA gizma" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "Ukončení režimu SLA gizmo" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "Vstup do režimu SLA gizmo" -#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "SLA materiál" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "Výběr SLA materiálových profilů" -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "Typ SLA materiálu" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "SLA Materiály" -#: src/slic3r/GUI/Preset.cpp:1473 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "SLA tisk" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "Poznámky pro SLA materiál" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "Nastavení SLA tisku" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "SLA Podpěrné Body" -#: src/slic3r/GUI/GLCanvas3D.cpp:692 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "Byly zjištěny SLA podpěry mimo tiskovou oblast" -#: src/slic3r/GUI/ConfigWizard.cpp:1533 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "Tiskárny technologie SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "Deska" @@ -7103,7 +6950,7 @@ msgstr "Slic3r může nahrát soubory G-code do tiskového serveru. Toto pole by msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r nebude měnit rychlost pod tuto rychlost." -#: src/libslic3r/PrintConfig.cpp:3344 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "Slicovat" @@ -7119,35 +6966,35 @@ msgstr "Slicovat soubor do G-code, uložit jako" msgid "Slice gap closing radius" msgstr "Poloměr uzavření mezery v tiskové vrstvě" -#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5140 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "Slicovat" -#: src/libslic3r/PrintConfig.cpp:3318 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Naslicuje model a exportuje SLA tiskové vrstvy jako PNG soubory." -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "Naslicujte model a exportujte trasy jako G-code." -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Slicovat model jako FFF nebo SLA tisk na základě konfigurační hodnoty printer_technology." -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "Informace o slicování" -#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3647 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "Slicování" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "Slicování dokončeno" @@ -7155,19 +7002,19 @@ msgstr "Slicování dokončeno" msgid "Slicing done" msgstr "Slicování dokončeno" -#: src/slic3r/GUI/MainFrame.cpp:876 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "Slicování dokončeno!" -#: src/libslic3r/SLAPrintSteps.cpp:209 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Slicování muselo být zastaveno kvůli vnitřní chybě: Nekonzistentní index řezů." -#: src/libslic3r/SLAPrintSteps.cpp:43 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "Slicuji model" -#: src/libslic3r/SLAPrintSteps.cpp:47 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "Slicování podpěr" @@ -7187,11 +7034,11 @@ msgstr "Pomalý náklon" msgid "Small perimeters" msgstr "Malé perimetry" -#: src/slic3r/GUI/GLCanvas3D.cpp:293 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "Vyhladit" -#: src/slic3r/GUI/GLCanvas3D.cpp:263 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "Vyhlazení" @@ -7199,7 +7046,7 @@ msgstr "Vyhlazení" msgid "Snapshot name" msgstr "Název zálohy" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" msgstr "Vydané ve&rze" @@ -7207,7 +7054,7 @@ msgstr "Vydané ve&rze" msgid "solid infill" msgstr "plná výplň" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 #: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Plná výplň" @@ -7224,7 +7071,7 @@ msgstr "Extruder pro plnou výplň" msgid "Solid infill threshold area" msgstr "Prahová hodnota plochy pro plnou výplň" -#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Plných vrstev" @@ -7240,23 +7087,19 @@ msgstr "Rozpustný materiál je převážně používán pro tisk rozpustných p msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Některé příkazy G/M-code, včetně řízení teplot a další, nejsou univerzální. Vyberte typ firmware, který používá vaše tiskárna pro dosažení kompatibilního výstupu. Příkazy typu \"No extrusion\" zabraňují PrusaSliceru zcela exportovat jakoukoliv hodnotu extruze." -#: src/slic3r/GUI/GLCanvas3D.cpp:693 +#: src/slic3r/GUI/GLCanvas3D.cpp:688 msgid "Some objects are not visible" msgstr "Některé objekty nejsou vidět" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 -msgid "Some objects are not visible when editing supports" -msgstr "Některé objekty nejsou při úpravách podpěr viditelné" - -#: src/libslic3r/Print.cpp:1222 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "Některé objekty jsou příliš blízko; Extruder do nich narazí." -#: src/libslic3r/Print.cpp:1224 +#: src/libslic3r/Print.cpp:1228 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Některé objekty jsou příliš vysoké a nelze je tisknout bez kolizí extruderu." -#: src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Některé objekty mohou být na několika menších podložkách namísto jedné velké. Tento parametr definuje, jak daleko může být střed dvou menších podložek. Pokud budou blíže, budou sloučeny do jedné podložky." @@ -7272,9 +7115,9 @@ msgstr "Rozteč linií kontaktních vrstev. Nastavte nulu pro získání plných msgid "Spacing between support material lines." msgstr "Rozteč linií podpěr." -#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 -#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 #: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 @@ -7294,7 +7137,7 @@ msgstr "Rychlost (mm/s)" msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Rychlost plnění malých mezer pomocí krátkých cikcak pohybů. Udržujte tuto hodnotu poměrně nízkou, aby nedošlo k přílišným otřesům a problémům s rezonancí. Nastavte nulu pro vypnutí vyplnění mezery." -#: src/slic3r/GUI/Tab.cpp:1160 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "Netiskové rychlosti" @@ -7302,11 +7145,11 @@ msgstr "Netiskové rychlosti" msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Rychlost pro perimetry (obrysy, neboli svislé stěny). Zadejte nulu pro automatické nastavení." -#: src/slic3r/GUI/Tab.cpp:1148 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "Rychlosti pohybů tiskárny" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "Rychlost pro vytváření mostů." @@ -7358,11 +7201,11 @@ msgstr "Rychlost vysouvání filamentu při výměně na čistící věži (úvo msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Rychlost použitá při vysouvání špičky filamentu bezprostředně po rapidní extruzi." -#: src/slic3r/GUI/Mouse3DController.cpp:313 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "Rychlost:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "Koule" @@ -7374,36 +7217,36 @@ msgstr "Spirálová váza" msgid "Spiral Vase" msgstr "Spirálová Váza" -#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 -#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "Rozdělit" -#: src/slic3r/GUI/Plater.cpp:4028 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "Rozdělit vybraný objekt" -#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "Rozdělit vybraný objekt na jednotlivé objekty" -#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "Rozdělit vybraný objekt na jednotlivé dílčí části" -#: src/slic3r/GUI/GLCanvas3D.cpp:4599 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "Rozdělit na objekty" -#: src/slic3r/GUI/Plater.cpp:2965 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "Rozdělit na Objekty" -#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "Rozdělit na části" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "Rozdělit na Části" @@ -7423,7 +7266,7 @@ msgstr "Vytvořit nový projekt" msgid "Start at height" msgstr "Začít ve výšce" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Začátek G-code" @@ -7444,15 +7287,15 @@ msgstr "Stav" msgid "Status:" msgstr "Stav:" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "Tichý" -#: src/slic3r/GUI/Plater.cpp:1267 +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "tichý režim" -#: src/slic3r/GUI/Plater.cpp:5001 +#: src/slic3r/GUI/Plater.cpp:4985 #, c-format msgid "STL file exported to %s" msgstr "Soubor STL exportován do %s" @@ -7461,7 +7304,7 @@ msgstr "Soubor STL exportován do %s" msgid "Stop at height" msgstr "Skončit ve výšce" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "Úspěch!" @@ -7469,23 +7312,23 @@ msgstr "Úspěch!" msgid "support" msgstr "podpěry" -#: src/libslic3r/PrintConfig.cpp:2683 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "Průměr podpěrné základny" -#: src/libslic3r/PrintConfig.cpp:2693 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "Výška podpěrné základny" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "Bezpečná vzdálenost podpěrné základny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "Blokátor podpěr" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "Vynucení podpěr" @@ -7493,19 +7336,19 @@ msgstr "Vynucení podpěr" msgid "Support Generator" msgstr "Generátor Podpěr" -#: src/slic3r/GUI/Tab.cpp:3593 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "Hrot podpěry" -#: src/libslic3r/PrintConfig.cpp:2611 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "Průměr hrotu podpěry" -#: src/libslic3r/PrintConfig.cpp:2620 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "Průnik podpěry do modelu" -#: src/libslic3r/PrintConfig.cpp:2629 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "Tloušťka hrotu podpěry" @@ -7513,10 +7356,10 @@ msgstr "Tloušťka hrotu podpěry" msgid "support interface" msgstr "kontaktní vrstva podpěr" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 -#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 #: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 @@ -7530,7 +7373,7 @@ msgstr "kontaktní vrstva podpěr" msgid "Support material" msgstr "Podpěry" -#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 #: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Kontaktní vrstvy podpěr" @@ -7547,51 +7390,51 @@ msgstr "Extruder pro kontaktní podpěry/raft" msgid "Support material/raft/skirt extruder" msgstr "Extruder pro podpěry/raft/obrys" -#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 -#: src/libslic3r/PrintConfig.cpp:2665 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "Pouze na tiskové podložce" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "Změna nastavení podpěr" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "Podpěrný pilíř" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "Propojení podpěr" -#: src/libslic3r/PrintConfig.cpp:2639 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "Tloušťka podpěry" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "Hustota podpěrných bodů" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "Úprava podpěrných bodů" -#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 -#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 -#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 -#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 -#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 -#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 -#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 -#: src/libslic3r/PrintConfig.cpp:2764 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "Podpěry" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "podpěry a podložka" @@ -7611,35 +7454,35 @@ msgstr "" "Podpěry fungují lépe, pokud je povolena funkce:\n" "- Detekovat perimetry přemostění" -#: src/slic3r/GUI/Preferences.cpp:89 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "Potlačit “ - výchozí - “ přednastavení" -#: src/slic3r/GUI/Preferences.cpp:91 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Potlačit “ - výchozí - “ přednastavení v nabídkách Tisk / Filament / Tiskárna, jakmile budou k dispozici další platné předvolby." -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 msgid "Switch code to Change extruder" msgstr "Zaměnit za příkaz na Změnu extruderu" -#: src/slic3r/GUI/DoubleSlider.cpp:1147 +#: src/slic3r/GUI/DoubleSlider.cpp:1179 msgid "Switch code to Color change (%1%) for:" msgstr "Zaměnit za příkaz na Změnu barvy (%1%) pro:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "Přepnout do 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "Přepnout do režimu editace" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" msgstr "Přepnout do náhledu" @@ -7666,7 +7509,7 @@ msgstr "" "\n" "Opravdu chcete pokračovat?" -#: src/slic3r/GUI/Tab.cpp:1016 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "symbolické jméno profilu" @@ -7678,7 +7521,7 @@ msgstr "Synchronizování vrstev podpěr s vrstvami objektu. Toto je velmi užit msgid "Synchronize with object layers" msgstr "Synchronizovat s vrstvami objektu" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "&Informace o systému" @@ -7686,9 +7529,9 @@ msgstr "&Informace o systému" msgid "System Information" msgstr "Systémové informace" -#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 -#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "Systémová přednastavení" @@ -7700,7 +7543,7 @@ msgstr "Prové&st Zálohu konfigurace" msgid "Taking configuration snapshot" msgstr "Ukládání zálohy nastavení" -#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Teplota" @@ -7712,11 +7555,11 @@ msgstr "Teplotní rozdíl, který se použije v případě, že extruder není a msgid "Temperature variation" msgstr "Kolísání teploty" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "Teploty" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "Test" @@ -7747,7 +7590,7 @@ msgid "" "once the rotation is embedded into the object coordinates." msgstr "Momentálně upravovaný objekt je pootočený (rotační úhly nejsou násobky 90°). Nejednotné škálování nakloněných objektů je ve světových koordinátech možné pouze tehdy, když je informace o rotacích zapsána do koordinátů daného objektu." -#: src/libslic3r/PrintConfig.cpp:2717 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "Výchozí úhel pro připojení nosných tyčí a spojek." @@ -7783,7 +7626,7 @@ msgstr "Extruder, který se používá při tisku podpěr, raftu a obrysu (1+, 0 msgid "The filament material type for use in custom G-codes." msgstr "Typ filamentu pro použití ve vlastních G-code." -#: src/libslic3r/PrintConfig.cpp:3479 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Soubor, do kterého bude zapisován výstup (pokud není zadán, bude vycházet ze vstupního souboru)." @@ -7791,62 +7634,54 @@ msgstr "Soubor, do kterého bude zapisován výstup (pokud není zadán, bude vy msgid "The firmware supports stealth mode" msgstr "Firmware podporuje tichý režim" -#: src/libslic3r/PrintConfig.cpp:377 +#: src/libslic3r/PrintConfig.cpp:120 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "První vrstva bude v rovině XY zmenšena nakonfigurovanou hodnotou, která kompenzuje rozplácnutí první vrstvy." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "následující znaky nejsou povolené:" -#: src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "následující přípona není povolená:" -#: src/libslic3r/PrintConfig.cpp:2862 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Mezera mezi spodkem objektu a generovanou podložkou v režimu nulového nadzvednutí." -#: src/libslic3r/PrintConfig.cpp:2695 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "Výška ukotvení podpěrného kužele" -#: src/slic3r/GUI/DoubleSlider.cpp:1895 +#: src/slic3r/GUI/DoubleSlider.cpp:1922 msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." msgstr "Poslední změny barev byly uloženy pro tisk s více extrudery se změnami nástrojů během celého tisku." -#: src/slic3r/GUI/DoubleSlider.cpp:1889 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 msgid "The last color change data was saved for a multi extruder printing." msgstr "Poslední změny barev byly uloženy pro tisk s více extrudery." -#: src/slic3r/GUI/DoubleSlider.cpp:1873 -msgid "The last color change data was saved for a multiple extruder printer profile." -msgstr "Poslední změny barev byly uloženy pro tiskový profil s více extrudery." - -#: src/slic3r/GUI/DoubleSlider.cpp:1872 -msgid "The last color change data was saved for a single extruder printer profile." -msgstr "Poslední změny barev byly uloženy pro jedno extruderový profil tiskárny." - -#: src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 msgid "The last color change data was saved for a single extruder printing." msgstr "Poslední změny barev byly uloženy pro tisk s jedním extruderem." -#: src/libslic3r/PrintConfig.cpp:2736 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "Maximální vzdálenost dvou podpůrných pilířů pro vzájemné provázání. Nulová hodnota zakáže provazování." -#: src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "Maximální délka přemostění" -#: src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Minimální vzdálenost základny podpěr od modelu v mm. Dává smysl v režimu nulového nadzvednutí nad podložku, kde je mezera podle tohoto parametru vložena mezi model a podložku." -#: src/libslic3r/PrintConfig.cpp:175 +#: src/libslic3r/PrintConfig.cpp:185 msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." -msgstr "Počet spodních plných vrstev je navýšen nad zadaný počet bottom_solid_layers, je-li to nutné k dosažení minimální tloušťky spodní skořepiny. " +msgstr "Počet spodních plných vrstev je navýšen nad zadaný počet bottom_solid_layers, je-li to nutné k dosažení minimální tloušťky spodní skořepiny." #: src/libslic3r/PrintConfig.cpp:2143 msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." @@ -7894,11 +7729,11 @@ msgstr "Vybraný soubor neobsahuje geometrii." msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Vybraný soubor obsahuje několik nespojených ploch. Tato možnost není podporována." -#: src/slic3r/GUI/Plater.cpp:2954 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "Vybraný objekt nemůže být rozdělen, protože obsahuje více než jeden objem/materiál." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "The selected object couldn't be split because it contains only one part." msgstr "Vybraný objekt nemůže být rozdělen, protože obsahuje pouze jednu část." @@ -7906,7 +7741,7 @@ msgstr "Vybraný objekt nemůže být rozdělen, protože obsahuje pouze jednu msgid "The selected project is no more available" msgstr "Vybraný projekt již není dostupný" -#: src/slic3r/GUI/DoubleSlider.cpp:996 +#: src/slic3r/GUI/DoubleSlider.cpp:998 msgid "" "The sequential print is on.\n" "It's impossible to apply any custom G-code for objects printing sequentually.\n" @@ -7916,7 +7751,7 @@ msgstr "" "Není možné použít jakýkoliv vlastní G-kód pro objekty tisknuté sekvenčně.\n" "Během generování G-kódu nebude tento kód zpracován." -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "Sklon bočnic vzhledem k podložce. 90 stupňů znamená kolmé stěny." @@ -7947,50 +7782,33 @@ msgstr "" "- aktivní volbu „Zajistit tloušťku svislých stěn“\n" "- neaktivní volbu „Detekce tenkých stěn“" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 -#, no-c-format -msgid "" -"The Spiral Vase mode requires:\n" -"- one perimeter\n" -"- no top solid layers\n" -"- 0% fill density\n" -"- no support material\n" -"- inactive Ensure vertical shell thickness" -msgstr "" -"Režim Spiral Vase vyžaduje:\n" -"- jeden perimetr\n" -"- žádné horní plné vrstvy\n" -"- 0% hustota výplně\n" -"- bez podpěrného materiálu\n" -"- neaktivní volbu Zajistit tloušťku svislých stěn" - -#: src/libslic3r/Print.cpp:1233 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "Možnost \"Spirálová váza\" lze použít pouze při tisku jednoho objektu." -#: src/libslic3r/Print.cpp:1240 +#: src/libslic3r/Print.cpp:1244 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "Možnost \"Spirálová váza\" lze použít pouze při tisku jedním materiálem." -#: src/slic3r/GUI/Tab.cpp:3052 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "Název je prázdný. Nelze uložit." -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "Zadaný název není dostupný." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 -#: src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "Zadaný název není platný;" -#: src/libslic3r/Print.cpp:1218 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "Zadané nastavení způsobí prázdný tisk." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "Tloušťka podložky a její volitelné duté stěny." @@ -7998,7 +7816,7 @@ msgstr "Tloušťka podložky a její volitelné duté stěny." msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Vertikální vzdálenost mezi objektem a podpěrami. Nastavením tohoto parametru na hodnotu 0 se také zabrání tomu, aby Slic3r použil parametry průtoku a rychlosti pro mosty při tisku první vrstvy objektu." -#: src/slic3r/GUI/Tab.cpp:2571 +#: src/slic3r/GUI/Tab.cpp:2575 msgid "" "The Wipe option is not available when using the Firmware Retraction mode.\n" "\n" @@ -8008,7 +7826,7 @@ msgstr "" "\n" "Mám ji deaktivovat, aby bylo možné povolit retrakce z firmwaru?" -#: src/libslic3r/Print.cpp:1264 +#: src/libslic3r/Print.cpp:1268 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "Čistíví Věž v současné době nepodporuje volumetric E (use_volumetric_e = 0)." @@ -8022,54 +7840,54 @@ msgstr "" "pokud jsou vytištěny s aktuálním extrudérem bez spuštění výměny nástroje.\n" "(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpěr je třeba nastavit na 0)." -#: src/libslic3r/Print.cpp:1396 +#: src/libslic3r/Print.cpp:1400 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "" "Čistící věž v současné době podporuje pouze nerozpustné podpěry\n" "pokud jsou vytištěny s aktuálním extrudérem bez spuštění výměny nástroje.\n" "(jak extruder pro tisk podpor tak extruder pro tisk kontaktních podpěr je třeba nastavit na 0)." -#: src/libslic3r/Print.cpp:1266 +#: src/libslic3r/Print.cpp:1270 msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." msgstr "Čistící věž není momentálně podporována pro multimateriálové sekvenční tisky." -#: src/libslic3r/Print.cpp:1258 +#: src/libslic3r/Print.cpp:1262 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Čistící věž je v současné době možná pouze pro G-cody určené pro Marlin, RepRap/Sprinter a Repetier." -#: src/libslic3r/Print.cpp:1260 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Čistící věž je v současné době možná pouze v případě relativního adresování exruderu (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1289 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "Čistící věž pro více objektů je možná pouze v případě, že objekty mají stejný počet raft vrstev" -#: src/libslic3r/Print.cpp:1291 +#: src/libslic3r/Print.cpp:1295 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "Čistící věž pro více objektů je možná pouze v případě, že objekty mají shodný parametr support_material_contact_distance" -#: src/libslic3r/Print.cpp:1293 +#: src/libslic3r/Print.cpp:1297 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "Čistící věž je při více objektech možná pouze v případě, že objekty jsou slicovány stejně." -#: src/libslic3r/Print.cpp:1287 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "Čistící věž je při více objektech možná pouze v případě, že objekty mají všechny vrstvy stejné výšky" -#: src/libslic3r/Print.cpp:1253 +#: src/libslic3r/Print.cpp:1257 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "Čistící věž je podporována pouze v případě, že všechny extrudery mají stejné průměry trysek a používají filamenty stejných průměrů." -#: src/libslic3r/Print.cpp:1335 +#: src/libslic3r/Print.cpp:1339 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "Čistící věž je podporována pouze v případě, že všechny objekty mají stejnou variabilní výšku vrstvy" -#: src/libslic3r/SLAPrintSteps.cpp:596 +#: src/libslic3r/SLAPrintSteps.cpp:621 msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." msgstr "Nacházejí se zde netisknutelné objekty. Zkuste upravit nastavení podpěr tak, aby bylo možné objekty vytisknout." -#: src/slic3r/GUI/DoubleSlider.cpp:996 +#: src/slic3r/GUI/DoubleSlider.cpp:1030 msgid "" "There is a color change for extruder that has not been used before.\n" "Check your settings to avoid redundant color changes." @@ -8077,7 +7895,7 @@ msgstr "" "Dochází zde ke změně barvy u extruderu, který dosud nebyl použit.\n" "Zkontrolujte nastavení, abyste se vyhnuli redundantním změnám barev." -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:1024 msgid "" "There is a color change for extruder that won't be used till the end of print job.\n" "This code won't be processed during G-code generation." @@ -8085,7 +7903,7 @@ msgstr "" "Dochází zde ke změně barvy u extruderu, který již do konce tisku nebude použit.\n" "Tento kód nebude během generování G-kódu zpracován." -#: src/slic3r/GUI/DoubleSlider.cpp:993 +#: src/slic3r/GUI/DoubleSlider.cpp:1027 msgid "" "There is an extruder change set to the same extruder.\n" "This code won't be processed during G-code generation." @@ -8098,7 +7916,7 @@ msgstr "" msgid "This %s version: %s" msgstr "Tento %s verze: %s" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Tento kód je vložen mezi objekty, pokud je použit sekvenční tisk. Ve výchozím nastavení je resetován extruder a tisková podložka pomocí non-wait (nečekacím) příkazem; nicméně pokud jsou příkazy M104, M109, 140 nebo M190 detekovány v tomto vlastním kódu, Slic3r nebude přidávat teplotní příkazy. Můžete přidávat zástupné proměnné pro veškeré nastavení Slic3ru, takže můžete vložit příkaz “M109 S[first_layer_temperature]” kamkoliv chcete." @@ -8106,7 +7924,7 @@ msgstr "Tento kód je vložen mezi objekty, pokud je použit sekvenční tisk. V msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Tento vlastní kód je vložen při každé změně vrstvy, hned po pohybu Z a předtím, než se extruder přesune na první bod vrstvy. Můžete přidávat zástupné proměnné pro veškeré nastavení Slic3ru, stejně tak jako [layer_num] a [layer_z]." -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Tento vlastní kód je vložen pro každou změnu vrstvy, předtím než se pohne Z. Můžete přidávat zástupné proměnné pro veškeré nastavení Slic3ru stejně tak jako [layer_num] a [layer_z]." @@ -8138,11 +7956,11 @@ msgstr "Toto experimentální nastavení používá příkazy G10 a G11, aby si msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Toto experimentální nastavení používá výstupní hodnoty E v kubických milimetrech místo lineárních milimetrů. Pokud firmware dosud nezná průměr (průměry) filamentu, můžete v počátečním G-code zadat příkazy jako “M200 D [filament_diameter_0] T0”, pro se zapnutí volumetrického režimu a použití průměru filamentu přidruženého k vybranému filamentu ve Slic3ru. Toto je podporováno pouze v posledních verzích firmwaru Marlin." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "Tento extruder bude nastaven pro vybrané položky" -#: src/libslic3r/PrintConfig.cpp:214 +#: src/libslic3r/PrintConfig.cpp:224 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Tato hodnota určuje množství vytlačeného plastu při vytváření mostů. Mírným snížením této hodnoty můžete předejít pronášení i když, přednastavené hodnoty jsou většinou dobré a je lepší experimentovat s chlazením (využitím ventilátoru), než s touto hodnotou." @@ -8150,7 +7968,7 @@ msgstr "Tato hodnota určuje množství vytlačeného plastu při vytváření m msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Tento faktor mění poměrné množství průtoku. Možná bude třeba toto nastavení vyladit, pro dosažení hezkého povrchu a správné šířky jednotlivých stěn. Obvyklé hodnoty jsou mezi 0,9 a 1,1. Pokud si myslíte, že hodnotu potřebujete změnit více, zkontrolujte průměr filamentu a E kroky ve firmwaru." -#: src/libslic3r/PrintConfig.cpp:204 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Nastavená rychlost ventilátoru je využita vždy při vytváření mostů a přesahů." @@ -8166,11 +7984,11 @@ msgstr "Tato funkce umožňuje vynucení plné vrstvy za každý daný počet vr msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Tato funkce zvýší postupně Z při tisku jednovrstvého objektu, aby se odstranil jakýkoli viditelný šev. Tato volba vyžaduje jediný obvod, žádnou výplň, žádné vrchní plné vrstvy a žádný podpůrný materiál. Můžete stále nastavit libovolný počet spodních plných vrstev, stejně jako obrysové smyčky / límec. Při tisku více než jednoho objektu nebude toto nastavení fungovat." -#: src/slic3r/GUI/Plater.cpp:2351 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Tento soubor nelze načíst v jednoduchém režimu. Chcete přepnout do pokročilého režimu?" -#: src/slic3r/GUI/Plater.cpp:2341 +#: src/slic3r/GUI/Plater.cpp:2357 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should I consider\n" @@ -8196,11 +8014,11 @@ msgstr "" "Chcete i přesto pokračovat a nahrát do tiskárny hex soubor?\n" "Pokračujte prosím, pouze pokud jste si jisti, že je to správný soubor." -#: src/libslic3r/PrintConfig.cpp:304 +#: src/libslic3r/PrintConfig.cpp:314 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Zapne výpočet automatického chlazení, který upravuje rychlost tisku a ventilátoru v závislosti na délce tisku jedné vrstvy." -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:536 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Tato vlajka zapíná límec, který bude vytištěn kolem každého objektu při první vrstvě." @@ -8212,19 +8030,19 @@ msgstr "Tato možnost vyvolá retrakci, kdykoli je proveden pohyb Z." msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Toto nastavení přemístí trysku při retrakci, aby se minimalizovalo možné vytékání materiálu." -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "Toto je výchozí přednastavení." -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "Relativní míra hustoty podpěrných bodů." -#: src/slic3r/GUI/Tab.cpp:2334 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Jedná se o multimateriálovou tiskárnu s jedním extruderem, průměry všech extruderů se nastaví na novou hodnotu. Chcete pokračovat?" -#: src/slic3r/GUI/Tab.cpp:957 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "Toto je systémové přednastavení." @@ -8232,11 +8050,11 @@ msgstr "Toto je systémové přednastavení." msgid "This is only used in the Slic3r interface as a visual help." msgstr "Toto je v Slic3ru jako názorná pomoc." -#: src/libslic3r/PrintConfig.cpp:326 +#: src/libslic3r/PrintConfig.cpp:336 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Toto je hodnota akcelerace na kterou se tiskárna vrátí po specifických úpravách akcelerace například při tisku (perimetru/výplně). Nastavením na nulu zabráníte návratu rychlostí zcela." -#: src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:194 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "Nastavení akcelerace tiskárny při vytváření mostů. Nastavením na nulu vypnete ovládání akcelerace pro mosty." @@ -8354,7 +8172,7 @@ msgstr "" "\n" "Můžete buď ukončit %s a zkusit to znovu s novou verzí, nebo můžete znovu spustit výchozí konfiguraci. Před instalací kompatibilního nastavení s touto verzí %s dojde k vytvoření zálohy současné konfigurace." -#: src/libslic3r/PrintConfig.cpp:2449 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Aplikuje gamma korekci na rastrové 2D polygony. Hodnota nula znamená nastavení prahové hodnoty doprostřed. Toto chování eliminuje antialiasing bez ztráty otvorů v polygonech." @@ -8366,11 +8184,11 @@ msgstr "Vlákna" msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Vlákna jsou používána pro paralelizaci časově náročnějších úloh. Optimální počet vláken je mírně nad počtem dostupných jader/procesorů." -#: src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "Náklon" -#: src/slic3r/GUI/Tab.cpp:2092 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "Doba náklonu" @@ -8398,29 +8216,15 @@ msgstr "Doba trvání pomalého náklonu" msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Doba čekání po vysunutí filamentu. Může pomoci ke spolehlivé změně extruderu s flexibilními materiály, které potřebují více času ke smrštění na původní rozměry." -#: src/slic3r/GUI/DoubleSlider.cpp:962 -msgid "To add another code use Ctrl + Left click" -msgstr "Chcete-li přidat další kód, použijte Ctrl + Levé kliknutí" - -#: src/slic3r/GUI/DoubleSlider.cpp:963 -msgid "To add another code use Right click" -msgstr "Pro přidání dalšího kódu klikněte pravým tlačítkem myši" - -#: src/slic3r/GUI/Tab.cpp:968 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "Chcete-li akci provést, prosím nejdříve zadejte nový název přednastavení." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "" -"To except of redundant tool manipulation, \n" -"Color change(s) for unused extruder(s) was(were) deleted" -msgstr "S výjimkou nadbytečné manipulace s nástrojem byly změny barvy nepoužitého extruderu odstraněny" - -#: src/slic3r/GUI/Plater.cpp:4023 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "Na objekty" -#: src/slic3r/GUI/Plater.cpp:4025 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "Na části" @@ -8433,13 +8237,13 @@ msgstr "Přepnout zrcadlení podle osy %c" msgid "too many files" msgstr "příliš mnoho souborů" -#: src/libslic3r/SLAPrintSteps.cpp:154 +#: src/libslic3r/SLAPrintSteps.cpp:190 msgid "Too much overlapping holes." msgstr "Příliš mnoho překrývajících se otvorů." -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 -#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Nástroj" @@ -8447,11 +8251,11 @@ msgstr "Nástroj" msgid "Tool #" msgstr "Nástroj #" -#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code pro výměnu nástroje" -#: src/slic3r/GUI/Tab.cpp:1493 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parametry při výměně (Multi Material s jedním extruderem)" @@ -8462,7 +8266,7 @@ msgstr "Parametry při výměně (Multi Material s jedním extruderem)" msgid "Top" msgstr "Shora" -#: src/slic3r/GUI/PresetHints.cpp:300 +#: src/slic3r/GUI/PresetHints.cpp:304 msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." msgstr "Nápověda pro tloušťku vrchní / spodní skořepiny: Není k dipozici z důvodu neplatné výšky vrstvy." @@ -8470,11 +8274,11 @@ msgstr "Nápověda pro tloušťku vrchní / spodní skořepiny: Není k dipozici msgid "Top fill pattern" msgstr "Vzor výplně horní vrstvy" -#: src/slic3r/GUI/PresetHints.cpp:319 +#: src/slic3r/GUI/PresetHints.cpp:323 msgid "Top is open." msgstr "Horní část je otevřená." -#: src/slic3r/GUI/PresetHints.cpp:313 +#: src/slic3r/GUI/PresetHints.cpp:317 msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Tloušťka vrchní skořepiny je %1% mm při výšce vrstvy %2% mm." @@ -8482,7 +8286,7 @@ msgstr "Tloušťka vrchní skořepiny je %1% mm při výšce vrstvy %2% mm." msgid "top solid infill" msgstr "vrchní plná výplň" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 #: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Vrchní plné výplně" @@ -8511,13 +8315,12 @@ msgstr "Celkový čas rapidní extruze" msgid "Translate" msgstr "Posunout" +#: src/slic3r/GUI/Mouse3DController.cpp:300 #: src/slic3r/GUI/Mouse3DController.cpp:317 -#: src/slic3r/GUI/Mouse3DController.cpp:337 -#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Translace" -#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Rychloposun" @@ -8525,7 +8328,7 @@ msgstr "Rychloposun" msgid "Triangles" msgstr "Trojúhelníky" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Pokuste se opravit nemanifoldní meshe (tato možnost je implicitně přidána vždy, když potřebujeme řezat model)." @@ -8533,11 +8336,11 @@ msgstr "Pokuste se opravit nemanifoldní meshe (tato možnost je implicitně př msgid "Type of the printer." msgstr "Typ tiskárny." -#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "Typ:" -#: src/slic3r/GUI/Plater.cpp:3436 +#: src/slic3r/GUI/Plater.cpp:3428 msgid "Unable to reload:" msgstr "Nelze znovu načíst:" @@ -8545,11 +8348,12 @@ msgstr "Nelze znovu načíst:" msgid "undefined error" msgstr "nedefinovaná chyba" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Zpět" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 #, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" @@ -8557,7 +8361,7 @@ msgstr[0] "%1$d Akce Zpět" msgstr[1] "%1$d Akce Zpět" msgstr[2] "%1$d Akcí Zpět" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "Historie operací Zpět" @@ -8587,17 +8391,17 @@ msgstr "Rychlost vysunutí" msgid "Unloading speed at the start" msgstr "Počáteční rychlost vysouvání filamentu" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "ODEMČENÝ ZÁMEK" -#: src/slic3r/GUI/Tab.cpp:3266 +#: src/slic3r/GUI/Tab.cpp:3282 msgid "" "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" "Click to reset all settings for current option group to the system (or default) values." msgstr "Ikona ODEMKNUTÉHO ZÁMKU indikuje, že některá nastavení byla změněna a nejsou shodná se systémovými (výchozími) hodnotami pro danou skupinu nastavení. Klikněte pro reset všech nastavení aktuální skupiny nastavení na systémové hodnoty." -#: src/slic3r/GUI/Tab.cpp:3281 +#: src/slic3r/GUI/Tab.cpp:3297 msgid "" "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" "Click to reset current value to the system (or default) value." @@ -8605,11 +8409,16 @@ msgstr "" "Ikona ODEMKNUTÉHO ZÁMKU indikuje, že se hodnota změnila a není shodná se systémovou (nebo výchozí) hodnotou.\n" "Klikněte pro reset současné hodnoty na systémovou hodnotu." -#: src/slic3r/GUI/GUI_Preview.cpp:257 +#: src/slic3r/GUI/Plater.cpp:5203 +#, c-format +msgid "Unmounting successful. The device %s(%s) can now be safely removed from the computer." +msgstr "Odpojení proběhlo úspěšné. Zařízení %s(%s) lze nyní bezpečně odebrat z počítače." + +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "Deretrakce" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "Neuložené Změny" @@ -8617,10 +8426,6 @@ msgstr "Neuložené Změny" msgid "Unsaved Presets" msgstr "Neuložená přednastavení" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 -msgid "Unselect gizmo / Clear selection" -msgstr "Zrušit gizmo / Zrušit výběr" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:179 msgid "Unselect gizmo or clear selection" msgstr "Zrušit gizmo nebo zrušit výběr" @@ -8649,11 +8454,11 @@ msgstr "nepodporovaný multidisk archiv" msgid "Unsupported OpenGL version" msgstr "Nepodporovaná verze OpenGL" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "Nepodporovaný výběr" -#: src/slic3r/GUI/GLCanvas3D.cpp:960 +#: src/slic3r/GUI/GLCanvas3D.cpp:955 #, c-format msgid "up to %.2f mm" msgstr "do % .2f mm" @@ -8662,15 +8467,15 @@ msgstr "do % .2f mm" msgid "Update available" msgstr "Je dostupná aktualizace" -#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "Aktualizovat vestavěné přednastavení automaticky" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "Aktualizace" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Aktualizace nejsou nikdy nainstalovány bez vědomí uživatele a nikdy nepřepíšou upravená uživatelská nastavení." @@ -8694,12 +8499,12 @@ msgstr "Nahrát soubor do tiskového serveru se jménem:" msgid "Uploading" msgstr "Nahrávání" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 msgid "Upper Layer" msgstr "Vyšší vrstva" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "USB/Sériové připojení" @@ -8707,11 +8512,11 @@ msgstr "USB/Sériové připojení" msgid "USB/serial port for printer connection." msgstr "USB/sériový port pro připojení tiskárny." -#: src/slic3r/GUI/DoubleSlider.cpp:1115 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "Použít jiný extruder" -#: src/slic3r/GUI/Preferences.cpp:147 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "Použít vlastní velikost ikon na panelu nástrojů" @@ -8723,15 +8528,15 @@ msgstr "Použít retrakce z firmwaru" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Pokud je to nutné, použijte pro oddělení složek lomítko ( / )." -#: src/slic3r/GUI/Preferences.cpp:129 +#: src/slic3r/GUI/Preferences.cpp:126 msgid "Use free camera" msgstr "Scéna v režimu „free camera“" -#: src/libslic3r/PrintConfig.cpp:2771 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "Použít podložku" -#: src/slic3r/GUI/Preferences.cpp:121 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "Perspektivní zobrazení scény" @@ -8739,7 +8544,7 @@ msgstr "Perspektivní zobrazení scény" msgid "Use relative E distances" msgstr "Použít relativní E vzdálenosti" -#: src/slic3r/GUI/Preferences.cpp:106 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "Pro 3D scénu použít rozlišení Retina" @@ -8755,27 +8560,27 @@ msgstr "Toto nastavení použijte pro horizontální otočení vzoru." msgid "Use volumetric E" msgstr "Použít volumetrickou hodnotu E" -#: src/slic3r/GUI/DoubleSlider.cpp:1139 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 msgid "used" msgstr "použitý" -#: src/slic3r/GUI/Plater.cpp:239 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "Použito Filamentu (g)" -#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "Použito Filamentu (m)" -#: src/slic3r/GUI/Plater.cpp:238 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "Použito Filamentu (mm³)" -#: src/slic3r/GUI/Plater.cpp:1188 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "Použitý materiál (ml)" -#: src/slic3r/GUI/Plater.cpp:240 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "Použito materiálu (jednotka)" @@ -8783,8 +8588,8 @@ msgstr "Použito materiálu (jednotka)" msgid "User" msgstr "Uživatel" -#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 -#: src/slic3r/GUI/PresetBundle.cpp:1670 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "Uživatelská přednastavení" @@ -8800,31 +8605,31 @@ msgstr "Hodnota je shodná se systémovou hodnotou" msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Hodnota byla změněna a není shodná se systémovou hodnotou nebo naposled uloženým přednastavením" -#: src/slic3r/GUI/Tab.cpp:2198 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "Hodnoty v tomto sloupci jsou pro Normální režim" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "Hodnoty v tomto sloupci jsou pro Tichý režim" -#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "Variabilní výška vrstvy" -#: src/slic3r/GUI/GLCanvas3D.cpp:1713 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "Variabilní výška vrstev - Adaptivní" -#: src/slic3r/GUI/GLCanvas3D.cpp:604 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "Variabilní výška vrstev - Ruční editace" -#: src/slic3r/GUI/GLCanvas3D.cpp:1705 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "Variabilní výška vrstev - Reset" -#: src/slic3r/GUI/GLCanvas3D.cpp:1721 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "Variabilní výška vrstev - Vyhladit vše" @@ -8832,7 +8637,7 @@ msgstr "Variabilní výška vrstev - Vyhladit vše" msgid "variants" msgstr "varianty" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "prodejce" @@ -8852,24 +8657,24 @@ msgstr "Verze" msgid "version" msgstr "verze" -#: src/slic3r/GUI/Tab.cpp:1055 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "Svislé stěny" -#: src/slic3r/GUI/GUI_Preview.cpp:220 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "Zobrazení" -#: src/slic3r/GUI/ConfigWizard.cpp:814 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "Režim zobrazení" -#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 -#: src/libslic3r/SLAPrintSteps.cpp:430 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "Vizualizace podpěr" -#: src/slic3r/GUI/Plater.cpp:163 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "Obsah" @@ -8877,7 +8682,7 @@ msgstr "Obsah" msgid "Volume to purge (mm³) when the filament is being" msgstr "Objem k vyčištění (mm³) pokud je filament" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "Změna pořadí Těles v Objektu" @@ -8885,11 +8690,11 @@ msgstr "Změna pořadí Těles v Objektu" msgid "Volumetric" msgstr "Volumetrický" -#: src/slic3r/GUI/Tab.cpp:1593 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "Doporučení pro objemový průtok nejsou k dispozici" -#: src/slic3r/GUI/GUI_Preview.cpp:228 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "Objemový průtok" @@ -8901,12 +8706,12 @@ msgstr "Objemový průtok (mm³/s)" msgid "Volumetric speed" msgstr "Objemová rychlost" -#: src/libslic3r/PrintConfig.cpp:2906 +#: src/libslic3r/PrintConfig.cpp:2915 msgid "Wall thickness" msgstr "Tloušťka stěny" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Varování" @@ -8925,7 +8730,7 @@ msgstr "Vítejte v %s Konfiguračním Asistentu" msgid "Welcome to the %s Configuration Wizard" msgstr "Vítejte v %s Konfiguračním průvodci" -#: src/slic3r/GUI/Preferences.cpp:99 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Pokud je zaškrtnuto, přednastavení tisku a filamentu se zobrazují v editoru přednastavení, i když jsou označeny jako nekompatibilní s aktivní tiskárnou" @@ -8933,11 +8738,11 @@ msgstr "Pokud je zaškrtnuto, přednastavení tisku a filamentu se zobrazují v msgid "when printing" msgstr "při tisku" -#: src/libslic3r/PrintConfig.cpp:243 +#: src/libslic3r/PrintConfig.cpp:253 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Připnutí překrývajících se objektů jeden k druhému při Multimateriálovém tisku. (Druhá část se připne k první, třetí část k první a druhé, atd)." -#: src/libslic3r/PrintConfig.cpp:295 +#: src/libslic3r/PrintConfig.cpp:305 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Při tisku více objektů nebo kopií tiskárna kompletně dokončí jeden objekt, předtím než začne tisknout druhý (začíná od spodní vrstvy). Tato vlastnost je výhodná z důvodů snížení rizika zničených výtisků. Slic3r by měl varovat při možné kolizi extruderu s objektem a zabránit mu, přesto doporučujeme obezřetnost." @@ -8969,23 +8774,23 @@ msgstr "Když je retrakce kompenzována po změně nástroje, extruder vytlačuj msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Když je retrakce kompenzována po rychloposunu, extruder vytlačuje toto další množství filamentu. Toto nastavení je zřídkakdy potřeba." -#: src/slic3r/GUI/Tab.cpp:3247 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "BÍLÁ TEČKA" -#: src/slic3r/GUI/Tab.cpp:3269 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "Ikona BÍLÉ TEČKY indikuje nesystémové (nebo jiné než výchozí) přednastavení." -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "Ikona BÍLÉ TEČKY indikuje, že nastavení jsou shodná s naposledy uloženým přednastavením pro danou skupinu nastavení." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "Ikona BÍLÉ TEČKY indikuje, že je hodnota shodná s naposledy uloženým přednastavením." -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Šířka" @@ -8993,7 +8798,7 @@ msgstr "Šířka" msgid "Width (mm)" msgstr "Šířka (mm)" -#: src/libslic3r/PrintConfig.cpp:2631 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "Šířka od středu zadní koule ke středu přední koule" @@ -9001,7 +8806,7 @@ msgstr "Šířka od středu zadní koule ke středu přední koule" msgid "Width of a wipe tower" msgstr "Šířka čistící věže" -#: src/libslic3r/PrintConfig.cpp:2882 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Šířka spojek, které spojují objekt s vygenerovanou podložkou." @@ -9029,18 +8834,18 @@ msgstr "Vyčistit do tohoto objektu" msgid "Wipe into this object's infill" msgstr "Vyčištění do výplně tohoto objektu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 #: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Možnosti čištění" -#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Čistící věž" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "čistící věž" @@ -9053,7 +8858,7 @@ msgstr "Čistící Věž" msgid "Wipe tower - Purging volume adjustment" msgstr "Čistící věž - Úprava objemu čištění" -#: src/slic3r/GUI/Tab.cpp:1490 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "Parametry čistící věže" @@ -9104,7 +8909,7 @@ msgstr "" msgid "write calledback failed" msgstr "zpětné volání se nezdařilo" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "Vypsat informace o modelu do konsole." @@ -9132,7 +8937,7 @@ msgstr "Kompenzace XY rozměrů" msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Y souřadnice levého předního rohu čistící věže" -#: src/slic3r/GUI/Plater.cpp:1167 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "Ano" @@ -9148,11 +8953,11 @@ msgstr "Zde můžete vložit poznámky týkající se filamentu." msgid "You can put your notes regarding the printer here." msgstr "Zde můžete uvést poznámky týkající se tiskárny." -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "Zde můžete vkládat své poznámky týkající se tiskového materiálu SLA." -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:360 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Nastavením počtu prvních vrstev s vypnutým chlazením pro nezhoršování přilnavosti." @@ -9160,18 +8965,18 @@ msgstr "Nastavením počtu prvních vrstev s vypnutým chlazením pro nezhoršov msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "V této šabloně můžete použít všechny možnosti konfigurace jako proměnné. Můžete například použít: [layer_height], [fill_density] etc. Také můžete použít [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "Nelze změnit typ poslední plné části objektu." -#: src/slic3r/GUI/Plater.cpp:2374 +#: src/slic3r/GUI/Plater.cpp:2390 #, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Nemůžete přidat objekt(y) z %s, protože jeden nebo některé z nich je(jsou) vícedílné" -#: src/slic3r/GUI/Plater.cpp:2295 +#: src/slic3r/GUI/Plater.cpp:2311 msgid "You cannot load SLA project with a multi-part object on the bed" -msgstr "Nelze načíst SLA projekt s objektem na podložce, který je složený z více částí. " +msgstr "Nelze načíst SLA projekt s objektem na podložce, který je složený z více částí" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" @@ -9189,29 +8994,33 @@ msgstr "Pro vybrané tiskárny musíte vybrat alespoň jeden materiál" msgid "You may need to update your graphics card driver." msgstr "Možná budete muset aktualizovat ovladač grafické karty." -#: src/slic3r/GUI/Preferences.cpp:176 +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "You must install a configuration update." +msgstr "Je nutné nainstalovat aktualizaci konfigurace." + +#: src/slic3r/GUI/Preferences.cpp:172 #, c-format msgid "You need to restart %s to make the changes effective." msgstr "Chcete-li provést změny, musíte restartovat aplikaci %s." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 #, c-format msgid "You started your selection with %s Item." msgstr "Začali jste výběr s položkou %s." -#: src/slic3r/GUI/DoubleSlider.cpp:1875 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 msgid "Your current changes will delete all saved color changes." msgstr "Vaše aktuálně provedené změny odstraní všechny uložené změny barev." -#: src/slic3r/GUI/DoubleSlider.cpp:1896 +#: src/slic3r/GUI/DoubleSlider.cpp:1923 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "Vaše aktuálně provedené změny odstraní všechny uložené změny extruderu (nástroje)." -#: src/slic3r/GUI/MainFrame.cpp:913 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "Váš soubor byl opraven." -#: src/slic3r/GUI/Plater.cpp:2512 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Váš objekt se zdá být příliš velký, takže byl automaticky zmenšen, aby se vešel na tiskovou podložku." @@ -9239,28 +9048,24 @@ msgstr "" "\n" "Výška vrstvy bude resetována na 0.01." -#: src/libslic3r/PrintConfig.cpp:2658 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/Mouse3DController.cpp:326 -#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Zoom" msgstr "Zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 msgid "Zoom in" msgstr "Přiblížit" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 msgid "Zoom out" msgstr "Oddálit" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "Pohled na všechny objekty ve scéně, pokud žádný není vybraný" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 msgid "Zoom to Bed" msgstr "Pohled na tiskovou plochu" @@ -9272,18 +9077,14 @@ msgstr "" "Pohled na označený objekt, nebo na všechny objekty ve scéně,\n" "pokud není vybraný žádný objekt" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "Pohled na vybraný objekt" - -#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 #: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 #: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" diff --git a/resources/localization/de/PrusaSlicer.mo b/resources/localization/de/PrusaSlicer.mo index 5417f2b605261e30bec4d2a92c35b7c7ded71d11..fe2a2a42d59659c841c5589ee7dacea723f62de4 100644 GIT binary patch delta 47647 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 diff --git a/resources/localization/de/PrusaSlicer_de.po b/resources/localization/de/PrusaSlicer_de.po index c4b0f6f60b..e404fed5c0 100644 --- a/resources/localization/de/PrusaSlicer_de.po +++ b/resources/localization/de/PrusaSlicer_de.po @@ -5,135 +5,168 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: PhraseApp (phraseapp.com)\n" +"X-Generator: Poedit 2.2.1\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" #: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Denken Sie an die Überprüfung auf Updates unter http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:874 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " wurde erfolgreich gesliced." -#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 #: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 #: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 -#: src/libslic3r/PrintConfig.cpp:2758 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/slic3r/GUI/GLCanvas3D.cpp:968 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:963 +#, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3110 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "%1% Voreinstellung" -#: src/slic3r/GUI/Plater.cpp:4413 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "Der %1% Drucker war zum Zeitpunkt der Aufnahme des Ziel-Rückgängig-/Wiederherstellungs-Schnappschusses aktiv. Die Umstellung auf den %1%-Drucker erfordert ein Neuladen der %1%-Voreinstellungen." -#: src/libslic3r/Print.cpp:1370 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm ist zu niedrig, um auf einer Schichthöhe von %3% mm druckbar zu sein" #: src/slic3r/GUI/PresetHints.cpp:229 -#, possible-c-format +#, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s mit einer Filamentgeschwindigkeit von %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:1149 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1152 +#, c-format msgid "%d (%d shells)" msgstr "%d (%d Konturhüllen)" -#: src/slic3r/GUI/Plater.cpp:1157 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1160 +#, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d degenerierte Flächen, %d Kanten korrigiert, %d Flächen entfernt, %d Flächen hinzugefügt, %d Flächen umgekehrt, %d rückwärtige Kanten" -#: src/slic3r/GUI/PresetHints.cpp:269 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:270 +#, c-format msgid "%d lines: %.2f mm" msgstr "%d Linien: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:1029 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:1027 +#, c-format msgid "%d presets successfully imported." msgstr "%d Voreinstellungen erfolgreich importiert." -#: src/slic3r/GUI/MainFrame.cpp:694 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:692 +#, c-format msgid "%s &Website" msgstr "%s &Webseite" #: src/slic3r/GUI/UpdateDialogs.cpp:211 -#, possible-c-format +#, c-format msgid "%s configuration is incompatible" msgstr "%s Konfiguration ist nicht kompatibel" -#: src/slic3r/GUI/Field.cpp:170 -#, possible-c-format +#: src/slic3r/GUI/Field.cpp:175 +#, c-format msgid "%s doesn't support percentage" msgstr "%s akzeptiert keine Prozentangaben" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, possible-c-format +#, c-format msgid "%s error" msgstr "%s Fehler" #: src/slic3r/GUI/ConfigWizard.cpp:481 -#, possible-c-format +#, c-format msgid "%s Family" msgstr "%s Familie" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, possible-c-format +#, c-format msgid "%s has encountered an error" msgstr "%s ist auf einen Fehler gestoßen" #: src/slic3r/GUI/GUI_App.cpp:138 -#, possible-c-format -msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." -msgstr "%s ist auf einen Fehler gestoßen. Es wurde wahrscheinlich dadurch verursacht, dass der Speicher knapp wird. Wenn Sie sicher sind, dass Sie genügend RAM auf Ihrem System haben, kann dies auch ein Programmfehler sein, und wir würden uns freuen, wenn Sie ihn melden würden.\n\nDie Anwendung wird nun beendet." +#, c-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" +"\n" +"The application will now terminate." +msgstr "" +"%s ist auf einen Fehler gestoßen. Es wurde wahrscheinlich dadurch verursacht, dass der Speicher knapp wird. Wenn Sie sicher sind, dass Sie genügend RAM auf Ihrem System haben, kann dies auch ein Programmfehler sein, und wir würden uns freuen, wenn Sie ihn melden würden.\n" +"\n" +"Die Anwendung wird nun beendet." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 -#, possible-c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 +#, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s ist auf einen Fehler gestoßen. Es wurde wahrscheinlich dadurch verursacht, dass der Speicher knapp wird. Wenn Sie sicher sind, dass Sie genügend RAM auf Ihrem System haben, kann dies auch ein Programmfehler sein, und wir würden uns freuen, wenn Sie ihn melden würden." #: src/slic3r/GUI/UpdateDialogs.cpp:308 -#, possible-c-format -msgid "%s has no configuration updates aviable." +#, c-format +msgid "%s has no configuration updates available." msgstr "Für %s sind keine Konfigurationsaktualisierungen verfügbar." #: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 -#, possible-c-format +#, c-format msgid "%s incompatibility" msgstr "%s-Inkompatibilität" #: src/slic3r/GUI/UpdateDialogs.cpp:270 -#, possible-c-format -msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." -msgstr "%s verwendet nun eine aktualisierte Konfigurationsstruktur.\n\nSogenannte 'Systemeinstellungen' wurden eingeführt; diese enthalten die eingebauten Standardeinstellungen für verschiedene Drucker. Diese Systemeinstellungen können nicht verändert werden. Stattdessen können Benutzer nun ihre eigenen Voreinstellungen erstellen, die Werte von einer der Systemeinstellungen übernehmen.\nEine übernehmende Voreinstellung kann entweder einen bestimmten Wert von ihrem Vorbild übernehmen, oder ihn mit einem eigenen Wert überschreiben.\n\nBitte fahren Sie fort mit '%s'. Dies folgt nun, um die neuen Einstellungen einzurichten sowie auszuwählen, ob Einstellungen automatisch aktualisiert werden dürfen." +#, c-format +msgid "" +"%s now uses an updated configuration structure.\n" +"\n" +"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" +"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" +"\n" +"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +msgstr "" +"%s verwendet nun eine aktualisierte Konfigurationsstruktur.\n" +"\n" +"Sogenannte 'Systemeinstellungen' wurden eingeführt; diese enthalten die eingebauten Standardeinstellungen für verschiedene Drucker. Diese Systemeinstellungen können nicht verändert werden. Stattdessen können Benutzer nun ihre eigenen Voreinstellungen erstellen, die Werte von einer der Systemeinstellungen übernehmen.\n" +"Eine übernehmende Voreinstellung kann entweder einen bestimmten Wert von ihrem Vorbild übernehmen, oder ihn mit einem eigenen Wert überschreiben.\n" +"\n" +"Bitte fahren Sie fort mit '%s'. Dies folgt nun, um die neuen Einstellungen einzurichten sowie auszuwählen, ob Einstellungen automatisch aktualisiert werden dürfen." #: src/slic3r/GUI/GUI_App.cpp:820 -#, possible-c-format +#, c-format msgid "%s View Mode" msgstr "%s Anzeigemodus" #: src/slic3r/GUI/UpdateDialogs.cpp:151 -#, possible-c-format -msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "%s beginnt nun mit der Aktualisierung. Andernfalls kann nicht gestartet werden.\n\nBeachten Sie, dass zuerst ein vollständiger Konfigurations-Snapshot erstellt wird. Er kann dann jederzeit wiederhergestellt werden, falls es ein Problem mit der neuen Version geben sollte.\n\nAktualisierte Konfigurations-Bundles:" +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%s beginnt nun mit der Aktualisierung. Andernfalls kann nicht gestartet werden.\n" +"\n" +"Beachten Sie, dass zuerst ein vollständiger Konfigurations-Snapshot erstellt wird. Er kann dann jederzeit wiederhergestellt werden, falls es ein Problem mit der neuen Version geben sollte.\n" +"\n" +"Aktualisierte Konfigurations-Bundles:" -#: src/slic3r/GUI/MainFrame.cpp:707 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:705 +#, c-format msgid "&About %s" -msgstr "Über %s (&A)" +msgstr "Ü&ber %s" #: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" @@ -141,37 +174,37 @@ msgstr "&Konfiguration" #: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" -msgstr "Konfigurations-Momentaufnahmen (&C)" +msgstr "Konfi&gurations-Momentaufnahmen" #: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" -msgstr "Kopieren (&C)" +msgstr "&Kopieren" #: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" -msgstr "Löschen ausgewählt (&D)" +msgstr "Löschen aus&gewählt" -#: src/slic3r/GUI/MainFrame.cpp:724 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" -msgstr "B&earbeiten" +msgstr "&Bearbeiten" #: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "&Export" -#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "&Filamenteinstellungen" -#: src/slic3r/GUI/MainFrame.cpp:723 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "&Datei" -#: src/slic3r/GUI/ConfigWizard.cpp:1984 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "&Beenden" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "&Hilfe" @@ -181,13 +214,13 @@ msgstr "&Import" #: src/slic3r/GUI/GUI_App.cpp:822 msgid "&Language" -msgstr "Sprache (&l)" +msgstr "Sp&rache" #: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "&Neues Projekt" -#: src/slic3r/GUI/ConfigWizard.cpp:1983 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "&Weiter >" @@ -197,7 +230,7 @@ msgstr "Pr&ojekt öffnen" #: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" -msgstr "Einfügen (&P)" +msgstr "Ei&nfügen" #: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" @@ -205,7 +238,7 @@ msgstr "Druck&platte" #: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" -msgstr "Einstellungen (&P)" +msgstr "&Einstellungen" #: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" @@ -231,11 +264,11 @@ msgstr "Alle&s auswählen" msgid "&Undo" msgstr "&Undo" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" msgstr "&Anzeige" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" msgstr "&Fenster" @@ -247,19 +280,19 @@ msgstr "(Alles)" msgid "(minimum)" msgstr "(Minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "(Re)Slice" #: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" -msgstr "(Re)Slice jetzt (&w)" +msgstr "(Re)Slice jet&zt" -#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(Unbekannt)" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ") nicht gefunden." @@ -275,7 +308,7 @@ msgstr "0,2 (lösbar)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4108 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "3D Editiermodus" @@ -283,46 +316,46 @@ msgstr "3D Editiermodus" msgid "3D Honeycomb" msgstr "3D Bienenwabe" -#: src/slic3r/GUI/Mouse3DController.cpp:291 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "3Dconnexion Einstellungen" -#: src/slic3r/GUI/Plater.cpp:5068 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5038 +#, c-format msgid "3MF file exported to %s" msgstr "3MF Datei exportiert nach %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1982 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "< &Zurück" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:287 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Ein boolescher Ausdruck, der die Konfigurationswerte eines aktiven Druckprofils verwendet. Wenn dieser Ausdruck als wahr bewertet wird, wird dieses Profil als kompatibel mit dem aktiven Druckprofil angesehen." -#: src/libslic3r/PrintConfig.cpp:262 +#: src/libslic3r/PrintConfig.cpp:272 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Ein boolescher Ausdruck, der die Konfigurationswerte eines aktiven Druckerprofils verwendet. Wenn dieser Ausdruck als wahr bewertet wird, wird dieses Profil als kompatibel mit dem aktiven Druckerprofil angesehen." -#: src/slic3r/GUI/ConfigWizard.cpp:1035 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Ein Daumenwert ist 160 bis 230 °C für PLA, und 215 bis 250 °C für ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:1049 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Ein Daumenwert ist 60 °C für PLA und 110 °C für ABS. Auf 0 setzen, falls kein beheiztes Druckbett vorhanden ist." -#: src/slic3r/GUI/GLCanvas3D.cpp:691 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "Ein Werkzeugweg außerhalb des Druckbereichs wurde erkannt" #: src/slic3r/GUI/AboutDialog.cpp:199 -#, possible-c-format +#, c-format msgid "About %s" msgstr "Über %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:964 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:959 +#, c-format msgid "above %.2f mm" msgstr "oberhalb %.2f mm" @@ -330,11 +363,11 @@ msgstr "oberhalb %.2f mm" msgid "Above Z" msgstr "Über Z" -#: src/slic3r/GUI/Tab.cpp:1166 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "Beschleunigungskontrolle (fortgeschritten)" -#: src/libslic3r/PrintConfig.cpp:2916 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Accuracy" msgstr "Genauigkeit" @@ -346,19 +379,19 @@ msgstr "Aktivieren" msgid "Active" msgstr "Aktiv" -#: src/slic3r/GUI/DoubleSlider.cpp:1103 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 msgid "active" msgstr "aktiv" -#: src/slic3r/GUI/GLCanvas3D.cpp:272 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "Adaptiv" -#: src/slic3r/GUI/Tab.cpp:243 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "Neuen Drucker hinzufügen" -#: src/libslic3r/PrintConfig.cpp:2773 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "Fügt eine Grundschicht unter das gestützte Modell" @@ -366,47 +399,47 @@ msgstr "Fügt eine Grundschicht unter das gestützte Modell" msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Fügen Sie eine Sheath (eine einzelne Druckkontur) um die Basisschicht herum hinzu. Das macht die Stützstrukturen zuverlässiger, aber auch schwieriger zu entfernen." -#: src/slic3r/GUI/DoubleSlider.cpp:989 +#: src/slic3r/GUI/DoubleSlider.cpp:991 msgid "Add another code - Ctrl + Left click" msgstr "Weiteren Code hinzufügen - Strg + Linksklick" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:992 msgid "Add another code - Right click" msgstr "Weiteren Code hinzufügen - Rechtsklick" -#: src/slic3r/GUI/DoubleSlider.cpp:1449 +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "Farbwechsel hinzufügen" -#: src/slic3r/GUI/DoubleSlider.cpp:1148 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "Farbwechsel (%1%) hinzufügen für:" -#: src/slic3r/GUI/DoubleSlider.cpp:959 +#: src/slic3r/GUI/DoubleSlider.cpp:988 msgid "Add color change - Left click" msgstr "Farbwechsel hinzufügen - Linksklick" -#: src/slic3r/GUI/DoubleSlider.cpp:957 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" msgstr "Farbwechsel hinzufügen - Linksklick für vordefinierte Farbe oder Shift + Linksklick für benutzerdefinierte Farbauswahl" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "Fügt einen Farbwechselmarker der aktuellen Schicht hinzu" -#: src/slic3r/GUI/DoubleSlider.cpp:1462 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "Benutzerdefinierten G-Code hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:245 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "Detail hinzufügen" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 msgid "Add drainage hole" msgstr "Drainageloch hinzufügen" -#: src/slic3r/GUI/DoubleSlider.cpp:955 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "Add extruder change - Left click" msgstr "Extruderwechsel hinzufügen - Linksklick" @@ -414,22 +447,22 @@ msgstr "Extruderwechsel hinzufügen - Linksklick" msgid "Add extruder to sequence" msgstr "Extruder zur Sequenz hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "Generische Subobjekt hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "Höhenbereich hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 -#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" msgstr "Kopie hinzufügen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Add Instance of the selected object" msgstr "Kopie des gewählten Objektes hinzufügen" @@ -437,7 +470,7 @@ msgstr "Kopie des gewählten Objektes hinzufügen" msgid "Add layer range" msgstr "Schichtbereich hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "Schichten hinzufügen" @@ -450,7 +483,7 @@ msgstr "Modifizierer hinzufügen" msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Fügen Sie bei Bedarf weitere Perimeter hinzu, um Spalten in schrägen Wänden zu vermeiden. PrusaSlicer fügt immer wieder Perimeter hinzu, bis mehr als 70% der unmittelbar darüber liegenden Schleife unterstützt werden." -#: src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" msgstr "Eine weitere Kopie des gewählten Objekts hinzufügen" @@ -458,48 +491,48 @@ msgstr "Eine weitere Kopie des gewählten Objekts hinzufügen" msgid "Add part" msgstr "Teil hinzufügen" -#: src/slic3r/GUI/DoubleSlider.cpp:1459 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "Druckpause hinzufügen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "Punkt hinzufügen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "Punkt zur Auswahl hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "Höhenbreich Einstellungsbündel hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "Objekt Einstellungsbündel hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "Subobjekt Einstellungsbündel hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "Schichten Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "Objekt Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "Subobjekt Einstellungen hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "Form hinzufügen" @@ -515,27 +548,27 @@ msgstr "Stützblocker hinzufügen" msgid "Add support enforcer" msgstr "Stützverstärker hinzufügen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "Stützpunkt hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4516 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "Hinzufügen..." -#: src/slic3r/GUI/PresetBundle.cpp:1697 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "Filamente hinzufügen/entfernen" -#: src/slic3r/GUI/Preset.cpp:1151 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "Materialien hinzufügen/entfernen" -#: src/slic3r/GUI/Preset.cpp:1153 +#: src/slic3r/GUI/Preset.cpp:1203 msgid "Add/Remove printers" msgstr "Drucker hinzufügen/entfernen" -#: src/slic3r/GUI/Tab.cpp:972 +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "Weitere Informationen:" @@ -543,7 +576,7 @@ msgstr "Weitere Informationen:" msgid "Additional Settings" msgstr "Zusätzliche Einstellungen" -#: src/slic3r/GUI/ConfigWizard.cpp:790 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Zusätzlich wird eine Momentaufnahme der gesamten Konfiguration als Sicherung erstellt, bevor ein Update durchgeführt wird." @@ -551,18 +584,19 @@ msgstr "Zusätzlich wird eine Momentaufnahme der gesamten Konfiguration als Sich msgid "Address" msgstr "Adresse" -#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 -#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 -#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 -#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "Erweiterte Einstellungen" -#: src/slic3r/GUI/ConfigWizard.cpp:822 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "Fortgeschrittener Modus" @@ -578,15 +612,15 @@ msgstr "Fortgeschritten: Ausgabeprotokoll" msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Nach einem Werkzeugwechsel ist die genaue Position des neu geladenen Filaments innerhalb der Düse möglicherweise nicht bekannt, und der Filamentdruck ist wahrscheinlich noch nicht stabil. Bevor der Druckkopf in eine Füllung oder ein Opferobjekt wischt, wird PrusaSlicer immer diese Materialmenge in den Wischturm leiten, um aufeinanderfolgende Füll- oder Opferobjekt-Extrusionen zuverlässig herzustellen." -#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-Code am Schichtende" -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "Das Modell auf den angegebenen Punkt ausrichten." -#: src/libslic3r/PrintConfig.cpp:3382 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "Ausrichten von XY" @@ -595,19 +629,15 @@ msgid "Aligned" msgstr "Ausgerichtet" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3158 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "Alle" -#: src/libslic3r/Print.cpp:1215 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "Alle Objekte befinden sich außerhalb des Druckraums." -#: src/slic3r/GUI/Plater.cpp:3298 -msgid "All objects will be removed, continue ?" -msgstr "Alle Objekte werden entfernt, fortfahren?" - -#: src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "All objects will be removed, continue?" msgstr "Alle Objekte werden entfernt, fortfahren?" @@ -619,15 +649,15 @@ msgstr "Alles standard" msgid "allocation failed" msgstr "Allokation fehlgeschlagen" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "Entlang der X Achse" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "Entlang der Y Achse" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "Entlang der Z Achse" @@ -635,24 +665,28 @@ msgstr "Entlang der Z Achse" msgid "Alternate nozzles:" msgstr "Alternative Düsen:" -#: src/slic3r/GUI/Plater.cpp:5022 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5002 +#, c-format msgid "AMF file exported to %s" msgstr "AMF Datei exportiert nach %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 -msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" -msgstr "Ein Objekt außerhalb des Druckbereichs wurde erkannt.\nBeheben Sie das aktuelle Problem, um mit dem Slicen fortzufahren" - #: src/slic3r/GUI/GLCanvas3D.cpp:690 +msgid "" +"An object outside the print area was detected\n" +"Resolve the current problem to continue slicing" +msgstr "" +"Ein Objekt außerhalb des Druckbereichs wurde erkannt.\n" +"Beheben Sie das aktuelle Problem, um mit dem Slicen fortzufahren" + +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "Ein Objekt außerhalb des Druckbereichs wurde erkannt" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "und hat die folgenden ungesicherten Änderungen:" -#: src/slic3r/GUI/Plater.cpp:3154 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "Ein anderer Exportjob läuft zurzeit." @@ -661,7 +695,7 @@ msgstr "Ein anderer Exportjob läuft zurzeit." msgid "Any arrow" msgstr "Jeder Pfeil" -#: src/slic3r/GUI/Tab.cpp:967 +#: src/slic3r/GUI/Tab.cpp:965 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Alle Änderungen sollten als neue Voreinstellungen gespeichert werden, die von diesem vererbt wurden." @@ -674,7 +708,7 @@ msgid "Application preferences" msgstr "Anwendungseinstellungen" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "Änderungen anwenden" @@ -691,19 +725,21 @@ msgid "archive is too large" msgstr "Archiv ist zu groß" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3107 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "Sind Sie sicher, dass Sie die gewählte Voreinstellung %1% möchten?" #: src/slic3r/GUI/FirmwareDialog.cpp:902 -msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" +msgid "" +"Are you sure you want to cancel firmware flashing?\n" +"This could leave your printer in an unusable state!" msgstr "Sind Sie sicher, dass Sie das Flashen der Firmware abbrechen wollen? Dies könnte Ihren Drucker in einen unbrauchbaren Zustand versetzen!" -#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 msgid "Are you sure you want to continue?" msgstr "Sind Sie sicher, dass Sie weitermachen wollen?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "Sind Sie sicher, dass Sie es tun wollen?" @@ -711,50 +747,54 @@ msgstr "Sind Sie sicher, dass Sie es tun wollen?" msgid "Area fill" msgstr "Bereichsfüllung" -#: src/slic3r/GUI/Plater.cpp:638 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "Um das Objekt" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "Anordnen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "Auswahl anordnen" -#: src/libslic3r/PrintConfig.cpp:3428 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Die zur Verfügung stehenden Modelle in einer Platte anordnen und zu einem einzigen Modell zusammenführen, um Aktionen zusammen durchführen zu können." -#: src/slic3r/GUI/Plater.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "Anordnen" -#: src/slic3r/GUI/Plater.cpp:2825 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "Anordnen abgebrochen." -#: src/slic3r/GUI/Plater.cpp:2826 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "Anordnung beendet." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "Pfeil runter" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "Pfeil links" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "Pfeil rechts" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "Pfeil hoch" @@ -762,8 +802,8 @@ msgstr "Pfeil hoch" msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Als Workaround können Sie PrusaSlicer mit einer software-gerenderten 3D-Grafik ausführen, indem Sie prusa-slicer.exe mit dem Parameter --sw_renderer ausführen." -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 -#: src/slic3r/GUI/Tab.cpp:2944 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "Achtung!" @@ -776,17 +816,17 @@ msgid "Auto-center parts" msgstr "Teile automatisch zentrieren" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "Punkte automatisch generieren" -#: src/slic3r/GUI/Plater.cpp:1154 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, c-format msgid "Auto-repaired (%d errors)" msgstr "Auto-Reparatur (%d Fehler)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:337 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 +#, c-format msgid "Auto-repaired (%d errors):" msgstr "Auto-Reparatur (%d Fehler):" @@ -794,19 +834,19 @@ msgstr "Auto-Reparatur (%d Fehler):" msgid "Autodetected" msgstr "Automatisch erkannt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "Stützpunkte automatisch generieren" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "Die automatische Generierung löscht alle manuell bearbeiteten Punkte." -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "Automatische Erzeugung" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "Automatische Updates" @@ -814,31 +854,37 @@ msgstr "Automatische Updates" msgid "Automatically repair an STL file" msgstr "Repariere automatisch die STL Datei" -#: src/slic3r/GUI/Tab.cpp:1173 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "Automatische Geschwindigkeit (fortgeschritten)" -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "Kreuzen der Kontur vermeiden" -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "PFEIL ZURÜCK" -#: src/slic3r/GUI/Tab.cpp:3274 -msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." +#: src/slic3r/GUI/Tab.cpp:3290 +msgid "" +"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click to reset all settings for the current option group to the last saved preset." msgstr "Das Symbol PFEIL ZURÜCK zeigt an, dass die Einstellungen geändert wurden und nicht mit dem zuletzt gespeicherten Preset für die aktuelle Optionsgruppe übereinstimmen. Klicken Sie hier, um alle Einstellungen für die aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen." -#: src/slic3r/GUI/Tab.cpp:3288 -msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." -msgstr "Das Symbol PFEIL ZURÜCK zeigt an, dass der Wert geändert wurde und nicht mit dem zuletzt gespeicherten Preset übereinstimmt. \nKlicken Sie, um den aktuellen Wert auf das zuletzt gespeicherte Preset zurückzusetzen." +#: src/slic3r/GUI/Tab.cpp:3304 +msgid "" +"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" +"Click to reset current value to the last saved preset." +msgstr "" +"Das Symbol PFEIL ZURÜCK zeigt an, dass der Wert geändert wurde und nicht mit dem zuletzt gespeicherten Preset übereinstimmt. \n" +"Klicken Sie, um den aktuellen Wert auf das zuletzt gespeicherte Preset zurückzusetzen." #: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Hintergrundberechnung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:349 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "umgekehrte Kanten" @@ -846,7 +892,7 @@ msgstr "umgekehrte Kanten" msgid "based on Slic3r" msgstr "basiert auf Slic3r" -#: src/slic3r/GUI/Tab.cpp:1441 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "Druckbett" @@ -858,7 +904,7 @@ msgstr "Druckbett individuelles Modell" msgid "Bed custom texture" msgstr "Druckbett individuelle Textur" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "Druckbrettprofil" @@ -866,23 +912,23 @@ msgstr "Druckbrettprofil" msgid "Bed shape" msgstr "Druckbettkontur" -#: src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "Druckbettform und -größe" -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "Druckbetttemperatur" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Druckbetttemperatur für Schichten nach der ersten Schicht. Setzen Sie diesen Wert auf null, um die Befehle zur Steuerung der Betttemperatur im Output zu deaktivieren." -#: src/slic3r/GUI/ConfigWizard.cpp:1052 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "Druckbetttemperatur:" -#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "G-Code vor dem Schichtwechsel" @@ -890,7 +936,7 @@ msgstr "G-Code vor dem Schichtwechsel" msgid "Before roll back" msgstr "Vor dem Zurückwechseln" -#: src/slic3r/GUI/Plater.cpp:637 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "Unter dem Objekt" @@ -898,27 +944,27 @@ msgstr "Unter dem Objekt" msgid "Below Z" msgstr "Unter Z" -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "G-Code zwischen Objekten" -#: src/slic3r/GUI/Tab.cpp:2004 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "G-Code zwischen Objekten (Sequentielles Drucken)" -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "Flaschenvolumen" -#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "Flaschengewicht" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 -#: src/libslic3r/PrintConfig.cpp:173 +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "Unten" @@ -926,15 +972,15 @@ msgstr "Unten" msgid "Bottom fill pattern" msgstr "Bodenfüllmuster" -#: src/slic3r/GUI/PresetHints.cpp:338 +#: src/slic3r/GUI/PresetHints.cpp:342 msgid "Bottom is open." msgstr "Boden ist offen." -#: src/slic3r/GUI/PresetHints.cpp:332 +#: src/slic3r/GUI/PresetHints.cpp:336 msgid "Bottom shell is %1% mm thick for layer height %2% mm." msgstr "Die Bodenschale ist %1% mm stark für eine Schichthöhe von %2% mm." -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "Massive Basisschichten" @@ -942,37 +988,37 @@ msgstr "Massive Basisschichten" msgid "Bottom View" msgstr "Ansicht von unten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "Kubus" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "Überbrückung" -#: src/libslic3r/PrintConfig.cpp:212 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "Brückenflussverhältnis" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Überbrückungs-Infill" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "Überbrückungen" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "Brückenlüftergeschwindigkeit" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "Überbrückungswinkel" -#: src/libslic3r/PrintConfig.cpp:194 +#: src/libslic3r/PrintConfig.cpp:204 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Überbrückungswinkel Übersteuerung. Wird der Wert auf null gesetzt, wird der Überbrückungswinkel automatisch berechnet. Andernfalls wird der angegebene Winkel für alle Brücken verwendet. Verwenden Sie 180° für den Nullwinkel." @@ -980,16 +1026,16 @@ msgstr "Überbrückungswinkel Übersteuerung. Wird der Wert auf null gesetzt, wi msgid "Bridging volumetric" msgstr "Überbrückungvolumen" -#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "Rand" -#: src/libslic3r/PrintConfig.cpp:234 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "Randbreite" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1719 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "Suchen" @@ -1005,15 +1051,15 @@ msgstr "Schaltflächen und Textfarben Beschreibung" msgid "by the print profile maximum" msgstr "mit dem Maximum des Druckerprofils" -#: src/slic3r/GUI/Preferences.cpp:115 +#: src/slic3r/GUI/Preferences.cpp:113 msgid "Camera" msgstr "Kamera" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "Kameraansicht" -#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Abbrechen" @@ -1022,11 +1068,11 @@ msgstr "Abbrechen" msgid "Cancel selected" msgstr "Abbruch ausgewählt" -#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Abgebrochen" -#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Abbrechen" @@ -1034,15 +1080,15 @@ msgstr "Abbrechen" msgid "Cancelling..." msgstr "Abbrechen..." -#: src/libslic3r/Flow.cpp:55 +#: src/libslic3r/Flow.cpp:61 msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." msgstr "Kann die Extrusionsbreite für %1% nicht berechnen: Variable \"%2%\" nicht zugänglich." -#: src/slic3r/GUI/Tab.cpp:3057 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "Systemprofil kann nicht überschrieben werden." -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "Ein externes Profil kann nicht überschrieben werden." @@ -1050,7 +1096,7 @@ msgstr "Ein externes Profil kann nicht überschrieben werden." msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Ohne Stützpunkte kann nicht weitergearbeitet werden! Fügen Sie Stützpunkte hinzu oder deaktivieren Sie die Stützstruktur-Generierung." -#: src/slic3r/GUI/Tab.cpp:1832 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "Fähigkeiten" @@ -1058,60 +1104,60 @@ msgstr "Fähigkeiten" msgid "Capture a configuration snapshot" msgstr "Erfassen einer Konfigurations-Momentaufnahme" -#: src/libslic3r/PrintConfig.cpp:3409 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "Mitte" -#: src/libslic3r/PrintConfig.cpp:3410 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "Zentriert den Druck um den angegebenen Mittelpunkt." -#: src/slic3r/GUI/Tab.cpp:1726 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Zertifikatsdatei (*.crt, *.pem)|*.crt;*.pem|alle Dateien|*.*" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 msgid "Change camera type (perspective, orthographic)" msgstr "Ändern des Kameratyps (perspektivisch, orthografisch)" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 msgid "Change drainage hole diameter" msgstr "Durchmesser des Drainagelochs ändern" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "Wechsel Extruder" -#: src/slic3r/GUI/GUI_ObjectList.cpp:534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "Wechsel Extruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1113 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Change extruder (N/A)" msgstr "Extruder wechseln (nv)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "Wechsel Extruder" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 -#, possible-c-format +#, c-format msgid "Change Option %s" msgstr "Ändere Option %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "Teil Typ ändern" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "Ändern des Stützpunkt-Kopfdurchmessers" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "Anzahl der Kopien des gewählten Objektes ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "Typ ändern" @@ -1123,7 +1169,7 @@ msgstr "Changelog && Download" msgid "Changing of an application language" msgstr "Wechsele die Anwendungssprache" -#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Nach Updates suchen" @@ -1133,13 +1179,13 @@ msgstr "Suche nach Konfigurationsaktualisierungen" #: src/slic3r/GUI/GUI_App.cpp:802 msgid "Check for updates" -msgstr "Nach Updates suchen" +msgstr "Nach &Updates suchen" #: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Wählen Sie eine Datei aus, aus der Sie die Druckbetttextur importieren möchten (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:775 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wählen Sie eine Datei zum Slicen (STL/OBJ/AMF/3MF/PRUSA):" @@ -1159,7 +1205,7 @@ msgstr "Wählen Sie eine Datei (3MF/AMF):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wählen Sie eine oder mehrere Dateien (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:896 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "Wählen Sie den Typ der von Ihrem Drucker verwendeten Firmware." @@ -1167,23 +1213,23 @@ msgstr "Wählen Sie den Typ der von Ihrem Drucker verwendeten Firmware." msgid "Circular" msgstr "Kreisförmig" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "Klicken Sie mit der rechten Maustaste, um den Verlauf zu öffnen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:402 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "Klicken Sie auf das Symbol, um die Druckbar-Eigenschaft des Objekts zu ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "Klicken Sie auf das Symbol, um die Objekteinstellungen zu ändern" -#: src/slic3r/GUI/Plater.cpp:340 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "Klicken zum Bearbeiten der Voreinstellung" -#: src/libslic3r/PrintConfig.cpp:242 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "Beschneiden von Objekten aus mehreren Teilen" @@ -1193,39 +1239,39 @@ msgid "Clipping of view" msgstr "Ausschnitt der Ansicht" #: src/slic3r/GUI/FirmwareDialog.cpp:852 -#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Schließen" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 msgid "Closing distance" msgstr "Schliessabstand" -#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 -#: src/libslic3r/PrintConfig.cpp:582 +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Farbe" -#: src/slic3r/GUI/DoubleSlider.cpp:972 +#: src/slic3r/GUI/DoubleSlider.cpp:1005 msgid "Color change (\"%1%\")" msgstr "Farbwechsel (\"%1%\")" -#: src/slic3r/GUI/DoubleSlider.cpp:973 +#: src/slic3r/GUI/DoubleSlider.cpp:1006 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Farbwechsel (\"%1%\") für Extruder %2%" #: src/slic3r/GUI/GLCanvas3D.cpp:995 -#, possible-c-format +#, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Farbwechsel für Extruder %d bei %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 #: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Color Print" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "Colorprint Höhe" @@ -1245,23 +1291,23 @@ msgstr "Befehle" msgid "Comment:" msgstr "Kommentar:" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "Kompatible Druckprofile" -#: src/libslic3r/PrintConfig.cpp:276 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "Kompatible Druckprofile Bedingung" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "Kompatible Drucker" -#: src/libslic3r/PrintConfig.cpp:261 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "Kompatible Druckerbedingung" -#: src/libslic3r/PrintConfig.cpp:294 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "Kompatible Einzelobjekte" @@ -1277,15 +1323,15 @@ msgstr "Komprimierung fehlgeschlagen" msgid "Concentric" msgstr "Konzentrisch" -#: src/slic3r/GUI/ConfigWizard.cpp:2113 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "Konfigurations &Assistent" -#: src/slic3r/GUI/ConfigWizard.cpp:2116 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" -msgstr "Konfigurations-Assistent (&W)" +msgstr "&Konfigurations-Assistent" -#: src/slic3r/GUI/ConfigWizard.cpp:2112 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "Konfigurations-Assistent" @@ -1305,15 +1351,11 @@ msgstr "Konfigurationsupdate" msgid "Configuration update is available" msgstr "Konfigurationsupdate ist verfügbar" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Configuration update is necessary to install" -msgstr "Ein Konfigurations-Update muss installiert werden." - #: src/slic3r/GUI/UpdateDialogs.cpp:303 msgid "Configuration updates" msgstr "Konfigurationsupdates" -#: src/slic3r/GUI/ConfigWizard.cpp:2115 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "Konfigurations-Assistent" @@ -1321,11 +1363,11 @@ msgstr "Konfigurations-Assistent" msgid "Confirmation" msgstr "Bestätigung" -#: src/slic3r/GUI/Tab.cpp:1929 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "Verbindung ist fehlgeschlagen." -#: src/slic3r/GUI/Tab.cpp:3612 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "Verbindung von Stützstäben und Verbindungen" @@ -1345,7 +1387,7 @@ msgstr "Die Verbindung zu FlashAir funktioniert einwandfrei und der Upload ist a msgid "Connection to OctoPrint works correctly." msgstr "Verbindung zu OctoPrint funktioniert einwandfrei." -#: src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "Verbindung zum Drucker funktioniert einwandfrei." @@ -1361,11 +1403,11 @@ msgstr "Kontakt Z-Abstand" msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Beiträge von Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik und zahlreichen anderen." -#: src/libslic3r/PrintConfig.cpp:2650 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Steuert den Brückentyp zwischen zwei benachbarten Säulen. Kann Zickzack, Kreuz (Doppelzickzack) oder dynamisch sein, das je nach Abstand der beiden Säulen automatisch zwischen den beiden erstgenannten umschaltet." -#: src/slic3r/GUI/Tab.cpp:1446 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "Kühlung" @@ -1377,19 +1419,23 @@ msgstr "Kühlbewegungen beschleunigen von dieser Anfangsgeschwindigkeit aus." msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Kühlbewegungen beschleunigen auf diese Geschwindigkeit hin." -#: src/slic3r/GUI/Tab.cpp:1467 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "Kühlungsschwellwerte" -#: src/libslic3r/PrintConfig.cpp:317 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "Länge des Kühlschlauchs" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "Position des Kühlschlauchs" -#: src/slic3r/GUI/GLCanvas3D.cpp:4554 +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "Kopien des ausgewählten Objekts" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "Kopieren" @@ -1397,7 +1443,7 @@ msgstr "Kopieren" msgid "Copy selection to clipboard" msgstr "Auswahl in Zwischenablage kopieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 msgid "Copy to clipboard" msgstr "Zu Zwischenablage kopieren" @@ -1405,36 +1451,48 @@ msgstr "Zu Zwischenablage kopieren" msgid "Copy to Clipboard" msgstr "Zu Zwischenablage kopieren" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "Das Kopieren des temporären G-Codes ist abgeschlossen, aber der exportierte Code konnte während der Kopierprüfung nicht geöffnet werden. Der Ausgabe-G-Code liegt in %1%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "Das Kopieren des temporären G-Codes ist abgeschlossen, aber der Originalcode aus %1% konnte während der Kopierprüfung nicht geöffnet werden. Der ausgegebene G-Code liegt in %2%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Das Kopieren des temporären G-Codes auf den Ausgabe-G-Code ist fehlgeschlagen" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Das Kopieren des temporären G-Codes auf den Ausgabe-G-Code ist fehlgeschlagen. SD-Karte eventuell schreibgeschützt?" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "Das Kopieren des temporären G-Codes auf den Ausgabe-G-Code ist fehlgeschlagen. Es könnte ein Problem mit dem Zielgerät vorliegen, bitte versuchen Sie erneut zu exportieren oder ein anderes Gerät zu verwenden. Der beschädigte Ausgabe-G-Code liegt in %1%.tmp." + #: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Urheberrecht" -#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "Korrektur der Ausdehnung" -#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "Korrekturen" -#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "Kosten" -#: src/slic3r/GUI/Plater.cpp:241 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "Kosten (Geld)" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Modellobjekte konnten nicht angeordnet werden! Einige Geometrien können ungültig sein." @@ -1458,7 +1516,7 @@ msgstr "Ich konnte keine Verbindung zu OctoPrint herstellen" msgid "Could not connect to Prusa SLA" msgstr "Ich konnte keine Verbindung zum Prusa SLA herstellen" -#: src/slic3r/GUI/Tab.cpp:1689 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "Es konnte keine gültige Drucker-Host-Referenz ermittelt werden" @@ -1478,15 +1536,15 @@ msgstr "Spalte, die kleiner als der doppelte Lückenschlussradius sind, werden w msgid "CRC-32 check failed" msgstr "CRC-32 Check fehlgeschlagen" -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "Erstellt eine Grundschicht um das Objekt herum und ignoriert die Unterstützungshöhe" -#: src/libslic3r/PrintConfig.cpp:2715 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "Kritischer Winkel" -#: src/libslic3r/PrintConfig.cpp:2659 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "Kreuz" @@ -1495,28 +1553,28 @@ msgid "Cubic" msgstr "Kubisch" #: src/slic3r/GUI/wxExtensions.cpp:704 -#, possible-c-format +#, c-format msgid "Current mode is %s" msgstr "Aktueller Modus ist %s" -#: src/slic3r/GUI/Tab.cpp:959 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "Aktuelle Voreinstellung ist abgeleitet von der Standardvoreinstellung." -#: src/slic3r/GUI/Tab.cpp:962 -#, possible-c-format -msgid "Current preset is inherited from:\n\t%s" -msgstr "Aktuelle Voreinstellung ist abgeleitet von:\n%s" +#: src/slic3r/GUI/Tab.cpp:960 +#, c-format +msgid "" +"Current preset is inherited from:\n" +"\t%s" +msgstr "" +"Aktuelle Voreinstellung ist abgeleitet von:\n" +"%s" #: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Aktuelle Version:" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "Spitze (mm)" - -#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Benutzerdefiniert" @@ -1525,18 +1583,14 @@ msgstr "Benutzerdefiniert" msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Benutzerdefinierte CA-Zertifikatsdatei kann für HTTPS OctoPrint-Verbindungen im crt/pem-Format angegeben werden. Wenn das Feld leer bleibt, wird das standardmäßige Zertifikatsverzeichnis der Betriebssystem-Zertifizierungsstelle verwendet." -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "Benutzerdefinierter G-Code" -#: src/slic3r/GUI/DoubleSlider.cpp:1591 +#: src/slic3r/GUI/DoubleSlider.cpp:1619 msgid "Custom G-code on current layer (%1% mm)." msgstr "Benutzerdefinierter G-Code auf der aktuellen Ebene (%1% mm)." -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "Benutzerdefinierter Gcode auf der aktuellen Schicht (%1% mm)." - #: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Benutzerdefinierter Drucker" @@ -1550,19 +1604,19 @@ msgid "Custom profile name:" msgstr "Benutzerdefinierter Profilname:" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "Schneiden" -#: src/slic3r/GUI/Plater.cpp:4801 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "Schneiden durch Ebene" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "Schneidet Modell am gegebenen Z-Wert." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "Zylinder" @@ -1570,11 +1624,11 @@ msgstr "Zylinder" msgid "D&eselect all" msgstr "All&es Abwählen" -#: src/libslic3r/PrintConfig.cpp:3489 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "Datenverzeichnis" -#: src/slic3r/GUI/Mouse3DController.cpp:332 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "Todeszone:" @@ -1582,23 +1636,23 @@ msgstr "Todeszone:" msgid "decompression failed or archive is corrupted" msgstr "Entpacken fehlgeschlagen oder Archiv defekt" -#: src/slic3r/GUI/Plater.cpp:4735 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" msgstr "Kopien verringern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "Standard" -#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 #: src/slic3r/GUI/ObjectDataViewModel.cpp:490 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "Standard" @@ -1610,53 +1664,53 @@ msgstr "Standard-Grundwinkel für die Ausrichtung der Füllung. Hierfür werden msgid "Default extrusion width" msgstr "Standardextrusionsbreite" -#: src/slic3r/GUI/Tab.cpp:989 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "Standard-Filamentprofil" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "Standard-Filamentprofil" -#: src/libslic3r/PrintConfig.cpp:336 +#: src/libslic3r/PrintConfig.cpp:346 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Standard-Filamentprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei Auswahl des aktuellen Druckerprofils wird dieses Filamentprofil aktiviert." -#: src/slic3r/GUI/Tab.cpp:2903 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2919 +#, c-format msgid "Default preset (%s)" msgstr "Standard Voreinstellung(%s)" -#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "Standard Druckfarbe" -#: src/slic3r/GUI/Tab.cpp:986 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "Standard-Druckprofil" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "Standard-Druckprofil" -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 -#: src/libslic3r/PrintConfig.cpp:2594 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Standarddruckprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei Auswahl des aktuellen Druckerprofils wird dieses Druckprofil aktiviert." -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "Standard-SLA-Materialprofil" -#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "Standard-SLA-Materialprofil" -#: src/slic3r/GUI/Tab.cpp:1007 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "Standard-SLA-Druckprofil" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "Standardwert" @@ -1664,11 +1718,11 @@ msgstr "Standardwert" msgid "Define a custom printer profile" msgstr "Benutzerdefiniertes Druckerprofil definieren" -#: src/libslic3r/PrintConfig.cpp:2789 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Definiert die Tiefe des Grundschichthohlraums. Zum Deaktivieren der Aushöhlung auf null setzen. Seien Sie vorsichtig, wenn Sie diese Funktion aktivieren, da einige Harze einen extremen Saugeffekt im Hohlraum erzeugen können, der das Abziehen des Drucks von der Wannenfolie erschwert." -#: src/slic3r/GUI/GUI_ObjectList.cpp:344 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "entartete Facetten" @@ -1676,13 +1730,13 @@ msgstr "entartete Facetten" msgid "Delay after unloading" msgstr "Verzögerung nach dem Entladen" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "löschen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "Löschen" @@ -1690,100 +1744,89 @@ msgstr "Löschen" msgid "Delete &all" msgstr "&Alles löschen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "Alle löschen" - -#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "Alle löschen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "Alle Kopien des Objektes löschen" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "Farbwechsel löschen" -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "Farbwechsel für Extruder %1% löschen" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "Löscht einen Farbwechselmarker der aktuellen Schicht" -#: src/slic3r/GUI/DoubleSlider.cpp:1491 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "Benutzerdefinierten G-Code löschen" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 msgid "Delete drainage hole" msgstr "Drainageloch entfernen" -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "Extruderwechsel auf \"%1%\" löschen " - -#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "Höhenbereich löschen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" msgstr "Kopie löschen" -#: src/slic3r/GUI/Plater.cpp:2696 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "Objekt löschen" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 -#, possible-c-format +#, c-format msgid "Delete Option %s" msgstr "Lösche Option %s" -#: src/slic3r/GUI/DoubleSlider.cpp:1490 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "Druckpause löschen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Delete selected" msgstr "Löschen ausgewählt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "Löschen ausgewählt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "Gewähltes Element löschen" -#: src/slic3r/GUI/Plater.cpp:4692 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "Ausgewählte Objekte entfernen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "Einstellungen löschen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "Subobjekt löschen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "Stützpunkt löschen" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "Lösche diese Voreinstellung" -#: src/slic3r/GUI/DoubleSlider.cpp:1001 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "Häkchen löschen - Linksklick oder Taste \"-\" drücken" -#: src/slic3r/GUI/DoubleSlider.cpp:1489 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete tool change" msgstr "Werkzeugwechsel löschen" @@ -1795,8 +1838,8 @@ msgstr "Löscht alle Objekte" msgid "Deletes the current selection" msgstr "Löscht die aktuelle Auswahl" -#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 -#: src/libslic3r/PrintConfig.cpp:2495 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "Dichte" @@ -1804,9 +1847,9 @@ msgstr "Dichte" msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Infilldichte. Als Prozentwert von 0% - 100% ausgedrückt." -#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "Abhängigkeiten" @@ -1818,7 +1861,7 @@ msgstr "Wiedereinzugsgeschwindigkeit" msgid "Deselect all" msgstr "Alles abwählen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "Abwahl über Rechteck" @@ -1838,15 +1881,15 @@ msgstr "Erkennen von Wänden mit einfacher Breite (Teile, bei denen zwei Extrusi msgid "Detect thin walls" msgstr "Dünne Wände erkennen" -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Erkennung nicht zusammenhängender Teile in den angegebenen Modellen und Aufteilung in einzelne Objekte." -#: src/slic3r/GUI/Plater.cpp:2352 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "Erweiterte Daten gefunden" -#: src/slic3r/GUI/Mouse3DController.cpp:306 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "Gerät:" @@ -1854,15 +1897,15 @@ msgstr "Gerät:" msgid "Diameter" msgstr "Durchmesser" -#: src/libslic3r/PrintConfig.cpp:2685 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "Durchmesser der Pfeilerbasis in mm" -#: src/libslic3r/PrintConfig.cpp:2641 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "Durchmesser der Stützpfeiler in mm" -#: src/libslic3r/PrintConfig.cpp:2613 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "Durchmesser der Spitzenseite des Kopfes" @@ -1874,7 +1917,7 @@ msgstr "Durchmesser des Druckbettes. Es wird angenommen, dass der Ursprung (0,0) msgid "Direction" msgstr "Richtung" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "Kein Lüfter für die ersten" @@ -1882,24 +1925,20 @@ msgstr "Kein Lüfter für die ersten" msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Deaktiviert den Einzug, wenn der Verfahrweg die Perimeter der oberen Schicht nicht überschreitet (und somit ist der Auslauf wahrscheinlich unsichtbar)." -#: src/slic3r/GUI/DoubleSlider.cpp:925 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "Alle benutzerdefinierten Änderungen verwerfen" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "Änderungen verwerfen" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "Änderungen verwerfen und fortfahren?" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "Versatz (mm)" - -#: src/slic3r/GUI/Tab.cpp:2076 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "Display" @@ -1927,7 +1966,7 @@ msgstr "Zeige vertikale Spiegelung" msgid "Display width" msgstr "Displaybreite" -#: src/libslic3r/PrintConfig.cpp:367 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "Abstand zwischen Kopien" @@ -1935,7 +1974,7 @@ msgstr "Abstand zwischen Kopien" msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Distanz zwischen Schürze und Objekt. Auf null stellen um die Schürze an das Objekt zu verbinden und einen Rand für bessere Haftung zu generieren." -#: src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Abstand zwischen zwei Verbindungsstäben, die das Objekt mit der erzeugten Grundschicht verbinden." @@ -1947,7 +1986,7 @@ msgstr "Abstand vom Objekt" msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Abstand der 0,0 G-Code-Koordinate von der linken vorderen Ecke des Rechtecks." -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Abstand des Mittelpunktes des Kühlrohres von der Extruderspitze." @@ -1955,22 +1994,28 @@ msgstr "Abstand des Mittelpunktes des Kühlrohres von der Extruderspitze." msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Abstand der Extruderspitze von der Position, an der das Filament beim Entladen abgestellt wird. Dies sollte mit dem Wert in der Drucker-Firmware übereinstimmen." -#: src/libslic3r/PrintConfig.cpp:368 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Abstand für die automatische Druckplattenbelegung." -#: src/libslic3r/PrintConfig.cpp:3471 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Nicht abbrechen, wenn eine an --load übergebene Datei nicht existiert." -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Die angegebenen Modelle werden vor dem Zusammenführen nicht neu angeordnet und behalten ihre ursprünglichen XY-Koordinaten." -#: src/slic3r/GUI/Field.cpp:235 -#, possible-c-format -msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." -msgstr "Meinen Sie%s anstelle von %s %s?\nWählen Sie JA, wenn Sie diesen Wert auf %s%% ändern möchten, \noder NEIN, wenn Sie sicher sind, dass %s %s ein korrekter Wert ist." +#: src/slic3r/GUI/Field.cpp:240 +#, c-format +msgid "" +"Do you mean %s%% instead of %s %s?\n" +"Select YES if you want to change this value to %s%%, \n" +"or NO if you are sure that %s %s is a correct value." +msgstr "" +"Meinen Sie%s anstelle von %s %s?\n" +"Wählen Sie JA, wenn Sie diesen Wert auf %s%% ändern möchten, \n" +"oder NEIN, wenn Sie sicher sind, dass %s %s ein korrekter Wert ist." #: src/slic3r/GUI/ConfigWizard.cpp:1761 msgid "Do you want to automatic select default filaments?" @@ -1980,7 +2025,7 @@ msgstr "Möchten Sie die Standardfilamente automatisch auswählen?" msgid "Do you want to automatic select default materials?" msgstr "Möchten Sie automatisch Standardmaterialien auswählen?" -#: src/slic3r/GUI/DoubleSlider.cpp:1893 +#: src/slic3r/GUI/DoubleSlider.cpp:1920 msgid "Do you want to delete all saved tool changes?" msgstr "Möchten Sie alle gespeicherten Werkzeugänderungen löschen?" @@ -1988,15 +2033,15 @@ msgstr "Möchten Sie alle gespeicherten Werkzeugänderungen löschen?" msgid "Do you want to proceed?" msgstr "Wollen Sie fortfahren?" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "Do you want to retry" msgstr "Möchten Sie es erneut versuchen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "Möchten Sie Ihre manuell bearbeiteten Stützpunkte speichern?" -#: src/libslic3r/PrintConfig.cpp:3414 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "Nicht Anordnen" @@ -2004,7 +2049,7 @@ msgstr "Nicht Anordnen" msgid "Don't notify about new releases any more" msgstr "Keine Benachrichtigung mehr über neue Releases" -#: src/libslic3r/PrintConfig.cpp:359 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "Brücken nicht unterstützen" @@ -2012,17 +2057,17 @@ msgstr "Brücken nicht unterstützen" msgid "Downgrade" msgstr "Downgrade" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "Ziehen" -#: src/libslic3r/SLAPrintSteps.cpp:42 +#: src/libslic3r/SLAPrintSteps.cpp:44 msgid "Drilling holes into model." msgstr "Löcher in das Modell bohren." -#: src/libslic3r/SLAPrintSteps.cpp:163 +#: src/libslic3r/SLAPrintSteps.cpp:199 msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." msgstr "Das Bohren von Löchern in das Netz ist fehlgeschlagen. Dies wird normalerweise durch ein beschädigtes Modell verursacht. Versuchen Sie zuerst, es zu reparieren." @@ -2031,11 +2076,11 @@ msgstr "Das Bohren von Löchern in das Netz ist fehlgeschlagen. Dies wird normal msgid "Drop to bed" msgstr "Auf das Druckbett fallen lassen" -#: src/libslic3r/PrintConfig.cpp:3418 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "Duplizieren" -#: src/libslic3r/PrintConfig.cpp:3423 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "Duplizieren nach Raster" @@ -2043,51 +2088,51 @@ msgstr "Duplizieren nach Raster" msgid "During the other layers, fan" msgstr "Während der übrigen Schichten, Lüfter" -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "Dynamisch" -#: src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "E&xport" -#: src/slic3r/GUI/GUI_ObjectList.cpp:345 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "Kanten korrigiert" -#: src/slic3r/GUI/DoubleSlider.cpp:1480 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "Farbe bearbeiten" -#: src/slic3r/GUI/DoubleSlider.cpp:933 +#: src/slic3r/GUI/DoubleSlider.cpp:960 msgid "Edit current color - Right click the colored slider segment" msgstr "Aktuelle Farbe bearbeiten - Rechtsklick auf das farbige Schiebereglersegment" -#: src/slic3r/GUI/DoubleSlider.cpp:1482 +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "Benutzerdefinierten G-Code bearbeiten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "Höhenbereich bearbeiten" -#: src/slic3r/GUI/DoubleSlider.cpp:1481 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "Druckpausen-Mitteilung bearbeiten" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 msgid "Edit tick mark - Ctrl + Left click" msgstr "Häkchen bearbeiten - Strg + Linksklick" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1038 msgid "Edit tick mark - Right click" msgstr "Häkchen bearbeiten - Rechtsklick" -#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "Bearbeitung" -#: src/libslic3r/PrintConfig.cpp:375 +#: src/libslic3r/PrintConfig.cpp:118 msgid "Elephant foot compensation" msgstr "Elefantenfußkompensation" @@ -2107,12 +2152,12 @@ msgstr "Schreibt M73 P[Prozent gedruckt] R[Restzeit in Minuten] im Abstand von 1 msgid "Empty layers detected, the output would not be printable." msgstr "Leere Schichten erkannt, die Ausgabe wäre nicht druckbar." -#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 #: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Aktivieren" -#: src/libslic3r/PrintConfig.cpp:303 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "Automatische Kühlung aktivieren" @@ -2120,7 +2165,7 @@ msgstr "Automatische Kühlung aktivieren" msgid "Enable fan if layer print time is below" msgstr "Lüfter einschalten wenn die Schichtdruckzeit geringer ist als" -#: src/libslic3r/PrintConfig.cpp:2899 +#: src/libslic3r/PrintConfig.cpp:2908 msgid "Enable hollowing" msgstr "Aushöhlung aktivieren" @@ -2148,7 +2193,7 @@ msgstr "Variable Schichthöhen aktivieren" msgid "Enable vertical mirroring of output images" msgstr "Vertikale Spiegelung der Ausgabebilder aktivieren" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "G-Code am Ende" @@ -2170,39 +2215,39 @@ msgstr "In der Warteschlange" msgid "Ensure vertical shell thickness" msgstr "Stelle die vertikale Hüllenstärke sicher" -#: src/slic3r/GUI/DoubleSlider.cpp:1590 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "Benutzerdefinierten G-Code für die aktuelle Schicht eingeben" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "Geben Sie den neuen Namen ein" -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "Kurzmitteilung eingeben, die während der Druckpause auf dem Druckerdisplay angezeigt wird" - -#: src/slic3r/GUI/DoubleSlider.cpp:1606 +#: src/slic3r/GUI/DoubleSlider.cpp:1634 msgid "Enter short message shown on Printer display when a print is paused" -msgstr "Geben Sie eine kurze Nachricht ein, die auf dem Druckerdisplay angezeigt wird, wenn der Druck angehalten wird." +msgstr "Geben Sie eine kurze Nachricht ein, die auf dem Druckerdisplay angezeigt wird, wenn der Druck angehalten wird" -#: src/slic3r/GUI/ConfigWizard.cpp:1048 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Geben Sie die Druckbetttemperatur ein, die erforderlich ist, damit Ihr Filament an Ihrem beheizten Druckbett haftet." -#: src/slic3r/GUI/ConfigWizard.cpp:980 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "Geben Sie den Durchmesser des Filaments ein." -#: src/slic3r/GUI/ConfigWizard.cpp:967 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Geben Sie den Durchmesser der Hotenddüse ein." -#: src/slic3r/GUI/DoubleSlider.cpp:1622 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 msgid "Enter the height you want to jump to" msgstr "Geben Sie die Höhe ein, auf die Sie wechseln möchten" -#: src/slic3r/GUI/ConfigWizard.cpp:1034 +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "Geben Sie die Anzahl der Kopien ein:" + +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "Geben Sie die Temperatur ein, die für die Extrusion Ihres Filaments benötigt wird." @@ -2218,27 +2263,27 @@ msgstr "Geben Sie hier Ihre Filamentdichte ein. Dies dient ausschließlich stati msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Geben Sie hier Ihren Filamentdurchmesser ein. Eine hohe Genauigkeit ist erforderlich, also verwenden Sie einen Messschieber und führen Sie mehrere Messungen entlang des Filaments durch, um dann den Mittelwert zu berechnen." -#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Fehler" #: src/slic3r/GUI/FirmwareDialog.cpp:645 -#, possible-c-format +#, c-format msgid "Error accessing port at %s: %s" msgstr "Fehler beim Zugriff auf Port bei %s:%s" -#: src/slic3r/GUI/Plater.cpp:3441 +#: src/slic3r/GUI/Plater.cpp:3433 msgid "Error during reload" msgstr "Fehler beim erneuten Laden" -#: src/slic3r/GUI/Plater.cpp:5073 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5043 +#, c-format msgid "Error exporting 3MF file %s" msgstr "Fehler beim Exportieren der 3MF Datei %s" -#: src/slic3r/GUI/Plater.cpp:5025 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5005 +#, c-format msgid "Error exporting AMF file %s" msgstr "Fehler beim Exportieren der AMF Datei %s" @@ -2246,7 +2291,7 @@ msgstr "Fehler beim Exportieren der AMF Datei %s" msgid "Error Message" msgstr "Fehlermeldung" -#: src/slic3r/GUI/AppConfig.cpp:118 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Fehler beim Parsen der PrusaSlicer-Konfigurationsdatei, sie ist wahrscheinlich beschädigt. Versuchen Sie, die Datei manuell zu löschen, um den Fehler zu beheben. Ihre Benutzerprofile sind davon nicht betroffen." @@ -2258,7 +2303,7 @@ msgstr "Fehler beim Hochloden zu Druckhost:" msgid "Error with zip archive" msgstr "Fehler beim ZIP-Archiv" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "Fehler!" @@ -2267,7 +2312,7 @@ msgid "Error! Invalid model" msgstr "Fehler! Ungültiges Modell" #: src/slic3r/GUI/FirmwareDialog.cpp:647 -#, possible-c-format +#, c-format msgid "Error: %s" msgstr "Fehler: %s" @@ -2275,12 +2320,12 @@ msgstr "Fehler: %s" msgid "ERROR: not enough resources to execute a new job." msgstr "FEHLER: Nicht genügend Ressourcen, um einen neuen Job auszuführen." -#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 -#: src/slic3r/GUI/Plater.cpp:1255 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "Erwartete Druckzeit" -#: src/slic3r/GUI/Plater.cpp:499 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "Überall" @@ -2292,16 +2337,16 @@ msgstr "außer für die ersten %1% Schichten." msgid "except for the first layer." msgstr "außer für die erste Schicht." -#: src/libslic3r/Print.cpp:1373 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Übermäßig %1%=%2% mm, um mit einem Düsendurchmesser von %3% mm druckbar zu sein" #: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 -#, possible-c-format +#, c-format msgid "Exit %s" msgstr "%s beenden" -#: src/libslic3r/PrintConfig.cpp:361 +#: src/libslic3r/PrintConfig.cpp:371 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Experimentelle Option zur Verhinderung der Bildung von Trägermaterial unter Überbrückungsflächen." @@ -2313,7 +2358,7 @@ msgstr "Experimentelle Option zur Anpassung des Durchflusses für Überhänge (B msgid "Expert" msgstr "Experte" -#: src/slic3r/GUI/ConfigWizard.cpp:823 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "Expertenmodus" @@ -2321,23 +2366,23 @@ msgstr "Expertenmodus" msgid "Expert View Mode" msgstr "Experten Anzeigemodus" -#: src/slic3r/GUI/Plater.cpp:5555 +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "Export" #: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" -msgstr "Export Konfiguration (&C)" +msgstr "Export &Konfiguration" -#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" msgstr "Export &G-Code" #: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" -msgstr "Werkzeugpfade als OBJ exportieren (&t)" +msgstr "&Werkzeugpfade als OBJ exportieren" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "Export 3MF" @@ -2345,15 +2390,15 @@ msgstr "Export 3MF" msgid "Export all presets to file" msgstr "Exportiere alle Voreinstellungen in eine Datei" -#: src/libslic3r/PrintConfig.cpp:3328 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "Exportiere AMF" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "Exportiere AMF Datei:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "Exportiere als STL" @@ -2363,7 +2408,7 @@ msgstr "Konfiguration exportieren" #: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" -msgstr "Konfigurationssamlung exportieren (&B)" +msgstr "Konfigurationssa&mlung exportieren" #: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" @@ -2385,7 +2430,7 @@ msgstr "Exportiere die aktuelle Plattenbelegung als STL" msgid "Export current plate as STL including supports" msgstr "Exportiert die aktuelle Plattenbelegung als STL einschließlich Stützstrukturen" -#: src/slic3r/GUI/Plater.cpp:3673 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "Export ist fehlgeschlagen" @@ -2393,21 +2438,20 @@ msgstr "Export ist fehlgeschlagen" msgid "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Exportieren Sie die vollständigen Pfadnamen der Modelle und Teilequellen in 3mf- und amf-Dateien" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 -#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "Export G-Code" -#: src/libslic3r/PrintConfig.cpp:3305 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "Exportiere OBJ" -#: src/slic3r/GUI/Plater.cpp:2594 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "Exportiere OBJ Datei:" -#: src/slic3r/Utils/FixModelByWin10.cpp:369 -#: src/slic3r/Utils/FixModelByWin10.cpp:374 +#: src/slic3r/Utils/FixModelByWin10.cpp:368 msgid "Export of a temporary 3mf file failed" msgstr "Export einer temporären 3MF Datei fehlgeschlagen" @@ -2421,45 +2465,45 @@ msgstr "Exportiere die Plattenbelegung als &STL" #: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" -msgstr "Exportiere Plattenbelegung als STL einschließlich Stützstrukturen" +msgstr "Export&iere Plattenbelegung als STL einschließlich Stützstrukturen" -#: src/libslic3r/PrintConfig.cpp:3317 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "Exportiere SLA" -#: src/slic3r/GUI/Preferences.cpp:73 +#: src/slic3r/GUI/Preferences.cpp:72 msgid "Export sources full pathnames to 3mf and amf" msgstr "Vollständige Pfadnamen der Quellen in 3mf und amf exportieren" -#: src/libslic3r/PrintConfig.cpp:3333 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "Exportiere STL" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "Exportiere STL Datei:" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "Exportiert das/die Modell(e) als 3MF Datei." -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "Exportiert das/die Modell(e) als AMF Datei." -#: src/libslic3r/PrintConfig.cpp:3306 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "Exportiert das/die Modell(e) als OBJ Datei." -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "Exportiert das/die Modell(e) als STL Datei." -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "Exportiere das gewählte Objekt als STL Datei" -#: src/slic3r/GUI/Plater.cpp:877 +#: src/slic3r/GUI/Plater.cpp:880 msgid "Export to SD card / Flash drive" msgstr "Export auf SD-Karte/Flash-Laufwerk" @@ -2467,7 +2511,7 @@ msgstr "Export auf SD-Karte/Flash-Laufwerk" msgid "Export toolpaths as OBJ" msgstr "Werkzeugpfad als OBJ exportieren" -#: src/libslic3r/Print.cpp:1634 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "Exportiere G-Code" @@ -2484,15 +2528,15 @@ msgstr "Exportieren des Quellmodells" msgid "Exposition time is out of printer profile bounds." msgstr "Belichtungszeit ist außerhalb der Druckerprofilgrenzen." -#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "Belichtung" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "Belichtungszeit" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Außenkontur" @@ -2520,23 +2564,23 @@ msgstr "Zusätzliche Ladestrecke" msgid "Extra perimeters if needed" msgstr "Extra Konturen wenn notwendig" -#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 #: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 -#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 -#: src/libslic3r/GCode/PreviewData.cpp:445 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format msgid "Extruder %d" msgstr "Extruder %d" -#: src/slic3r/GUI/DoubleSlider.cpp:978 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Extruder (Werkzeug) ist geändert auf Extruder \"%1%\"" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "Extruder- und Druckbetttemperatur" @@ -2544,7 +2588,7 @@ msgstr "Extruder- und Druckbetttemperatur" msgid "Extruder changed to" msgstr "Extruder geändert auf" -#: src/slic3r/GUI/Tab.cpp:1235 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "Extruder Abstand (mm)" @@ -2564,8 +2608,8 @@ msgstr "Extrudertemperatur für die erste Schicht. Wenn Sie die Temperatur währ msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Extrudertemperatur für Schichten nach der ersten Schicht. Setzen Sie diesen Wert auf null, um die Temperaturregelbefehle in der Ausgabedatei zu deaktivieren." -#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 @@ -2580,15 +2624,15 @@ msgstr "Extrusionsachse" msgid "Extrusion multiplier" msgstr "Extrusionsfaktor" -#: src/slic3r/GUI/ConfigWizard.cpp:1038 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "Extrusionstemperatur:" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "Extrusionbreite" -#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 #: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 #: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 #: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 @@ -2596,23 +2640,23 @@ msgstr "Extrusionbreite" msgid "Extrusion Width" msgstr "Extrusionsbreite" -#: src/slic3r/GUI/Plater.cpp:164 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "Flächen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:347 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "Facetten hinzugefügt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "Facetten enfernt" -#: src/slic3r/GUI/GUI_ObjectList.cpp:348 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "Facetten umgekehrt" -#: src/libslic3r/PrintConfig.cpp:2508 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "Ausblendende Schichten" @@ -2632,11 +2676,11 @@ msgstr "Die Verarbeitung der output_filename_format Vorlage ist fehlgeschlagen." msgid "Fan" msgstr "Kühllüfter" -#: src/slic3r/GUI/Tab.cpp:1458 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "Lüfter Einstellungen" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "Lüftergeschwindigkeit" @@ -2656,33 +2700,33 @@ msgstr "Schnelles Kippen" msgid "Fatal error" msgstr "Fataler Fehler" -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 #: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Merkmalstyp" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "Merkmalstypen" -#: src/slic3r/GUI/ConfigWizard.cpp:1528 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "FFF Technologie Drucker" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 -#: src/slic3r/GUI/Tab.cpp:1428 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1472 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "Filament" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "Filament- und Düsendurchmesser" -#: src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "Filamentdurchmesser:" @@ -2698,7 +2742,7 @@ msgstr "Filament Ladezeit" msgid "Filament notes" msgstr "Filament Bemerkungen" -#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "Filament Übersteuerung" @@ -2706,15 +2750,15 @@ msgstr "Filament Übersteuerung" msgid "Filament parking position" msgstr "Filament Parkposition" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "Filament Profile Auswahl" -#: src/slic3r/GUI/Tab.cpp:1473 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "Filament Eigenschaften" -#: src/slic3r/GUI/Tab.hpp:354 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "Filamenteinstellungen" @@ -2730,7 +2774,7 @@ msgstr "Filament Entladezeit" msgid "filaments" msgstr "Filamente" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "Filamente" @@ -2742,7 +2786,7 @@ msgstr "Dateischließen fehlgeschlagen" msgid "file create failed" msgstr "Dateierzeugen fehlgeschlagen" -#: src/slic3r/GUI/MainFrame.cpp:793 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "Datei nicht gefunden" @@ -2806,7 +2850,7 @@ msgstr "Füllmuster für die obere Füllung. Dies betrifft nur die obere sichtba msgid "Finished" msgstr "Fertig" -#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "Firmware" @@ -2818,11 +2862,11 @@ msgstr "Firmware Flasher" msgid "Firmware image:" msgstr "Firmware Image:" -#: src/slic3r/GUI/Tab.cpp:2573 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "Firmware Einzug" -#: src/slic3r/GUI/ConfigWizard.cpp:892 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "Firmware Typ" @@ -2835,7 +2879,7 @@ msgstr "Erste Schicht" msgid "First layer height" msgstr "Höhe der ersten Schicht" -#: src/libslic3r/Print.cpp:1418 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "Schichthöhe der ersten Schicht darf nicht größer sein als der Düsendurchmesser" @@ -2847,11 +2891,11 @@ msgstr "Druckgeschwindigkeit der ersten Schicht" msgid "First layer volumetric" msgstr "Volumenparameter der ersten Schicht" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "Reparieren mittels Netfabb" -#: src/slic3r/GUI/Plater.cpp:3482 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "Reparieren mittels Netfabb" @@ -2883,7 +2927,7 @@ msgstr "Es wird geflashed. Bitte nicht den Drucker abklemmen!" msgid "Flashing succeeded!" msgstr "Flashen erfolgreich!" -#: src/slic3r/GUI/Tab.cpp:1220 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "Fluss" @@ -2891,48 +2935,34 @@ msgstr "Fluss" msgid "flow rate is maximized" msgstr "die Durchflussmenge ist am Maximum" -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "Um einen weiteren Code hinzuzufügen, verwenden Sie die rechte Maustaste" - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "Für das Hinzufügen eines anderen Extruders verwenden Sie die linke Maustaste" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "Um Farbwechsel hinzuzufügen, verwenden Sie die linke Maustaste" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" -msgstr "Für das Löschen des \"%1%\"-Codes verwenden Sie die linke Maustaste\nFür die Bearbeitung des \"%1%\"-Codes verwenden Sie die rechte Maustaste" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" -msgstr "Um Farbwechsel zu löschen, verwenden Sie die linke Maustaste\nFür die Bearbeitung von Farben verwenden Sie die rechte Maustaste" - #: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Für weitere Informationen besuchen Sie bitte unsere Wiki-Seite:" -#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "Nur für Stützverstärker" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3249 -msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." -msgstr "Beim linken Knopf: zeigt eine Nicht-System- (oder Nicht-Standard-) Einstellung an.\nBeim rechten Knopf: zeigt an, dass die Einstellung nicht geändert wurde." +#: src/slic3r/GUI/Tab.cpp:3265 +msgid "" +"for the left button: \tindicates a non-system (or non-default) preset,\n" +"for the right button: \tindicates that the settings hasn't been modified." +msgstr "" +"Beim linken Knopf: zeigt eine Nicht-System- (oder Nicht-Standard-) Einstellung an.\n" +"Beim rechten Knopf: zeigt an, dass die Einstellung nicht geändert wurde." #: src/slic3r/GUI/ConfigManipulation.cpp:136 -msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." +msgid "" +"For the Wipe Tower to work with the soluble supports, the support layers\n" +"need to be synchronized with the object layers." msgstr "Damit der Reinigungsturm mit den löslichen Trägermaterialien arbeiten kann, müssen die Stützschichten mit den Objektschichten synchronisiert sein." -#: src/libslic3r/Print.cpp:1392 +#: src/libslic3r/Print.cpp:1396 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Damit der Reinigungsturm mit den löslichen Trägermaterialien arbeiten kann, müssen die Stützschichten mit den Objektschichten synchronisiert sein." -#: src/libslic3r/PrintConfig.cpp:2855 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "Grundschicht überall um Objekt erzwingen" @@ -2948,7 +2978,7 @@ msgstr "Erzwingt die Erzeugung von massiven Schalen zwischen benachbarten Materi msgid "From" msgstr "Von" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "Sie können nicht das letzte solide Teil des Objekts von der Objektliste löschen." @@ -2960,19 +2990,23 @@ msgstr "Front" msgid "Front View" msgstr "Frontalansicht" -#: src/slic3r/GUI/Tab.cpp:1015 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "vollständiger Profilname" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "G-Code" -#: src/slic3r/GUI/DoubleSlider.cpp:987 -msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." -msgstr "Der mit diesem Häkchen verbundene G-Code steht in Konflikt mit dem Druckmodus.\nSeine Bearbeitung führt zu Änderungen der Slicer-Daten." +#: src/slic3r/GUI/DoubleSlider.cpp:1021 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"Der mit diesem Häkchen verbundene G-Code steht in Konflikt mit dem Druckmodus.\n" +"Seine Bearbeitung führt zu Änderungen der Slicer-Daten." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "G-Code Datei exportiert nach %1%" @@ -2984,17 +3018,17 @@ msgstr "G-Code Typ" msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2496 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 #: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Lückenfüllung" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 -#: src/slic3r/GUI/Tab.cpp:2038 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "Allgemein" @@ -3010,23 +3044,23 @@ msgstr "Generiere Stützstrukturen" msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Generiere Stützstrukturen für die angegebene Anzahl von Schichten, die von unten gezählt werden, unabhängig davon, ob normale Stützstrukturen aktiviert sind oder nicht und unabhängig von einer Winkelschwelle. Dies ist nützlich, um die Haftung von Objekten mit einem sehr dünnen oder schlechten Standfuß auf der Bauplatte zu erhöhen." -#: src/libslic3r/PrintConfig.cpp:2604 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "Stützstrukturen generieren" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "Erzeugt Stützstrukturen für die Modelle" -#: src/libslic3r/Print.cpp:1610 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "Generiere Rand" -#: src/libslic3r/Print.cpp:1638 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "Generiere G-Code" -#: src/libslic3r/SLAPrintSteps.cpp:46 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "Generiere Grundschicht" @@ -3034,7 +3068,7 @@ msgstr "Generiere Grundschicht" msgid "Generating perimeters" msgstr "Generiere Außenkonturen" -#: src/libslic3r/Print.cpp:1602 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "Generiere Schürze" @@ -3042,35 +3076,35 @@ msgstr "Generiere Schürze" msgid "Generating support material" msgstr "Generiere Stützstrukturen" -#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "Erzeuge Stützpunkte" -#: src/libslic3r/SLAPrintSteps.cpp:45 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "Erzeuge Baumstützstruktur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "Generisch" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 msgid "Gizmo cut" msgstr "Gizmo Schnitt" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 msgid "Gizmo move" msgstr "Gizmo Bewegung" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 msgid "Gizmo Place face on bed" msgstr "Gizmo auf Fläche platzieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 msgid "Gizmo rotate" msgstr "Gizmo Rotieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 msgid "Gizmo scale" msgstr "Gizmo Skalieren" @@ -3078,25 +3112,25 @@ msgstr "Gizmo Skalieren" msgid "Gizmo SLA hollow" msgstr "Gizmo SLA Aushöhlung" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 msgid "Gizmo SLA support points" msgstr "Gizmo SLA Stützpunkte" -#: src/slic3r/GUI/GLCanvas3D.cpp:2945 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "Gizmo Bewegen" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "Gizmo Auf Fläche legen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3025 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "Gizmo-Rotation" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "Gizmo Skalierung" @@ -3108,7 +3142,7 @@ msgstr "Gizmos" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, Version 3" -#: src/slic3r/GUI/ConfigWizard.cpp:981 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Eine hohe Genauigkeit ist erforderlich, also verwenden Sie einen Messschieber und führen Sie mehrere Messungen entlang des Filaments durch, um dann den Mittelwert zu berechnen." @@ -3116,11 +3150,11 @@ msgstr "Eine hohe Genauigkeit ist erforderlich, also verwenden Sie einen Messsch msgid "Grid" msgstr "Gitternetz" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "Gruppenbearbeitung" -#: src/slic3r/GUI/Preferences.cpp:137 +#: src/slic3r/GUI/Preferences.cpp:133 msgid "GUI" msgstr "GUI" @@ -3128,7 +3162,7 @@ msgstr "GUI" msgid "Gyroid" msgstr "Gyroid" -#: src/slic3r/GUI/Tab.cpp:2921 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "hat die folgenden ungesicherten Änderungen:" @@ -3144,7 +3178,7 @@ msgstr "Die Kopfeindringung sollte nicht größer als die Kopfbreite sein." msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Druckbetttemperatur für die erste Schicht. Setzen Sie diesen Wert auf null, um die Befehle zur Steuerung der Betttemperatur im Ausgang zu deaktivieren." -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Höhe" @@ -3160,32 +3194,32 @@ msgstr "Höhe der Schürze in Schichten. Eine hohe Schürze kann gegen Zugluft s msgid "Height of the display" msgstr "Displayhöhe" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "Höhenbereich Modifizierer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "Höhenbereiche" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "Höhen, bei denen eine Filamentwechsel stattfinden soll." #: src/slic3r/GUI/ConfigWizard.cpp:433 -#, possible-c-format +#, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Hallo, willkommen bei %s! Dieses %s hilft Ihnen bei der Erstkonfiguration; nur ein paar Einstellungen und Sie sind bereit zum Drucken." -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "Hilfe" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "Hilfe (FFF Optionen)" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "Hilfe (SLA Optionen)" @@ -3197,7 +3231,7 @@ msgstr "Hier können Sie das erforderliche Reinigungsvolumen (mm³) für ein bel msgid "High extruder current on filament swap" msgstr "Hohe Extruderstromstärke beim Filamentwechsel" -#: src/slic3r/GUI/GLCanvas3D.cpp:282 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 msgid "Higher print quality versus higher print speed." msgstr "Höhere Druckqualität versus höhere Druckgeschwindigkeit." @@ -3205,7 +3239,7 @@ msgstr "Höhere Druckqualität versus höhere Druckgeschwindigkeit." msgid "Hilbert Curve" msgstr "HIlbertkurve" -#: src/slic3r/GUI/Plater.cpp:1039 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "Halten Sie die Umschalttaste gedrückt, um zu slicen und den G-Code zu exportieren" @@ -3217,15 +3251,15 @@ msgstr "Lochtiefe" msgid "Hole diameter" msgstr "Lochdurchmesser" -#: src/slic3r/GUI/Plater.cpp:2744 +#: src/slic3r/GUI/Plater.cpp:2760 msgid "Hollow" msgstr "Aushöhlen" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 msgid "Hollow and drill" msgstr "Aushöhlen und Bohren" -#: src/libslic3r/PrintConfig.cpp:2901 +#: src/libslic3r/PrintConfig.cpp:2910 msgid "Hollow out a model to have an empty interior" msgstr "Ein Modell aushöhlen, um einen leeren Innenraum zu erhalten" @@ -3233,60 +3267,48 @@ msgstr "Ein Modell aushöhlen, um einen leeren Innenraum zu erhalten" msgid "Hollow this object" msgstr "Dieses Objekt aushöhlen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 -#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 -#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 -#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 -#: src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 msgid "Hollowing" msgstr "Aushöhlen" -#: src/libslic3r/PrintConfig.cpp:2916 -msgid "Hollowing accuracy" -msgstr "Genauigkeit" - -#: src/slic3r/GUI/Plater.cpp:2910 +#: src/slic3r/GUI/Plater.cpp:2926 msgid "Hollowing cancelled." -msgstr "Aushöhlen abgebrochen" +msgstr "Aushöhlen abgebrochen." -#: src/libslic3r/PrintConfig.cpp:2925 -msgid "Hollowing closing distance" -msgstr "Schliessabstand" - -#: src/slic3r/GUI/Plater.cpp:2911 +#: src/slic3r/GUI/Plater.cpp:2927 msgid "Hollowing done." msgstr "Aushöhlung erledigt." -#: src/slic3r/GUI/Plater.cpp:2913 +#: src/slic3r/GUI/Plater.cpp:2929 msgid "Hollowing failed." msgstr "Das Aushöhlen ist fehlgeschlagen." -#: src/libslic3r/PrintConfig.cpp:2928 +#: src/libslic3r/PrintConfig.cpp:2937 msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." msgstr "Das Aushöhlen erfolgt in zwei Schritten: Zuerst wird ein imaginärer Innenraum tiefer (Versatz plus Schließabstand) in das Objekt hinein berechnet und dann wird es wieder auf den angegebenen Versatz aufgeblasen. Ein größerer Schließabstand macht den Innenraum runder. Bei Null wird der Innenraum dem Außenraum am ähnlichsten sein." -#: src/libslic3r/SLAPrintSteps.cpp:41 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Hollowing model" msgstr "Aushöhlen des Modells" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 msgid "Hollowing parameter change" msgstr "Änderung der Aushöhlungsparameter" -#: src/libslic3r/PrintConfig.cpp:2906 -msgid "Hollowing thickness" -msgstr "Wandstärke" - #: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Bienenwabe" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "Horizontale Konturhüllen" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:245 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Horizontalbreite des Randes, der um jedes Objekt auf der Bodenschicht gedruckt wird." @@ -3306,23 +3328,27 @@ msgstr "Hostname" msgid "Hostname, IP or URL" msgstr "Hostname, IP oder URL" -#: src/slic3r/GUI/Tab.cpp:141 -msgid "Hover the cursor over buttons to find more information \nor click this button." -msgstr "Bewegen Sie den Mauszeiger über die Schaltflächen, um weitere Informationen zu erhalten,\noder klicken Sie auf diese Schaltfläche." +#: src/slic3r/GUI/Tab.cpp:139 +msgid "" +"Hover the cursor over buttons to find more information \n" +"or click this button." +msgstr "" +"Bewegen Sie den Mauszeiger über die Schaltflächen, um weitere Informationen zu erhalten,\n" +"oder klicken Sie auf diese Schaltfläche." -#: src/libslic3r/PrintConfig.cpp:2803 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "Wie weit sich die Grundschicht um die enthaltene Geometrie erstrecken soll" -#: src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Wie weit die kleinen Verbinder in den Modellkörper eindringen sollen." -#: src/libslic3r/PrintConfig.cpp:2622 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "Wie tief der Nadelkopf in die Modelloberfläche eindringt" -#: src/libslic3r/PrintConfig.cpp:2746 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Wie viel die Stützen das unterstützte Objekt anheben sollen. Wenn \"Grundschicht um Objekt\" aktiviert ist, wird dieser Wert ignoriert." @@ -3334,12 +3360,17 @@ msgstr "HTTPS CA Datei" msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "HTTPS-CA-Datei ist optional. Sie wird nur benötigt, wenn Sie HTTPS mit einem selbstsignierten Zertifikat verwenden." -#: src/slic3r/GUI/Tab.cpp:1755 -#, possible-c-format -msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "HTTPS CA-Datei:\nAuf diesem System verwendet %s HTTPS-Zertifikate aus dem System Zertifikatsspeicher oder Schlüsselbund. Um eine benutzerdefinierte CA-Datei zu verwenden, importieren Sie bitte Ihre CA-Datei in den Zertifikatsspeicher / Schlüsselbund." +#: src/slic3r/GUI/Tab.cpp:1757 +#, c-format +msgid "" +"HTTPS CA File:\n" +" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" +" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "" +"HTTPS CA-Datei:\n" +"Auf diesem System verwendet %s HTTPS-Zertifikate aus dem System Zertifikatsspeicher oder Schlüsselbund. Um eine benutzerdefinierte CA-Datei zu verwenden, importieren Sie bitte Ihre CA-Datei in den Zertifikatsspeicher / Schlüsselbund." -#: src/slic3r/GUI/Preferences.cpp:226 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "Symbolgröße in Bezug auf die Standardgröße" @@ -3351,13 +3382,13 @@ msgstr "ID" msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Wenn dieses Kontrollkästchen aktiviert ist, werden Stützstrukturen automatisch basierend auf dem Schwellenwert für den Überhang generiert. Wenn diese Option nicht aktiviert ist, werden Stützen nur innerhalb der Volumen der \"Stützverstärker\" generiert." -#: src/slic3r/GUI/ConfigWizard.cpp:772 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:773 +#, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Falls aktiviert, sucht %s online nach neuen Versionen der Anwendung. Falls eine neue Version verfügbar ist, wird eine Mitteilung beim nächsten Programmstart angezeigt (aber nie während der Programmausführung). Dies dient nur der Mitteilung; es findet keine automatische Installation statt." -#: src/slic3r/GUI/ConfigWizard.cpp:782 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:783 +#, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Wenn aktiviert, lädt %s Updates der eingebauten Systemvoreinstellungen im Hintergrund herunter. Diese Updates werden in einen separaten temporären Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar wird, wird sie beim Programmstart angeboten." @@ -3366,10 +3397,14 @@ msgid "If enabled, all printing extruders will be primed at the front edge of th msgstr "Wenn aktiviert, werden alle Druckextruder zu Beginn des Druckvorgangs an der Vorderkante des Druckbetts geprimt." #: src/slic3r/GUI/ConfigWizard.cpp:805 -msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." -msgstr "Wenn diese Option aktiviert ist, ermöglicht der Befehl Von Festplatte neu laden das automatische Suchen und Laden der Dateien, wenn er aufgerufen wird.\nWenn nicht aktiviert, fordert der Befehl Von der Festplatte neu laden jede Datei über ein Dialogfeld zum Öffnen von Dateien zur Auswahl auf." +msgid "" +"If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "" +"Wenn diese Option aktiviert ist, ermöglicht der Befehl Von Festplatte neu laden das automatische Suchen und Laden der Dateien, wenn er aufgerufen wird.\n" +"Wenn nicht aktiviert, fordert der Befehl Von der Festplatte neu laden jede Datei über ein Dialogfeld zum Öffnen von Dateien zur Auswahl auf." -#: src/slic3r/GUI/Preferences.cpp:75 +#: src/slic3r/GUI/Preferences.cpp:74 msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." msgstr "Wenn diese Option aktiviert ist, ermöglicht der Befehl \"Von Festplatte neu laden\" das automatische Suchen und Laden der Dateien, wenn er aufgerufen wird." @@ -3377,11 +3412,11 @@ msgstr "Wenn diese Option aktiviert ist, ermöglicht der Befehl \"Von Festplatte msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Wenn aktiviert, wird PrusaSlicer online nach den neuen Versionen von sich selbst suchen. Wenn eine neue Version verfügbar wird, wird beim nächsten Anwendungsstart (nie während der Programmnutzung) eine Benachrichtigung angezeigt. Dies ist nur ein Benachrichtigungsmechanismus, es erfolgt keine automatische Installation." -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Wenn aktiviert, lädt Slic3r Updates der eingebauten Systemvoreinstellungen im Hintergrund herunter. Diese Updates werden in einen separaten temporären Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar wird, wird sie beim Programmstart angeboten." -#: src/slic3r/GUI/Preferences.cpp:108 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Wenn aktiviert, wird die 3D-Szene in Retina-Auflösung gerendert. Wenn Sie Probleme mit der 3D-Leistung haben, kann es hilfreich sein, diese Option zu deaktivieren." @@ -3389,15 +3424,15 @@ msgstr "Wenn aktiviert, wird die 3D-Szene in Retina-Auflösung gerendert. Wenn S msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Wenn aktiviert, wird der Reinigungsturm nicht auf Schichten ohne Werkzeugwechsel gedruckt. Bei Schichten mit Werkzeugwechsel fährt der Extruder nach unten, um den Reinigungsturm zu drucken. Der Benutzer ist dafür verantwortlich, dass es nicht zu einer Kollision mit dem Druck kommt." -#: src/slic3r/GUI/Preferences.cpp:131 +#: src/slic3r/GUI/Preferences.cpp:128 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Wenn aktiviert, verwenden Sie eine freie Kamera. Wenn nicht aktiviert, verwenden Sie eine beschränkte Kamera." -#: src/slic3r/GUI/Preferences.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Wenn aktiviert, verwenden Sie eine perspektivische Kamera. Wenn nicht aktiviert, verwenden Sie eine orthographische Kamera." -#: src/slic3r/GUI/Preferences.cpp:149 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Wenn aktiviert, können Sie die Größe der Symbolleistensymbole manuell ändern." @@ -3461,17 +3496,17 @@ msgstr "Wenn Ihre Firmware die Verschiebung des Extruders nicht beherrscht, ben msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Wenn Ihre Firmware relative E-Werte benötigt, diese Option aktivieren, ansonsten lassen Sie sie unmarkiert. Die meisten Firmwares verwenden absolute Werte." -#: src/libslic3r/PrintConfig.cpp:3470 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "Ignoriere fehlende Konfigurationsdateien" #: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" -msgstr "Importiere Konfiguration (&C)" +msgstr "Importiere &Konfiguration" #: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" -msgstr "Importiere Konfigurationssamlung (&B)" +msgstr "Importiere Konfi&gurationssamlung" #: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" @@ -3481,15 +3516,15 @@ msgstr "Importiere Konfiguration von &Projekt" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Konfiguration aus ini/amf/3mf/gcode importieren" -#: src/slic3r/GUI/Plater.cpp:4616 +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "Objekt importieren" -#: src/slic3r/GUI/Plater.cpp:4620 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "Objekte importieren" -#: src/slic3r/Utils/FixModelByWin10.cpp:390 +#: src/slic3r/Utils/FixModelByWin10.cpp:383 msgid "Import of the repaired 3mf file failed" msgstr "Import einer reparierten 3MF Datei fehlgeschlagen" @@ -3497,16 +3532,12 @@ msgstr "Import einer reparierten 3MF Datei fehlgeschlagen" msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importiere STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "Importe STL/OBJ/AMF/3MF ohne Konfigurationsdaten, behalte Druckbett bei" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importiere STL/OBJ/AMF/3MF mit Konfigurationsdaten, Druckplatte beibehalten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 +#, c-format msgid "In this mode you can select only other %s Items%s" msgstr "In diesem Modus wählen Sie nur andere %s Elemente%s" @@ -3515,42 +3546,50 @@ msgid "Incompatible bundles:" msgstr "Inkompatible Konfigurationssammlungen:" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -#, possible-c-format +#, c-format msgid "Incompatible with this %s" msgstr "Nicht kompatibel mit diesem %s" -#: src/slic3r/GUI/Plater.cpp:4700 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" msgstr "Kopien erhöhen" -#: src/slic3r/GUI/GLCanvas3D.cpp:269 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "Bearbeitungsbereich vergrößern/verkleinern" -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2922 msgid "Indexing hollowed object" msgstr "Indizierung ausgehöhlter Objekte" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 -msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "zeigt an, dass einige Einstellungen geändert wurden und nicht mit den System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen.\nKlicken Sie auf das Symbol GEÖFFNETES SCHLOSS, um alle Einstellungen für die aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." +#: src/slic3r/GUI/Tab.cpp:3258 +msgid "" +"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "" +"zeigt an, dass einige Einstellungen geändert wurden und nicht mit den System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen.\n" +"Klicken Sie auf das Symbol GEÖFFNETES SCHLOSS, um alle Einstellungen für die aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "zeigt an, dass die Einstellungen mit den System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3254 -msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." -msgstr "zeigt an, dass die Einstellungen geändert wurden und nicht mit dem zuletzt gespeicherten Preset für die aktuelle Optionsgruppe übereinstimmen. \nKlicken Sie auf das Symbol PFEIL ZURÜCK, um alle Einstellungen für die aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen." +#: src/slic3r/GUI/Tab.cpp:3270 +msgid "" +"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +msgstr "" +"zeigt an, dass die Einstellungen geändert wurden und nicht mit dem zuletzt gespeicherten Preset für die aktuelle Optionsgruppe übereinstimmen. \n" +"Klicken Sie auf das Symbol PFEIL ZURÜCK, um alle Einstellungen für die aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen." #: src/slic3r/GUI/ConfigManipulation.cpp:211 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 -#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 -#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 #: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 @@ -3576,12 +3615,12 @@ msgstr "Infill Extruder" msgid "Infill/perimeters overlap" msgstr "Infill/Kontur Überlappung" -#: src/libslic3r/Print.cpp:1580 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "Fülle Schichten" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "Info" @@ -3593,15 +3632,15 @@ msgstr "Übernimmt Profil" msgid "Initial exposition time is out of printer profile bounds." msgstr "Anfang-Belichtungszeit ist außerhalb der Druckerprofilgrenzen." -#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "Anfang-Belichtungszeit" -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "Anfangsschichthöhe" -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "Der Eingabewert ist nicht im gültigen Bereich" @@ -3611,11 +3650,11 @@ msgstr "Inspiziere / aktiviere Konfigurations-Momentaufnahmen" #: src/slic3r/GUI/ObjectDataViewModel.cpp:60 #: src/slic3r/GUI/ObjectDataViewModel.cpp:216 -#, possible-c-format +#, c-format msgid "Instance %d" msgstr "Kopie %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "Kopie Bearbeitung" @@ -3623,8 +3662,8 @@ msgstr "Kopie Bearbeitung" msgid "Instances" msgstr "Kopien" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "Kopien in einzelne Objekte wandeln" @@ -3648,11 +3687,11 @@ msgstr "Schnittstellenshells" msgid "internal error" msgstr "interner Fehler" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Internes Infill" -#: src/slic3r/GUI/Plater.cpp:3090 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "Ungültige Daten" @@ -3673,7 +3712,7 @@ msgstr "Ungültige Eindringtiefe des Stützkopfes" msgid "invalid header or archive is corrupted" msgstr "ungültiger Dateiheader oder Archiv ist beschädigt" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Ungültige numerische Eingabe." @@ -3691,15 +3730,11 @@ msgstr "Ungültiger Nadelkopfdurchmesser" msgid "is licensed under the" msgstr "ist unter der Lizenz der" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Is necessary to install a configuration update. " -msgstr "Ein Konfigurations-Update muss installiert werden." - -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "ist mit dem Druckprofil nicht kompatibel" -#: src/slic3r/GUI/Tab.cpp:2924 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "ist mit dem Drucker nicht kompatibel" @@ -3711,11 +3746,11 @@ msgstr "Iso" msgid "Iso View" msgstr "Iso Ansicht" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "Es ist keine Löschung oder Änderung möglich." -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "It is not allowed to change the file to reload" msgstr "Es ist nicht erlaubt, die neu zu ladende Datei zu ändern" @@ -3723,11 +3758,11 @@ msgstr "Es ist nicht erlaubt, die neu zu ladende Datei zu ändern" msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Es kann vorteilhaft sein, den Extrudermotorstrom während des Filamentwechselvorgangs zu erhöhen, um schnelle Rammvorschübe zu ermöglichen und den Widerstand beim Laden eines Filaments mit einer ungünstig geformten Spitze zu überwinden." -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Es ist nicht möglich mehrteilige Objekte mit dem SLA-Verfahren zu drucken." -#: src/slic3r/GUI/Tab.cpp:2225 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "Ruck-Begrenzungen" @@ -3735,13 +3770,13 @@ msgstr "Ruck-Begrenzungen" msgid "Jitter" msgstr "Jitter" -#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 -#: src/slic3r/GUI/DoubleSlider.cpp:1623 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 msgid "Jump to height" msgstr "Zur Höhe wechseln" -#: src/slic3r/GUI/DoubleSlider.cpp:928 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:955 +#, c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "Auf Höhe %s wechseln oder Extrudersequenz für den gesamten Druck einstellen" @@ -3753,7 +3788,7 @@ msgstr "Lüfter ständig laufen lassen" msgid "Keep lower part" msgstr "Unteren Teil behalten" -#: src/slic3r/GUI/GLCanvas3D.cpp:309 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "Halte min" @@ -3761,7 +3796,7 @@ msgstr "Halte min" msgid "Keep upper part" msgstr "Oberen Teil behalten" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "Tastaturkürzel" @@ -3769,7 +3804,7 @@ msgstr "Tastaturkürzel" msgid "Keyboard shortcuts" msgstr "Tastaturkürzel" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" @@ -3789,57 +3824,57 @@ msgstr "Spache" msgid "Language selection" msgstr "Sprachauswahl" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "Letzte Kopie eines Objektes kann nicht gelöscht werden." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "Schicht" #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Schichthöhe" -#: src/libslic3r/Print.cpp:1423 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "Schichthöhe darf nicht größer sein als der Düsendurchmesser" -#: src/slic3r/GUI/Tab.cpp:2358 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "Schichthöhen Grenzen" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "Schichthöhe:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "Schichtbereicheinstellungen zum Ändern" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 #: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 #: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 #: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "Schichten" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 -#: src/slic3r/GUI/Tab.cpp:3585 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "Schichten" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "Schichten und Umfänge" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 -#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 #: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 @@ -3853,16 +3888,12 @@ msgstr "Schichten und Konturen" msgid "Layers Slider" msgstr "Schichtenschieber" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 -msgid "Layers Slider Shortcuts" -msgstr "Schichtenschieber Kürzel" - -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" msgstr "Boden" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" msgstr "Decke" @@ -3871,13 +3902,13 @@ msgstr "Decke" msgid "Left" msgstr "Links" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "Linker Mausklick" -#: src/slic3r/GUI/GLCanvas3D.cpp:242 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "Linke Maustaste:" @@ -3885,7 +3916,7 @@ msgstr "Linke Maustaste:" msgid "Left View" msgstr "Anicht von Links" -#: src/slic3r/GUI/GUI_Preview.cpp:259 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "Legende" @@ -3893,7 +3924,7 @@ msgstr "Legende" msgid "Length" msgstr "Länge" -#: src/libslic3r/PrintConfig.cpp:318 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Länge des Kühlschlauchs, um den Raum für Kühlbewegungen im Inneren zu begrenzen." @@ -3910,7 +3941,7 @@ msgstr "Z Hebung" msgid "Line" msgstr "Linie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "Laden" @@ -3918,22 +3949,14 @@ msgstr "Laden" msgid "Load a model" msgstr "Lade ein Modell" -#: src/libslic3r/PrintConfig.cpp:3490 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Lädt und speichert Einstellungen im angegebenen Verzeichnis. Dies ist nützlich, um verschiedene Profile zu pflegen oder Konfigurationen aus einem Netzwerkspeicher zu übernehmen." -#: src/libslic3r/PrintConfig.cpp:3474 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "Lade Konfigurationsdatei" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "Lade Konfiguration von .ini/amf/3mf/gcode" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "Lade und füge Konfiguration von .ini/amf/3mf/gcode hinzu" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Lade und füge Konfiguration von ini/amf/3mf/gcode hinzu" @@ -3942,7 +3965,7 @@ msgstr "Lade und füge Konfiguration von ini/amf/3mf/gcode hinzu" msgid "Load configuration from project file" msgstr "Lade Konfiguration aus Projektdatei" -#: src/libslic3r/PrintConfig.cpp:3475 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Lädt die Konfiguration aus der angegebenen Datei. Es kann mehr als einmal verwendet werden, um Optionen aus mehreren Dateien zu laden." @@ -3950,15 +3973,15 @@ msgstr "Lädt die Konfiguration aus der angegebenen Datei. Es kann mehr als einm msgid "Load exported configuration file" msgstr "Laden einer exportierten Konfigurationsdatei" -#: src/slic3r/GUI/Plater.cpp:1375 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "Datei laden" -#: src/slic3r/GUI/Plater.cpp:1379 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "Dateien laden" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "Teil laden" @@ -3966,7 +3989,7 @@ msgstr "Teil laden" msgid "Load presets from a bundle" msgstr "Lade Voreinstellungen aus einer Sammlung" -#: src/slic3r/GUI/Plater.cpp:4588 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "Projekt laden" @@ -3982,11 +4005,11 @@ msgstr "Laden..." msgid "loaded" msgstr "geladen wird" -#: src/slic3r/GUI/Plater.cpp:2410 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "Geladen" -#: src/slic3r/GUI/Plater.cpp:2257 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "Lade" @@ -3999,7 +4022,7 @@ msgid "Loading of current presets" msgstr "Laden der aktuellen Voreinstellungen" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:378 msgid "Loading repaired model" msgstr "Lade repariertes Modell" @@ -4020,19 +4043,19 @@ msgstr "Lokale Koordinaten" msgid "Lock supports under new islands" msgstr "Fixiere Stützen unter neuen Inseln" -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "GESCHLOSSENES SCHLOSS" -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "Das Symbol LOCKED LOCK zeigt an, dass die Einstellungen mit den System- (oder Standard-) Werten für die aktuelle Optionsgruppe übereinstimmen" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "Das Symbol LOCKED LOCK zeigt an, dass der Wert mit dem System- (oder Standard-) Wert übereinstimmt." -#: src/libslic3r/PrintConfig.cpp:3493 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "Logging-Level" @@ -4040,12 +4063,12 @@ msgstr "Logging-Level" msgid "Loops (minimum)" msgstr "Schleifen (minimal)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 msgid "Lower Layer" msgstr "Untere Schicht" -#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -4053,11 +4076,7 @@ msgstr "Untere Schicht" msgid "Machine limits" msgstr "Maschinengrenzen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "Haupt Kürzel" - -#: src/slic3r/GUI/Plater.cpp:168 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "Hülle ok" @@ -4065,23 +4084,23 @@ msgstr "Hülle ok" msgid "Manual editing" msgstr "Manuelle Bearbeitung" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "Maskierte SLA-Datei exportiert nach %1%" -#: src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "Mate&rial Einstellungen" -#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.hpp:415 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "Material Einstellungen" -#: src/slic3r/GUI/Plater.cpp:165 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "Material" @@ -4089,15 +4108,15 @@ msgstr "Material" msgid "Max" msgstr "Max" -#: src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "Max Überbrückungslänge" -#: src/libslic3r/PrintConfig.cpp:2813 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "Maximaler Zusammenfügeabstand" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "Max. Pfeiler Verbindungsabstand" @@ -4181,11 +4200,11 @@ msgstr "Maximale Beschleunigung Y" msgid "Maximum acceleration Z" msgstr "Maximale Beschleunigung Z" -#: src/slic3r/GUI/Tab.cpp:2218 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "Maximale Beschleunigungen" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "Maximale Belichtungszeit" @@ -4221,11 +4240,11 @@ msgstr "Maximaler Vorschub Y" msgid "Maximum feedrate Z" msgstr "Maximaler Vorschub Z" -#: src/slic3r/GUI/Tab.cpp:2213 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "Maximaler Vorschub" -#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "Maximale Anfang-Belichtungszeit" @@ -4265,15 +4284,15 @@ msgstr "Maximaler Ruck Z" msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Maximale volumetrische Geschwindigkeit, die für dieses Filament zulässig ist. Begrenzt die maximale volumetrische Geschwindigkeit eines Drucks auf das Minimum von Druck- und Filament-Volumengeschwindigkeit. Wird auf null gesetzt, wenn es keine Begrenzung gibt." -#: src/libslic3r/PrintConfig.cpp:3427 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "Zusammenfügen" -#: src/libslic3r/PrintConfig.cpp:2674 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Das Zusammenfügen von Brücken oder Säulen in andere Säulen kann den Radius vergrößern. Null bedeutet keine Erhöhung, eins bedeutet volle Erhöhung." -#: src/libslic3r/SLAPrintSteps.cpp:62 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "Zusammenführung der Slices und Berechnung der Statistiken" @@ -4281,14 +4300,10 @@ msgstr "Zusammenführung der Slices und Berechnung der Statistiken" msgid "Mesh repair failed." msgstr "Netzreparatur fehlgeschlagen." -#: src/slic3r/GUI/DoubleSlider.cpp:1607 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "Meldung für die Druckpause auf der aktuellen Schicht (%1% mm)." -#: src/libslic3r/PrintConfig.cpp:3120 -msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -msgstr "Meldungen mit einem niedrigeren oder gleichwertigen Schweregrad zum Loglevel werden ausgegeben. 0:Protokoll, 1:Debug, 2:Info, 3:Warnung, 4:Fehler, 5:Fatal" - #: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Min" @@ -4301,7 +4316,7 @@ msgstr "Minimale Druckgeschwindigkeit" msgid "min PrusaSlicer version" msgstr "min PrusaSlicer Version" -#: src/libslic3r/PrintConfig.cpp:2763 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "Minimaler Abstand der Stützpunkte" @@ -4317,11 +4332,11 @@ msgstr "Minimaler Prunktabstand" msgid "Minimal purge on wipe tower" msgstr "Minimale Wischmenge im Wischturm" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:187 msgid "Minimum bottom shell thickness" msgstr "Minimale Stärke der Bodenschale" -#: src/slic3r/GUI/PresetHints.cpp:335 +#: src/slic3r/GUI/PresetHints.cpp:339 msgid "Minimum bottom shell thickness is %1% mm." msgstr "Die Mindeststärke der Bodenschale beträgt %1% mm." @@ -4329,7 +4344,7 @@ msgstr "Die Mindeststärke der Bodenschale beträgt %1% mm." msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Minimale Detailauflösung, die verwendet wird, um die Eingabedatei zu vereinfachen, um den Slicingjob zu beschleunigen und den Speicherverbrauch zu reduzieren. Hochauflösende Modelle weisen oft mehr Details auf, als der Drucker wiedergeben kann. Setzen Sie den Wert auf Null, um die Vereinfachung zu deaktivieren und die volle Auflösung des Eingangsdatei zu verwenden." -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "Minimale Belichtungszeit" @@ -4341,15 +4356,15 @@ msgstr "Maximaler Vorschub bei Extrusion" msgid "Minimum feedrate when extruding (M205 S)" msgstr "Minimaler Vorschub beim Extrudieren (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2230 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "Minimaler Vorschub" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "Minimale Anfang-Belichtungszeit" -#: src/slic3r/GUI/Tab.cpp:1071 +#: src/slic3r/GUI/Tab.cpp:1069 msgid "Minimum shell thickness" msgstr "Minimale Schalenstärke" @@ -4361,7 +4376,7 @@ msgstr "Mindeststärke einer Ober-/Bodenschale" msgid "Minimum top shell thickness" msgstr "Mindeststärke der oberen Schale" -#: src/slic3r/GUI/PresetHints.cpp:316 +#: src/slic3r/GUI/PresetHints.cpp:320 msgid "Minimum top shell thickness is %1% mm." msgstr "Die Mindeststärke der Oberschale beträgt %1% mm." @@ -4377,7 +4392,7 @@ msgstr "Minimaler Vorschub im Eilgang" msgid "Minimum travel feedrate (M205 T)" msgstr "Minimaler Vorschub im Eilgang (M205 T)" -#: src/libslic3r/PrintConfig.cpp:2908 +#: src/libslic3r/PrintConfig.cpp:2917 msgid "Minimum wall thickness of a hollowed model." msgstr "Mindestwandstärke eines ausgehöhlten Modells." @@ -4385,7 +4400,7 @@ msgstr "Mindestwandstärke eines ausgehöhlten Modells." msgid "Minimum width of features to maintain when doing elephant foot compensation." msgstr "Mindestbreite der Merkmale, die bei der Kompensation des Elefantenfußes einzuhalten sind." -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "Spiegeln" @@ -4393,23 +4408,23 @@ msgstr "Spiegeln" msgid "Mirror horizontally" msgstr "Horizontal spiegeln" -#: src/slic3r/GUI/GLCanvas3D.cpp:2075 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "Objekt spiegeln" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "Ausgewähltes Objekt spiegeln" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "Ausgewähltes Objekt entlang der X-Achse spiegeln" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "Ausgewähltes Objekt entlang der Y-Achse spiegeln" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "Ausgewähltes Objekt entlang der Z-Achse spiegeln" @@ -4418,7 +4433,7 @@ msgid "Mirror vertically" msgstr "Vertikal spiegeln" #: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 -#, possible-c-format +#, c-format msgid "Mismatched type of print host: %s" msgstr "Nicht übereinstimmender Typ des Druckhosts: %s" @@ -4426,21 +4441,21 @@ msgstr "Nicht übereinstimmender Typ des Druckhosts: %s" msgid "Mixed" msgstr "Gemischt" -#: src/libslic3r/PrintConfig.cpp:2482 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" #: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 #: src/slic3r/GUI/ObjectDataViewModel.cpp:94 #: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 #: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 -#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 -#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 -#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 #: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 #: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 #: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 @@ -4455,17 +4470,18 @@ msgstr "ml" #: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 #: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 #: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 -#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 #: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 -#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 -#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 -#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 -#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 -#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 -#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 -#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" @@ -4482,7 +4498,7 @@ msgstr "mm (null eingeben zum Deaktivieren)" msgid "mm or %" msgstr "mm oder %" -#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 #: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 #: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 #: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 @@ -4501,7 +4517,7 @@ msgstr "mm/s" msgid "mm/s or %" msgstr "mm/s oder %" -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 #: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 #: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 #: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 @@ -4527,7 +4543,7 @@ msgstr "mm³/s²" #: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" -msgstr "Modus" +msgstr "&Modus" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" @@ -4541,24 +4557,24 @@ msgstr "Modell" msgid "Model fixing" msgstr "Modellkorrektur" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model Repair by the Netfabb service" msgstr "Modellreparatur durch den Netfabb-Dienst" -#: src/slic3r/Utils/FixModelByWin10.cpp:413 +#: src/slic3r/Utils/FixModelByWin10.cpp:406 msgid "Model repair canceled" msgstr "Modellreparatur abgebrochen" -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model repair failed:" msgstr "Modellreparatur fehlgeschlagen:" -#: src/slic3r/Utils/FixModelByWin10.cpp:407 +#: src/slic3r/Utils/FixModelByWin10.cpp:400 msgid "Model repair finished" msgstr "Modellreparatur beendet" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 msgid "Model repaired successfully" msgstr "Modellreparatur erfolgreich" @@ -4566,15 +4582,15 @@ msgstr "Modellreparatur erfolgreich" msgid "modified" msgstr "geändert" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "Veränderer" -#: src/slic3r/GUI/Tab.cpp:1163 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "Veränderer" -#: src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "Kosten/Flasche" @@ -4582,11 +4598,11 @@ msgstr "Kosten/Flasche" msgid "money/kg" msgstr "Kosten/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "Mausrad" -#: src/slic3r/GUI/GLCanvas3D.cpp:266 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "Mausrad:" @@ -4594,27 +4610,27 @@ msgstr "Mausrad:" msgid "Move" msgstr "Bewegen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "Beschnittebene bewegen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Move current slider thumb Down" msgstr "Bewege aktuellen Schieberegler nach unten" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Move current slider thumb Up" msgstr "Bewege aktuellen Schieberegler nach oben" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 msgid "Move drainage hole" msgstr "Drainageloch bewegen" -#: src/slic3r/GUI/GLCanvas3D.cpp:3538 +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "Objekt bewegen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "Punkt bewegen" @@ -4634,7 +4650,7 @@ msgstr "Auswahl 10 mm in positiver X-Richtung verschieben" msgid "Move selection 10 mm in positive Y direction" msgstr "Auswahl 10 mm in positiver Y-Richtung verschieben" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "Stützpunkt bewegen" @@ -4650,36 +4666,42 @@ msgstr "Bewegungsschritt auf 1 mm eingestellt" msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Multi-Material-Drucker müssen eventuell Extruder bei Werkzeugwechseln vor- oder nachspülen. Extrudieren Sie das überschüssige Material in den Reinigungsturm." -#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "Objekt mit mehreren Teilen erkannt" #: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 -#, possible-c-format +#, c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Mehrere %s Geräte gefunden. Bitte immer nur eins zum Flashen anschließen." -#: src/slic3r/GUI/Tab.cpp:1181 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "Mehrere Extruder" -#: src/slic3r/GUI/Plater.cpp:2394 -msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" -msgstr "Für einen Multimaterialdrucker wurden mehrere Objekte geladen.\nSoll ich, anstatt sie als mehrere Objekte zu betrachten, \ndiese Dateien als ein einzelnes Objekt mit mehreren Teilen behandeln?" +#: src/slic3r/GUI/Plater.cpp:2410 +msgid "" +"Multiple objects were loaded for a multi-material printer.\n" +"Instead of considering them as multiple objects, should I consider\n" +"these files to represent a single object having multiple parts?" +msgstr "" +"Für einen Multimaterialdrucker wurden mehrere Objekte geladen.\n" +"Soll ich, anstatt sie als mehrere Objekte zu betrachten, \n" +"diese Dateien als ein einzelnes Objekt mit mehreren Teilen behandeln?" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "Multiple Kopien durch Erstellen eines Rasters." -#: src/libslic3r/PrintConfig.cpp:3419 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "Mehrfache Kopien mit diesem Faktor." -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "N.V." -#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Name" @@ -4704,7 +4726,7 @@ msgstr "Nächste" msgid "Network lookup" msgstr "Network Lookup" -#: src/slic3r/GUI/Plater.cpp:2135 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "Neues Projekt" @@ -4713,7 +4735,7 @@ msgid "New project, clear plater" msgstr "Neues Projekt, Druckplatte leeren" #: src/slic3r/GUI/UpdateDialogs.cpp:38 -#, possible-c-format +#, c-format msgid "New version of %s is available" msgstr "Eine neue Version von %s ist verfügbar" @@ -4721,11 +4743,11 @@ msgstr "Eine neue Version von %s ist verfügbar" msgid "New version:" msgstr "Neue Version:" -#: src/slic3r/GUI/GLCanvas3D.cpp:4722 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "Nächste Redo Aktion: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:4690 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "Nächste Undo-Aktion: %1%" @@ -4733,11 +4755,11 @@ msgstr "Nächste Undo-Aktion: %1%" msgid "No extrusion" msgstr "Keine Extrusion" -#: src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "Für dieses Modell kann mit der aktuellen Konfiguration keine Grundschicht generiert werden" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "Keine vorher gesclicete Datei." @@ -4749,25 +4771,25 @@ msgstr "ÜBERHAUPT KEIN RAMMEN" msgid "No sparse layers (EXPERIMENTAL)" msgstr "Keine spärlichen Schichten (EXPERIMENTELL)" -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "Es werden keine Stützpunkte näher als dieser Schwellenwert platziert." #: src/slic3r/GUI/UpdateDialogs.cpp:303 -msgid "No updates aviable" +msgid "No updates available" msgstr "Keine Updates verfügbar" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Kein" -#: src/slic3r/GUI/Tab.cpp:2199 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1258 +#: src/slic3r/GUI/Plater.cpp:1286 msgid "normal mode" msgstr "Normaler Modus" @@ -4776,10 +4798,10 @@ msgid "not a ZIP archive" msgstr "kein ZIP Archiv" #: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 -msgid "Not found: " +msgid "Not found:" msgstr "Nicht gefunden:" -#: src/slic3r/GUI/DoubleSlider.cpp:985 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "Note" msgstr "Hinweis" @@ -4795,20 +4817,20 @@ msgstr "Hinweis: FlashAir mit Firmware 2.00.02 oder neuer und aktivierter Upload msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Hinweis: Es ist mindestens die OctoPrint-Version 1.1.0 erforderlich." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Hinweis: Einige Tastenkombinationen funktionieren nur im (Nicht-)Bearbeitungsmodus." -#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 -#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 -#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 -#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "Anmerkungen" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 -#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "Hinweis" @@ -4816,12 +4838,12 @@ msgstr "Hinweis" msgid "nozzle" msgstr "Düse" -#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Düsendurchmesser" -#: src/slic3r/GUI/ConfigWizard.cpp:970 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "Düsendurchmesser:" @@ -4829,7 +4851,7 @@ msgstr "Düsendurchmesser:" msgid "Number of cooling moves" msgstr "Anzahl der Kühlbewegungen" -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "Anzahl der Extruder des Druckers." @@ -4853,7 +4875,7 @@ msgstr "Anzahl an Pixeln in X" msgid "Number of pixels in Y" msgstr "Anzahl an Pixeln in Y" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Anzahl der zu erzeugenden massiven Schichten auf der Bodenfläche." @@ -4865,19 +4887,19 @@ msgstr "Anzahl der zu erzeugenden massiven Schichten auf der Ober- und Unterseit msgid "Number of solid layers to generate on top surfaces." msgstr "Anzahl der zu erzeugenden massiven Schichten auf der Oberseite." -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Anzahl der für die Reduzierung der Belichtungszeit benötigten Schichten, von der anfänglichen bis zur Belichtungszeit" -#: src/slic3r/GUI/Plater.cpp:243 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "Anzahl der Werkzeugwechsel" -#: src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "Objekt-Hebung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "Objektbearbeitung" @@ -4885,19 +4907,19 @@ msgstr "Objektbearbeitung" msgid "Object name" msgstr "Objektname" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "Objekt oder Kopie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "Objekt neu angeordnet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "Abweichende Objekteigenschaften" -#: src/slic3r/GUI/Plater.cpp:2513 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "Objekt zu groß?" @@ -4905,11 +4927,11 @@ msgstr "Objekt zu groß?" msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "Objekt wird zum Reinigen der Düse nach einem Materialwechsel verwendet, um Material zu sparen, das sonst im Reinigungsturm landen und die Druckzeit verkürzen würde. Die Farben der Objekte werden dabei gemischt." -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "Objekt(e)" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "Objekte" @@ -4921,7 +4943,7 @@ msgstr "Achterstern-Spirale" msgid "OctoPrint version" msgstr "OctoPrint Version" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "des aktuellen Objekts" @@ -4929,15 +4951,15 @@ msgstr "des aktuellen Objekts" msgid "Offset" msgstr "Offset" -#: src/slic3r/GUI/DoubleSlider.cpp:923 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "Eine Schicht Modus" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1365 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Eines oder mehrere Objekte wurden einem Extruder zugewiesen, der auf diesem Drucker nicht vorhanden ist." -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Nur dann Stützen schaffen, wenn sie auf der Druckplattform aufbauen. Erstellt keine Stützstrukturen, die auf dem Ausdruck gründen würden." @@ -4945,7 +4967,7 @@ msgstr "Nur dann Stützen schaffen, wenn sie auf der Druckplattform aufbauen. Er msgid "Only infill where needed" msgstr "Infill nur wo es notwendig ist drucken" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "Nur Z anheben" @@ -4961,11 +4983,11 @@ msgstr "Z anheben nur unter" msgid "Only retract when crossing perimeters" msgstr "Nur bei Umfangsüberquerungen einziehen" -#: src/slic3r/GUI/Tab.cpp:1189 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "Vermeidung von Nachsickern (Ooze)" -#: src/libslic3r/Print.cpp:1262 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "Die Sickervermeidung wird derzeit nicht unterstützt, wenn der Wischturm aktiviert ist." @@ -4973,7 +4995,7 @@ msgstr "Die Sickervermeidung wird derzeit nicht unterstützt, wenn der Wischturm msgid "Open a project file" msgstr "Öffne eine Projektdatei" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "Open CA Zertifikat Datei" @@ -4990,52 +5012,48 @@ msgstr "Downloadseite öffnen" msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Öffne Projekt STL/OBJ/AMF/3MF mit Konfiguration, Druckplatte leeren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "Öffne Konfiguration aus Projekt STL/OBJ/AMF/3MF, lösche Druckbett" - -#: src/slic3r/GUI/MainFrame.cpp:695 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:693 +#, c-format msgid "Open the %s website in your browser" msgstr "%s-Website in Ihrem Browser öffnen" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Download-Seite für die Prusa3D-Treiber in Ihrem Browser öffnen" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "Seite mit Programmversionen in Ihrem Browser öffnen" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "Optimiere Ausrichtung" -#: src/slic3r/GUI/Plater.cpp:2751 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "Rotation optimieren" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "Optimiere die Rotation des Objekts für ein besseres Druckergebnis." -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimieren Sie die Verfahrbewegungen, um das Überschreiten von Konturen zu minimieren. Dies ist vor allem bei Bowdenextrudern nützlich, die unter sickerndem Material leiden. Diese Funktion verlangsamt sowohl den Druck als auch die Generierung des G-Codes." -#: src/slic3r/GUI/Tab.cpp:1133 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "Optionen für Stützstrukturen und Raft" -#: src/slic3r/GUI/DoubleSlider.cpp:960 +#: src/slic3r/GUI/DoubleSlider.cpp:989 msgid "or press \"+\" key" msgstr "oder drücken Sie die Taste \"+\"" -#: src/slic3r/GUI/Plater.cpp:2876 +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "Ausrichtung gefunden." -#: src/slic3r/GUI/Plater.cpp:2875 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "Ausrichtungssuche abgebrochen." @@ -5043,23 +5061,23 @@ msgstr "Ausrichtungssuche abgebrochen." msgid "Origin" msgstr "Nullpunkt" -#: src/slic3r/GUI/Tab.cpp:1229 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "Sonstige" -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Andere Schichten" -#: src/slic3r/GUI/ConfigWizard.cpp:857 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "Andere Hersteller" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "Ausgabedatei" -#: src/libslic3r/PrintConfig.cpp:3478 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "Ausgabedatei" @@ -5067,15 +5085,15 @@ msgstr "Ausgabedatei" msgid "Output filename format" msgstr "Ausgabe Dateinamen Format" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "Ausgabe Modellinformationen" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "Ausgabeoptionen" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Überhängende Außenkontur" @@ -5083,7 +5101,7 @@ msgstr "Überhängende Außenkontur" msgid "Overhang threshold" msgstr "Überhangsschwellwert" -#: src/slic3r/GUI/Tab.cpp:1217 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "Überlappung" @@ -5091,15 +5109,15 @@ msgstr "Überlappung" msgid "P&rint Settings Tab" msgstr "D&ruckeinstellungen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 -#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 -#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 -#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 -#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 -#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 -#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 -#: src/libslic3r/PrintConfig.cpp:2890 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "Grundschicht (Pad)" @@ -5107,15 +5125,15 @@ msgstr "Grundschicht (Pad)" msgid "Pad and Support" msgstr "Grundschicht und Stützen" -#: src/libslic3r/PrintConfig.cpp:2846 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "Grundschicht um Objekt" -#: src/libslic3r/PrintConfig.cpp:2853 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "Grundschicht überall um Objekt" -#: src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "Grundschicht Randgröße" @@ -5123,31 +5141,31 @@ msgstr "Grundschicht Randgröße" msgid "Pad brim size is too small for the current configuration." msgstr "Die Randgröße der Grundschicht ist für die aktuelle Konfiguration zu klein." -#: src/libslic3r/PrintConfig.cpp:2889 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "Objektgrundschicht Verbindungseindringtiefe" -#: src/libslic3r/PrintConfig.cpp:2871 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "Objektgrundschicht Verbindungsschritte" -#: src/libslic3r/PrintConfig.cpp:2880 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "Objektgrundschicht Verbinderbreite" -#: src/libslic3r/PrintConfig.cpp:2860 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "Grundschicht Objekt Abstand" -#: src/libslic3r/PrintConfig.cpp:2788 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "Grundschicht Wandhöhe" -#: src/libslic3r/PrintConfig.cpp:2835 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "Grundschicht Wandneigung" -#: src/libslic3r/PrintConfig.cpp:2778 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "Grundschicht Wandstärke" @@ -5159,28 +5177,28 @@ msgstr "Page Down" msgid "Page Up" msgstr "Page Up" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "Parametername" -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "Parameterüberprüfung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "Teil" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "Teilbearbeitung" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "Abweichende Teileigenschaften" -#: src/slic3r/GUI/GLCanvas3D.cpp:4563 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "Einfügen" @@ -5188,11 +5206,11 @@ msgstr "Einfügen" msgid "Paste clipboard" msgstr "Aus Zwischenablage einfügen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 msgid "Paste from clipboard" msgstr "Aus Zwischenablage einfügen" -#: src/slic3r/GUI/Plater.cpp:5640 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "Aus Zwischenablage einfügen" @@ -5212,12 +5230,16 @@ msgstr "Muster Abstand" msgid "Pattern used to generate support material." msgstr "Unterstützungsmaterialmuster." -#: src/slic3r/GUI/DoubleSlider.cpp:976 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "Pause" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Pause print (\"%1%\")" msgstr "Druck pausieren (\"%1%\")" -#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 -#: src/slic3r/GUI/GLCanvas3D.cpp:987 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "Druckpausen oder benutzerdefinierter G-Code" @@ -5225,11 +5247,11 @@ msgstr "Druckpausen oder benutzerdefinierter G-Code" msgid "Perform cut" msgstr "Schnitt ausführen" -#: src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2927 msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." msgstr "Leistung vs. Genauigkeit der Berechnung. Niedrigere Werte können zu unerwünschten Artefakten führen." -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Außenkontur" @@ -5246,8 +5268,8 @@ msgstr "Außenkonturen" msgid "Perimeters" msgstr "Konturen" -#: src/slic3r/GUI/ConfigWizard.cpp:861 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:860 +#, c-format msgid "Pick another vendor supported by %s" msgstr "Wählen Sie einen anderen Hersteller, der von %s unterstützt wird" @@ -5255,7 +5277,7 @@ msgstr "Wählen Sie einen anderen Hersteller, der von %s unterstützt wird" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Bildgrößen, die in einer.gcode und .sl1 Datei gespeichert werden sollen" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "Pfeilerverbreiterungsfaktor" @@ -5263,10 +5285,6 @@ msgstr "Pfeilerverbreiterungsfaktor" msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Der Nadelkopfdurchmesser sollte kleiner sein als der Säulendurchmesser." -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "Lager in Nuten einsetzen und wieder aufnehmen" - #: src/slic3r/GUI/DoubleSlider.cpp:79 msgid "Place bearings in slots and resume printing" msgstr "Lager in Nuten einsetzen und Druck wieder aufnehmen" @@ -5275,23 +5293,19 @@ msgstr "Lager in Nuten einsetzen und Druck wieder aufnehmen" msgid "Place on face" msgstr "Auf Fläche legen" -#: src/slic3r/GUI/MainFrame.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Druckplatte" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 -msgid "Plater Shortcuts" -msgstr "Druckplatten Kürzel" - #: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Bitte überprüfen und korrigieren Sie Ihre Objektliste." -#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "Bitte überprüfen Sie Ihre Objektliste, bevor Sie die Voreinstellungen ändern." -#: src/slic3r/GUI/Plater.cpp:3272 +#: src/slic3r/GUI/Plater.cpp:3286 msgid "Please select the file to reload" msgstr "Bitte wählen Sie die neu zu ladende Datei aus" @@ -5308,14 +5322,10 @@ msgstr "Hochformat" msgid "Position" msgstr "Position" -#: src/slic3r/GUI/Tab.cpp:2363 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "Position (für Multi-Extruder-Drucker)" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "Position (mm)" - #: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Position des Startpunktes des Umfangs." @@ -5328,7 +5338,7 @@ msgstr "X-Position" msgid "Position Y" msgstr "Y-Position" -#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Nachbearbeitungs Script" @@ -5336,7 +5346,7 @@ msgstr "Nachbearbeitungs Script" msgid "Pre&view" msgstr "&Vorschau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Einstellungen" @@ -5352,67 +5362,59 @@ msgstr "Bevorzugte Zitterrichtung für die Naht" msgid "Preparing infill" msgstr "Infill wird vorbereitet" -#: src/slic3r/GUI/Tab.cpp:2904 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2920 +#, c-format msgid "Preset (%s)" msgstr "Voreinstellung (%s)" -#: src/slic3r/GUI/Tab.cpp:3066 +#: src/slic3r/GUI/Tab.cpp:3082 msgid "Preset with name \"%1%\" already exists." msgstr "Eine Voreinstellung mit dem Namen \"%1%\" existiert bereits." -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - Kopieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" -msgstr "Drücken um das Abwahlrechteck zu aktivieren\noder um gewählte Objekte zu skalieren oder\num die eigene Mitte zu drehen" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Press to activate deselection rectangle" msgstr "Drücken um das Abwahlrechteck zu aktivieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Drücken um Eine-Richtungs-Skalierung im Skalierungsgizmo zu aktivieren" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Drücken um Auswahlrechteck zu aktivieren\noder mit 5% bei der Gizmo Skalierung zu rasten\noder mit 1 mm bei der Gizmo Bewegung" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:162 msgid "Press to activate selection rectangle" msgstr "Drücken um das Auswahlrechteck zu aktivieren" #: src/slic3r/GUI/KBShortcutsDialog.cpp:198 -msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" -msgstr "Zum Skalieren drücken (in Gizmo-Skalierung) oder drehen (in Gizmo-Rotation)\nausgewählter Objekte um ihr eigenes Zentrum herum" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "Press to scale selection to fit print volume\nin Gizmo scale" -msgstr "Drücken, um die Auswahl passend zum\nDruckvolumen in der Gizmo Skalierung anzupassen" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "Drücken zum Auswählen des mehrteiligen Objekts oder Bewegen des mehrteiligen Objekts mit der Maus" +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"Zum Skalieren drücken (in Gizmo-Skalierung) oder drehen (in Gizmo-Rotation)\n" +"ausgewählter Objekte um ihr eigenes Zentrum herum" #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with mouse" -msgstr "Drücken zum Auswählen des mehrteiligen Objekts \noder Bewegen des mehrteiligen Objekts mit der Maus" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with a mouse" -msgstr "Drücken zum Auswählen des mehrteiligen Objekts \noder Bewegen des mehrteiligen Objekts mit der Maus" +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"Drücken zum Auswählen des mehrteiligen Objekts \n" +"oder Bewegen des mehrteiligen Objekts mit der Maus" #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format -msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Drücken um mit 5% bei der Gizmo Skalierung zu rasten\noder mit 1 mm bei der Gizmo Bewegung" +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Drücken um mit 5% bei der Gizmo Skalierung zu rasten\n" +"oder mit 1 mm bei der Gizmo Bewegung" -#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "Vorschau" @@ -5420,11 +5422,7 @@ msgstr "Vorschau" msgid "Preview hollowed and drilled model" msgstr "Vorschau des ausgehöhlten und aufgebohrten Modells" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 -msgid "Preview Shortcuts" -msgstr "Vorschau Kürzel" - -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "Vorher geslicete Datei (" @@ -5432,7 +5430,7 @@ msgstr "Vorher geslicete Datei (" msgid "Prime all printing extruders" msgstr "Alle Druckextruder vorfüllen" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "Druck" @@ -5444,32 +5442,32 @@ msgstr "Druck&host Warteschlange" msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Drucken Sie Konturumfänge von der äußersten zur innersten Kontur anstatt der standardmäßigen umgekehrten Reihenfolge." -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "Druckdurchmesser" -#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "Hochladen zum Druckhost" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Druckhost Warteschlange" -#: src/slic3r/GUI/DoubleSlider.cpp:941 +#: src/slic3r/GUI/DoubleSlider.cpp:970 msgid "Print mode" msgstr "Druckmodus" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "Druckeinstellungen" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "Druckeinstellungen" -#: src/slic3r/GUI/Tab.cpp:1480 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "Korrektur der Druckgeschwindigkeit" @@ -5481,15 +5479,15 @@ msgstr "Druck z" msgid "Print&er Settings Tab" msgstr "Druck&ereinstellungen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "Druckbar" -#: src/slic3r/GUI/Plater.cpp:816 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "Drucker" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "Drucker" @@ -5497,11 +5495,11 @@ msgstr "Drucker" msgid "Printer absolute correction" msgstr "Drucker absolute Korrektur" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "Drucker Gammakorrektur" -#: src/slic3r/GUI/Tab.cpp:978 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "Druckermodell" @@ -5514,7 +5512,7 @@ msgstr "Drucker Anmerkungen" msgid "Printer scaling correction" msgstr "Drucker skalierte Korrektur" -#: src/slic3r/GUI/Tab.hpp:390 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "Druckereinstellungen" @@ -5534,18 +5532,18 @@ msgstr "Druckervariante" msgid "Printer vendor" msgstr "Druckerhersteller" -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1388 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Der Druck erfolgt mit mehreren Extrudern mit unterschiedlichen Düsendurchmessern. Falls Stützen mit dem aktuellen Extruder gedruckt werden sollen (support_material_extruder == 0 oder support_material_interface_extruder == 0), müssen alle Druckdüsen den gleichen Durchmesser aufweisen." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:851 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:849 +#, c-format msgid "Processing %s" msgstr "Berechne %s" -#: src/slic3r/GUI/Plater.cpp:2267 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2283 +#, c-format msgid "Processing input file %s" msgstr "Eingabe Datei %s wird verarbeitet" @@ -5553,9 +5551,9 @@ msgstr "Eingabe Datei %s wird verarbeitet" msgid "Processing triangulated mesh" msgstr "Verarbeitung der dreieckigen Netze" -#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 -#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "Profil Abhängigkeiten" @@ -5571,15 +5569,15 @@ msgstr "Fortschritt" msgid "Progress:" msgstr "Fortschritt:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" msgstr "Prusa 3&D Treiber" -#: src/slic3r/GUI/ConfigWizard.cpp:1998 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "Prusa FFF Technologie Drucker" -#: src/slic3r/GUI/ConfigWizard.cpp:2001 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Prusa MSLA Technologie Drucker" @@ -5588,23 +5586,31 @@ msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap co msgstr "PrusaSlicer basiert auf Slic3r von Alessandro Ranellucci und der RepRap Community." #: src/slic3r/GUI/GLCanvas3DManager.cpp:284 -#, possible-c-format -msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." +#, c-format +msgid "" +"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" +"while OpenGL version %s, render %s, vendor %s was detected." msgstr "PrusaSlicer benötigt einen OpenGL 2.0-fähigen Grafiktreiber, um korrekt zu laufen, während die OpenGL-Version %s, Render %s, Hersteller %s erkannt wurde." #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "PrusaSlicer Version" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "Die Benutzeroberflächen von PrusaSlicer sind in drei Varianten erhältlich:\nEinfach, Fortgeschritten und Experte.\nDer einfache Modus zeigt nur die am häufigsten verwendeten Einstellungen, die für den regulären 3D-Druck relevant sind. Die beiden anderen bieten eine immer anspruchsvollere Feinabstimmung, sie sind für fortgeschrittene bzw. erfahrene Anwender geeignet." +#: src/slic3r/GUI/ConfigWizard.cpp:815 +msgid "" +"PrusaSlicer's user interfaces comes in three variants:\n" +"Simple, Advanced, and Expert.\n" +"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "" +"Die Benutzeroberflächen von PrusaSlicer sind in drei Varianten erhältlich:\n" +"Einfach, Fortgeschritten und Experte.\n" +"Der einfache Modus zeigt nur die am häufigsten verwendeten Einstellungen, die für den regulären 3D-Druck relevant sind. Die beiden anderen bieten eine immer anspruchsvollere Feinabstimmung, sie sind für fortgeschrittene bzw. erfahrene Anwender geeignet." #: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Das Reinigen nach dem Werkzeugwechsel erfolgt innerhalb der Füllungen dieses Objekts. Dies reduziert die Abfallquote, kann aber aufgrund zusätzlicher Verfahrwege zu einer längeren Druckzeit führen." -#: src/slic3r/GUI/Plater.cpp:541 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "Reinigungsvolumen" @@ -5620,19 +5626,19 @@ msgstr "Reinigungsvolumen - Matrix" msgid "Quality" msgstr "Qualität" -#: src/slic3r/GUI/Tab.cpp:1082 +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "Qualität (langsameres Slicen)" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 +#: src/slic3r/GUI/GLCanvas3D.cpp:273 msgid "Quality / Speed" msgstr "Qualität / Geschwindigkeit" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 +#, c-format msgid "Quick Add Settings (%s)" msgstr "Schnelles Einstellen (%s)" @@ -5645,15 +5651,15 @@ msgid "Quick Slice and Save As" msgstr "Quick Slice und Speichern unter" #: src/slic3r/GUI/MainFrame.cpp:540 -#, possible-c-format +#, c-format msgid "Quit %s" msgstr "%s verlassen" -#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Radius" -#: src/slic3r/GUI/Tab.cpp:1129 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "Raft" @@ -5666,8 +5672,14 @@ msgid "Ramming customization" msgstr "Einstellungen für das Rammen" #: src/slic3r/GUI/WipeTowerDialog.cpp:41 -msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "Rammen steht für die beschleunigte Extrusion unmittelbar vor einem Werkzeugwechsel in einem MM-Drucker mit einem Extruder. Der Zweck ist, die Spitze des entladenen Filaments geeignet zu formen, damit es das Laden des neuen Filaments nicht behindert und später selber wieder eingeführt werden kann. Diese Phase ist wichtig und verschiedene Materialien können unterschiedliche Extrusionsgeschwindigkeiten benötigen, um die richtige Form zu erzielen. Aus diesem Grund können die Extrusionsraten für das Rammen angepasst werden.\n\nDies ist eine Einstellung für fortgeschrittene Benutzer. Falsche Anpassungen werden sehr wahrscheinlich zu Verstopfungen führen oder dazu, dass die Zähne der Extruderwelle ins Filament einschneiden usw." +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "" +"Rammen steht für die beschleunigte Extrusion unmittelbar vor einem Werkzeugwechsel in einem MM-Drucker mit einem Extruder. Der Zweck ist, die Spitze des entladenen Filaments geeignet zu formen, damit es das Laden des neuen Filaments nicht behindert und später selber wieder eingeführt werden kann. Diese Phase ist wichtig und verschiedene Materialien können unterschiedliche Extrusionsgeschwindigkeiten benötigen, um die richtige Form zu erzielen. Aus diesem Grund können die Extrusionsraten für das Rammen angepasst werden.\n" +"\n" +"Dies ist eine Einstellung für fortgeschrittene Benutzer. Falsche Anpassungen werden sehr wahrscheinlich zu Verstopfungen führen oder dazu, dass die Zähne der Extruderwelle ins Filament einschneiden usw." #: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" @@ -5681,7 +5693,7 @@ msgstr "Breite der Rammlinie" msgid "Ramming parameters" msgstr "Rammparameter" -#: src/slic3r/GUI/Tab.cpp:1507 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "Einstellungen für das Rammen" @@ -5693,7 +5705,7 @@ msgstr "Zufällig" msgid "Range" msgstr "Bereich" -#: src/libslic3r/SLAPrintSteps.cpp:63 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "Schichten werden gerastert" @@ -5709,7 +5721,7 @@ msgstr "Neu konfigurieren" msgid "Ready" msgstr "Fertig" -#: src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "Bereit zum Slicen" @@ -5723,16 +5735,16 @@ msgstr "Ansicht von Hinten" #: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" -msgstr "Letzte Projekte" +msgstr "L&etzte Projekte" #: src/slic3r/GUI/PresetHints.cpp:263 -#, possible-c-format +#, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Empfohlene Stärke der dünnen Wände des Objekts für die Schichthöhe %.2f und" #: src/slic3r/GUI/PresetHints.cpp:274 msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." -msgstr "Empfohlene Stärke der dünnen Wände des Objekts: Nicht verfügbar wegen extrem geringer Extrusionsbreite" +msgstr "Empfohlene Stärke der dünnen Wände des Objekts: Nicht verfügbar wegen extrem geringer Extrusionsbreite." #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." @@ -5755,37 +5767,38 @@ msgstr "Geradlinig" msgid "Rectilinear grid" msgstr "Rechtwinkliges Gitter" -#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Redo" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Redo %1$d Aktion" msgstr[1] "Redo %1$d Aktionen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "Redo Verlauf" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "Druckzeit wird verkürzt" -#: src/slic3r/GUI/Plater.cpp:3461 +#: src/slic3r/GUI/Plater.cpp:3452 msgid "Reload all from disk" msgstr "Alles von der Festplatte neu laden" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 -#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 msgid "Reload from disk" msgstr "Neuladen von Festplatte" -#: src/slic3r/GUI/Plater.cpp:3328 -msgid "Reload from: " +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" msgstr "Neuladen von:" #: src/slic3r/GUI/KBShortcutsDialog.cpp:134 @@ -5796,12 +5809,12 @@ msgstr "Druckplatte neu von der Festplatte laden" msgid "Reload the plater from disk" msgstr "Druckplatte neu von der Festplatte laden" -#: src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "Das ausgewählte Objekt von der Festplatte neu laden" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" msgstr "Die ausgewählten Volumen von der Festplatte neu laden" @@ -5809,12 +5822,12 @@ msgstr "Die ausgewählten Volumen von der Festplatte neu laden" msgid "Remember output directory" msgstr "Ausgabeverzeichnis merken" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "Entfernen" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "Entfernen" @@ -5826,11 +5839,11 @@ msgstr "Alle Löcher entfernen" msgid "Remove all points" msgstr "Alle Punkte entfernen" -#: src/slic3r/GUI/GLCanvas3D.cpp:251 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "Detail entfernen" -#: src/slic3r/GUI/Plater.cpp:876 +#: src/slic3r/GUI/Plater.cpp:879 msgid "Remove device" msgstr "Gerät entfernen" @@ -5838,11 +5851,11 @@ msgstr "Gerät entfernen" msgid "Remove extruder from sequence" msgstr "Extruder aus der Sequenz entfernen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" msgstr "Kopie entfernen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Remove Instance of the selected object" msgstr "Entfernt Kopie des gewählten Objekts" @@ -5850,7 +5863,7 @@ msgstr "Entfernt Kopie des gewählten Objekts" msgid "Remove layer range" msgstr "Schichtbereich entfernen" -#: src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" msgstr "Entferne eine Kopie des gewählten Objekts" @@ -5858,11 +5871,11 @@ msgstr "Entferne eine Kopie des gewählten Objekts" msgid "Remove parameter" msgstr "Parameter entfernen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "Punkt entfernen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "Punkt von Auswahl entfernen" @@ -5871,11 +5884,11 @@ msgid "Remove selected holes" msgstr "Ausgewählte Löcher entfernen" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "Ausgewählte Punkte entfernen" -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "Ausgewähltes Objekt entfernen" @@ -5883,47 +5896,51 @@ msgstr "Ausgewähltes Objekt entfernen" msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Benutzerprofile entfernen - von Grund auf neu installieren (eine Momentaufnahme wird vorab erstellt)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "Umbenennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "Objekt umbenennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "Subobjekt umbenennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "Am Umbenennen" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "Das Umbenennen des G-Codes nach dem Kopieren in den ausgewählten Zielordner ist fehlgeschlagen. Der aktuelle Pfad ist %1%.tmp. Bitte versuchen Sie erneut zu exportieren." + +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "Rendern mit einem Software-Renderer" -#: src/libslic3r/PrintConfig.cpp:3501 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Rendern mit einem Software-Renderer. Der mitgelieferte MESA-Software-Renderer wird anstelle des standardmäßigen OpenGL-Treibers geladen." -#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "Reparieren" -#: src/slic3r/Utils/FixModelByWin10.cpp:394 +#: src/slic3r/Utils/FixModelByWin10.cpp:387 msgid "Repaired 3MF file contains more than one object" msgstr "Die reparierte 3MF Datei enhält mehr als ein Objekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:398 +#: src/slic3r/Utils/FixModelByWin10.cpp:391 msgid "Repaired 3MF file contains more than one volume" msgstr "Die reparierte 3MF Datei enhält mehr als ein Volumen" -#: src/slic3r/Utils/FixModelByWin10.cpp:392 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Repaired 3MF file does not contain any object" msgstr "Die reparierte 3MF Datei enhält keine Objekte" -#: src/slic3r/Utils/FixModelByWin10.cpp:396 +#: src/slic3r/Utils/FixModelByWin10.cpp:389 msgid "Repaired 3MF file does not contain any volume" msgstr "Die reparierte 3MF Datei enhält keine Volumen" @@ -5939,31 +5956,31 @@ msgstr "Letzten Quick Slice wiederholen" msgid "Repeat Last Quick Slice" msgstr "Letzten Quick Slice wiederholen" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "Ersetzen?" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" -msgstr "E&in Problem melden" +msgstr "Ein &Problem melden" -#: src/slic3r/GUI/MainFrame.cpp:705 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:703 +#, c-format msgid "Report an issue on %s" msgstr "Einen Problem melden über %s" #: src/slic3r/Utils/PresetUpdater.cpp:713 -#, possible-c-format +#, c-format msgid "requires max. %s" msgstr "benötigt max. %s" #: src/slic3r/Utils/PresetUpdater.cpp:710 -#, possible-c-format +#, c-format msgid "requires min. %s" msgstr "benötigt min. %s" #: src/slic3r/Utils/PresetUpdater.cpp:705 -#, possible-c-format +#, c-format msgid "requires min. %s and max. %s" msgstr "benötigt min. %s und max. %s" @@ -5971,15 +5988,15 @@ msgstr "benötigt min. %s und max. %s" msgid "Rescan" msgstr "Rescan" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "Serielle Schnittstellen nochmals abfragen" -#: src/slic3r/GUI/GLCanvas3D.cpp:318 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "Rücksetzen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "Beschnittebene zurücksetzen" @@ -5988,7 +6005,7 @@ msgstr "Beschnittebene zurücksetzen" msgid "Reset direction" msgstr "Richtung zurücksetzen" -#: src/slic3r/GUI/Plater.cpp:2707 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "Projekt zurücksetzen" @@ -6005,11 +6022,11 @@ msgstr "Rotation zurücksetzen" msgid "Reset scale" msgstr "Skalierung zurücksetzen" -#: src/slic3r/GUI/GLCanvas3D.cpp:257 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "Zurücksetzen auf Basis" -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "Zurücksetzen auf Filamentfarbe" @@ -6025,8 +6042,8 @@ msgstr "Einzugslänge vor einer Reinigung" msgid "Retract on layer change" msgstr "Bei Schichtwechsel einziehen" -#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2366 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "Einzug" @@ -6046,11 +6063,11 @@ msgstr "Einzugslänge (Werkzeugwechsel)" msgid "Retraction Speed" msgstr "Einzugsgeschwindigkeit" -#: src/slic3r/GUI/Tab.cpp:2382 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Einzug, wenn das Werkzeug deaktiviert ist (weiterführende Einstellungen für Multi-Extruder-Einrichtungen)" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "Einzüge" @@ -6058,23 +6075,23 @@ msgstr "Einzüge" msgid "Right" msgstr "Rechts" -#: src/slic3r/GUI/GUI_ObjectList.cpp:400 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "Klicken Sie mit der rechten Maustaste auf das Symbol, um die Druckbar-Eigenschaft des Objekts zu ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "Klicken Sie mit der rechten Maustaste auf das Symbol, um die Objekteinstellungen zu ändern" -#: src/slic3r/GUI/GUI_ObjectList.cpp:357 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Klicken Sie mit der rechten Maustaste auf das Symbol, um die STL über Netfabb zu reparieren" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "Rechter Mausklick" -#: src/slic3r/GUI/GLCanvas3D.cpp:248 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "Rechte Maustaste:" @@ -6086,15 +6103,15 @@ msgstr "Ansicht von rechts" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "Drehen" -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "Rotiere um X" -#: src/libslic3r/PrintConfig.cpp:3446 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Rotiere um Y" @@ -6112,85 +6129,81 @@ msgstr "Auswahl um 45 Grad drehen im UZS" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 #: src/slic3r/GUI/Mouse3DController.cpp:321 -#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotation" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491 -msgid "Rotation (deg)" -msgstr "Rotation (Grad)" - -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "Rotationswinkel um die X-Achse in Grad." -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Rotationswinkel um die Y-Achse in Grad." -#: src/libslic3r/PrintConfig.cpp:3437 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Rotationswinkel um die Z-Achse in Grad." #: src/slic3r/GUI/GUI_App.cpp:797 -#, possible-c-format +#, c-format msgid "Run %s" msgstr "%s ausführen" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "Post-Prozess Scripts werden ausgeführt" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 #: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 #: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 -#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 -#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 -#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 -#: src/libslic3r/PrintConfig.cpp:2557 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" msgstr "S&ende G-code" -#: src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "Zum Drucken s&enden" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3401 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:3417 +#, c-format msgid "Save %s as:" msgstr "Speichere %s als:" -#: src/slic3r/GUI/MainFrame.cpp:828 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:826 +#, c-format msgid "Save %s file as:" msgstr "Speichere %s Datei als:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "Änderungen speichern?" -#: src/libslic3r/PrintConfig.cpp:3371 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "Speichere Konfigurationsdatei" -#: src/slic3r/GUI/MainFrame.cpp:927 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "Konfiguration speichern unter:" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "Sichert die Konfiguration in der angegebenen Datei." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:135 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:133 +#, c-format msgid "Save current %s" msgstr "Speichere aktuelle %s" @@ -6202,23 +6215,23 @@ msgstr "Speichere aktuelle Projektdatei" msgid "Save current project file as" msgstr "Speichere aktuelle Projektdatei als" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "Speichere Datei als:" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "Speichere G-Code Datei als:" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Speichern als OBJ-Datei (weniger anfällig für Koordinatenfehler als STL):" -#: src/slic3r/GUI/Tab.hpp:442 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "Sichern der Voreinstellung" -#: src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "Sichern der Voreinstellungssammlung unter:" @@ -6234,11 +6247,11 @@ msgstr "Speichere Projekt (3mf)" msgid "Save project as (3mf)" msgstr "Speichere Projekt als (3mf)" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "Speichere SL1 Datei als:" -#: src/slic3r/GUI/MainFrame.cpp:840 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "Speichere Zip Datei als:" @@ -6252,27 +6265,25 @@ msgstr "Sichern des Netzes in einen 3MF-Container fehlgeschlagen." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3451 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "Skalieren" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276 -msgid "Scale (%)" -msgstr "Skaliere (%)" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Skalierungsfaktoren" #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 -msgid "Scale selection to fit print volume\nin Gizmo scale" +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" msgstr "Auswahl passend zum Druckvolumen in der Gizmo Skalierung anpassen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "Skalieren des ausgewählten Objekts so, dass es in das Druckvolumen passt" -#: src/libslic3r/PrintConfig.cpp:3460 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "Passend skalieren" @@ -6280,19 +6291,19 @@ msgstr "Passend skalieren" msgid "Scale To Fit" msgstr "Passend skalieren" -#: src/libslic3r/PrintConfig.cpp:3461 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "Auf das gegebene Volumen skalieren." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "Auf Druckvolumen skalieren" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "Skalierungsfaktor oder Prozentsatz." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Geplante Hochladung auf `%1%`. Siehe Fenster -> Druck-Host Uploadwarteschlange" @@ -6312,7 +6323,7 @@ msgstr "Bevorzugte Zitterrichtung für Nähte" msgid "Searching for devices" msgstr "Es wird nach Geräten gesucht" -#: src/slic3r/GUI/Plater.cpp:2842 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "Suche nach der optimalen Orientierung" @@ -6324,19 +6335,19 @@ msgstr "Gcode Datei auswählen:" msgid "Select all objects" msgstr "Alle Objekte auswählen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "Alle Punkte auswählen" -#: src/slic3r/GUI/ConfigWizard.cpp:1979 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "Wähle alle Standarddrucker" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "Auswahl über Rechteck" -#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "Konfiguration zum Laden auswählen:" @@ -6344,35 +6355,27 @@ msgstr "Konfiguration zum Laden auswählen:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Koordinatenraum wählen, in dem die Transformation durchgeführt wird." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 -msgid "Select extruder number for selected objects and/or parts" -msgstr "Wählen Sie die Extrudernummer für die ausgewählten Objekte und/oder Teile" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "Wählen Sie die Extruder Nummer:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "Wählt Filamenteinstellungsreiter" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 -msgid "Select new extruder for the object/part" -msgstr "Wählt einen anderen Extruder für das Objekte / Teil" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 msgid "Select Plater Tab" msgstr "Wählt Druckplattenreiter" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "Wählt Druckeinstellungsreiter" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "Wählt Druckereinstellungsreiter" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "Wähle Anzeigeeinstellungen" @@ -6380,37 +6383,43 @@ msgstr "Wähle Anzeigeeinstellungen" msgid "Select the language" msgstr "Wählen Sie die Sprache aus" -#: src/slic3r/GUI/Tab.cpp:59 +#: src/slic3r/GUI/Tab.cpp:57 msgid "Select the print profiles this profile is compatible with." msgstr "Wählt die Druckprofile, die mit diesem Profil kompatibel sind." -#: src/slic3r/GUI/Tab.cpp:53 +#: src/slic3r/GUI/Tab.cpp:51 msgid "Select the printers this profile is compatible with." msgstr "Wählen Sie die Drucker aus, die mit diesem Profil kompatibel sind." -#: src/slic3r/GUI/MainFrame.cpp:891 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "Geben Sie die STL-Datei an, die repariert werden soll:" -#: src/slic3r/GUI/Preferences.cpp:241 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "Wählen Sie die Symbolgröße der Symbolleiste in Bezug auf die Standardgröße." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "Wählen Sie den Typ des Teils" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "Wählen Sie aus, welche Art von Grundschicht Sie benötigen" -#: src/slic3r/GUI/Plater.cpp:495 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "Wählen Sie aus, welche Art von Unterstützung Sie benötigen" -#: src/slic3r/GUI/DoubleSlider.cpp:1890 -msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" -msgstr "Wählen Sie JA, wenn Sie alle gespeicherten Werkzeugänderungen löschen möchten, \n\tNEIN, wenn Sie möchten, dass alle Werkzeugänderungen auf Farbwechsel umgestellt werden, \n\toder ABBRECHEN, um sie unverändert zu lassen" +#: src/slic3r/GUI/DoubleSlider.cpp:1917 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged." +msgstr "" +"Wählen Sie JA, wenn Sie alle gespeicherten Werkzeugänderungen löschen möchten, \n" +"NEIN, wenn Sie möchten, dass alle Werkzeugänderungen auf Farbwechsel umgestellt werden, \n" +"oder ABBRECHEN, um sie unverändert zu lassen." #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" @@ -6420,11 +6429,11 @@ msgstr "Auswahl hinzufügen" msgid "Selection-Add All" msgstr "Auswahl Alles hinzufügen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "Auswahl aus Liste hinzufügen" -#: src/slic3r/GUI/GLCanvas3D.cpp:6659 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "Auswahl über Rechteck hinzufügen" @@ -6444,11 +6453,11 @@ msgstr "Auswahl entfernen" msgid "Selection-Remove All" msgstr "Auswahl Alles entfernen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "Auswahl aus Liste entfernen" -#: src/slic3r/GUI/GLCanvas3D.cpp:6678 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "Auswahl über Rechteck entfernen" @@ -6464,7 +6473,7 @@ msgstr "Auswahl Objekt entfernen" msgid "Selects all objects" msgstr "Alle Objekte auswählen" -#: src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "Sende G-code" @@ -6476,19 +6485,19 @@ msgstr "Sende G-Code zum Druckerhost" msgid "Send to print current plate as G-code" msgstr "Sende die aktuelle Plattenbelegung als G-Code zum Drucken" -#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "Zum Drucker senden" -#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 msgid "Seq." msgstr "Seq." -#: src/slic3r/GUI/Tab.cpp:1233 +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "Sequentielles Drucken" -#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Serieller Port" @@ -6504,17 +6513,17 @@ msgstr "Serieller Port:" msgid "Service name" msgstr "Name des Dienstes" -#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 -#: src/slic3r/GUI/Tab.cpp:3160 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "Setzen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "Als separates Objekt festlegen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "Als separate Objekte festlegen" @@ -6522,7 +6531,7 @@ msgstr "Als separate Objekte festlegen" msgid "Set extruder change for every" msgstr "Extruderwechsel bei jedem" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "Extruder für die gewählten Elemente wählen" @@ -6530,19 +6539,15 @@ msgstr "Extruder für die gewählten Elemente wählen" msgid "Set extruder sequence" msgstr "Extrudersequenz einstellen" -#: src/slic3r/GUI/DoubleSlider.cpp:1504 +#: src/slic3r/GUI/DoubleSlider.cpp:1532 msgid "Set extruder sequence for the entire print" msgstr "Extrudersequenz für den gesamten Druck einstellen" -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "Extrudersequenz für den gesamten Druck einstellen" - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 msgid "Set extruder(tool) sequence" msgstr "Extruder(werkzeug)sequenz einstellen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "Stelle den unteren Regler auf den aktuellen Schieberegler" @@ -6550,12 +6555,12 @@ msgstr "Stelle den unteren Regler auf den aktuellen Schieberegler" msgid "Set Mirror" msgstr "Spiegel setzen" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "Setze Anzahl der Kopien" -#: src/slic3r/GUI/Plater.cpp:4771 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4756 +#, c-format msgid "Set numbers of copies to %d" msgstr "Setze Anzahl der Kopien auf %d" @@ -6567,7 +6572,7 @@ msgstr "Orientierung setzen" msgid "Set Position" msgstr "Position setzen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Setze Druckbar" @@ -6583,7 +6588,7 @@ msgstr "Setze Skalierung" msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Setzt die aktuelle Ausrichtung der LCD-Anzeige im SLA-Drucker. Der Hochformatmodus kehrt die Bedeutung der Anzeigeparameter Breite und Höhe um und die Ausgabebilder werden um 90 Grad gedreht." -#: src/slic3r/GUI/ConfigWizard.cpp:933 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "Stellen Sie die Konturen Ihres Druckerbettes ein." @@ -6631,7 +6636,7 @@ msgstr "Stellen Sie hier die maximale Höhe ein, die Ihr Extruder beim Drucken e msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Stellen Sie dies auf den vertikalen Abstand zwischen Ihrer Düsenspitze und (in der Regel) den X-Wagenstangen ein. Mit anderen Worten, das ist die Höhe des Abstandszylinders um Ihren Extruder herum und stellt die maximale Tiefe dar, die der Extruder vor der Kollision mit anderen Druckobjekten sehen kann." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Setze Undruckbar" @@ -6639,19 +6644,23 @@ msgstr "Setze Undruckbar" msgid "Set Unprintable Instance" msgstr "Setze undruckbare Kopie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Set upper thumb to current slider thumb" msgstr "Stelle den oberen Regler auf den aktuellen Schieberegler" -#: src/libslic3r/PrintConfig.cpp:3494 -msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." -msgstr "Stellt die Empfindlichkeit der Protokollierung ein. 0:fatal, 1:Fehler, 2:Warnung, 3:Info, 4:Debug, 5: Trace.\nZum Beispiel. loglevel=2 protokolliert fatale, Fehler- und Warnstufenmeldungen." +#: src/libslic3r/PrintConfig.cpp:3509 +msgid "" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." +msgstr "" +"Stellt die Empfindlichkeit der Protokollierung ein. 0:fatal, 1:Fehler, 2:Warnung, 3:Info, 4:Debug, 5: Trace.\n" +"Zum Beispiel. loglevel=2 protokolliert fatale, Fehler- und Warnstufenmeldungen." #: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Einstellungen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "Einstellungen für Höhenbereich" @@ -6665,7 +6674,7 @@ msgstr "Soll ich diese Einstellungen anpassen, um die Spiralvase zu aktivieren?" #: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" -msgstr "Soll ich diese Einstellungen anpassen, um den Reinigungsturm zu aktivieren? " +msgstr "Soll ich diese Einstellungen anpassen, um den Reinigungsturm zu aktivieren?" #: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" @@ -6675,35 +6684,35 @@ msgstr "Soll ich auf geradliniges Füllmuster wechseln?" msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Soll ich die Stützschichten synchronisieren, um den Reinigungsturm zu aktivieren?" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "Form" -#: src/slic3r/GUI/GUI_Preview.cpp:258 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "Konturhüllen" -#: src/slic3r/GUI/GLCanvas3D.cpp:254 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "Gross + Linke Maustaste:" -#: src/slic3r/GUI/GLCanvas3D.cpp:260 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "Gross + Rechte Maustaste:" -#: src/slic3r/GUI/GUI_Preview.cpp:233 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "Anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" -msgstr "Zeige Konfigurationsordner (&C)" +msgstr "Zeige &Konfigurationsordner" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show &labels" -msgstr "Anzeigen Beschriftungen (&l)" +msgstr "Anzeigen &Beschriftungen" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "\"Über\"-Dialog anzeigen" @@ -6715,15 +6724,15 @@ msgstr "Ausführliche Einstellungen anzeigen" msgid "Show error message" msgstr "Fehlermeldungen anzeigen" -#: src/slic3r/GUI/Preferences.cpp:97 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "Inkompatible Druck- und Filamenteinstellungen anzeigen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "Liste der Tastaturkürzel anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show object/instance labels in 3D scene" msgstr "Objekt-/Kopiebeschriftungen in der 3D-Szene anzeigen" @@ -6735,7 +6744,7 @@ msgstr "Vereinfachte Einstellungen anzeigen" msgid "Show supports" msgstr "Stützen anzeigen" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "Systeminformationen anzeigen" @@ -6751,15 +6760,15 @@ msgstr "Vorschau der 3D-Schnitte anzeigen" msgid "Show the filament settings" msgstr "Filamenteinstellungen anzeigen" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "Zeigt die vollständige Liste der Konfigurationsmöglichkeiten für Druck/GCode an." -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "Zeigt die vollständige Liste der Konfigurationsmöglichkeiten für SLA Druck an." -#: src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "Liste der Tastaturkürzel anzeigen" @@ -6775,19 +6784,15 @@ msgstr "Druckeinstellungen anzeigen" msgid "Show the printer settings" msgstr "Druckereinstellungen anzeigen" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "Diese Hilfe zeigen." -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "Zeige Benutzerkonfigurationsordner (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Show/Hide (L)egend" -msgstr "Zeige/Verberge (L)egende" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Einstellungsdialog für 3Dconnexion-Geräte ein-/ausblenden" @@ -6795,7 +6800,7 @@ msgstr "Einstellungsdialog für 3Dconnexion-Geräte ein-/ausblenden" msgid "Show/Hide Legend" msgstr "Zeige/Verberge Legende" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Show/Hide object/instance labels" msgstr "Objekt-/Kopiebeschriftungen ein-/ausblenden" @@ -6803,7 +6808,7 @@ msgstr "Objekt-/Kopiebeschriftungen ein-/ausblenden" msgid "Simple" msgstr "Einfach" -#: src/slic3r/GUI/ConfigWizard.cpp:821 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "Einfacher Modus" @@ -6811,7 +6816,7 @@ msgstr "Einfacher Modus" msgid "Simple View Mode" msgstr "EInfacher Anzeigemodus" -#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "Einzelextruder MM Setup" @@ -6819,21 +6824,27 @@ msgstr "Einzelextruder MM Setup" msgid "Single Extruder Multi Material" msgstr "Einzelextruder mit Multi-Material" -#: src/slic3r/GUI/Tab.cpp:1865 -msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" -msgstr "Einzel-Extruder Multi-Material ist ausgewählt, \nund alle Extruder müssen den gleichen Durchmesser haben.\nMöchten Sie den Durchmesser für alle Extruder auf den Wert des ersten Extruderdüsendurchmessers ändern?" +#: src/slic3r/GUI/Tab.cpp:1867 +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" +msgstr "" +"Einzel-Extruder Multi-Material ist ausgewählt, \n" +"und alle Extruder müssen den gleichen Durchmesser haben.\n" +"Möchten Sie den Durchmesser für alle Extruder auf den Wert des ersten Extruderdüsendurchmessers ändern?" -#: src/slic3r/GUI/Tab.cpp:2303 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "Einzelextruder Multimaterial Parameter" #: src/slic3r/GUI/BedShapeDialog.cpp:77 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 -#: src/slic3r/GUI/Tab.cpp:2320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "Größe" -#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "Größe und Koordinaten" @@ -6841,12 +6852,12 @@ msgstr "Größe und Koordinaten" msgid "Size in X and Y of the rectangular plate." msgstr "Größe der rechteckigen Platte in X und Y." -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Schürze" -#: src/slic3r/GUI/Tab.cpp:1112 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "Schürze und Rand" @@ -6858,59 +6869,59 @@ msgstr "Schürzenhöhe" msgid "Skirt Loops" msgstr "Schleifen für die Schürze" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "SLA Gizmo Tastaturkürzel" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "SLA Gizmo ausgeschaltet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "SLA Gizmo eingeschaltet" -#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "SLA Material" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "SLA Material Profile Auswahl" -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "SLA Materialtyp" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "SLA Materialien" -#: src/slic3r/GUI/Preset.cpp:1473 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "SLA Druck" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "SLA Druckmaterial-Anmerkungen" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "SLA Druckeinstellungen" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "SLA Stützpunkte" -#: src/slic3r/GUI/GLCanvas3D.cpp:692 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "SLA Stützstrukturen außerhalb des Druckraums entdeckt" -#: src/slic3r/GUI/ConfigWizard.cpp:1533 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "SLA Technologie Drucker" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "Slab" @@ -6930,7 +6941,7 @@ msgstr "PrusaSlicer kann G-Code Dateien auf einen Drucker-Host hochladen. Dieses msgid "Slic3r will not scale speed down below this speed." msgstr "PrusaSlicer wird die Geschwindigkeit nicht unterhalb dieser Geschwindigkeit skalieren." -#: src/libslic3r/PrintConfig.cpp:3344 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "Slice" @@ -6946,35 +6957,35 @@ msgstr "Datei zu G-Code slicen, speichern als" msgid "Slice gap closing radius" msgstr "Slice Lückenschlussradius" -#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5140 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "Jetzt slicen" -#: src/libslic3r/PrintConfig.cpp:3318 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Slice das Modell und Export von SLA-Druckschichten als PNG." -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "Modell slicen und Werkzeugwege als G-Code exportieren." -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Slice das Modell als FFF oder SLA basierend auf dem Konfigurationswert von printer_technology." -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "Slice-Info" -#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3647 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "Slice" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "Slicing abgeschlossen" @@ -6982,19 +6993,19 @@ msgstr "Slicing abgeschlossen" msgid "Slicing done" msgstr "Slicing abgeschlossen" -#: src/slic3r/GUI/MainFrame.cpp:876 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "Slicing abgeschlossen!" -#: src/libslic3r/SLAPrintSteps.cpp:209 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Das Slicen wurde wegen eines internen Fehlers gestoppt: Defekter Sliceindex." -#: src/libslic3r/SLAPrintSteps.cpp:43 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "Slice das Modell" -#: src/libslic3r/SLAPrintSteps.cpp:47 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "Slice Stützstrukturen" @@ -7014,11 +7025,11 @@ msgstr "Langsames Kippen" msgid "Small perimeters" msgstr "Dünne Außenkonturen" -#: src/slic3r/GUI/GLCanvas3D.cpp:293 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "Glätten" -#: src/slic3r/GUI/GLCanvas3D.cpp:263 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "Glätten" @@ -7026,7 +7037,7 @@ msgstr "Glätten" msgid "Snapshot name" msgstr "Name der Momentaufnahme" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" msgstr "Software &Release" @@ -7034,7 +7045,7 @@ msgstr "Software &Release" msgid "solid infill" msgstr "Massives Infill" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 #: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Massives Infill" @@ -7051,7 +7062,7 @@ msgstr "Massives Infill Extruder" msgid "Solid infill threshold area" msgstr "Massives Infill Flächen Schwellwert" -#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Massive Schichten" @@ -7067,23 +7078,19 @@ msgstr "Lösliches Material wird meistens für Stützstrukturen verwendet." msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Einige G/M-Code Befehle, einschließlich Temperaturregelung und andere, sind nicht universell einsetzbar. Stellen Sie diese Option auf die Firmware Ihres Druckers ein, um eine kompatible Ausgabe zu erhalten. Der Zusatz \"No Extrusion\" verhindert, dass PrusaSlicer überhaupt einen Extrusionswert exportiert." -#: src/slic3r/GUI/GLCanvas3D.cpp:693 +#: src/slic3r/GUI/GLCanvas3D.cpp:688 msgid "Some objects are not visible" msgstr "Einige Objekte sind nicht sichtbar" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 -msgid "Some objects are not visible when editing supports" -msgstr "Einige Objekte sind bei der Bearbeitung von Stützen nicht sichtbar" - -#: src/libslic3r/Print.cpp:1222 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "Einige Objekte sind zu nahe; Ihr Extruder wird mit ihnen zusammenstoßen." -#: src/libslic3r/Print.cpp:1224 +#: src/libslic3r/Print.cpp:1228 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Einige Objekte sind zu hoch und können nicht ohne Zusammenstoss mit dem Extruder gedruckt werden." -#: src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Einige Objekte können mit ein paar kleineren Grundschichten auskommen, anstatt mit einer einzigen großen. Dieser Parameter definiert, wie weit die Mittelpunkte von zwei kleineren Grundschichten entfernt sein soll. Wenn sie näher sind, werden sie zu einem Block zusammengeführt." @@ -7099,9 +7106,9 @@ msgstr "Abstand zwischen den Schnittstellenlinien. Auf null stellen, um ein mass msgid "Spacing between support material lines." msgstr "Abstand zwischen Stützstrukturlinien." -#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 -#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 #: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 @@ -7121,7 +7128,7 @@ msgstr "Geschwindigkeit (mm/s)" msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Geschwindigkeit, mit der kleine Lücken mit kurzen Zickzackbewegungen gefüllt werden. Beschränken Sie diese auf einen mässigen Wert, um übermässiges Rütteln und Resonanzprobleme zu vermeiden. Auf null gesetzt, wird das Füllen kleiner Lücken deaktiviert." -#: src/slic3r/GUI/Tab.cpp:1160 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "Geschwindigkeit für Bewegungen zwischen den Druckvorgängen" @@ -7129,11 +7136,11 @@ msgstr "Geschwindigkeit für Bewegungen zwischen den Druckvorgängen" msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Geschwindigkeit für Außenkonturen (Konturen, bzw. vertikale Hüllen). Für Automatik auf null setzen." -#: src/slic3r/GUI/Tab.cpp:1148 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "Geschwindigkeit für Druckbewegungen" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "Brückendruckgeschwindigkeit." @@ -7185,11 +7192,11 @@ msgstr "Geschwindigkeit, mit der Filament auf dem Reinigungsturm entladen wird ( msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Geschwindigkeit, mit der die Spitze des Filaments unmittelbar nach dem Rammen entladen wird." -#: src/slic3r/GUI/Mouse3DController.cpp:313 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "Geschwindigkeit:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "Kugel" @@ -7201,36 +7208,36 @@ msgstr "Spiralvasenmodus" msgid "Spiral Vase" msgstr "Spiralvasenmodus" -#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 -#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "Trennen" -#: src/slic3r/GUI/Plater.cpp:4028 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "Teile das gewählte Objekt" -#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "Ausgewähltes Objekt in Einzelobjekte trennen" -#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "Ausgewähltes Objekt in einzelne Unterteile trennen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4599 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "In Objekte trennen" -#: src/slic3r/GUI/Plater.cpp:2965 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "In Objekte trennen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "In Teile trennen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "In Teile trennen" @@ -7250,7 +7257,7 @@ msgstr "Ein neues Projekt beginnen" msgid "Start at height" msgstr "Starte auf Höhe" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Start G-Code" @@ -7271,16 +7278,16 @@ msgstr "Status" msgid "Status:" msgstr "Status:" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "Stealth" -#: src/slic3r/GUI/Plater.cpp:1267 +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "Stealth Modus" -#: src/slic3r/GUI/Plater.cpp:5001 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4985 +#, c-format msgid "STL file exported to %s" msgstr "Die STL-Datei wurde exportiert zu %s" @@ -7288,7 +7295,7 @@ msgstr "Die STL-Datei wurde exportiert zu %s" msgid "Stop at height" msgstr "Stoppe auf Höhe" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "Erfolg!" @@ -7296,23 +7303,23 @@ msgstr "Erfolg!" msgid "support" msgstr "Stützen" -#: src/libslic3r/PrintConfig.cpp:2683 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "Stützfuß Durchmesser" -#: src/libslic3r/PrintConfig.cpp:2693 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "Stützfuß Höhe" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "Sicherheitsabstand der Stützbasis" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "Stützblocker" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "Stützverstärker" @@ -7320,19 +7327,19 @@ msgstr "Stützverstärker" msgid "Support Generator" msgstr "Stütz-Generator" -#: src/slic3r/GUI/Tab.cpp:3593 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "Stützkopf" -#: src/libslic3r/PrintConfig.cpp:2611 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "Durchmesser des Stützkopfes vorne" -#: src/libslic3r/PrintConfig.cpp:2620 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "Eindringtiefe des Stützkopfes" -#: src/libslic3r/PrintConfig.cpp:2629 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "Stützkopfbreite" @@ -7340,10 +7347,10 @@ msgstr "Stützkopfbreite" msgid "support interface" msgstr "Schnittstelle zu den Stützen" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 -#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 #: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 @@ -7357,7 +7364,7 @@ msgstr "Schnittstelle zu den Stützen" msgid "Support material" msgstr "Stützstrukturen" -#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 #: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Schnittstellenmaterial zu den Stützstrukturen" @@ -7374,51 +7381,51 @@ msgstr "Stützstrukturen/Raft Schnittstellen Extruder" msgid "Support material/raft/skirt extruder" msgstr "Stützstrukturen/Raft/Schürzen Extruder" -#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 -#: src/libslic3r/PrintConfig.cpp:2665 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "Stützstrukturen nur auf dem Druckbrett" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "Stützparameter Änderung" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "Stützpfeiler" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "Stützpfeiler Verbindungsmodus" -#: src/libslic3r/PrintConfig.cpp:2639 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "Durchmesser der Stützpfeiler" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "Stützpunktdichte" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "Stützpunkte editieren" -#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 -#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 -#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 -#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 -#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 -#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 -#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 -#: src/libslic3r/PrintConfig.cpp:2764 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "Stützen" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "Stützen und Grundschicht" @@ -7431,55 +7438,69 @@ msgid "Supports stealth mode" msgstr "Unterstützt Stealth Modus" #: src/slic3r/GUI/ConfigManipulation.cpp:159 -msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" -msgstr "Stützen funktionieren besser, wenn die folgende Funktion aktiviert ist:\n- Erkennen von Umfangbrücken" +msgid "" +"Supports work better, if the following feature is enabled:\n" +"- Detect bridging perimeters" +msgstr "" +"Stützen funktionieren besser, wenn die folgende Funktion aktiviert ist:\n" +"- Erkennen von Umfangbrücken" -#: src/slic3r/GUI/Preferences.cpp:89 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "\"Standard\"-Einstellungen unterdrücken" -#: src/slic3r/GUI/Preferences.cpp:91 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "\"Standard\"-Einstellungen in den Auswahlen für Druck / Filament / Drucker unterdrücken, falls andere gültige Voreinstellungen vorhanden sind." -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 msgid "Switch code to Change extruder" msgstr "Code umschalten auf Extruder wechseln" -#: src/slic3r/GUI/DoubleSlider.cpp:1147 +#: src/slic3r/GUI/DoubleSlider.cpp:1179 msgid "Switch code to Color change (%1%) for:" msgstr "Umschalten des Codes auf Farbwechsel (%1%) für:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "Zeige 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "Zum Bearbeitungsmodus umschalten" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" msgstr "Wechseln zur Vorschau" #: src/slic3r/GUI/wxExtensions.cpp:703 -#, possible-c-format +#, c-format msgid "Switch to the %s mode" msgstr "Wechseln zum %s Modus" #: src/slic3r/GUI/GUI_App.cpp:882 -msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." -msgstr "Das Umschalten der Sprache löst einen Neustart der Anwendung aus.\nSie verlieren den Inhalt der Druckplatte." +msgid "" +"Switching the language will trigger application restart.\n" +"You will lose content of the plater." +msgstr "" +"Das Umschalten der Sprache löst einen Neustart der Anwendung aus.\n" +"Sie verlieren den Inhalt der Druckplatte." #: src/slic3r/GUI/WipeTowerDialog.cpp:365 -msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" -msgstr "Das Umschalten auf einfache Einstellungen verwirft die im erweiterten Modus vorgenommenen Änderungen!\n\nWollen Sie fortfahren?" +msgid "" +"Switching to simple settings will discard changes done in the advanced mode!\n" +"\n" +"Do you want to proceed?" +msgstr "" +"Das Umschalten auf einfache Einstellungen verwirft die im erweiterten Modus vorgenommenen Änderungen!\n" +"\n" +"Wollen Sie fortfahren?" -#: src/slic3r/GUI/Tab.cpp:1016 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "symbolischer Profilname" @@ -7491,7 +7512,7 @@ msgstr "Stützschichten mit den Druckschichten des Objekts synchronisieren. Dies msgid "Synchronize with object layers" msgstr "Mit Objektschichten synchronisieren" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "System&informationen" @@ -7499,9 +7520,9 @@ msgstr "System&informationen" msgid "System Information" msgstr "Systeminformationen" -#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 -#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "Systemvoreinstellungen" @@ -7513,7 +7534,7 @@ msgstr "Erfa&ssen einer Konfigurations-Momentaufnahme" msgid "Taking configuration snapshot" msgstr "Ich erfasse eine Momentaufnahme der Konfiguration" -#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatur" @@ -7525,11 +7546,11 @@ msgstr "Der anzuwendende Temperaturunterschied, wenn kein Extruder aktiv ist. Di msgid "Temperature variation" msgstr "Temperaturen" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "Temperaturen" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "Test" @@ -7542,20 +7563,30 @@ msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Das %1% Füllmuster ist nicht für die Arbeit mit 100%% Dichte vorgesehen." #: src/slic3r/GUI/FirmwareDialog.cpp:548 -#, possible-c-format +#, c-format msgid "The %s device could not have been found" msgstr "Das %s-Gerät konnte nicht gefunden werden" #: src/slic3r/GUI/FirmwareDialog.cpp:436 -#, possible-c-format -msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." -msgstr "Das %s-Gerät wurde nicht gefunden.\nWenn das Gerät angeschlossen ist, drücken Sie bitte die Reset-Taste neben dem USB-Anschluss...." +#, c-format +msgid "" +"The %s device was not found.\n" +"If the device is connected, please press the Reset button next to the USB connector ..." +msgstr "" +"Das %s-Gerät wurde nicht gefunden.\n" +"Wenn das Gerät angeschlossen ist, drücken Sie bitte die Reset-Taste neben dem USB-Anschluss...." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 -msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." -msgstr "Das aktuell manipulierte Objekt wird gekippt (Drehwinkel sind keine Vielfachen von 90°).\nEine ungleiche Skalierung von geschwenkten Objekten ist nur im Weltkoordinatensystem möglich,\nsobald die Drehung in die Objektkoordinaten eingearbeitet wurde." +msgid "" +"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" +"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" +"once the rotation is embedded into the object coordinates." +msgstr "" +"Das aktuell manipulierte Objekt wird gekippt (Drehwinkel sind keine Vielfachen von 90°).\n" +"Eine ungleiche Skalierung von geschwenkten Objekten ist nur im Weltkoordinatensystem möglich,\n" +"sobald die Drehung in die Objektkoordinaten eingearbeitet wurde." -#: src/libslic3r/PrintConfig.cpp:2717 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "Der Standardwinkel für die Verbindung von Stützstäben und Verbindungen." @@ -7591,7 +7622,7 @@ msgstr "Der Extruder, der für den Druck von Stützstrukturen, Raft und Schürze msgid "The filament material type for use in custom G-codes." msgstr "Die Materialart des Filaments zur Verwendung in benutzerdefinierten G-Codes." -#: src/libslic3r/PrintConfig.cpp:3479 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Die Datei, in die die Ausgabe geschrieben wird (falls nicht angegeben, basiert sie auf der Eingabedatei)." @@ -7599,60 +7630,52 @@ msgstr "Die Datei, in die die Ausgabe geschrieben wird (falls nicht angegeben, b msgid "The firmware supports stealth mode" msgstr "Die Firmware unterstützt den Stealth Modus" -#: src/libslic3r/PrintConfig.cpp:377 +#: src/libslic3r/PrintConfig.cpp:120 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "Die erste Schicht wird in der XY-Ebene um den vorgegebenen Wert verkleinert, um das Ausquetschen in der ersten Schicht (\"Elephant Foot\"-Effekt) zu kompensieren." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "die folgenden Zeichen sind nicht erlaubt:" -#: src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "das folgenden Suffix ist nicht erlaubt:" -#: src/libslic3r/PrintConfig.cpp:2862 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Der Abstand zwischen dem Objektboden und der erzeugten Grundschicht im Nullhöhenmodus." -#: src/libslic3r/PrintConfig.cpp:2695 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "Die Höhe des Pfeilergrundkegels" -#: src/slic3r/GUI/DoubleSlider.cpp:1895 +#: src/slic3r/GUI/DoubleSlider.cpp:1922 msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." msgstr "Die letzten Farbwechsel-Daten wurden für einen Multi-Extruder-Druck mit Werkzeugwechsel für den gesamten Druck gespeichert." -#: src/slic3r/GUI/DoubleSlider.cpp:1889 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 msgid "The last color change data was saved for a multi extruder printing." msgstr "Die letzten Farbwechsel-Daten wurden für einen Multi-Extruder-Druck gespeichert." -#: src/slic3r/GUI/DoubleSlider.cpp:1873 -msgid "The last color change data was saved for a multiple extruder printer profile." -msgstr "Die letzten Farbwechsel-Daten wurden für ein Mehrfach-Extruder-Druckerprofil gespeichert." - -#: src/slic3r/GUI/DoubleSlider.cpp:1872 -msgid "The last color change data was saved for a single extruder printer profile." -msgstr "Die letzten Farbwechsel-Daten wurden für ein Einzel-Extruder-Druckerprofil gespeichert." - -#: src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 msgid "The last color change data was saved for a single extruder printing." msgstr "Die letzten Farbwechsel-Daten wurden für einen Einzel-Extruder-Druck gespeichert." -#: src/libslic3r/PrintConfig.cpp:2736 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "Der maximale Abstand zwischen 2 Pfeilern, die miteinander verbunden werden. Ein Wert von null verhindert die Kaskadierung von Pfeilern." -#: src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "Die maximale Länge einer Überbrückung" -#: src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Der Mindestabstand des Säulenfußes zum Modell in mm. Sinnvoll im Nullhöhenmodus, bei dem ein Spalt gemäß diesem Parameter zwischen Modell und Grundschicht eingefügt wird." -#: src/libslic3r/PrintConfig.cpp:175 +#: src/libslic3r/PrintConfig.cpp:185 msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." msgstr "Die Anzahl der unteren Massivschichten wird über bottom_solid_layers erhöht, wenn es notwendig ist, um die Mindeststärke der Bodenschale zu erfüllen." @@ -7669,8 +7692,14 @@ msgid "The object will be raised by this number of layers, and support material msgstr "Das Objekt wird um diese Anzahl von Schichten angehoben, und darunter wird Trägermaterial erzeugt." #: src/libslic3r/PrintConfig.cpp:2424 -msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "Der Prozentsatz der Druckbettfläche.\nWenn der Druckbereich den angegebenen Wert überschreitet,\nwird eine langsame Verkippung verwendet, andernfalls - eine schnelle Verkippung" +msgid "" +"The percentage of the bed area. \n" +"If the print area exceeds the specified value, \n" +"then a slow tilt will be used, otherwise - a fast tilt" +msgstr "" +"Der Prozentsatz der Druckbettfläche.\n" +"Wenn der Druckbereich den angegebenen Wert überschreitet,\n" +"wird eine langsame Verkippung verwendet, andernfalls - eine schnelle Verkippung" #: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" @@ -7696,11 +7725,11 @@ msgstr "Die ausgewählte Datei enthält keine Geometrie." msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Die ausgewählte Datei enthält mehrere nicht zusammenhängende Bereiche. Dies wird nicht unterstützt." -#: src/slic3r/GUI/Plater.cpp:2954 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "Das ausgewählte Objekt konnte nicht getrennt werden, weil es aus mehr als einem Volumen/Material besteht." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "The selected object couldn't be split because it contains only one part." msgstr "Das ausgewählte Objekt konnte nicht getrennt werden, da es nur aus einem Teil besteht." @@ -7708,11 +7737,17 @@ msgstr "Das ausgewählte Objekt konnte nicht getrennt werden, da es nur aus eine msgid "The selected project is no more available" msgstr "Das ausgewählte Projekt ist nicht mehr verfügbar" -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." -msgstr "Der sequentielle Druck ist eingeschaltet.\nEs ist unmöglich, einen benutzerdefinierten G-Code für Objekte anzuwenden, die sequentiell gedruckt werden.\nDieser Code wird bei der G-Code-Generierung nicht verarbeitet." +#: src/slic3r/GUI/DoubleSlider.cpp:998 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Der sequentielle Druck ist eingeschaltet.\n" +"Es ist unmöglich, einen benutzerdefinierten G-Code für Objekte anzuwenden, die sequentiell gedruckt werden.\n" +"Dieser Code wird bei der G-Code-Generierung nicht verarbeitet." -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "Die Neigung der Grundschichtwand in Bezug auf die Druckbettebene. 90 Grad bedeutet gerade Wände." @@ -7726,41 +7761,50 @@ msgstr "Die Einzugsgeschwindigkeit (sie betrifft nur den Extruderantrieb)." #: src/slic3r/GUI/ConfigManipulation.cpp:81 #, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" -msgstr "Der Spiralvasenmodus erfordert:\n- einen Perimeter\n- keine oberen massiven Schichten\n- 0% Fülldichte\n- kein Stützmaterial\n- Vertikale Schalenstärke sicherstellen aktiv\n- Dünne Wände erkennen nicht aktiv\n- " +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Der Spiralvasenmodus erfordert:\n" +"- einen Perimeter\n" +"- keine oberen massiven Schichten\n" +"- 0% Fülldichte\n" +"- kein Stützmaterial\n" +"- Vertikale Schalenstärke sicherstellen aktiv\n" +"- Dünne Wände erkennen nicht aktiv" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 -#, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "Der Spiralvasenmodus erfordert:\n- einen Perimeter\n- keine oberen massiven Schichten\n- 0% Fülldichte\n- kein Trägermaterial\n- inaktiv Vertikale Schalenstärke sicherstellen" - -#: src/libslic3r/Print.cpp:1233 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "Die Option Spiralvase kann nur beim Drucken eines einzelnen Objekts verwendet werden." -#: src/libslic3r/Print.cpp:1240 +#: src/libslic3r/Print.cpp:1244 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "Die Option Spiralvase kann nur beim Drucken von Objekten aus einem einzigen Material verwendet werden." -#: src/slic3r/GUI/Tab.cpp:3052 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "Der angegebene Name ist leer. Die Speicherung kann nicht erfolgen." -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "Der angegebene Name ist nicht verfügbar." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 -#: src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "Der angegebene Name ist ungültig;" -#: src/libslic3r/Print.cpp:1218 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "Die vorgenommenen Einstellungen führen zu einem leeren Druck." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "Die Stärke der Grundschicht und seine optionalen Hohlraumwände." @@ -7768,80 +7812,103 @@ msgstr "Die Stärke der Grundschicht und seine optionalen Hohlraumwände." msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Der vertikale Abstand zwischen Objekt und Trägermaterialschnittstelle. Wenn Sie diesen Wert auf 0 setzen, wird PrusaSlicer auch verhindern, dass Bridge-Flow und -Geschwindigkeit für die erste Objektschicht verwendet werden." -#: src/slic3r/GUI/Tab.cpp:2571 -msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" -msgstr "Die Reinigungsoption ist nicht verfügbar, wenn der Firmware-Einzug verwendet wird.\n\nSoll ich sie ausschalten, um den Firmware-Einzug zu aktivieren?" +#: src/slic3r/GUI/Tab.cpp:2575 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"Die Reinigungsoption ist nicht verfügbar, wenn der Firmware-Einzug verwendet wird.\n" +"\n" +"Soll ich sie ausschalten, um den Firmware-Einzug zu aktivieren?" -#: src/libslic3r/Print.cpp:1264 +#: src/libslic3r/Print.cpp:1268 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "Der Reinigungsturm unterstützt derzeit kein volumetrisches E (use_volumetric_e=0)." #: src/slic3r/GUI/ConfigManipulation.cpp:115 -msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "Der Reinigungsturm unterstützt derzeit nur die unlöslichen Stützen, wenn sie mit dem aktuellen Extruder gedruckt werden, ohne einen Werkzeugwechsel auszulösen.\n(sowohl der Stützstruktur-Extruder als auch der Stützstruktur-Schnittstellen-Extruder müssen auf 0 eingestellt sein)" +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool change.\n" +"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgstr "" +"Der Reinigungsturm unterstützt derzeit nur die unlöslichen Stützen, wenn sie mit dem aktuellen Extruder gedruckt werden, ohne einen Werkzeugwechsel auszulösen.\n" +"(sowohl der Stützstruktur-Extruder als auch der Stützstruktur-Schnittstellen-Extruder müssen auf 0 eingestellt sein)" -#: src/libslic3r/Print.cpp:1396 +#: src/libslic3r/Print.cpp:1400 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "Der Reinigungsturm unterstützt zur Zeit nichtlösliche Stützen nur, falls sie mit dem aktuellen Extruder ohne einen Werkzeugwechsel gedruckt werden (sowohl support_material_extruder wie auch support_material_interface_extruder müssen auf null gesetzt werden)." -#: src/libslic3r/Print.cpp:1266 +#: src/libslic3r/Print.cpp:1270 msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." msgstr "Der Wischturm wird derzeit nicht für sequentielle Multimaterialdrucke unterstützt." -#: src/libslic3r/Print.cpp:1258 +#: src/libslic3r/Print.cpp:1262 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Der Reinigungsturm wird derzeit nur für die Varianten Marlin und RepRap/Sprinter und Repetier G-Code unterstützt." -#: src/libslic3r/Print.cpp:1260 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Der Wischturm wird derzeit nur mit relativer Extruder-Adressierung unterstützt ((use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1289 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der gleichen Anzahl von Raftschichten gedruckt werden" -#: src/libslic3r/Print.cpp:1291 +#: src/libslic3r/Print.cpp:1295 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese mit der gleichen support_material_contact_distance gedruckt werden" -#: src/libslic3r/Print.cpp:1293 +#: src/libslic3r/Print.cpp:1297 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese gleich gesliced werden." -#: src/libslic3r/Print.cpp:1287 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "Der Wischturm wird nur für mehrere Objekte unterstützt, wenn diese die gleiche Schichthöhe haben" -#: src/libslic3r/Print.cpp:1253 +#: src/libslic3r/Print.cpp:1257 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "Der Wischturm wird nur unterstützt, wenn alle Extruder den gleichen Düsendurchmesser haben und Filamente mit dem gleichen Durchmesser verwenden." -#: src/libslic3r/Print.cpp:1335 +#: src/libslic3r/Print.cpp:1339 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "Der Reinigungsturm wird nur unterstützt, wenn alle Objekte die gleiche variable Schichthöhe haben" -#: src/libslic3r/SLAPrintSteps.cpp:596 +#: src/libslic3r/SLAPrintSteps.cpp:621 msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." msgstr "Es gibt nicht druckbare Objekte. Versuchen Sie, die Stützeinstellungen anzupassen, um die Objekte druckbar zu machen." -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." -msgstr "Es gibt einen Farbwechsel für den Extruder, der bisher noch nicht verwendet wurde.\nÜberprüfen Sie Ihre Einstellungen, um überflüssige Farbwechsel zu vermeiden." +#: src/slic3r/GUI/DoubleSlider.cpp:1030 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"Es gibt einen Farbwechsel für den Extruder, der bisher noch nicht verwendet wurde.\n" +"Überprüfen Sie Ihre Einstellungen, um überflüssige Farbwechsel zu vermeiden." -#: src/slic3r/GUI/DoubleSlider.cpp:990 -msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." -msgstr "Es gibt einen Farbwechsel für den Extruder, der nicht vor dem Ende des Druckauftrags verwendet wird.\nDieser Code wird bei der G-Code-Generierung nicht verarbeitet." +#: src/slic3r/GUI/DoubleSlider.cpp:1024 +msgid "" +"There is a color change for extruder that won't be used till the end of print job.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Es gibt einen Farbwechsel für den Extruder, der nicht vor dem Ende des Druckauftrags verwendet wird.\n" +"Dieser Code wird bei der G-Code-Generierung nicht verarbeitet." -#: src/slic3r/GUI/DoubleSlider.cpp:993 -msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." -msgstr "Es gibt einen Extruderwechsel, der auf denselben Extruder eingestellt ist.\nDieser Code wird während der G-Code-Generierung nicht verarbeitet." +#: src/slic3r/GUI/DoubleSlider.cpp:1027 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Es gibt einen Extruderwechsel, der auf denselben Extruder eingestellt ist.\n" +"Dieser Code wird während der G-Code-Generierung nicht verarbeitet." #: src/slic3r/GUI/UpdateDialogs.cpp:225 -#, possible-c-format +#, c-format msgid "This %s version: %s" msgstr "Diese %s Version: %s" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Dieser Code wird beim sequentiellen Drucken zwischen Objekten eingefügt. Standardmäßig werden Extruder- und Betttemperatur mit dem Befehl, der nicht auf die Änderung wartet, zurückgesetzt. Wenn jedoch M104, M109, M140 oder M190 in diesem benutzerdefinierten Code erkannt werden, fügt Slic3r keine Temperaturbefehle hinzu. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen verwenden können, so dass Sie einen \"M109 S[first_layer_temperature]\"-Befehl an beliebiger Stelle platzieren können." @@ -7849,7 +7916,7 @@ msgstr "Dieser Code wird beim sequentiellen Drucken zwischen Objekten eingefügt msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Dieser benutzerdefinierte Code wird bei jedem Schichtwechsel eingefügt, direkt nach der Z-Bewegung und bevor der Extruder zum ersten Lagenpunkt fährt. Beachten Sie, dass Sie Platzhaltervariablen für alle Slic3r-Einstellungen sowie [layer_num] und [layer_z] verwenden können." -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Dieser benutzerdefinierte Code wird bei jedem Lagenwechsel, unmittelbar vor der Z Bewegung, eingefügt. Beachten Sie, dass Sie Platzhaltervariablen für alle PrusaSlicer-Einstellungen sowie [layer_num] und [layer_z] verwenden können." @@ -7881,11 +7948,11 @@ msgstr "Diese experimentelle Einstellung benutzt G10 und G11 Befehle, damit die msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Diese experimentelle Einstellung generiert E-Koordinaten in Kubikmillimetern stat in linearen Millimetern. Wenn die Firmware den Filamentdurchmesser noch nicht kennt, können Sie Befehle wie 'M200 D[filament_diameter_0] T0' in den Start-G-Code eingeben, um den volumetrischen Modus zu aktivieren und den in PrusaSlicer angegebenen Filamentdurchmesser zu benutzen. Dies wird nur von neueren Marlin-Versionen unterstützt." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "Dieser Extruder wird den gewählten Elementen zugeordnet" -#: src/libslic3r/PrintConfig.cpp:214 +#: src/libslic3r/PrintConfig.cpp:224 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Diese Einstellung beeinflusst den Materialausstoss bei Brücken. Sie können den Wert leicht verringern, um die Extrusionsfäden zu strecken und ein Durchhängen zu vermeiden. Die Standardwerte sind aber normalerweise ausreichend und Sie sollten zuerst mit der Lüftergeschwindigkeit experimentieren, bevor Sie diesen Wert verändern." @@ -7893,7 +7960,7 @@ msgstr "Diese Einstellung beeinflusst den Materialausstoss bei Brücken. Sie kö msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Dieser Faktor ändert die Extrusionsmenge proportional. Sie müssen diese Einstellung möglicherweise anpassen, um schöne Oberflächen und korrekte Hüllenstärken zu erhalten. Die üblichen Werte bewegen sich zwischen 0,9 und 1,1. Falls Sie größere Anpassungen eingeben müssen, kontrollieren Sie auch den Filamentdurchmesser und die E-Schritte in Ihrer Firmware." -#: src/libslic3r/PrintConfig.cpp:204 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Die Lüftergeschwindigkeit, die für Überbrückungen und Überhänge benutzt wird." @@ -7909,24 +7976,39 @@ msgstr "Diese Einstellung erzwingt eine massive Schicht nach einer vorgegebenen msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Dieses Verfahren erhöht die Z-Position allmählich, während eine einfache Hülle gedruckt wird, um jeglichen sichtbaren Saum zu vermeiden. Diese Option setzt eine einzige Außenkontur, keinen Infill, keine massiven Deckenschichten und keine Stützen voraus. Sie können immer noch eine beliebige Anzahl von Bodenschichten sowie Schleifen für Schürzen und Rand einstellen. Die Methode funktioniert nicht, wenn mehr als ein Objekt gedruckt wird." -#: src/slic3r/GUI/Plater.cpp:2351 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Diese Datei kann nicht im einfachen Modus geladen werden. Möchten Sie in den fortgeschrittenen Modus wechseln?" -#: src/slic3r/GUI/Plater.cpp:2341 -msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" +#: src/slic3r/GUI/Plater.cpp:2357 +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should I consider\n" +"this file as a single object having multiple parts?" msgstr "Diese Datei enthält mehrere Objekte, die in verschiedenen Höhen positioniert sind. Anstatt sie als mehrere Objekte zu betrachten, soll ich diese Datei als ein einzelnes Objekt mit mehreren Teilen betrachten?" #: src/slic3r/GUI/FirmwareDialog.cpp:332 -#, possible-c-format -msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." -msgstr "Diese Firmware-Hex-Datei stimmt nicht mit dem Druckermodell überein.\nDie Hex-Datei ist für: %s\nDrucker erkannt: %s\n\nMöchtest Sie fortfahren und diese Hex-Datei trotzdem flashen?\nBitte fahren Sie nur fort, wenn Sie der festen Überzeugung sind, dass dies das Richtige ist." +#, c-format +msgid "" +"This firmware hex file does not match the printer model.\n" +"The hex file is intended for: %s\n" +"Printer reported: %s\n" +"\n" +"Do you want to continue and flash this hex file anyway?\n" +"Please only continue if you are sure this is the right thing to do." +msgstr "" +"Diese Firmware-Hex-Datei stimmt nicht mit dem Druckermodell überein.\n" +"Die Hex-Datei ist für: %s\n" +"Drucker erkannt: %s\n" +"\n" +"Möchtest Sie fortfahren und diese Hex-Datei trotzdem flashen?\n" +"Bitte fahren Sie nur fort, wenn Sie der festen Überzeugung sind, dass dies das Richtige ist." -#: src/libslic3r/PrintConfig.cpp:304 +#: src/libslic3r/PrintConfig.cpp:314 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Diese Einstellung aktiviert the Logik, die die Druckgeschwindigkeit und Lüftergeschwindigkeit automatisch gemäß der Schichtdruckdauer regelt." -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:536 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Dieses Kontrollkästchen aktiviert den Rand (Brim), der um jedes Objekt auf der ersten Ebene gedruckt wird." @@ -7938,19 +8020,19 @@ msgstr "Diese Stellung erzwingt einen Einzug bei jeder Z-Bewegung." msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Diese Einstellung wird die Düse während dem Einzug bewegen, um mögliche Tropfen bei einem undichten Extruder zu minimieren." -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "Dies ist eine Standard-Voreinstellung." -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "Dies ist ein relatives Maß für die Dichte der Stützpunkte." -#: src/slic3r/GUI/Tab.cpp:2334 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Dies ist ein Einzelextruder-Multimaterialdrucker, die Durchmesser aller Extruder werden auf den neuen Wert eingestellt. Möchten Sie fortfahren?" -#: src/slic3r/GUI/Tab.cpp:957 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "Dies ist eine Systemvoreinstellung." @@ -7958,11 +8040,11 @@ msgstr "Dies ist eine Systemvoreinstellung." msgid "This is only used in the Slic3r interface as a visual help." msgstr "Dies wird nur als visuelles Hilfsmittel in der PrusaSlicer-Benutzeroberfläche verwendet." -#: src/libslic3r/PrintConfig.cpp:326 +#: src/libslic3r/PrintConfig.cpp:336 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Dies ist der Beschleunigungswert, auf den Ihr Drucker zurückgesetzt wird, nachdem aufgabenspezifische Beschleunigungswerte (Außenkonturen/Infill) verwendet wurden. Setzen Sie dies auf null, um ein Zurückstellen der Beschleunigungswerte zu deaktivieren." -#: src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:194 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "Die Beschleunigung, die Ihr Drucker für Brücken verwendet. Setzen Sie dies auf null, um die Beschleunigungskontrolle bei Brücken zu deaktivieren." @@ -8000,8 +8082,12 @@ msgid "This matrix describes volumes (in cubic milimetres) required to purge the msgstr "Diese Matrix beschreibt die Volumina (in Kubikmillimetern), die benötigt werden, um das neue Filament auf dem Reinigungsturm für ein bestimmtes Werkzeugpaar zu reinigen." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 -msgid "This operation is irreversible.\nDo you want to proceed?" -msgstr "Dieser Vorgang ist nicht mehr rückgängig zu machen.\nMöchten Sie fortfahren?" +msgid "" +"This operation is irreversible.\n" +"Do you want to proceed?" +msgstr "" +"Dieser Vorgang ist nicht mehr rückgängig zu machen.\n" +"Möchten Sie fortfahren?" #: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." @@ -8064,11 +8150,19 @@ msgid "This vector saves required volumes to change from/to each tool used on th msgstr "Dieser Vektor speichert die erforderlichen Volumina für den Wechsel von/zu jedem am Reinigungsturm verwendeten Werkzeug. Diese Werte werden verwendet, um die Erstellung des vollen Reinigungsvolumens zu vereinfachen." #: src/slic3r/GUI/UpdateDialogs.cpp:216 -#, possible-c-format -msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "Diese Version von %s ist nicht kompatibel zu den aktuell installierten Konfigurationssammlungen.\nDies wurde wahrscheinlich dadurch verursacht, dass Sie eine ältere %s Version benutzt haben, nachdem Sie eine neuere ausgeführt hatten.\n\nSie können %s entweder beenden und es mit einer neueren Version nochmals versuchen, oder Sie können die erstmalige Startkonfiguration nochmals wiederholen. In diesem Fall wird eine Sicherungskopie der aktuellen Konfiguration erstellt, bevor die mit dieser %s-Version kompatiblen Dateien installiert werden." +#, c-format +msgid "" +"This version of %s is not compatible with currently installed configuration bundles.\n" +"This probably happened as a result of running an older %s after using a newer one.\n" +"\n" +"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "" +"Diese Version von %s ist nicht kompatibel zu den aktuell installierten Konfigurationssammlungen.\n" +"Dies wurde wahrscheinlich dadurch verursacht, dass Sie eine ältere %s Version benutzt haben, nachdem Sie eine neuere ausgeführt hatten.\n" +"\n" +"Sie können %s entweder beenden und es mit einer neueren Version nochmals versuchen, oder Sie können die erstmalige Startkonfiguration nochmals wiederholen. In diesem Fall wird eine Sicherungskopie der aktuellen Konfiguration erstellt, bevor die mit dieser %s-Version kompatiblen Dateien installiert werden." -#: src/libslic3r/PrintConfig.cpp:2449 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Dadurch wird eine Gammakorrektur auf die gerasterten 2D-Polygone angewendet. Ein Gamma-Wert von null bedeutet Schwellenwertbildung mit dem Schwellenwert in der Mitte. Dieses Verhalten eliminiert Antialiasing, ohne Löcher in Polygonen zu verlieren." @@ -8080,11 +8174,11 @@ msgstr "Threads" msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Threads werden benutzt, um mehrere zeitaufwendige Berechnungen gleichzeitig auszuführen. Die optimale Anzahl beträgt etwas mehr als die Anzahl der verfügbaren Kerne/Prozessoren." -#: src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "Kippen" -#: src/slic3r/GUI/Tab.cpp:2092 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "Kippzeit" @@ -8112,32 +8206,20 @@ msgstr "Dauer des langsamen Kippens" msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Wartezeit, nachdem das Filament entladen wurde. Dies kann zu zuverlässigeren Werkzeugwechseln beitragen bei flexiblen Materialien, die mehr Zeit zum Schrumpfen auf ihre ursprüngliche Größe brauchen." -#: src/slic3r/GUI/DoubleSlider.cpp:962 -msgid "To add another code use Ctrl + Left click" -msgstr "Um einen weiteren Code hinzuzufügen, verwenden Sie Strg + Linksklick" - -#: src/slic3r/GUI/DoubleSlider.cpp:963 -msgid "To add another code use Right click" -msgstr "Um einen weiteren Code hinzuzufügen, klicken Sie mit der rechten Maustaste" - -#: src/slic3r/GUI/Tab.cpp:968 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "Zur Ausführung geben Sie bitte einen neuen Namen für die Voreinstellung ein." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "Um unnötige Werkzeugmanipulationen zu vermeiden, wurden\nFarbänderungen für unbenutzte Extruder gelöscht" - -#: src/slic3r/GUI/Plater.cpp:4023 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "Zu Objekten" -#: src/slic3r/GUI/Plater.cpp:4025 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "Zu Teilen" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 -#, possible-c-format +#, c-format msgid "Toggle %c axis mirroring" msgstr "Umschalten der Spiegelung der %c-Achse" @@ -8145,13 +8227,13 @@ msgstr "Umschalten der Spiegelung der %c-Achse" msgid "too many files" msgstr "zu viele Dateien" -#: src/libslic3r/SLAPrintSteps.cpp:154 +#: src/libslic3r/SLAPrintSteps.cpp:190 msgid "Too much overlapping holes." msgstr "Zu viele überlappende Löcher." -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 -#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Werkzeug" @@ -8159,11 +8241,11 @@ msgstr "Werkzeug" msgid "Tool #" msgstr "Werkzeug #" -#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-Code für Werkzeugwechsel" -#: src/slic3r/GUI/Tab.cpp:1493 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "Werkzeugwechsel-Parameter für MM-Drucker mit einem Extruder" @@ -8174,7 +8256,7 @@ msgstr "Werkzeugwechsel-Parameter für MM-Drucker mit einem Extruder" msgid "Top" msgstr "Decke" -#: src/slic3r/GUI/PresetHints.cpp:300 +#: src/slic3r/GUI/PresetHints.cpp:304 msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." msgstr "Hinweis zur Ober-/Bodenschalestärke: Nicht verfügbar wegen ungültiger Schichthöhe." @@ -8182,11 +8264,11 @@ msgstr "Hinweis zur Ober-/Bodenschalestärke: Nicht verfügbar wegen ungültiger msgid "Top fill pattern" msgstr "Deckenfüllmuster" -#: src/slic3r/GUI/PresetHints.cpp:319 +#: src/slic3r/GUI/PresetHints.cpp:323 msgid "Top is open." msgstr "Oben ist offen." -#: src/slic3r/GUI/PresetHints.cpp:313 +#: src/slic3r/GUI/PresetHints.cpp:317 msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Die obere Schale ist %1% mm stark für eine Schichthöhe von %2% mm." @@ -8194,7 +8276,7 @@ msgstr "Die obere Schale ist %1% mm stark für eine Schichthöhe von %2% mm." msgid "top solid infill" msgstr "Oberes massives Infill" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 #: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Oberes massives Infill" @@ -8223,13 +8305,12 @@ msgstr "Gesamte Rammdauer" msgid "Translate" msgstr "Übersetzen" +#: src/slic3r/GUI/Mouse3DController.cpp:300 #: src/slic3r/GUI/Mouse3DController.cpp:317 -#: src/slic3r/GUI/Mouse3DController.cpp:337 -#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Übersetzung" -#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Eilgang" @@ -8237,7 +8318,7 @@ msgstr "Eilgang" msgid "Triangles" msgstr "Dreiecke" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Repariere alle ungeschlossenen Netze (diese Option wird implizit hinzugefügt, wenn wir das Modell slicen müssen, um die gewünschte Aktion ausführen zu können)." @@ -8245,11 +8326,11 @@ msgstr "Repariere alle ungeschlossenen Netze (diese Option wird implizit hinzuge msgid "Type of the printer." msgstr "Druckertyp." -#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "Typ:" -#: src/slic3r/GUI/Plater.cpp:3436 +#: src/slic3r/GUI/Plater.cpp:3428 msgid "Unable to reload:" msgstr "Kann nicht nachgeladen werden:" @@ -8257,18 +8338,19 @@ msgstr "Kann nicht nachgeladen werden:" msgid "undefined error" msgstr "unbekannter Fehler" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Undo" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Undo %1$d Aktion" msgstr[1] "Undo %1$d Aktionen" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "Undo Verlauf" @@ -8298,23 +8380,36 @@ msgstr "Entladegeschwindigkeit" msgid "Unloading speed at the start" msgstr "Entladegeschwindigkeit zu Beginn" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "OFFENES SCHLOSS" -#: src/slic3r/GUI/Tab.cpp:3266 -msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." -msgstr "Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass einige Einstellungen geändert wurden und nicht mehr mit den System- (oder Standard-) Werte für die aktuelle Optionsgruppe identisch sind.\nKlicken Sie, um alle Einstellungen für die aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." +#: src/slic3r/GUI/Tab.cpp:3282 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or default) values." +msgstr "" +"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass einige Einstellungen geändert wurden und nicht mehr mit den System- (oder Standard-) Werte für die aktuelle Optionsgruppe identisch sind.\n" +"Klicken Sie, um alle Einstellungen für die aktuelle Optionsgruppe auf die System- (oder Standard-) Werte zurückzusetzen." -#: src/slic3r/GUI/Tab.cpp:3281 -msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." -msgstr "Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass der Wert geändert wurde und nicht mit der System- (oder Standard-) Einstellung identisch ist.\nKlicken Sie, um den aktuellen Wert auf die System- (oder Standard-) Einstellung zurückzusetzen." +#: src/slic3r/GUI/Tab.cpp:3297 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass der Wert geändert wurde und nicht mit der System- (oder Standard-) Einstellung identisch ist.\n" +"Klicken Sie, um den aktuellen Wert auf die System- (oder Standard-) Einstellung zurückzusetzen." -#: src/slic3r/GUI/GUI_Preview.cpp:257 +#: src/slic3r/GUI/Plater.cpp:5203 +#, c-format +msgid "Unmounting successful. The device %s(%s) can now be safely removed from the computer." +msgstr "Aushängen erfolgreich. Das Gerät %s(%s) kann nun sicher vom Computer entfernt werden." + +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "Wiedereinzüge" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "Nicht abgespeicherte Änderungen" @@ -8322,10 +8417,6 @@ msgstr "Nicht abgespeicherte Änderungen" msgid "Unsaved Presets" msgstr "Nicht abgespeicherte Voreinstellungen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 -msgid "Unselect gizmo / Clear selection" -msgstr "Gizmo abwählen / Auswahl löschen" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:179 msgid "Unselect gizmo or clear selection" msgstr "Gizmo abwählen oder Auswahl löschen" @@ -8354,12 +8445,12 @@ msgstr "nicht unterstütztes Multidisk-Archiv" msgid "Unsupported OpenGL version" msgstr "Nicht unterstützte OpenGL Version" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "Nicht unterstützte Auswahl" -#: src/slic3r/GUI/GLCanvas3D.cpp:960 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:955 +#, c-format msgid "up to %.2f mm" msgstr "bis zu %.2f mm" @@ -8367,15 +8458,15 @@ msgstr "bis zu %.2f mm" msgid "Update available" msgstr "Ein Update ist verfügbar" -#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "Eingebaute Voreinstellungen automatisch aktualisieren" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "Updates" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Updates werden niemals ohne das Einverständnis des Benutzers ausgeführt, und werden niemals die vom Benutzer geänderten Einstellungen überschreiben." @@ -8399,12 +8490,12 @@ msgstr "Transferiere zum Druckerhost mit dem Dateinamen:" msgid "Uploading" msgstr "Lade hoch" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 msgid "Upper Layer" msgstr "Obere Schicht" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "USB/Serielle Verbindung" @@ -8412,11 +8503,11 @@ msgstr "USB/Serielle Verbindung" msgid "USB/serial port for printer connection." msgstr "USB-/serielle Schnittstelle für den Druckeranschluss." -#: src/slic3r/GUI/DoubleSlider.cpp:1115 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "Einen anderen Extruder verwenden" -#: src/slic3r/GUI/Preferences.cpp:147 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "Benutzerdefinierte Größe für Symbolleistensymbole verwenden" @@ -8428,15 +8519,15 @@ msgstr "Firmware-Einzug aktivieren" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Benutzen Sie den Schrägstrich (/) als Verzeichnistrenner falls nötig." -#: src/slic3r/GUI/Preferences.cpp:129 +#: src/slic3r/GUI/Preferences.cpp:126 msgid "Use free camera" msgstr "Benutze freie Kamera" -#: src/libslic3r/PrintConfig.cpp:2771 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "Grundschicht benutzen" -#: src/slic3r/GUI/Preferences.cpp:121 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "Benutze perspektivische Kamera" @@ -8444,7 +8535,7 @@ msgstr "Benutze perspektivische Kamera" msgid "Use relative E distances" msgstr "Relative Abstände für Extrusion benutzen" -#: src/slic3r/GUI/Preferences.cpp:106 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "Verwende Retina Auflösung für die 3D Anzeige" @@ -8460,27 +8551,27 @@ msgstr "Verwenden Sie diese Einstellung, um das Muster für die Stützstrukturen msgid "Use volumetric E" msgstr "Volumetrisches E benutzen" -#: src/slic3r/GUI/DoubleSlider.cpp:1139 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 msgid "used" msgstr "genutzt" -#: src/slic3r/GUI/Plater.cpp:239 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "Filamentbedarf (g)" -#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "Filamentbedarf (Meter)" -#: src/slic3r/GUI/Plater.cpp:238 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "Filamentbedarf (mm³)" -#: src/slic3r/GUI/Plater.cpp:1188 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "Benutztes Material (ml)" -#: src/slic3r/GUI/Plater.cpp:240 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "Benutztes Material (Einheit)" @@ -8488,8 +8579,8 @@ msgstr "Benutztes Material (Einheit)" msgid "User" msgstr "Benutzer" -#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 -#: src/slic3r/GUI/PresetBundle.cpp:1670 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "Benutzerdefinierte Voreinstellungen" @@ -8505,31 +8596,31 @@ msgstr "Der Wert ist gleich wie die Systemeinstellung" msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Der Wert wurde geändert und ist nicht gleich wie die Systemeinstellung oder die letzte abgespeicherte Voreinstellung" -#: src/slic3r/GUI/Tab.cpp:2198 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "Werte in dieser Spalte sind für den normalen Modus" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "Werte in dieser Spalte sind für den Stealth Modus" -#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "Variable Schichthöhe" -#: src/slic3r/GUI/GLCanvas3D.cpp:1713 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "Variable Schichthöhe - Adaptiv" -#: src/slic3r/GUI/GLCanvas3D.cpp:604 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "Variable Schichthöhe - Manuell bearbeiten" -#: src/slic3r/GUI/GLCanvas3D.cpp:1705 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "Variable Schichthöhe - Zurücksetzen" -#: src/slic3r/GUI/GLCanvas3D.cpp:1721 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "Variable Schichthöhe - Alles glätten" @@ -8537,7 +8628,7 @@ msgstr "Variable Schichthöhe - Alles glätten" msgid "variants" msgstr "Varianten" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "Hersteller" @@ -8557,24 +8648,24 @@ msgstr "Version" msgid "version" msgstr "Version" -#: src/slic3r/GUI/Tab.cpp:1055 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "Vertikale Konturhüllen" -#: src/slic3r/GUI/GUI_Preview.cpp:220 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "Ansicht" -#: src/slic3r/GUI/ConfigWizard.cpp:814 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "Anzeigemodus" -#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 -#: src/libslic3r/SLAPrintSteps.cpp:430 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "Anzeigen der Stützstrukturen" -#: src/slic3r/GUI/Plater.cpp:163 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "Volumen" @@ -8582,7 +8673,7 @@ msgstr "Volumen" msgid "Volume to purge (mm³) when the filament is being" msgstr "Volumen zum Reinigen (mm³) wenn das Filament ist" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "Volumen in Objekt neu angeordnet" @@ -8590,11 +8681,11 @@ msgstr "Volumen in Objekt neu angeordnet" msgid "Volumetric" msgstr "Volumetrisch" -#: src/slic3r/GUI/Tab.cpp:1593 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "Hinweise zum Volumenstrom nicht verfügbar" -#: src/slic3r/GUI/GUI_Preview.cpp:228 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "Volumetrische Flussrate" @@ -8606,12 +8697,12 @@ msgstr "Volumetrische Flussrate (mm³/s)" msgid "Volumetric speed" msgstr "Volumengeschwindigkeit" -#: src/libslic3r/PrintConfig.cpp:2906 +#: src/libslic3r/PrintConfig.cpp:2915 msgid "Wall thickness" msgstr "Wandstärke" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Warnung" @@ -8621,16 +8712,16 @@ msgid "Welcome" msgstr "Willkommen" #: src/slic3r/GUI/ConfigWizard.cpp:427 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Willkommen zum %s Konfigurations-Assistent" #: src/slic3r/GUI/ConfigWizard.cpp:429 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Willkommen zum %s Konfigurations-Assistent" -#: src/slic3r/GUI/Preferences.cpp:99 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Falls angekreuzt, werden Voreinstellungen für Druck und Filament im Voreinstellungseditor auch dann angezeigt, wenn sie als inkompatibel zum aktiven Drucker gekennzeichnet wurden" @@ -8638,11 +8729,11 @@ msgstr "Falls angekreuzt, werden Voreinstellungen für Druck und Filament im Vor msgid "when printing" msgstr "während dem Druck" -#: src/libslic3r/PrintConfig.cpp:243 +#: src/libslic3r/PrintConfig.cpp:253 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Wenn Multi-Material-Objekte gedruckt werden, wird Slic3r mit diesen Einstellungen einen überlappenden Teil des Objekts durch den anderen einschränken (zweiter Teil wird durch den ersten Teil eingeschränkt, dritter Teil wird durch den ersten und zweiten eingeschränkt usw.)." -#: src/libslic3r/PrintConfig.cpp:295 +#: src/libslic3r/PrintConfig.cpp:305 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Wenn mehrere Objekte oder Kopien gedruckt werden, wird bei dieser Einstellung jedes Objekt vollständig gedruckt, bevor das nächste (angefangen mit der Bodenschicht) begonnen wird. Diese Einstellung ist nützlich, um Fehldrucke zu vermeiden. PrusaSlicer sollte vor Extruderkollisionen warnen und diese verhindern, aber seien Sie trotzdem aufmerksam." @@ -8674,23 +8765,23 @@ msgstr "Wenn der Einzug nach dem Werkzeugwechsel kompensiert wurde, wird der Ext msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Wenn der Einzug nach der Zwischenbewegung kompensiert wurde, wird der Extruder diese zusätzliche Menge an Filament ausgeben. Diese Einstellung wird selten benötigt." -#: src/slic3r/GUI/Tab.cpp:3247 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "WEISSER PUNKT" -#: src/slic3r/GUI/Tab.cpp:3269 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "Das Symbol mit dem WEISSEN PUNKT zeigt eine Nicht-System- (oder nicht standardmäßige) Voreinstellung an." -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "Das Symbol WEISSER PUNKT zeigt an, dass die Einstellungen dieselben sind wie in der zuletzt gespeicherten Voreinstellung für die aktuelle Optionsgruppe." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "Das Symbol WEISSER PUNKT zeigt an, dass der Wert identisch ist mit demjenigen in der zuletzt gespeicherten Voreinstellung." -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Breite" @@ -8698,7 +8789,7 @@ msgstr "Breite" msgid "Width (mm)" msgstr "Breite (mm)" -#: src/libslic3r/PrintConfig.cpp:2631 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "Abstand von der Mitte der hinteren Kugel bis zur Mitte der vorderen Kugel" @@ -8706,7 +8797,7 @@ msgstr "Abstand von der Mitte der hinteren Kugel bis zur Mitte der vorderen Kuge msgid "Width of a wipe tower" msgstr "Breite des Reinigungsturms" -#: src/libslic3r/PrintConfig.cpp:2882 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Breite der Verbindungsstäbe, die das Objekt und die erzeugte Grundschicht verbinden." @@ -8734,18 +8825,18 @@ msgstr "Dieses Objekt zum Reinigen verwenden" msgid "Wipe into this object's infill" msgstr "Das Infill dieses Objekts zum Reinigen verwenden" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 #: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Wischoptionen" -#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Reinigungsturm" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "Reinigungsturm" @@ -8758,7 +8849,7 @@ msgstr "Reinigungsturm" msgid "Wipe tower - Purging volume adjustment" msgstr "Reinigungsturm - Anpassung des Reinigungsvolumens" -#: src/slic3r/GUI/Tab.cpp:1490 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "Reinigungsturm Parameter" @@ -8792,14 +8883,24 @@ msgid "World coordinates" msgstr "Weltkoordinaten" #: src/slic3r/GUI/UpdateDialogs.cpp:92 -msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "Möchten Sie dies installieren?\n\nBeachten Sie, dass zuerst eine Momentaufnahme der gesamten Konfiguration erstellt wird. Diese kann dann jederzeit wiederhergestellt werden, falls es ein Problem mit der neuen Version gibt.\n\nAktualisierte Konfigurationssammlungen:" +msgid "" +"Would you like to install it?\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"Möchten Sie dies installieren?\n" +"\n" +"Beachten Sie, dass zuerst eine Momentaufnahme der gesamten Konfiguration erstellt wird. Diese kann dann jederzeit wiederhergestellt werden, falls es ein Problem mit der neuen Version gibt.\n" +"\n" +"Aktualisierte Konfigurationssammlungen:" #: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "Schreibabruf fehlgeschlagen" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "Schreibt Informationen über das Modell auf die Konsole." @@ -8827,7 +8928,7 @@ msgstr "XY-Größenausgleich" msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Y-Koordinate der linken vorderen Ecke des Reinigungsturms" -#: src/slic3r/GUI/Plater.cpp:1167 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "Ja" @@ -8843,11 +8944,11 @@ msgstr "Sie können Ihre Notizen zum Filament hier eingeben." msgid "You can put your notes regarding the printer here." msgstr "Sie können Ihre Bemerkungen zum Drucker hier eingeben." -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "Sie können Ihre Notizen zum SLA Druckmaterial hier eingeben." -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:360 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Sie können einen positiven Wert eingeben, um den Lüfter vollständig für die ersten Schichten auszuschalten, damit er die Haftung nicht beeinträchtigt." @@ -8855,16 +8956,16 @@ msgstr "Sie können einen positiven Wert eingeben, um den Lüfter vollständig f msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Sie können alle Konfigurationsoptionen als Variablen in dieser Vorlage benutzen. Zum Beispiel: [layer_height], [fill_density] usw. Sie können auch [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], und [input_filename_base] benutzen." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "Sie können nicht die Art des letzten soliden Teils des Objektes ändern." -#: src/slic3r/GUI/Plater.cpp:2374 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2390 +#, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Sie können die Objekte aus %s nicht hinzufügen, weil eines oder einige von ihnen mehrteilig ist (sind)" -#: src/slic3r/GUI/Plater.cpp:2295 +#: src/slic3r/GUI/Plater.cpp:2311 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "Sie können kein SLA-Projekt mit einem mehrteiligen Objekt auf das Druckbett laden" @@ -8884,29 +8985,33 @@ msgstr "Sie müssen mindestens ein Material für die ausgewählten Drucker ausw msgid "You may need to update your graphics card driver." msgstr "Möglicherweise müssen Sie Ihren Grafikkartentreiber aktualisieren." -#: src/slic3r/GUI/Preferences.cpp:176 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "You must install a configuration update." +msgstr "Ein Konfigurations-Update muss installiert werden." + +#: src/slic3r/GUI/Preferences.cpp:172 +#, c-format msgid "You need to restart %s to make the changes effective." msgstr "Sie müssen %s neu starten, damit die Änderungen wirksam werden." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 +#, c-format msgid "You started your selection with %s Item." msgstr "Sie haben Ihre Auswahl mit %s Elementen begonnen." -#: src/slic3r/GUI/DoubleSlider.cpp:1875 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 msgid "Your current changes will delete all saved color changes." msgstr "Ihre aktuellen Änderungen löschen alle gespeicherten Farbwechsel." -#: src/slic3r/GUI/DoubleSlider.cpp:1896 +#: src/slic3r/GUI/DoubleSlider.cpp:1923 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "Ihre aktuellen Änderungen löschen alle gespeicherten Extruder-(Werkzeug-) Wechsel." -#: src/slic3r/GUI/MainFrame.cpp:913 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "Ihre Datei wurde repariert." -#: src/slic3r/GUI/Plater.cpp:2512 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Ihr Objekt scheint zu groß zu sein. Es wurde deshalb automatisch verkleinert, um auf Ihre Druckplatte zu passen." @@ -8915,54 +9020,62 @@ msgid "Z offset" msgstr "Z-Abstand" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." -msgstr "Null Höhe der ersten Schicht ist nicht gültig.\n\nDie erste Schichthöhe wird auf 0,01 zurückgesetzt." +msgid "" +"Zero first layer height is not valid.\n" +"\n" +"The first layer height will be reset to 0.01." +msgstr "" +"Null Höhe der ersten Schicht ist nicht gültig.\n" +"\n" +"Die erste Schichthöhe wird auf 0,01 zurückgesetzt." #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." -msgstr "Eine Nullschichthöhe ist nicht gültig.\n\nDie Schichthöhe wird auf 0,01 zurückgesetzt." +msgid "" +"Zero layer height is not valid.\n" +"\n" +"The layer height will be reset to 0.01." +msgstr "" +"Eine Nullschichthöhe ist nicht gültig.\n" +"\n" +"Die Schichthöhe wird auf 0,01 zurückgesetzt." -#: src/libslic3r/PrintConfig.cpp:2658 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "Zickzack" -#: src/slic3r/GUI/Mouse3DController.cpp:326 -#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Zoom" msgstr "Zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 msgid "Zoom in" msgstr "Heranzoomen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 msgid "Zoom out" msgstr "Herauszoomen" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "Auf alle Objekte zoomen, falls keines ausgewählt ist" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 msgid "Zoom to Bed" msgstr "Zoom aufs Druckbett" #: src/slic3r/GUI/KBShortcutsDialog.cpp:182 -msgid "Zoom to selected object\nor all objects in scene, if none selected" -msgstr "Auf ausgewähltes Objekt zoomen\noder alle Objekte in der Szene, wenn keines ausgewählt ist" +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"Auf ausgewähltes Objekt zoomen\n" +"oder alle Objekte in der Szene, wenn keines ausgewählt ist" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "Auf das gewählte Objekt zoomen" - -#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 #: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 #: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" diff --git a/resources/localization/es/PrusaSlicer.mo b/resources/localization/es/PrusaSlicer.mo index 638fc9da77c23ba541bd7b7b3669d634de8013d7..c5c8e2f016294055a5a1bd4ef0fd0aca0b03d68b 100644 GIT binary patch delta 47725 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 ifqv)SUD^y+->r@5?2M~d`@7Q)Y8zB{%3BeVbj delta 50344 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%0A?tKMC6_0l9@jy& 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

XIJY6|wE8g>r#(7B7+MXylzhd*P6J`t*8 zZb|}a3FJV{Sp%D)AF85ZsG(bgeq3$S*JCj8KTuQlw@r_I*7P(hD!r<;Hzp EcT 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 V&|~E8{g@l*6s}=4FKR`d{uh|@r$_(* diff --git a/resources/localization/es/PrusaSlicer_es.po b/resources/localization/es/PrusaSlicer_es.po index 14f50726e3..6fa9245a12 100644 --- a/resources/localization/es/PrusaSlicer_es.po +++ b/resources/localization/es/PrusaSlicer_es.po @@ -5,133 +5,166 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: PhraseApp (phraseapp.com)\n" +"X-Generator: Poedit 2.2.1\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" #: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Recuerda comprobar las actualizaciones en http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:874 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " fue laminado con éxito." -#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 #: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 #: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 -#: src/libslic3r/PrintConfig.cpp:2758 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/slic3r/GUI/GLCanvas3D.cpp:968 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:963 +#, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3110 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "%1% Preset" -#: src/slic3r/GUI/Plater.cpp:4413 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "La impresora %1% esta activa mientras la captura del objetivo de Deshacer / Rehacer fue tomada. Cambiar a la impresora %1% requiere recargar los preajustes %1%." -#: src/libslic3r/Print.cpp:1370 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm es demasiado bajo para ser impreso a una altura de capa de %3% mm" #: src/slic3r/GUI/PresetHints.cpp:229 -#, possible-c-format +#, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s a una velocidad de filamento de %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:1149 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1152 +#, c-format msgid "%d (%d shells)" msgstr "%d (%d pieles)" -#: src/slic3r/GUI/Plater.cpp:1157 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1160 +#, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d facetas problemáticas, %d aristas corregidas, %d facetas eliminadas, %d facetas añadidas, %d facetas invertidas, %d aristas del revés" -#: src/slic3r/GUI/PresetHints.cpp:269 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:270 +#, c-format msgid "%d lines: %.2f mm" msgstr "%d líneas: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:1029 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:1027 +#, c-format msgid "%d presets successfully imported." msgstr "%d ajustes iniciales importados con éxito." -#: src/slic3r/GUI/MainFrame.cpp:694 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:692 +#, c-format msgid "%s &Website" -msgstr "%s &Sitio Web" +msgstr "%s Sitio &Web" #: src/slic3r/GUI/UpdateDialogs.cpp:211 -#, possible-c-format +#, c-format msgid "%s configuration is incompatible" msgstr "%s la configuración es incompatible" -#: src/slic3r/GUI/Field.cpp:170 -#, possible-c-format +#: src/slic3r/GUI/Field.cpp:175 +#, c-format msgid "%s doesn't support percentage" msgstr "%s no permite porcentajes" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, possible-c-format +#, c-format msgid "%s error" msgstr "%s error" #: src/slic3r/GUI/ConfigWizard.cpp:481 -#, possible-c-format +#, c-format msgid "%s Family" msgstr "%s Familia" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, possible-c-format +#, c-format msgid "%s has encountered an error" msgstr "%s ha ocurrido un error" #: src/slic3r/GUI/GUI_App.cpp:138 -#, possible-c-format -msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." -msgstr "%s ha encontrado un error. Probablemente fue causado por quedarse sin memoria. Si estás seguro de tener suficiente RAM en su sistema, esto también puede ser un error y nos complacería que lo informaras.\n\nLa aplicación se cerrará." +#, c-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" +"\n" +"The application will now terminate." +msgstr "" +"%s ha encontrado un error. Probablemente fue causado por quedarse sin memoria. Si estás seguro de tener suficiente RAM en su sistema, esto también puede ser un error y nos complacería que lo informaras.\n" +"\n" +"La aplicación se cerrará." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 -#, possible-c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 +#, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s ha encontrado un error. Probablemente fue causado por quedarse sin memoria. Si estás seguro de tener suficiente RAM en su sistema, esto también puede ser un error y nos complacería que lo informaras." #: src/slic3r/GUI/UpdateDialogs.cpp:308 -#, possible-c-format -msgid "%s has no configuration updates aviable." +#, c-format +msgid "%s has no configuration updates available." msgstr "%s no tiene actualizaciones de configuración disponibles." #: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 -#, possible-c-format +#, c-format msgid "%s incompatibility" msgstr "%s incompatibilidad" #: src/slic3r/GUI/UpdateDialogs.cpp:270 -#, possible-c-format -msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." -msgstr "Ahora %s usa una estructura actualizada para la configuración. \n\nSe han introducido los llamados 'Ajustes del sistema' , que tienen valores por defecto para varias impresoras. Estos ajustes del sistema no pueden modificarse, por el contrario, los usuarios pueden crear nuevos ajustes que se basan en alguno de ellos.\nUn ajuste nuevo puede heredar un valor de un ajuste existente o bien tener un nuevo valor personalizado.\n\nPor favof, continúa con el %s que sigue para establecer los nuevos ajustes y seleccionar si quieres que estos se actualicen automáticamente." +#, c-format +msgid "" +"%s now uses an updated configuration structure.\n" +"\n" +"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" +"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" +"\n" +"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +msgstr "" +"Ahora %s usa una estructura actualizada para la configuración. \n" +"\n" +"Se han introducido los llamados 'Ajustes del sistema' , que tienen valores por defecto para varias impresoras. Estos ajustes del sistema no pueden modificarse, por el contrario, los usuarios pueden crear nuevos ajustes que se basan en alguno de ellos.\n" +"Un ajuste nuevo puede heredar un valor de un ajuste existente o bien tener un nuevo valor personalizado.\n" +"\n" +"Por favof, continúa con el %s que sigue para establecer los nuevos ajustes y seleccionar si quieres que estos se actualicen automáticamente." #: src/slic3r/GUI/GUI_App.cpp:820 -#, possible-c-format +#, c-format msgid "%s View Mode" msgstr "%s Tipo de vista" #: src/slic3r/GUI/UpdateDialogs.cpp:151 -#, possible-c-format -msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "%s comenzará las actualizaciones. De otro modo no podrá comenzar.\n\nTen en cuenta que primero se creará una copia de seguridad. Puedes volver a ella si en algún momento hay problemas con la nueva versión.\n\nConfiguraciones actualizadas: " +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%s comenzará las actualizaciones. De otro modo no podrá comenzar.\n" +"\n" +"Ten en cuenta que primero se creará una copia de seguridad. Puedes volver a ella si en algún momento hay problemas con la nueva versión.\n" +"\n" +"Configuraciones actualizadas:" -#: src/slic3r/GUI/MainFrame.cpp:707 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:705 +#, c-format msgid "&About %s" msgstr "&Acerca de %s" @@ -149,9 +182,9 @@ msgstr "&Copiar" #: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" -msgstr "&Eliminar selección" +msgstr "Eli&minar selección" -#: src/slic3r/GUI/MainFrame.cpp:724 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" msgstr "&Editar" @@ -159,21 +192,21 @@ msgstr "&Editar" msgid "&Export" msgstr "&Exportar" -#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" -msgstr "Pestaña de &Ajustes de filamento" +msgstr "Pestaña de Ajustes de &filamento" -#: src/slic3r/GUI/MainFrame.cpp:723 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "&Archivo" -#: src/slic3r/GUI/ConfigWizard.cpp:1984 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "&Terminar" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" -msgstr "&Ayuda" +msgstr "Ayu&da" #: src/slic3r/GUI/MainFrame.cpp:474 msgid "&Import" @@ -187,13 +220,13 @@ msgstr "&Idioma" msgid "&New Project" msgstr "&Nuevo proyecto" -#: src/slic3r/GUI/ConfigWizard.cpp:1983 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "&Siguiente >" #: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" -msgstr "&Abrir proyecto" +msgstr "Abrir pr&oyecto" #: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" @@ -201,7 +234,7 @@ msgstr "&Pegar" #: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" -msgstr "Pestaña &Base de impresión" +msgstr "&Pestaña Base de impresión" #: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" @@ -209,7 +242,7 @@ msgstr "&Preferencias" #: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" -msgstr "&Salir" +msgstr "Sa&lir" #: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" @@ -221,7 +254,7 @@ msgstr "&Reparar archivo STL" #: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" -msgstr "&Guardar proyecto" +msgstr "G&uardar proyecto" #: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" @@ -229,13 +262,13 @@ msgstr "&Seleccionar todo" #: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" -msgstr "&Deshacer" +msgstr "Des&hacer" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" -msgstr "&Ver" +msgstr "Ve&r" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" msgstr "&Ventana" @@ -247,19 +280,19 @@ msgstr "(Todo)" msgid "(minimum)" msgstr "(mínimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "(Re)laminar" #: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" -msgstr "(Re)Laminar Aho&ra" +msgstr "(Re)Laminar A&hora" -#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(Desconocido)" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ") no encontrado." @@ -275,7 +308,7 @@ msgstr "0.2 (despegable)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4108 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "Vista editor 3D" @@ -283,46 +316,46 @@ msgstr "Vista editor 3D" msgid "3D Honeycomb" msgstr "Panal de abeja 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:291 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "Ajustes 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:5068 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5038 +#, c-format msgid "3MF file exported to %s" msgstr "Archivo 3MF exportado a %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1982 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "< &Anterior" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:287 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Una expresión booleana que utiliza los valores de configuración de un perfil de impresión activo. Si esta expresión se evalúa como verdadera, este perfil se considera compatible con el perfil de impresión activo." -#: src/libslic3r/PrintConfig.cpp:262 +#: src/libslic3r/PrintConfig.cpp:272 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Una expresión booleana utilizando valores de configuración de un perfil existente. Si esta expresión es verdadera, el perfil será considerado compatible con el perfil de impresión activo." -#: src/slic3r/GUI/ConfigWizard.cpp:1035 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Una buena aproximación es de 160 a 230 °C para PLA y de 215 a 250 °C para ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:1049 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Una buena aproximación son unos 60 °C para PLA y 110 °C para ABS. Deja el valor a cero si no tienes base calefactable." -#: src/slic3r/GUI/GLCanvas3D.cpp:691 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "Se detectó una trayectoria fuera del área de impresión" #: src/slic3r/GUI/AboutDialog.cpp:199 -#, possible-c-format +#, c-format msgid "About %s" msgstr "Acerca de %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:964 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:959 +#, c-format msgid "above %.2f mm" msgstr "sobre %.2f mm" @@ -330,11 +363,11 @@ msgstr "sobre %.2f mm" msgid "Above Z" msgstr "Encima de Z" -#: src/slic3r/GUI/Tab.cpp:1166 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "Control de aceleración (avanzado)" -#: src/libslic3r/PrintConfig.cpp:2916 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Accuracy" msgstr "Precisión" @@ -346,19 +379,19 @@ msgstr "Activar" msgid "Active" msgstr "Activo" -#: src/slic3r/GUI/DoubleSlider.cpp:1103 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 msgid "active" msgstr "activo" -#: src/slic3r/GUI/GLCanvas3D.cpp:272 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "Adaptativa" -#: src/slic3r/GUI/Tab.cpp:243 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "Añadir una impresora nueva" -#: src/libslic3r/PrintConfig.cpp:2773 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "Añade un pad debajo del modelo compatible" @@ -366,47 +399,47 @@ msgstr "Añade un pad debajo del modelo compatible" msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Añadir una funda (una sola línea de perímetro) alrededor de la base del soporte. Esto hace el soporte más fiable pero también más difícil de retirar." -#: src/slic3r/GUI/DoubleSlider.cpp:989 +#: src/slic3r/GUI/DoubleSlider.cpp:991 msgid "Add another code - Ctrl + Left click" msgstr "Añadir otro código - Ctrl + Click izquierdo" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:992 msgid "Add another code - Right click" msgstr "Añadir otro código - Click derecho" -#: src/slic3r/GUI/DoubleSlider.cpp:1449 +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "Añadir cambio de color" -#: src/slic3r/GUI/DoubleSlider.cpp:1148 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "Añadir cambio de color (%1%) para:" -#: src/slic3r/GUI/DoubleSlider.cpp:959 +#: src/slic3r/GUI/DoubleSlider.cpp:988 msgid "Add color change - Left click" msgstr "Añadir cambio de color - Click izquierdo" -#: src/slic3r/GUI/DoubleSlider.cpp:957 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" msgstr "Añadir cambio de color - Click izquierdo para color preddefinido o Mayus + Click izquierdo para selección de color personalizada" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "Añadir marcador de cambio de color para la capa actual" -#: src/slic3r/GUI/DoubleSlider.cpp:1462 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "Añadir código G personalizado" -#: src/slic3r/GUI/GLCanvas3D.cpp:245 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "Añadir detalle" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 msgid "Add drainage hole" msgstr "Añadir orificio de drenaje" -#: src/slic3r/GUI/DoubleSlider.cpp:955 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "Add extruder change - Left click" msgstr "Añadir cambio de extrusor - Click izquierdo" @@ -414,22 +447,22 @@ msgstr "Añadir cambio de extrusor - Click izquierdo" msgid "Add extruder to sequence" msgstr "Añadir extrusor a la secuencia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "Añadir Subobjeto Genérico" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "Añadir Rango de Alturas" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 -#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" msgstr "Añadir instancia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Add Instance of the selected object" msgstr "Añadir instancia del objeto seleccionado" @@ -437,7 +470,7 @@ msgstr "Añadir instancia del objeto seleccionado" msgid "Add layer range" msgstr "Añadir rango de capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "Añadir Capas" @@ -450,7 +483,7 @@ msgstr "Añadir modificador" msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Añadir más perímetros cuando se necesiten para evitar huecos en las paredes inclinadas. Slic3r sigue añadiendo perímetros hasta que más del 70% del perímetro superior sea soportado." -#: src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" msgstr "Añadir una instancia más del objeto seleccionado" @@ -458,48 +491,48 @@ msgstr "Añadir una instancia más del objeto seleccionado" msgid "Add part" msgstr "Añadir pieza" -#: src/slic3r/GUI/DoubleSlider.cpp:1459 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "Añadir pausa de impresión" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "Añadir punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "Añadir punto a selección" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "Añadir ajustes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "Añadir Conjunto de Ajustes para Rango de Alturas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "Añadir Conjunto de Ajustes para Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "Añadir Conjunto de Ajustes para Sub-objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "Añadir Ajustes para Capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "Agregar Ajustes para Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "Agregar Ajustes para Sub-objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "Añadir forma" @@ -515,27 +548,27 @@ msgstr "Añadir bloqueo soportes" msgid "Add support enforcer" msgstr "Añadir refuerzo soportes" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "Añadir punto de soporte" -#: src/slic3r/GUI/GLCanvas3D.cpp:4516 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "Añadir..." -#: src/slic3r/GUI/PresetBundle.cpp:1697 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "Añadir/Retirar filamentos" -#: src/slic3r/GUI/Preset.cpp:1151 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "Añadir/Retirar materiales" -#: src/slic3r/GUI/Preset.cpp:1153 +#: src/slic3r/GUI/Preset.cpp:1203 msgid "Add/Remove printers" msgstr "Añade/Quita impresoras" -#: src/slic3r/GUI/Tab.cpp:972 +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "Información adicional:" @@ -543,7 +576,7 @@ msgstr "Información adicional:" msgid "Additional Settings" msgstr "Ajustes adiccionales" -#: src/slic3r/GUI/ConfigWizard.cpp:790 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Además se realizará una instantánea de toda la configuración antes de aplicar una actualización." @@ -551,18 +584,19 @@ msgstr "Además se realizará una instantánea de toda la configuración antes d msgid "Address" msgstr "Dirección" -#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 -#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 -#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 -#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "Avanzado" -#: src/slic3r/GUI/ConfigWizard.cpp:822 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "Modo avanzado" @@ -578,15 +612,15 @@ msgstr "Avanzado: Registro de salida" msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Después de un cambio de herramienta, la posición exacta del filamento recién cargado dentro de la boquilla puede no ser conocida, y es probable que la presión del filamento aún no sea estable. Antes de purgar el cabezal de impresión en un relleno o en un objeto de sacrificio, Slic3r siempre purgará esta cantidad de material en la torre de limpieza para producir de forma fiable sucesivas rellenos u objetos de sacrificio." -#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "Código G tras un cambio de capa" -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "Alinear el modelo a un punto dado." -#: src/libslic3r/PrintConfig.cpp:3382 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "Alinear XY" @@ -595,19 +629,15 @@ msgid "Aligned" msgstr "Alineado" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3158 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "Todo" -#: src/libslic3r/Print.cpp:1215 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "Todos los objetos están fuera del volumen de impresión." -#: src/slic3r/GUI/Plater.cpp:3298 -msgid "All objects will be removed, continue ?" -msgstr "Todos los objetos serán eliminados, deseas continuar?" - -#: src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "All objects will be removed, continue?" msgstr "Todos los objetos serán eliminados, deseas continuar?" @@ -619,15 +649,15 @@ msgstr "Todo estandar" msgid "allocation failed" msgstr "asignación fallida" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "A lo largo del eje X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "A lo largo del eje Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "A lo largo del eje Z" @@ -635,24 +665,28 @@ msgstr "A lo largo del eje Z" msgid "Alternate nozzles:" msgstr "Alternar nozzles:" -#: src/slic3r/GUI/Plater.cpp:5022 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5002 +#, c-format msgid "AMF file exported to %s" msgstr "Archivo AMF exportado a %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 -msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" -msgstr "Se ha detectado una pieza fuera del área de impresión\nSoluciona el problema actual para continuar el laminado" - #: src/slic3r/GUI/GLCanvas3D.cpp:690 +msgid "" +"An object outside the print area was detected\n" +"Resolve the current problem to continue slicing" +msgstr "" +"Se ha detectado una pieza fuera del área de impresión\n" +"Soluciona el problema actual para continuar el laminado" + +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "Se ha detectado una pieza fuera del área de impresión" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "y tiene los siguientes cambios sin guardar:" -#: src/slic3r/GUI/Plater.cpp:3154 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "Otro trabajo de exportación está aún en marcha." @@ -661,7 +695,7 @@ msgstr "Otro trabajo de exportación está aún en marcha." msgid "Any arrow" msgstr "Cualquier flecha" -#: src/slic3r/GUI/Tab.cpp:967 +#: src/slic3r/GUI/Tab.cpp:965 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Cualquier modificación debe guardarse como un nuevo preset heredado de este." @@ -674,7 +708,7 @@ msgid "Application preferences" msgstr "Preferencias de la aplicación" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "Aplicar cambios" @@ -691,19 +725,23 @@ msgid "archive is too large" msgstr "el archivo es demasiado grande" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3107 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "¿Estás seguro de que deseas %1% el preset seleccionado?" #: src/slic3r/GUI/FirmwareDialog.cpp:902 -msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" -msgstr "¿Estas seguro de cancelar el flaseo del firmware?\n¡Esto podría dejar tu impresora en un estado inusable!" +msgid "" +"Are you sure you want to cancel firmware flashing?\n" +"This could leave your printer in an unusable state!" +msgstr "" +"¿Estas seguro de cancelar el flaseo del firmware?\n" +"¡Esto podría dejar tu impresora en un estado inusable!" -#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 msgid "Are you sure you want to continue?" msgstr "¿Estás seguro de que quieres continuar?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "¿Estás seguro de que quieres hacerlo?" @@ -711,50 +749,54 @@ msgstr "¿Estás seguro de que quieres hacerlo?" msgid "Area fill" msgstr "Área de relleno" -#: src/slic3r/GUI/Plater.cpp:638 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "Alrededor de objeto" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "Organiza" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "Ordenar selección" -#: src/libslic3r/PrintConfig.cpp:3428 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Organizar los modelos suministrados en una base y combínarlos en un solo modelo para realizar acciones una vez." -#: src/slic3r/GUI/Plater.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "Organizando" -#: src/slic3r/GUI/Plater.cpp:2825 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "Ordenamiento cancelado." -#: src/slic3r/GUI/Plater.cpp:2826 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "Organización terminada." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "Flecha hacia abajo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "Flecha hacia izquierda" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "Flecha hacia derecha" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "Flecha hacia arriba" @@ -762,8 +804,8 @@ msgstr "Flecha hacia arriba" msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Como solución alternativa, puedes ejecutar PrusaSlicer con un software de gráficos en 3D ejecutando prusaslicer.exe con el parámetro --sw_renderer." -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 -#: src/slic3r/GUI/Tab.cpp:2944 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "¡Atención!" @@ -776,17 +818,17 @@ msgid "Auto-center parts" msgstr "Piezas auto-centradas" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "Auto-generar puntos" -#: src/slic3r/GUI/Plater.cpp:1154 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, c-format msgid "Auto-repaired (%d errors)" msgstr "Reparados automáticamente (%d errores)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:337 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 +#, c-format msgid "Auto-repaired (%d errors):" msgstr "Reparado automáticamente (%d errores):" @@ -794,19 +836,19 @@ msgstr "Reparado automáticamente (%d errores):" msgid "Autodetected" msgstr "Detectado automáticamente" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "Genera los puntos de apoyo automáticamente" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "La autogeneración borrará todos los puntos editados manualmente." -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "Generación automática" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "Actualizaciones automáticas" @@ -814,31 +856,39 @@ msgstr "Actualizaciones automáticas" msgid "Automatically repair an STL file" msgstr "Archivo STL reparado automáticamente" -#: src/slic3r/GUI/Tab.cpp:1173 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "Velocidad automática (avanzado)" -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "Evita cruzar perímetros" -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "FLECHA HACIA ATRÁS" -#: src/slic3r/GUI/Tab.cpp:3274 -msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." -msgstr "El símbolo de FLECHA ATRÁS indica que los ajustes cambiaron y que no son iguales a los que se guardaron para el grupo de opciones actual.\nHaz clic para devolver esos valores a los últimos guardados." +#: src/slic3r/GUI/Tab.cpp:3290 +msgid "" +"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click to reset all settings for the current option group to the last saved preset." +msgstr "" +"El símbolo de FLECHA ATRÁS indica que los ajustes cambiaron y que no son iguales a los que se guardaron para el grupo de opciones actual.\n" +"Haz clic para devolver esos valores a los últimos guardados." -#: src/slic3r/GUI/Tab.cpp:3288 -msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." -msgstr "La FLECHA ATRÁS indica que el valor ha cambiado y ya no es el mismo que el guardado la última vez.\nHaz clic para restaurar el valor al último ajuste guardado." +#: src/slic3r/GUI/Tab.cpp:3304 +msgid "" +"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" +"Click to reset current value to the last saved preset." +msgstr "" +"La FLECHA ATRÁS indica que el valor ha cambiado y ya no es el mismo que el guardado la última vez.\n" +"Haz clic para restaurar el valor al último ajuste guardado." #: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Procesamiento en segundo plano" -#: src/slic3r/GUI/GUI_ObjectList.cpp:349 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "bordes hacia atrás" @@ -846,7 +896,7 @@ msgstr "bordes hacia atrás" msgid "based on Slic3r" msgstr "basado en Slic3r" -#: src/slic3r/GUI/Tab.cpp:1441 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "Base" @@ -858,7 +908,7 @@ msgstr "Modelo de base personalizado" msgid "Bed custom texture" msgstr "Textura personalizada de la base" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "Forma de la base de impresión" @@ -866,23 +916,23 @@ msgstr "Forma de la base de impresión" msgid "Bed shape" msgstr "Forma de la base de impresión" -#: src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "Tamaño y forma de la base" -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "Temperatura de la base" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura de la base calefactable para las capas después de la primera. Ajuste esto a cero para deshabilitar los comandos de control de temperatura de la base calefactable en la salida." -#: src/slic3r/GUI/ConfigWizard.cpp:1052 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "Temperatura de la base:" -#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "Código G para antes del cambio de capa" @@ -890,7 +940,7 @@ msgstr "Código G para antes del cambio de capa" msgid "Before roll back" msgstr "Antes de volver atrás" -#: src/slic3r/GUI/Plater.cpp:637 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "Por debajo del objeto" @@ -898,27 +948,27 @@ msgstr "Por debajo del objeto" msgid "Below Z" msgstr "Por debajo de Z" -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "Código G para entre objetos" -#: src/slic3r/GUI/Tab.cpp:2004 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "Código G para entre objetos (para impresión secuencial)" -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "Volumen de la botella" -#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "Peso botella" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 -#: src/libslic3r/PrintConfig.cpp:173 +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "Inferior" @@ -926,15 +976,15 @@ msgstr "Inferior" msgid "Bottom fill pattern" msgstr "Patrón de relleno inferior" -#: src/slic3r/GUI/PresetHints.cpp:338 +#: src/slic3r/GUI/PresetHints.cpp:342 msgid "Bottom is open." msgstr "La parte inferior está abierta." -#: src/slic3r/GUI/PresetHints.cpp:332 +#: src/slic3r/GUI/PresetHints.cpp:336 msgid "Bottom shell is %1% mm thick for layer height %2% mm." msgstr "La carcasa inferior es %1% mm más grueso para la altura de capa de %2% mm." -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "Capas sólidas inferiores" @@ -942,37 +992,37 @@ msgstr "Capas sólidas inferiores" msgid "Bottom View" msgstr "Vista inferior" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "Caja" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "Puente" -#: src/libslic3r/PrintConfig.cpp:212 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "Relación de flujo del puente" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Relleno de puente" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "Puentes" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "Velocidad del ventilador para puentes" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "Ángulo de puente" -#: src/libslic3r/PrintConfig.cpp:194 +#: src/libslic3r/PrintConfig.cpp:204 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Anulación de ángulo de puente. Si se deja en cero, el ángulo de puente se calculará automáticamente. De lo contrario, el ángulo proporcionado se usará para todos los puentes. Use 180 ° para ángulo con cero grados." @@ -980,16 +1030,16 @@ msgstr "Anulación de ángulo de puente. Si se deja en cero, el ángulo de puent msgid "Bridging volumetric" msgstr "Puente volumétrico" -#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "Balsa" -#: src/libslic3r/PrintConfig.cpp:234 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "Ancho de la balsa" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1719 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "Buscar" @@ -1005,15 +1055,15 @@ msgstr "Descripción de los botones y de los colores del texto" msgid "by the print profile maximum" msgstr "por el máximo perfil de impresión" -#: src/slic3r/GUI/Preferences.cpp:115 +#: src/slic3r/GUI/Preferences.cpp:113 msgid "Camera" msgstr "Cámara" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "Vista de cámara" -#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Cancelar" @@ -1022,11 +1072,11 @@ msgstr "Cancelar" msgid "Cancel selected" msgstr "Cancelar selección" -#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Cancelado" -#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Cancelando" @@ -1034,15 +1084,15 @@ msgstr "Cancelando" msgid "Cancelling..." msgstr "Cancelando..." -#: src/libslic3r/Flow.cpp:55 +#: src/libslic3r/Flow.cpp:61 msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." msgstr "No se puede calcular el ancho de extrusión para %1%: Variable \"%2%\" no accesible." -#: src/slic3r/GUI/Tab.cpp:3057 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "No se puede sobre-escribir un perfil del sistema." -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "No puedo sobre-escribir un valor externo." @@ -1050,7 +1100,7 @@ msgstr "No puedo sobre-escribir un valor externo." msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "No se puede proceder sin puntos de soporte! Añade puntos de soporte o desactiva la generación de soportes." -#: src/slic3r/GUI/Tab.cpp:1832 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "Capacidades" @@ -1058,60 +1108,60 @@ msgstr "Capacidades" msgid "Capture a configuration snapshot" msgstr "Captura una instantánea de configuración" -#: src/libslic3r/PrintConfig.cpp:3409 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "Centro" -#: src/libslic3r/PrintConfig.cpp:3410 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "Centrar la impresión alrededor del centro dado." -#: src/slic3r/GUI/Tab.cpp:1726 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Archivos de certificados (*.crt, *.pem)|*.crt;*.pem|Todos|*.*" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 msgid "Change camera type (perspective, orthographic)" msgstr "Cambiar tipo de cámara (perspectiva, ortográfica)" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 msgid "Change drainage hole diameter" msgstr "Cambiar diámetro orificio de drenaje" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "Cambiar extrusor" -#: src/slic3r/GUI/GUI_ObjectList.cpp:534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "Cambiar Extrusor" -#: src/slic3r/GUI/DoubleSlider.cpp:1113 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Change extruder (N/A)" msgstr "Cambiar extrusor (N/A)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "Cambiar Extrusores" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 -#, possible-c-format +#, c-format msgid "Change Option %s" msgstr "Cambiar opción %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "Cambiar Tipo de Pieza" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "Cambiar diámetro de la cabeza de punta" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "Cambiar número de instancias al objeto seleccionado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "Cambiar tipo" @@ -1123,7 +1173,7 @@ msgstr "Registro de cambios && Descargar" msgid "Changing of an application language" msgstr "Cambio de idioma de una aplicación" -#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Comprueba si hay actualizaciones de la aplicación" @@ -1133,13 +1183,13 @@ msgstr "Comprueba si hay actualizaciones de configuración" #: src/slic3r/GUI/GUI_App.cpp:802 msgid "Check for updates" -msgstr "Comprueba si hay actualizaciones" +msgstr "Comprueba si hay act&ualizaciones" #: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Escoge un archivo para importar la textura de la base de impresión (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:775 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Elija un archivo para laminar (STL / OBJ / AMF / 3MF / PRUSA):" @@ -1159,7 +1209,7 @@ msgstr "Selecciona un archivo (3MF/AMF):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Escoja uno o mas archivos (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:896 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "Selecciona el tipo de firmware que usa tu impresora." @@ -1167,23 +1217,23 @@ msgstr "Selecciona el tipo de firmware que usa tu impresora." msgid "Circular" msgstr "Circular" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "Click con botón derecho para abrir Historial" -#: src/slic3r/GUI/GUI_ObjectList.cpp:402 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "Click en el icono para cambiar las propiedades del objeto imprimible" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "Click en el icono para cambiar los ajustes del objeto" -#: src/slic3r/GUI/Plater.cpp:340 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "Clic para cambiar el ajuste inicial" -#: src/libslic3r/PrintConfig.cpp:242 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "Enlazaar objetos de varias partes" @@ -1193,39 +1243,39 @@ msgid "Clipping of view" msgstr "Recorte de la vista" #: src/slic3r/GUI/FirmwareDialog.cpp:852 -#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Cerrar" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 msgid "Closing distance" msgstr "Distancia de cierre" -#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 -#: src/libslic3r/PrintConfig.cpp:582 +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Color" -#: src/slic3r/GUI/DoubleSlider.cpp:972 +#: src/slic3r/GUI/DoubleSlider.cpp:1005 msgid "Color change (\"%1%\")" msgstr "Cambio de color (\"%1%\")" -#: src/slic3r/GUI/DoubleSlider.cpp:973 +#: src/slic3r/GUI/DoubleSlider.cpp:1006 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Cambio de color (\"%1%\") para el Extrusor %2%" #: src/slic3r/GUI/GLCanvas3D.cpp:995 -#, possible-c-format +#, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Cambio de color para Extrusor %d en %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 #: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Color Print" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "Altura de Colorprint" @@ -1245,23 +1295,23 @@ msgstr "Comandos" msgid "Comment:" msgstr "Comentario:" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "Perfiles de impresión compatibles" -#: src/libslic3r/PrintConfig.cpp:276 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "Condición de perfiles de impresión compatibles" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "Impresoras compatibles" -#: src/libslic3r/PrintConfig.cpp:261 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "Condición de impresoras compatibles" -#: src/libslic3r/PrintConfig.cpp:294 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "Completar objetos individuales" @@ -1277,15 +1327,15 @@ msgstr "compresión fallida" msgid "Concentric" msgstr "Concentrico" -#: src/slic3r/GUI/ConfigWizard.cpp:2113 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "&Asistente de configuración" -#: src/slic3r/GUI/ConfigWizard.cpp:2116 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" -msgstr "&Ayudante de configuración" +msgstr "Ayudante de co&nfiguración" -#: src/slic3r/GUI/ConfigWizard.cpp:2112 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "Asistente de Configuración" @@ -1305,15 +1355,11 @@ msgstr "Actualización de configuración" msgid "Configuration update is available" msgstr "Hay disponible una actualización de la Configuración" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Configuration update is necessary to install" -msgstr "Es necesario instalar una actualización de configuración." - #: src/slic3r/GUI/UpdateDialogs.cpp:303 msgid "Configuration updates" msgstr "Actualizaciones de la configuración" -#: src/slic3r/GUI/ConfigWizard.cpp:2115 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "Asistente de configuración" @@ -1321,11 +1367,11 @@ msgstr "Asistente de configuración" msgid "Confirmation" msgstr "Confirmación" -#: src/slic3r/GUI/Tab.cpp:1929 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "Conexión fallida." -#: src/slic3r/GUI/Tab.cpp:3612 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "Conexión de las varillas de soporte y uniones" @@ -1345,7 +1391,7 @@ msgstr "La conexión a FlashAir funciona correctamente y la carga está habilita msgid "Connection to OctoPrint works correctly." msgstr "La conexión a OctoPrint funciona correctamente." -#: src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "La conexión con la impresora funciona correctamente." @@ -1361,11 +1407,11 @@ msgstr "Distancia Z de contacto" msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Contribuciones de Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik y muchos otros." -#: src/libslic3r/PrintConfig.cpp:2650 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Controla el tipo de puente entre dos pilares adyacentes. Puede ser zig-zag, cruzado(doble zig-zag) o dinámico que cambiará automáticamente entre los dos primeros dependiendo de la distancia de los dos pilares." -#: src/slic3r/GUI/Tab.cpp:1446 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "Enfriamiento" @@ -1377,19 +1423,23 @@ msgstr "Los movimientos de enfriamiento se están acelerando gradualmente comenz msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Los movimientos de enfriamiento se están acelerando gradualmente hacia esta velocidad." -#: src/slic3r/GUI/Tab.cpp:1467 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "Umbrales de enfriamiento" -#: src/libslic3r/PrintConfig.cpp:317 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "Longitud del tubo de enfriamiento" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "Posición del tubo de refrigeración" -#: src/slic3r/GUI/GLCanvas3D.cpp:4554 +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "Copias del objeto seleccionado" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "Copiar" @@ -1397,7 +1447,7 @@ msgstr "Copiar" msgid "Copy selection to clipboard" msgstr "Copiar selección al portapapeles" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" @@ -1405,36 +1455,48 @@ msgstr "Copiar al portapapeles" msgid "Copy to Clipboard" msgstr "Copiar al portapapeles" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "La copia del código G temporal ha finalizado, pero el código exportado no se pudo abrir durante la verificación de la copia. El código G de salida está en %1%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "La copia del código G temporal ha finalizado, pero el código original en %1% no se pudo abrir durante la verificación de copia. El código G de salida está en%2%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Error al copiar el código G temporal al código G de salida" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "La copia del código G tempolar al código G de salida falló. ¿Tal vez la tarjeta SD tiene la escritura bloqueada?" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "La copia del código G temporal al código G de salida ha fallado. Puede haber un problema con el dispositivo de destino, intenta exportar nuevamente o usa un dispositivo diferente. El código G de salida dañado está en %1%.tmp." + #: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Copyright" -#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "Corrección para la expansión" -#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "Correcciones" -#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "Coste" -#: src/slic3r/GUI/Plater.cpp:241 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "Coste (dinero)" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "¡No se pudieron organizar los objetos modelo! Algunas geometrías pueden ser inválidas." @@ -1458,7 +1520,7 @@ msgstr "No puedo conectar con OctoPrint" msgid "Could not connect to Prusa SLA" msgstr "No se pudo conectar con la Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1689 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "No pude conseguir una referencia válida de gestor de impresora" @@ -1478,15 +1540,15 @@ msgstr "Las ranuras de menos de dos veces el radio de cierre de huecos se rellen msgid "CRC-32 check failed" msgstr "Comprobación con CRC-32 fallida" -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "Crear pad alrededor del objeto e ignorar la elevación del soporte" -#: src/libslic3r/PrintConfig.cpp:2715 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "Ángulo crítico" -#: src/libslic3r/PrintConfig.cpp:2659 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "Cruzado" @@ -1495,28 +1557,28 @@ msgid "Cubic" msgstr "Cúbico" #: src/slic3r/GUI/wxExtensions.cpp:704 -#, possible-c-format +#, c-format msgid "Current mode is %s" msgstr "El modo actual es %s" -#: src/slic3r/GUI/Tab.cpp:959 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "El preajuste fue heredado del preajuste predeterminado." -#: src/slic3r/GUI/Tab.cpp:962 -#, possible-c-format -msgid "Current preset is inherited from:\n\t%s" -msgstr "El preajuste fue heredado de:\n%s" +#: src/slic3r/GUI/Tab.cpp:960 +#, c-format +msgid "" +"Current preset is inherited from:\n" +"\t%s" +msgstr "" +"El preajuste fue heredado de:\n" +"%s" #: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Versión actual:" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "Cúspide (mm)" - -#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Personalizado" @@ -1525,18 +1587,14 @@ msgstr "Personalizado" msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Un archivo de certificado CA personalizado puede ser especificado para conexiones HTTPS OctoPrint, en formato crt/pem. Si se deja en blanco, el repositorio de certificados OS CA será usado." -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "Código G personalizado" -#: src/slic3r/GUI/DoubleSlider.cpp:1591 +#: src/slic3r/GUI/DoubleSlider.cpp:1619 msgid "Custom G-code on current layer (%1% mm)." msgstr "Código G personalizado en la capa actual (%1% mm)." -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "Gcode personalizado en la capa actual (%1% mm)." - #: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Impresora customizada" @@ -1550,19 +1608,19 @@ msgid "Custom profile name:" msgstr "Nombre impresora customizada:" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "Cortar" -#: src/slic3r/GUI/Plater.cpp:4801 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "Cortar por el Plano" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "Cortar modelo a una Z dada." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "Cilindro" @@ -1570,11 +1628,11 @@ msgstr "Cilindro" msgid "D&eselect all" msgstr "D&eseleccionar todo" -#: src/libslic3r/PrintConfig.cpp:3489 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "Directorio de datos" -#: src/slic3r/GUI/Mouse3DController.cpp:332 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "Zona muerta:" @@ -1582,23 +1640,23 @@ msgstr "Zona muerta:" msgid "decompression failed or archive is corrupted" msgstr "descompresión fallida o archivo está dañado" -#: src/slic3r/GUI/Plater.cpp:4735 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" msgstr "Reducir Instancias" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "Por defecto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 #: src/slic3r/GUI/ObjectDataViewModel.cpp:490 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "por defecto" @@ -1610,53 +1668,53 @@ msgstr "Ángulo base predeterminado para orientación de relleno. Se aplicará s msgid "Default extrusion width" msgstr "Ancho de extrusión por defecto" -#: src/slic3r/GUI/Tab.cpp:989 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "perfil de filamento por defecto" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "Perfil de filamento por defecto" -#: src/libslic3r/PrintConfig.cpp:336 +#: src/libslic3r/PrintConfig.cpp:346 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Perfil de filamento por defecto asociado con el perfil de impresora actual. Al seleccionar el perfil de impresora actual se activará este perfil de filamento." -#: src/slic3r/GUI/Tab.cpp:2903 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2919 +#, c-format msgid "Default preset (%s)" msgstr "Ajustes por defecto (%s)" -#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "Color de impresión predeterminado" -#: src/slic3r/GUI/Tab.cpp:986 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "perfil de impresión por defecto" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "Perfil de impresión por defecto" -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 -#: src/libslic3r/PrintConfig.cpp:2594 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Perfil de impresión por defecto asociado con el perfil de impresora actual. Al seleccionar el perfil de impresora actual se activará este perfil de impresión." -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "perfil de material de SLA por defecto" -#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "Perfil de material de SLA predeterminado" -#: src/slic3r/GUI/Tab.cpp:1007 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "perfil de impresión de SLA por defecto" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "valor por defecto" @@ -1664,11 +1722,11 @@ msgstr "valor por defecto" msgid "Define a custom printer profile" msgstr "Definir un perfil de impresora personalizado" -#: src/libslic3r/PrintConfig.cpp:2789 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Define la profundidad de la cavidad del pad. Establecerer a cero para deshabilitar la cavidad. Ten cuidado al habilitar esta función, ya que algunas resinas pueden producir un efecto de succión extremo dentro de la cavidad, lo que dificulta el despegado de la impresión de la lámina de la cuba." -#: src/slic3r/GUI/GUI_ObjectList.cpp:344 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "facetas degeneradas" @@ -1676,114 +1734,103 @@ msgstr "facetas degeneradas" msgid "Delay after unloading" msgstr "Retardo tras la descarga" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "borra" -#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "Borra" #: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" -msgstr "Borrar &todo" +msgstr "Borr&ar todo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "Borrar todo" - -#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "Eliminar todo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "Eliminar todas las instancias del Objeto" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "Eliminar cambio de color" -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "Eliminar cambio de color para Extrusor %1%" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "Eliminar marcador de cambio de color para la capa actual" -#: src/slic3r/GUI/DoubleSlider.cpp:1491 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "Eliminar código G personalizado" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 msgid "Delete drainage hole" msgstr "Eliminar orificio de drenaje" -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "Borrar cambio de extrusor a \"%1%\"" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "Eliminar Rango de Alturas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" msgstr "Eliminar Instancia" -#: src/slic3r/GUI/Plater.cpp:2696 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "Eliminar Objeto" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 -#, possible-c-format +#, c-format msgid "Delete Option %s" msgstr "Eliminar Opción %s" -#: src/slic3r/GUI/DoubleSlider.cpp:1490 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "Eliminar pausa de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Delete selected" msgstr "Eliminar selección" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "Eliminar Selección" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "Eliminar Objeto Seleccionado" -#: src/slic3r/GUI/Plater.cpp:4692 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "Eliminar Objetos Seleccionados" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "Eliminar Ajustes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "Eliminar Subobjeto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "Borra punto de apoyo" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "Borra este ajuste" -#: src/slic3r/GUI/DoubleSlider.cpp:1001 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "Eliminar marca de verificación - Click izquierdo o presionar tecla \"-\"" -#: src/slic3r/GUI/DoubleSlider.cpp:1489 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete tool change" msgstr "Eliminar cambio de herramienta" @@ -1795,8 +1842,8 @@ msgstr "Borra todos los objetos" msgid "Deletes the current selection" msgstr "Borrar la selección actual" -#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 -#: src/libslic3r/PrintConfig.cpp:2495 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "Densidad" @@ -1804,9 +1851,9 @@ msgstr "Densidad" msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Densidad de relleno interior, expresado en el rango 0% - 100%." -#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "Dependencias" @@ -1818,7 +1865,7 @@ msgstr "Velocidad de deretracción" msgid "Deselect all" msgstr "Deseleccionar todo" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "Deseleccionar mediante rectángulo" @@ -1838,15 +1885,15 @@ msgstr "Detecta muros de ancho único (partes donde dos extrusiones no se ajusta msgid "Detect thin walls" msgstr "Detecta paredes delgadas" -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Detectadas piezas desconectadas en el(los) modelo(s) dado(s) y divídido(s) en objetos separados." -#: src/slic3r/GUI/Plater.cpp:2352 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "Datos avanzados detectados" -#: src/slic3r/GUI/Mouse3DController.cpp:306 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "Dispositivo:" @@ -1854,15 +1901,15 @@ msgstr "Dispositivo:" msgid "Diameter" msgstr "Diámetro" -#: src/libslic3r/PrintConfig.cpp:2685 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "Diámetro en mm del pilar de la base" -#: src/libslic3r/PrintConfig.cpp:2641 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "Diámetro en mm de los pilares de soporte" -#: src/libslic3r/PrintConfig.cpp:2613 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "Diámetro de la parte en punta de la cabeza" @@ -1874,7 +1921,7 @@ msgstr "Diámetro de la base de impresión. Se supone que el origen (0,0) está msgid "Direction" msgstr "Dirección" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "Desactivar ventilador para la primera" @@ -1882,24 +1929,20 @@ msgstr "Desactivar ventilador para la primera" msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Desactiva la retracción cuando la trayectoria de desplazamiento no supera los perímetros de la capa superior (y, por lo tanto, cualquier goteo probablemente será invisible)." -#: src/slic3r/GUI/DoubleSlider.cpp:925 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "Descartar todos los cambios personalizados" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "Descartar los cambios" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "¿Descartar los cambios y continuar de todos modos?" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "Desplazamiento (mm)" - -#: src/slic3r/GUI/Tab.cpp:2076 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "Pantalla" @@ -1927,7 +1970,7 @@ msgstr "Espejo vertical de la pantalla" msgid "Display width" msgstr "Anchura de la pantalla" -#: src/libslic3r/PrintConfig.cpp:367 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "Distancia entre copias" @@ -1935,7 +1978,7 @@ msgstr "Distancia entre copias" msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Distancia entre falda y objeto(s). Ajuste esto a cero para unir la falda a los objetos y obtener un borde para una mejor adhesión." -#: src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Distancia entre dos palitos de apoyo entre la pieza y la base generada." @@ -1947,7 +1990,7 @@ msgstr "Distancia del objeto" msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Distancia de la coordenada del código G de 0,0 de la esquina frontal izquierda del rectángulo." -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Distancia desde el centro del tubo de enfriado a la punta del extrusor." @@ -1955,22 +1998,28 @@ msgstr "Distancia desde el centro del tubo de enfriado a la punta del extrusor." msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Distancia de la punta del extrusor desde la posición donde el filamento es colocado cuando se descarga. Esto debería coincidir con el valor en el firmware de la impresora." -#: src/libslic3r/PrintConfig.cpp:368 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Distancia utilizada para la función de organización automática de la base." -#: src/libslic3r/PrintConfig.cpp:3471 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "No fallar si el archivo suministrado para --load no existe." -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "No reorganizar los modelos dados antes de fusionar y mantener sus coordenadas XY originales." -#: src/slic3r/GUI/Field.cpp:235 -#, possible-c-format -msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." -msgstr "¿Quieres decir %s%% en vez de %s %s?\nEscoge SI si deseas cambiar este valor a %s%%,\no NO si estás seguro que %s %s es el valor correcto." +#: src/slic3r/GUI/Field.cpp:240 +#, c-format +msgid "" +"Do you mean %s%% instead of %s %s?\n" +"Select YES if you want to change this value to %s%%, \n" +"or NO if you are sure that %s %s is a correct value." +msgstr "" +"¿Quieres decir %s%% en vez de %s %s?\n" +"Escoge SI si deseas cambiar este valor a %s%%,\n" +"o NO si estás seguro que %s %s es el valor correcto." #: src/slic3r/GUI/ConfigWizard.cpp:1761 msgid "Do you want to automatic select default filaments?" @@ -1980,7 +2029,7 @@ msgstr "¿Deseas seleccionar automáticamente filamentos predeterminados?" msgid "Do you want to automatic select default materials?" msgstr "¿Deseas seleccionar automáticamente materiales predeterminados?" -#: src/slic3r/GUI/DoubleSlider.cpp:1893 +#: src/slic3r/GUI/DoubleSlider.cpp:1920 msgid "Do you want to delete all saved tool changes?" msgstr "¿Desea eliminar todos los cambios de herramienta guardados?" @@ -1988,15 +2037,15 @@ msgstr "¿Desea eliminar todos los cambios de herramienta guardados?" msgid "Do you want to proceed?" msgstr "¿Deseas continuar?" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "Do you want to retry" msgstr "Quieres volver a intentarlo" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "¿Deseas guardar tus puntos de soporte editados manualmente?" -#: src/libslic3r/PrintConfig.cpp:3414 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "No organizar" @@ -2004,7 +2053,7 @@ msgstr "No organizar" msgid "Don't notify about new releases any more" msgstr "No quiero recibir avisos de nuevas versiones" -#: src/libslic3r/PrintConfig.cpp:359 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "No soportar puentes" @@ -2012,17 +2061,17 @@ msgstr "No soportar puentes" msgid "Downgrade" msgstr "Volver a una versión anterior" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "Arrastra" -#: src/libslic3r/SLAPrintSteps.cpp:42 +#: src/libslic3r/SLAPrintSteps.cpp:44 msgid "Drilling holes into model." msgstr "Taladrando agujeros en el modelo." -#: src/libslic3r/SLAPrintSteps.cpp:163 +#: src/libslic3r/SLAPrintSteps.cpp:199 msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." msgstr "Perforación de agujeros en la malla fallida. Esto generalmente es causado por un modelo roto. Intenta arreglarlo primero." @@ -2031,11 +2080,11 @@ msgstr "Perforación de agujeros en la malla fallida. Esto generalmente es causa msgid "Drop to bed" msgstr "Colocar en la Cama" -#: src/libslic3r/PrintConfig.cpp:3418 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "Duplicar" -#: src/libslic3r/PrintConfig.cpp:3423 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "Duplicar por cuadrícula" @@ -2043,51 +2092,51 @@ msgstr "Duplicar por cuadrícula" msgid "During the other layers, fan" msgstr "Durante las otras capas, el ventilador" -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "Dinámico" -#: src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "E&xportar" -#: src/slic3r/GUI/GUI_ObjectList.cpp:345 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "esquimas reparadas" -#: src/slic3r/GUI/DoubleSlider.cpp:1480 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "Editar color" -#: src/slic3r/GUI/DoubleSlider.cpp:933 +#: src/slic3r/GUI/DoubleSlider.cpp:960 msgid "Edit current color - Right click the colored slider segment" -msgstr "Editar color actual - Clic derecho en el segmento de color deslizante " +msgstr "Editar color actual - Clic derecho en el segmento de color deslizante" -#: src/slic3r/GUI/DoubleSlider.cpp:1482 +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "Editar código G personalizado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "Editar Rango de Alturas" -#: src/slic3r/GUI/DoubleSlider.cpp:1481 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "Editar mensaje de pausa de impresión" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 msgid "Edit tick mark - Ctrl + Left click" msgstr "Editar la marca - Ctrl+ Click izquierdo" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1038 msgid "Edit tick mark - Right click" msgstr "Editar marca de verificación - Clic derecho" -#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "Edición" -#: src/libslic3r/PrintConfig.cpp:375 +#: src/libslic3r/PrintConfig.cpp:118 msgid "Elephant foot compensation" msgstr "Compensación del pie de elefante" @@ -2107,12 +2156,12 @@ msgstr "Emitir M73 P[porcentaje impreso] R[tiempo restante en minutos] en interv msgid "Empty layers detected, the output would not be printable." msgstr "Capas vacías detectadas, la salida no sería imprimible." -#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 #: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Habilitar" -#: src/libslic3r/PrintConfig.cpp:303 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "Habilitar el enfriamiento automático" @@ -2120,7 +2169,7 @@ msgstr "Habilitar el enfriamiento automático" msgid "Enable fan if layer print time is below" msgstr "Habilitar ventilador si el tiempo de impresión de la capa está por debajo" -#: src/libslic3r/PrintConfig.cpp:2899 +#: src/libslic3r/PrintConfig.cpp:2908 msgid "Enable hollowing" msgstr "Habilitar vaciado" @@ -2148,7 +2197,7 @@ msgstr "Habilitar la función de altura de capa variable" msgid "Enable vertical mirroring of output images" msgstr "Activar espejo vertical de salida de imágenes" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "Código G final" @@ -2170,39 +2219,39 @@ msgstr "En cola" msgid "Ensure vertical shell thickness" msgstr "Asegurar el espesor de la carcasa vertical" -#: src/slic3r/GUI/DoubleSlider.cpp:1590 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "Ingresa el código G personalizado utilizado en la capa actual" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "Introduce un nuevo nombre" -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "Ingresa el mensaje corto que se muestra en la pantalla de la impresora durante la pausa de impresión" - -#: src/slic3r/GUI/DoubleSlider.cpp:1606 +#: src/slic3r/GUI/DoubleSlider.cpp:1634 msgid "Enter short message shown on Printer display when a print is paused" msgstr "Introduce un mensaje corto a mostrar en la pantalla de la impresora cuando la impresión se ponga en pausa" -#: src/slic3r/GUI/ConfigWizard.cpp:1048 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Introduce la temperatura de la base necesaria para que adhiera el filamento a la base calefactable." -#: src/slic3r/GUI/ConfigWizard.cpp:980 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "Introduce el diámetro de tu filamento." -#: src/slic3r/GUI/ConfigWizard.cpp:967 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Introduce el diámetro de la boquilla del fusor de tu impresora." -#: src/slic3r/GUI/DoubleSlider.cpp:1622 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 msgid "Enter the height you want to jump to" msgstr "Introduce la altura a la que deseas saltar" -#: src/slic3r/GUI/ConfigWizard.cpp:1034 +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "Introduce el número de copias:" + +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "Introduce la temperatura necesaria para extruir tu filamento." @@ -2218,27 +2267,27 @@ msgstr "Ingrese su densidad de filamento aquí. Esto es solo para información e msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Ingrese el diámetro de su fila aquí. Se requiere una buena precisión, por lo tanto, use un calibre y realice múltiples mediciones a lo largo del filamento, luego calcule el promedio." -#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Error" #: src/slic3r/GUI/FirmwareDialog.cpp:645 -#, possible-c-format +#, c-format msgid "Error accessing port at %s: %s" msgstr "Error al acceder al puerto en %s: %s" -#: src/slic3r/GUI/Plater.cpp:3441 +#: src/slic3r/GUI/Plater.cpp:3433 msgid "Error during reload" msgstr "Error al recargar" -#: src/slic3r/GUI/Plater.cpp:5073 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5043 +#, c-format msgid "Error exporting 3MF file %s" msgstr "Error al exportar archivo 3MF %s" -#: src/slic3r/GUI/Plater.cpp:5025 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5005 +#, c-format msgid "Error exporting AMF file %s" msgstr "Error exportando archivo AMF %s" @@ -2246,7 +2295,7 @@ msgstr "Error exportando archivo AMF %s" msgid "Error Message" msgstr "Mensaje de Error" -#: src/slic3r/GUI/AppConfig.cpp:118 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Error al analizar el archivo de configuración de PrusaSlicer, probablemente está dañado. Intenta eliminar manualmente el archivo para recuperarse del error. Tus perfiles de usuario no se verán afectados." @@ -2258,7 +2307,7 @@ msgstr "Error al cargar a la impresora:" msgid "Error with zip archive" msgstr "Error con el archivo ZIP" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "¡Error!" @@ -2267,7 +2316,7 @@ msgid "Error! Invalid model" msgstr "Error! Modelo inválido" #: src/slic3r/GUI/FirmwareDialog.cpp:647 -#, possible-c-format +#, c-format msgid "Error: %s" msgstr "Error: %s" @@ -2275,12 +2324,12 @@ msgstr "Error: %s" msgid "ERROR: not enough resources to execute a new job." msgstr "ERROR: no hay suficientes recursos para ejecutar el trabajo." -#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 -#: src/slic3r/GUI/Plater.cpp:1255 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "Tiempo estimado de impresión" -#: src/slic3r/GUI/Plater.cpp:499 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "En todos los sitios" @@ -2292,16 +2341,16 @@ msgstr "a excepción de las %1% primeras capas." msgid "except for the first layer." msgstr "a excepción de la primera capa." -#: src/libslic3r/Print.cpp:1373 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "%1%=%2% mm excesivos para ser imprimible con un nozzle de diámetro de %3% mm" #: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 -#, possible-c-format +#, c-format msgid "Exit %s" msgstr "Salir %s" -#: src/libslic3r/PrintConfig.cpp:361 +#: src/libslic3r/PrintConfig.cpp:371 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Opción experimental para evitar que se genere material de soporte debajo de las áreas con puente." @@ -2313,7 +2362,7 @@ msgstr "Opción experimental para ajustar el flujo para salientes (se usará el msgid "Expert" msgstr "Experto" -#: src/slic3r/GUI/ConfigWizard.cpp:823 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "Modo experto" @@ -2321,7 +2370,7 @@ msgstr "Modo experto" msgid "Expert View Mode" msgstr "Modo de visualización experto" -#: src/slic3r/GUI/Plater.cpp:5555 +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "Exportar" @@ -2329,15 +2378,15 @@ msgstr "Exportar" msgid "Export &Config" msgstr "Exportar &Configuración" -#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" -msgstr "Exportar &código G" +msgstr "Exportar código &G" #: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "Exportar &trayectorias de herramientas como OBJ" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "Exportar 3MF" @@ -2345,15 +2394,15 @@ msgstr "Exportar 3MF" msgid "Export all presets to file" msgstr "Exportar todos los preajustes al archivo" -#: src/libslic3r/PrintConfig.cpp:3328 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "Exportar AMF" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "Exportar archivo AMF:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "Exportar como STL" @@ -2363,7 +2412,7 @@ msgstr "Exportar configuración" #: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" -msgstr "Exportar &Conjunto de Ajustes" +msgstr "Exportar Conjunto de A&justes" #: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" @@ -2385,7 +2434,7 @@ msgstr "Exportar plataforma actual como STL" msgid "Export current plate as STL including supports" msgstr "Exportar la plataforma actual como STL incluyendo soportes" -#: src/slic3r/GUI/Plater.cpp:3673 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "Error al exportar" @@ -2393,21 +2442,20 @@ msgstr "Error al exportar" msgid "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Exportar nombres de ruta completos de las fuentes de los modelos y de piezas a archivos 3mf y amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 -#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "Exportar código G" -#: src/libslic3r/PrintConfig.cpp:3305 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "Exportar OBJ" -#: src/slic3r/GUI/Plater.cpp:2594 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "Exportar archivo OBJ:" -#: src/slic3r/Utils/FixModelByWin10.cpp:369 -#: src/slic3r/Utils/FixModelByWin10.cpp:374 +#: src/slic3r/Utils/FixModelByWin10.cpp:368 msgid "Export of a temporary 3mf file failed" msgstr "La exportación de un archivo temporal de 3mf falló" @@ -2423,43 +2471,43 @@ msgstr "Exportar plataforma como &STL" msgid "Export plate as STL &including supports" msgstr "Exportar plataforma como STL &incluyendo soportes" -#: src/libslic3r/PrintConfig.cpp:3317 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "Exportar SLA" -#: src/slic3r/GUI/Preferences.cpp:73 +#: src/slic3r/GUI/Preferences.cpp:72 msgid "Export sources full pathnames to 3mf and amf" msgstr "Exportar nombres de ruta completos de las fuentes a 3mf y amf" -#: src/libslic3r/PrintConfig.cpp:3333 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "Exportar STL" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "Exportar archivo STL:" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "Exportar el(los) objeto(s) como 3MF." -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "Exportar el(los) objeto(s) como AMF." -#: src/libslic3r/PrintConfig.cpp:3306 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "Exportar el(los) objeto(s) como OBJ." -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "Exportar el(los) objeto(s) como STL." -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "Exportar el objeto seleccionado como archivo STL" -#: src/slic3r/GUI/Plater.cpp:877 +#: src/slic3r/GUI/Plater.cpp:880 msgid "Export to SD card / Flash drive" msgstr "Exportar a tarjeta SD / tarjeta Flash" @@ -2467,7 +2515,7 @@ msgstr "Exportar a tarjeta SD / tarjeta Flash" msgid "Export toolpaths as OBJ" msgstr "Exportar trayectorias de herramientas como OBJ" -#: src/libslic3r/Print.cpp:1634 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "Exportando código G" @@ -2484,15 +2532,15 @@ msgstr "Exportando el modelo original" msgid "Exposition time is out of printer profile bounds." msgstr "Tiempo de exposición inicial fuera de los límites del perfil de impresión." -#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "Exposición" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "Tiempo de exposición" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Perímetro externo" @@ -2520,23 +2568,23 @@ msgstr "Distancia de carga adicional" msgid "Extra perimeters if needed" msgstr "Perímetros adicionales si es necesario" -#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 #: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extrusor" -#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 -#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 -#: src/libslic3r/GCode/PreviewData.cpp:445 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format msgid "Extruder %d" msgstr "Extrusor %d" -#: src/slic3r/GUI/DoubleSlider.cpp:978 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "El Extrusor (herramienta) se cambia al Extrusor \"%1%\"" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "Temperaturas del Extrusor y de la Base" @@ -2544,7 +2592,7 @@ msgstr "Temperaturas del Extrusor y de la Base" msgid "Extruder changed to" msgstr "El extrusor cambia a" -#: src/slic3r/GUI/Tab.cpp:1235 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "Distancia libre del extrusor (mm)" @@ -2564,8 +2612,8 @@ msgstr "Temperatura del extrusor para la primera capa. Si desea controlar la tem msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Temperatura del extrusor para capas después del primera. Ajuste esto a cero para desactivar los comandos de control de temperatura en la salida." -#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 @@ -2580,15 +2628,15 @@ msgstr "Eje de extrusión" msgid "Extrusion multiplier" msgstr "Multiplicador de extrusión" -#: src/slic3r/GUI/ConfigWizard.cpp:1038 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "Temperatura de Extrusión:" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "Ancho de extrusión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 #: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 #: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 #: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 @@ -2596,23 +2644,23 @@ msgstr "Ancho de extrusión" msgid "Extrusion Width" msgstr "Ancho de Extrusión" -#: src/slic3r/GUI/Plater.cpp:164 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "Facetas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:347 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "facetas añadidas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "facetas retiradas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:348 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "facetas invertidas" -#: src/libslic3r/PrintConfig.cpp:2508 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "Capas descoloridas" @@ -2632,11 +2680,11 @@ msgstr "Error al procesar la plantilla output_filename_format." msgid "Fan" msgstr "Ventilador" -#: src/slic3r/GUI/Tab.cpp:1458 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "Configuración del ventilador" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "Velocidad del ventilador" @@ -2656,33 +2704,33 @@ msgstr "Inclinación rápida" msgid "Fatal error" msgstr "Error fatal" -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 #: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Tipo de función" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "Tipos de funciones" -#: src/slic3r/GUI/ConfigWizard.cpp:1528 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "Impresoras de Tecnología FFF" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 -#: src/slic3r/GUI/Tab.cpp:1428 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "Filamento" -#: src/slic3r/GUI/Preset.cpp:1472 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "Filamento y diámetros de boquilla" -#: src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "Diámetro del filamento:" @@ -2698,7 +2746,7 @@ msgstr "Tiempo de carga de filamento" msgid "Filament notes" msgstr "Notas del filamento" -#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "Anulaciones de filamentos" @@ -2706,15 +2754,15 @@ msgstr "Anulaciones de filamentos" msgid "Filament parking position" msgstr "Posición de aparcar el filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "Selección Perfiles de Filamento" -#: src/slic3r/GUI/Tab.cpp:1473 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "Propiedades del filamento" -#: src/slic3r/GUI/Tab.hpp:354 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "Configuración del filamento" @@ -2730,7 +2778,7 @@ msgstr "Tiempo de descarga del filamento" msgid "filaments" msgstr "filamentos" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "Filamentos" @@ -2742,7 +2790,7 @@ msgstr "cierre del archivo fallido" msgid "file create failed" msgstr "creación del archivo fallida" -#: src/slic3r/GUI/MainFrame.cpp:793 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "Archivo no encontrado" @@ -2806,7 +2854,7 @@ msgstr "Patrón de relleno para el relleno superior. Esto solo afecta a la capa msgid "Finished" msgstr "Terminado" -#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "Firmware" @@ -2818,11 +2866,11 @@ msgstr "Flasheador de firmware" msgid "Firmware image:" msgstr "Imagen del firmware:" -#: src/slic3r/GUI/Tab.cpp:2573 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "Retracción del firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:892 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "Tipo de Firmware" @@ -2835,7 +2883,7 @@ msgstr "Primera capa" msgid "First layer height" msgstr "Altura de la primera capa" -#: src/libslic3r/Print.cpp:1418 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "La altura de primera capa no puede ser mayor que el diametro de la boquilla" @@ -2847,11 +2895,11 @@ msgstr "Velocidad de la primera capa" msgid "First layer volumetric" msgstr "Primera capa volumétrica" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "Reparar mediante Netfabb" -#: src/slic3r/GUI/Plater.cpp:3482 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "Reparar mediante NetFabb" @@ -2883,7 +2931,7 @@ msgstr "Flasheo en curso. ¡Por favor no desconecte la impresora!" msgid "Flashing succeeded!" msgstr "¡Exito al flashear!" -#: src/slic3r/GUI/Tab.cpp:1220 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "Flujo" @@ -2891,48 +2939,36 @@ msgstr "Flujo" msgid "flow rate is maximized" msgstr "se maximiza el flujo de material" -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "Para agregar códigor, usa el botón derecho del mouse y haz clic" - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "Para agregar un cambio de extrusor usa el botón izquierdo del ratón y haz clic" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "Para agregar un cambio de color, usa el botón izquierdo del ratón y haz clic" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" -msgstr "Para Borrar \"%1%\" código usa el clic del botón izquierdo del ratón\nPara Editar \"%1%\" código usa el clic del botón derecho del ratón" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" -msgstr "Para Eliminar el cambio de color, usa el botón izquierdo del ratón y haz clic\nPara Editar el color, usa el botón derecho del ratón y haz clic" - #: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Para más información visite por favor la página de nuestra wiki:" -#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "Sólo para modificadores de soportes" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3249 -msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." -msgstr "para el botón izquierdo: indica un preajuste que no es del sistema (o no predeterminado),\npara el botón derecho: indica que la configuración no se ha modificado." +#: src/slic3r/GUI/Tab.cpp:3265 +msgid "" +"for the left button: \tindicates a non-system (or non-default) preset,\n" +"for the right button: \tindicates that the settings hasn't been modified." +msgstr "" +"para el botón izquierdo: indica un preajuste que no es del sistema (o no predeterminado),\n" +"para el botón derecho: indica que la configuración no se ha modificado." #: src/slic3r/GUI/ConfigManipulation.cpp:136 -msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." -msgstr "Para que la Torre de Limpieza funcione con los soportes solubles, las capas de soporte\ndeben sincronizarse con las capas de objetos." +msgid "" +"For the Wipe Tower to work with the soluble supports, the support layers\n" +"need to be synchronized with the object layers." +msgstr "" +"Para que la Torre de Limpieza funcione con los soportes solubles, las capas de soporte\n" +"deben sincronizarse con las capas de objetos." -#: src/libslic3r/Print.cpp:1392 +#: src/libslic3r/Print.cpp:1396 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Para que la Torre de limpieza funcione con soportes solubles, las capas de soportes necesitan estar sincronizadas con las capas del objeto." -#: src/libslic3r/PrintConfig.cpp:2855 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "Forzar el pad alrededor del objeto en todas partes" @@ -2948,7 +2984,7 @@ msgstr "Forzar la generación de carcasas sólidas entre materiales / volúmenes msgid "From" msgstr "Desde" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "Desde la Lista de Objetos no puedes eliminar la última parte sólida del objeto." @@ -2960,19 +2996,23 @@ msgstr "Frontal" msgid "Front View" msgstr "Vista frontal" -#: src/slic3r/GUI/Tab.cpp:1015 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "nombre completo perfil" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "Código G" -#: src/slic3r/GUI/DoubleSlider.cpp:987 -msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." -msgstr "El código G asociado a esta marca de verificación está en conflicto con el modo de impresión.\nSu edición provocará cambios en los datos del Slider." +#: src/slic3r/GUI/DoubleSlider.cpp:1021 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"El código G asociado a esta marca de verificación está en conflicto con el modo de impresión.\n" +"Su edición provocará cambios en los datos del Slider." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "Archivo de código G exportado a %1%" @@ -2984,17 +3024,17 @@ msgstr "Tipo de código G" msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2496 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 #: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Relleno" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 -#: src/slic3r/GUI/Tab.cpp:2038 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "General" @@ -3010,23 +3050,23 @@ msgstr "Generar material de soporte" msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Generar material de soporte para la cantidad especificada de capas contando desde abajo, independientemente de si el material de soporte normal está habilitado o no e independientemente de cualquier umbral de ángulo. Es útil para obtener una mayor adhesión de los objetos que tienen una huella muy delgada o deficiente en la placa de construcción." -#: src/libslic3r/PrintConfig.cpp:2604 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "Generar soportes" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "Generar soportes para los modelos" -#: src/libslic3r/Print.cpp:1610 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "Generando balsa" -#: src/libslic3r/Print.cpp:1638 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "Generando G-code" -#: src/libslic3r/SLAPrintSteps.cpp:46 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "Generando pad" @@ -3034,7 +3074,7 @@ msgstr "Generando pad" msgid "Generating perimeters" msgstr "Generando perímetros" -#: src/libslic3r/Print.cpp:1602 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "Generando falda" @@ -3042,35 +3082,35 @@ msgstr "Generando falda" msgid "Generating support material" msgstr "Generando material de soporte" -#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "Generando puntos de soporte" -#: src/libslic3r/SLAPrintSteps.cpp:45 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "Generando soporte tipo árbol" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "Genérico" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 msgid "Gizmo cut" msgstr "Corte Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 msgid "Gizmo move" msgstr "Movimiento Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 msgid "Gizmo Place face on bed" msgstr "Gizmo Colocar cara en la base" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 msgid "Gizmo rotate" msgstr "Rotación Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 msgid "Gizmo scale" msgstr "Escala Gizmo" @@ -3078,25 +3118,25 @@ msgstr "Escala Gizmo" msgid "Gizmo SLA hollow" msgstr "Gizmo SLA vaciado" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 msgid "Gizmo SLA support points" msgstr "Puntos de soporte SLA Gizmo" -#: src/slic3r/GUI/GLCanvas3D.cpp:2945 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "Gizmo-Mover" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "Gizmo-Colocar en Cara" -#: src/slic3r/GUI/GLCanvas3D.cpp:3025 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "Gizmo-Rotar" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "Gizmo-Escalar" @@ -3108,7 +3148,7 @@ msgstr "Gizmos" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versión 3" -#: src/slic3r/GUI/ConfigWizard.cpp:981 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Se necesita buena precisión, así que usa un calibre y realiza varias medidas a lo largo del filamento, luego calcula la media." @@ -3116,11 +3156,11 @@ msgstr "Se necesita buena precisión, así que usa un calibre y realiza varias m msgid "Grid" msgstr "Rejilla" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "Manipulación de grupos" -#: src/slic3r/GUI/Preferences.cpp:137 +#: src/slic3r/GUI/Preferences.cpp:133 msgid "GUI" msgstr "IU" @@ -3128,7 +3168,7 @@ msgstr "IU" msgid "Gyroid" msgstr "Giroide" -#: src/slic3r/GUI/Tab.cpp:2921 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "tiene los siguientes cambios no guardados:" @@ -3144,7 +3184,7 @@ msgstr "La penetración de la cabeza no debaría ser mayor que el ancho de la ca msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura de base calefactable para la primera capa. Ajuste esto a cero para deshabilitar los comandos de control de temperatura de la cama en la salida." -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Altura" @@ -3160,32 +3200,32 @@ msgstr "Altura de la falda expresada en capas. Establezca esto en un valor alto msgid "Height of the display" msgstr "Altura de la pantalla" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "Modificador Rango de Alturas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "Rango de alturas" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "Alturas en las que se producirá un cambio de filamento." #: src/slic3r/GUI/ConfigWizard.cpp:433 -#, possible-c-format +#, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Hola, bienvenido a %s! Este %s te ayuda con la configuración inicial; sólo unos pocos ajustes y estarás preparado para imprimir." -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "Ayuda" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "Ayuda (opciones FFF)" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "Ayuda (opciones SLA)" @@ -3197,7 +3237,7 @@ msgstr "Aquí puedes ajustar el volumende purga requerida (mm³) para cualquier msgid "High extruder current on filament swap" msgstr "Alta intensidad en el extrusor durante el cambio de filamento" -#: src/slic3r/GUI/GLCanvas3D.cpp:282 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 msgid "Higher print quality versus higher print speed." msgstr "Mayor calidad de impresión contra mayor velocidad de impresión." @@ -3205,7 +3245,7 @@ msgstr "Mayor calidad de impresión contra mayor velocidad de impresión." msgid "Hilbert Curve" msgstr "Curva de Hilbert" -#: src/slic3r/GUI/Plater.cpp:1039 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "Mantén presionada la tecla Shift para laminar y exportar el código G" @@ -3217,15 +3257,15 @@ msgstr "Profundidad del orificio" msgid "Hole diameter" msgstr "Diámetro del orificio" -#: src/slic3r/GUI/Plater.cpp:2744 +#: src/slic3r/GUI/Plater.cpp:2760 msgid "Hollow" msgstr "Vaciado" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 msgid "Hollow and drill" msgstr "Vaciado y taladrado" -#: src/libslic3r/PrintConfig.cpp:2901 +#: src/libslic3r/PrintConfig.cpp:2910 msgid "Hollow out a model to have an empty interior" msgstr "Vaciado de un modelo para tener un interior vacío" @@ -3233,60 +3273,48 @@ msgstr "Vaciado de un modelo para tener un interior vacío" msgid "Hollow this object" msgstr "Vaciar este objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 -#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 -#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 -#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 -#: src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 msgid "Hollowing" msgstr "Vaciando el interior" -#: src/libslic3r/PrintConfig.cpp:2916 -msgid "Hollowing accuracy" -msgstr "Precisión" - -#: src/slic3r/GUI/Plater.cpp:2910 +#: src/slic3r/GUI/Plater.cpp:2926 msgid "Hollowing cancelled." msgstr "Vaciado cancelado." -#: src/libslic3r/PrintConfig.cpp:2925 -msgid "Hollowing closing distance" -msgstr "Distancia de cierre" - -#: src/slic3r/GUI/Plater.cpp:2911 +#: src/slic3r/GUI/Plater.cpp:2927 msgid "Hollowing done." msgstr "Vaciado acabado." -#: src/slic3r/GUI/Plater.cpp:2913 +#: src/slic3r/GUI/Plater.cpp:2929 msgid "Hollowing failed." msgstr "Vaciado fallido." -#: src/libslic3r/PrintConfig.cpp:2928 +#: src/libslic3r/PrintConfig.cpp:2937 msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." msgstr "El vaciado del interior se hace en dos pasos: primero, se calcula un interior imaginario (un desplazamiento más la distancia de cierre) en la pieza y luego, se hincha hasta alcanzar el desplazamiento especificado. Una distancia de cierre mayor hace que interior sea más redondeado. Si es cero, el interior se parecerá mucho al exterior." -#: src/libslic3r/SLAPrintSteps.cpp:41 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Hollowing model" msgstr "Vaciando modelo" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 msgid "Hollowing parameter change" msgstr "Cambio del parámetro de vaciar el interior" -#: src/libslic3r/PrintConfig.cpp:2906 -msgid "Hollowing thickness" -msgstr "Espesor de pared" - #: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Panal de abeja" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "Carcasas horizontales" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:245 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Ancho horizontal del borde que se imprimirá alrededor de cada objeto en la primera capa." @@ -3306,23 +3334,25 @@ msgstr "Nombre del equipo" msgid "Hostname, IP or URL" msgstr "Nombre de equipo, IP o URL" -#: src/slic3r/GUI/Tab.cpp:141 -msgid "Hover the cursor over buttons to find more information \nor click this button." +#: src/slic3r/GUI/Tab.cpp:139 +msgid "" +"Hover the cursor over buttons to find more information \n" +"or click this button." msgstr "Sitúa el cursos sobre los botones para más información o haz clic en este botón." -#: src/libslic3r/PrintConfig.cpp:2803 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" -msgstr "¿Hasta dónde debe extenderse el pad alrededor de la geometría contenida?" +msgstr "¿Hasta dónde debe extenderse el pad alrededor de la geometría contenida" -#: src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Cuanto deberían penetrar los conectores pequeños en el modelo del cuerpo." -#: src/libslic3r/PrintConfig.cpp:2622 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "Cuánto tiene que penetrar la cabeza del pin en la superficie del modelo" -#: src/libslic3r/PrintConfig.cpp:2746 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Cuanto deberían los soportes deberían levantar el objeto soportado. Si \"Pad alrededor del objeto\" está activado, este valor será ignorado." @@ -3334,12 +3364,18 @@ msgstr "Archivo HTTPS CA" msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "El archivo HTTPS CA es opcional. Sólo se necesita si vas a usar HTTPS con un certificado auto-firmado." -#: src/slic3r/GUI/Tab.cpp:1755 -#, possible-c-format -msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "Archivo CA HTTPS:\nEn este sistema,%s usa certificados HTTPS del almacén de certificados o llavero. \nPara usar un archivo CA personalizado, importa tu archivo CA al Almacén de Certificados/Llavero." +#: src/slic3r/GUI/Tab.cpp:1757 +#, c-format +msgid "" +"HTTPS CA File:\n" +" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" +" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "" +"Archivo CA HTTPS:\n" +"En este sistema,%s usa certificados HTTPS del almacén de certificados o llavero. \n" +"Para usar un archivo CA personalizado, importa tu archivo CA al Almacén de Certificados/Llavero." -#: src/slic3r/GUI/Preferences.cpp:226 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "Tamaño del icono respecto al tamaño original" @@ -3351,13 +3387,13 @@ msgstr "ID" msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Si se marca, los soportes se generarán automáticamente según el valor del umbral de voladizo. Si no se selecciona, los apoyos se generarán solo dentro de los volúmenes \"Forzar soportes\"." -#: src/slic3r/GUI/ConfigWizard.cpp:772 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:773 +#, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si está activado, %s comprueba si hay nuevas versiones de Slic3r PE en la red. Cuando hay disponible una nueva versión se muestra una notificación al iniciar la aplicación (nunca durante el uso del programa). Esto es sólo un mecanismo de notificación, sin que se realice una instalación automática." -#: src/slic3r/GUI/ConfigWizard.cpp:782 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:783 +#, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Si está activado, %s descargará actualizaciones de los ajustes del sistema mientras lo usamos. Estas actualizaciones se descargan a una ubicación temporal. Cuando hay un nuevo ajuste disponible, este se podrá incorporar y usar cuando la aplicación se vuelva a iniciar." @@ -3366,10 +3402,14 @@ msgid "If enabled, all printing extruders will be primed at the front edge of th msgstr "Si está habilitado, todos los extrusores de impresión estarán cebados en el borde frontal de la cama de impresión al comienzo de la impresión." #: src/slic3r/GUI/ConfigWizard.cpp:805 -msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." -msgstr "Si está activado, permite que la orden de Recarga desde el disco encuentre y cargue los archivos al invocarla. \nSi no está activado, la orden de Recarga desde el disco te pedirá que selecciones cada archivo en un cuadro de abrir archivo." +msgid "" +"If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "" +"Si está activado, permite que la orden de Recarga desde el disco encuentre y cargue los archivos al invocarla. \n" +"Si no está activado, la orden de Recarga desde el disco te pedirá que selecciones cada archivo en un cuadro de abrir archivo." -#: src/slic3r/GUI/Preferences.cpp:75 +#: src/slic3r/GUI/Preferences.cpp:74 msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." msgstr "Si está activado, permite que la orden de Recarga desde el disco busque y cargue los ficheros cuando se invoque." @@ -3377,11 +3417,11 @@ msgstr "Si está activado, permite que la orden de Recarga desde el disco busque msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si está habilitado, PrusaSlicer buscará las nuevas versiones de sí mismo en línea. Cuando una nueva versión esté disponible, se mostrará una notificación en el siguiente inicio de la aplicación (nunca durante el uso del programa). Esto es solo un mecanismo de notificación, no se realiza instalación automática." -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Si está activado, Slic3r descargará actualizaciones de los ajustes del sistema mientras lo usamos. Estas actualizaciones se descargan a una ubicación temporal. Cuando hay un nuevo ajuste disponible, este se podrá incorporar y usar cuando la aplicación se vuelva a iniciar." -#: src/slic3r/GUI/Preferences.cpp:108 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Si está activado, la escena 3D se mostrará en resolución Retina. Si tienes problemas de prestaciones 3D, desactivar esta opción te puede ayudar." @@ -3389,15 +3429,15 @@ msgstr "Si está activado, la escena 3D se mostrará en resolución Retina. Si t msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Si está habilitado, laTorre de Limpieza no se imprimirá en capas sin cambios de herramientas. En capas con cambio de herramienta, el extrusor viajará hacia abajo para imprimir la torre de limpieza. El usuario es responsable de garantizar que no haya colisión con la impresión." -#: src/slic3r/GUI/Preferences.cpp:131 +#: src/slic3r/GUI/Preferences.cpp:128 msgid "If enabled, use free camera. If not enabled, use constrained camera." -msgstr "Si está activado, usa la cámara libre. Si no está activado, usa la cámara restringida. " +msgstr "Si está activado, usa la cámara libre. Si no está activado, usa la cámara restringida." -#: src/slic3r/GUI/Preferences.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Si está activado, se usará una cámara en perspectiva. Si no está activo, se usará una cámara ortográfica." -#: src/slic3r/GUI/Preferences.cpp:149 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Si está activado, puedes cambiar el tamaño de la barra de herramientas manualmente." @@ -3461,7 +3501,7 @@ msgstr "Si su firmware no maneja el desplazamiento del extrusor, necesita el có msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Si su firmware requiere valores E relativos, verifique esto, de lo contrario, deje sin marcar. La mayoría de los firmwares usan valores absolutos." -#: src/libslic3r/PrintConfig.cpp:3470 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "Ignorar archivos de configuración inexistentes" @@ -3481,32 +3521,28 @@ msgstr "Importar configuración desde un &proyecto" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importar Configuración desde ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:4616 +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "Importar Objeto" -#: src/slic3r/GUI/Plater.cpp:4620 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "Importar Objetos" -#: src/slic3r/Utils/FixModelByWin10.cpp:390 +#: src/slic3r/Utils/FixModelByWin10.cpp:383 msgid "Import of the repaired 3mf file failed" msgstr "La importación del archivo 3mf reparado ha fallado" #: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" -msgstr "Importar STL/OBJ/AMF/3MF" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "Importar STL/OBJ/AMF/3MF sin config,manteniendo contenido base" +msgstr "Importar STL/OBJ/AM&F/3MF" #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importar STL/OBJ/AMF/3MF sin configuración, mantener la base" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 +#, c-format msgid "In this mode you can select only other %s Items%s" msgstr "En este modo, solo puede seleccionar otros %s Items %s" @@ -3515,42 +3551,48 @@ msgid "Incompatible bundles:" msgstr "Grupos incompatibles:" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -#, possible-c-format +#, c-format msgid "Incompatible with this %s" msgstr "Incompatible con este %s" -#: src/slic3r/GUI/Plater.cpp:4700 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" msgstr "Aumentar Instancias" -#: src/slic3r/GUI/GLCanvas3D.cpp:269 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "Incrementar/reducir area edición" -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2922 msgid "Indexing hollowed object" msgstr "Indexando pieza vaciada" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 -msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "indica que se modificaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados) para el grupo de opciones actual.\nHaz clic en el icono CANDADO DESBLOQUEADO para restablecer todos los ajustes del grupo de opciones actual a los valores del sistema (o predeterminados)." +#: src/slic3r/GUI/Tab.cpp:3258 +msgid "" +"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "" +"indica que se modificaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados) para el grupo de opciones actual.\n" +"Haz clic en el icono CANDADO DESBLOQUEADO para restablecer todos los ajustes del grupo de opciones actual a los valores del sistema (o predeterminados)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indica que los ajustes son los mismos que los valores del sistema (o por defecto) para el grupo de opciones actual" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3254 -msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +#: src/slic3r/GUI/Tab.cpp:3270 +msgid "" +"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "indica que los ajustes cambiaron y no son iguales que los ajustes grabados la última vez para el grupo de opciones actual. Haz clic en el símbolo de FLECHA ATRÁS para resetear todos los ajustes del grupo de opciones actual a los grabados la vez anterior." #: src/slic3r/GUI/ConfigManipulation.cpp:211 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 -#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 -#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 #: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 @@ -3576,12 +3618,12 @@ msgstr "Extrusor para el relleno" msgid "Infill/perimeters overlap" msgstr "Superposición de relleno/perímetros" -#: src/libslic3r/Print.cpp:1580 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "Rellenando capas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "Info" @@ -3593,15 +3635,15 @@ msgstr "Hereda el perfil" msgid "Initial exposition time is out of printer profile bounds." msgstr "El tiempo de exposición inicial está fuera de los límites del perfil de impresión." -#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "Tiempo de exposición inicial" -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "Altura de la capa inicial" -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "El valor introducido está fuera de rango" @@ -3611,11 +3653,11 @@ msgstr "Inspeccionar / activar instantáneas de configuración" #: src/slic3r/GUI/ObjectDataViewModel.cpp:60 #: src/slic3r/GUI/ObjectDataViewModel.cpp:216 -#, possible-c-format +#, c-format msgid "Instance %d" msgstr "Instancia %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "Manipulación de instancias" @@ -3623,8 +3665,8 @@ msgstr "Manipulación de instancias" msgid "Instances" msgstr "Instancias" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "Instancias para Separar Objetos" @@ -3648,11 +3690,11 @@ msgstr "Carcasas de interfaz" msgid "internal error" msgstr "error interno" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Relleno interno" -#: src/slic3r/GUI/Plater.cpp:3090 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "Datos inválidos" @@ -3673,7 +3715,7 @@ msgstr "Penetración inválida de la cabeza" msgid "invalid header or archive is corrupted" msgstr "encabezado inválido o archivo está dañado" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Entrada numérica no válida." @@ -3691,15 +3733,11 @@ msgstr "Diámetro de la cabeza del pin inválido" msgid "is licensed under the" msgstr "está licenciado bajo el/los" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Is necessary to install a configuration update. " -msgstr "Es necesario instalar una actualización de la configuración." - -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "no es compatible con el perfil de impresión" -#: src/slic3r/GUI/Tab.cpp:2924 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "no es compatible con esta impresora" @@ -3711,11 +3749,11 @@ msgstr "Iso" msgid "Iso View" msgstr "Vista Iso" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "No puede ser borrado o modificado." -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "It is not allowed to change the file to reload" msgstr "No está permitido cambiar el archivo a recargar" @@ -3723,11 +3761,11 @@ msgstr "No está permitido cambiar el archivo a recargar" msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Puede ser beneficioso aumentar la corriente del motor del extrusor durante la secuencia de intercambio de filamentos para permitir velocidades de alimentación de rampa rápidas y superar la resistencia cuando se carga un filamento con una punta de forma fea." -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Es imposible imprimir objetos de varias piezas con tecnología SLA." -#: src/slic3r/GUI/Tab.cpp:2225 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "Límites del jerk" @@ -3735,13 +3773,13 @@ msgstr "Límites del jerk" msgid "Jitter" msgstr "Jitter" -#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 -#: src/slic3r/GUI/DoubleSlider.cpp:1623 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 msgid "Jump to height" msgstr "Salta a la altura" -#: src/slic3r/GUI/DoubleSlider.cpp:928 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:955 +#, c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "Salta a la altura %s o Fija la secuencia del extrusor para toda la impresión" @@ -3753,7 +3791,7 @@ msgstr "Mantener el ventilador siempre encendido" msgid "Keep lower part" msgstr "Mantener la parte inferior" -#: src/slic3r/GUI/GLCanvas3D.cpp:309 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "Mantener mínimo" @@ -3761,7 +3799,7 @@ msgstr "Mantener mínimo" msgid "Keep upper part" msgstr "Mantener la parte superior" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "Atajos de teclado" @@ -3769,7 +3807,7 @@ msgstr "Atajos de teclado" msgid "Keyboard shortcuts" msgstr "Atajos de teclado" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" @@ -3789,57 +3827,57 @@ msgstr "Idioma" msgid "Language selection" msgstr "Selección de idiomas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "La última instancia de un objeto no puede ser eliminada." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "Capa" #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Altura de la capa" -#: src/libslic3r/Print.cpp:1423 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "La altura de la capa no puede ser mayor que diámetro de la boquilla" -#: src/slic3r/GUI/Tab.cpp:2358 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "Límites de altura de la capa" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "Altura de la capa:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "Ajustes del Rango de capas a modificar" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 #: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 #: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 #: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "capas" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 -#: src/slic3r/GUI/Tab.cpp:3585 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "Capas" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "Capas y perímetros" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 -#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 #: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 @@ -3853,16 +3891,12 @@ msgstr "Capas y Perímetros" msgid "Layers Slider" msgstr "Deslizador de Capas" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 -msgid "Layers Slider Shortcuts" -msgstr "Atajo rápidos al deslizador de capas" - -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" msgstr "Inferior" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" msgstr "Superior" @@ -3871,13 +3905,13 @@ msgstr "Superior" msgid "Left" msgstr "Izquierda" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "Clic izquierdo" -#: src/slic3r/GUI/GLCanvas3D.cpp:242 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "Botón izquierdo del ratón:" @@ -3885,7 +3919,7 @@ msgstr "Botón izquierdo del ratón:" msgid "Left View" msgstr "Vista izquierda" -#: src/slic3r/GUI/GUI_Preview.cpp:259 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "Leyenda" @@ -3893,7 +3927,7 @@ msgstr "Leyenda" msgid "Length" msgstr "Largo" -#: src/libslic3r/PrintConfig.cpp:318 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Longitud del tubo de enfriado para limitar el espacio para movimientos de enfriamiento dentro del mismo." @@ -3910,7 +3944,7 @@ msgstr "Levantar Z" msgid "Line" msgstr "Lineal" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "Cargar" @@ -3918,22 +3952,14 @@ msgstr "Cargar" msgid "Load a model" msgstr "Cargar un modelo" -#: src/libslic3r/PrintConfig.cpp:3490 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Cargar y almacenar configuraciones en el directorio dado. Esto es útil para mantener diferentes perfiles o incluir configuraciones desde un almacenamiento de red." -#: src/libslic3r/PrintConfig.cpp:3474 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "Cargar archivo de configuración" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "Cargar configuración desde .ini/amf/3mf/gcode" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "Cargar configuración desde .ini/amf/3mf/gcode y fusionar" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Carga Configuración desde ini/amf/3mf/gcode y mezcla" @@ -3942,7 +3968,7 @@ msgstr "Carga Configuración desde ini/amf/3mf/gcode y mezcla" msgid "Load configuration from project file" msgstr "Cargar configuración desde archivo de proyecto" -#: src/libslic3r/PrintConfig.cpp:3475 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Cargar la configuración desde el archivo especificado. Se puede usar más de una vez para cargar opciones de varios archivos." @@ -3950,15 +3976,15 @@ msgstr "Cargar la configuración desde el archivo especificado. Se puede usar m msgid "Load exported configuration file" msgstr "Cargar archivo de configuración exportado" -#: src/slic3r/GUI/Plater.cpp:1375 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "Cargar Archivo" -#: src/slic3r/GUI/Plater.cpp:1379 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "Cargar Archivos" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "Cargar pieza" @@ -3966,7 +3992,7 @@ msgstr "Cargar pieza" msgid "Load presets from a bundle" msgstr "Cargar preajustes de un paquete" -#: src/slic3r/GUI/Plater.cpp:4588 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "Cargar Proyecto" @@ -3982,11 +4008,11 @@ msgstr "Cargar..." msgid "loaded" msgstr "cargado" -#: src/slic3r/GUI/Plater.cpp:2410 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "Cargado" -#: src/slic3r/GUI/Plater.cpp:2257 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "Carga" @@ -3999,7 +4025,7 @@ msgid "Loading of current presets" msgstr "Cargando los preajustes actuales" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:378 msgid "Loading repaired model" msgstr "Cargando modelo reparado" @@ -4020,19 +4046,19 @@ msgstr "Coordenadas locales" msgid "Lock supports under new islands" msgstr "Bloquear soportes bajo nuevas islas" -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "CANDADO CERRADO" -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "El icono de CANDADO BLOQUEADO indica que los ajustes son los mismos que los valores del sistema (por defecto) para el grupo de opciones actual" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "El icono de CANDADO BLOQUEADO indica que el valor es el mismo que el del sistema (por defecto)" -#: src/libslic3r/PrintConfig.cpp:3493 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "Nivel de registro" @@ -4040,12 +4066,12 @@ msgstr "Nivel de registro" msgid "Loops (minimum)" msgstr "Bucles (mínimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 msgid "Lower Layer" msgstr "Capa inferior" -#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -4053,11 +4079,7 @@ msgstr "Capa inferior" msgid "Machine limits" msgstr "Límites de la máquina" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "Atajos principales" - -#: src/slic3r/GUI/Plater.cpp:168 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "Manifold" @@ -4065,23 +4087,23 @@ msgstr "Manifold" msgid "Manual editing" msgstr "Edición manual" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "Archivo SLA enmascarado exportado a %1%" -#: src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "Pestaña Ajustes de Mate&rial" -#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "Material" -#: src/slic3r/GUI/Tab.hpp:415 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "Configuraciones del material" -#: src/slic3r/GUI/Plater.cpp:165 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "Materiales" @@ -4089,15 +4111,15 @@ msgstr "Materiales" msgid "Max" msgstr "Max" -#: src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "Distancia máxima de puentes" -#: src/libslic3r/PrintConfig.cpp:2813 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "Distancia máxima de combinación" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "Distancia máxima de enlace del pilar" @@ -4181,11 +4203,11 @@ msgstr "Máxima aceleración Y" msgid "Maximum acceleration Z" msgstr "Máxima aceleración Z" -#: src/slic3r/GUI/Tab.cpp:2218 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "Aceleraciones máximas" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "Tiempo de exposición máximo" @@ -4221,11 +4243,11 @@ msgstr "Máxima velocidad en Y" msgid "Maximum feedrate Z" msgstr "Máximo avance en Z" -#: src/slic3r/GUI/Tab.cpp:2213 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "Avance máximo" -#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "Tiempo de exposición inicial máximo" @@ -4265,15 +4287,15 @@ msgstr "Máximo jerk Z" msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Velocidad volumétrica máxima permitida para este filamento. Limita la velocidad volumétrica máxima de una impresión al mínimo de velocidad volumétrica de impresión y filamento. Establecer en cero para usar sin límite." -#: src/libslic3r/PrintConfig.cpp:3427 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "Combinar" -#: src/libslic3r/PrintConfig.cpp:2674 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "La fusión de puentes o pilares en otros pilares puede aumentar el radio. Cero significa que no hay aumento, uno significa aumento total." -#: src/libslic3r/SLAPrintSteps.cpp:62 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "Mezclando rebanadas y calculando estadísticas" @@ -4281,14 +4303,10 @@ msgstr "Mezclando rebanadas y calculando estadísticas" msgid "Mesh repair failed." msgstr "Reparación de la malla fallida." -#: src/slic3r/GUI/DoubleSlider.cpp:1607 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "Mensaje para pausa de impresión en la capa actual (%1% mm)." -#: src/libslic3r/PrintConfig.cpp:3120 -msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -msgstr "Los mensajes con una gravedad inferior o igual al nivel de registro se imprimirán. 0:rastreo, 1:depuración, 2:información, 3:advertencia, 4:error, 5:fatal" - #: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Min" @@ -4301,7 +4319,7 @@ msgstr "Velocidad de impresión mínima" msgid "min PrusaSlicer version" msgstr "mínima versión PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:2763 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "Distancia mínima de los puntos de apoyo" @@ -4317,11 +4335,11 @@ msgstr "Distancia mínima de puntos" msgid "Minimal purge on wipe tower" msgstr "Purga mínima en la torre de limpieza" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:187 msgid "Minimum bottom shell thickness" msgstr "Espesor mínimo de la tapa inferior" -#: src/slic3r/GUI/PresetHints.cpp:335 +#: src/slic3r/GUI/PresetHints.cpp:339 msgid "Minimum bottom shell thickness is %1% mm." msgstr "El espesor mínimo de la carcasa inferior es %1% mm." @@ -4329,7 +4347,7 @@ msgstr "El espesor mínimo de la carcasa inferior es %1% mm." msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Resolución mínima de detalles, utilizada para simplificar el archivo de entrada para acelerar el trabajo de laminado y reducir el uso de memoria. Los modelos de alta resolución suelen llevar más detalles de los que las impresoras pueden ofrecer. Establézcalo en cero para desactivar cualquier simplificación y usar la resolución completa de la entrada." -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "Tiempo de exposición mínimo" @@ -4341,15 +4359,15 @@ msgstr "Avance mínimo al extruir" msgid "Minimum feedrate when extruding (M205 S)" msgstr "Avance mínimo al extruir (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2230 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "Avances míninos" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "Tiempo de exposición inicial mínimo" -#: src/slic3r/GUI/Tab.cpp:1071 +#: src/slic3r/GUI/Tab.cpp:1069 msgid "Minimum shell thickness" msgstr "Espesor mínimo de pared" @@ -4361,7 +4379,7 @@ msgstr "Espesor mínimo de una carcasa superior / inferior" msgid "Minimum top shell thickness" msgstr "Espesor mínimo de la carcasa superior" -#: src/slic3r/GUI/PresetHints.cpp:316 +#: src/slic3r/GUI/PresetHints.cpp:320 msgid "Minimum top shell thickness is %1% mm." msgstr "El espesor mínimo de la carcasa superior es %1% mm." @@ -4377,7 +4395,7 @@ msgstr "Avance mínimo de movimiento" msgid "Minimum travel feedrate (M205 T)" msgstr "Velocidad mínima sin extrusión (M205 T)" -#: src/libslic3r/PrintConfig.cpp:2908 +#: src/libslic3r/PrintConfig.cpp:2917 msgid "Minimum wall thickness of a hollowed model." msgstr "Mínimo de espesor de la pared de un modelo vaciado." @@ -4385,7 +4403,7 @@ msgstr "Mínimo de espesor de la pared de un modelo vaciado." msgid "Minimum width of features to maintain when doing elephant foot compensation." msgstr "Ancho mínimo característico para mantener al realizar la compensación de pie de elefante." -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "Reflejar" @@ -4393,23 +4411,23 @@ msgstr "Reflejar" msgid "Mirror horizontally" msgstr "Reflejar horizontalmente" -#: src/slic3r/GUI/GLCanvas3D.cpp:2075 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "Reflejar objeto" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "Duplicar el objeto seleccionado" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "Duplicar el objeto seleccionado a lo largo del eje X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "Duplicar el objeto seleccionado a lo largo del eje Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "Duplicar el objeto seleccionado a lo largo del eje Z" @@ -4418,7 +4436,7 @@ msgid "Mirror vertically" msgstr "Reflejar verticalmente" #: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 -#, possible-c-format +#, c-format msgid "Mismatched type of print host: %s" msgstr "Tipo de host de impresión no coincidente: %s" @@ -4426,21 +4444,21 @@ msgstr "Tipo de host de impresión no coincidente: %s" msgid "Mixed" msgstr "Mezclado" -#: src/libslic3r/PrintConfig.cpp:2482 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" #: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 #: src/slic3r/GUI/ObjectDataViewModel.cpp:94 #: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 #: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 -#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 -#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 -#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 #: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 #: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 #: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 @@ -4455,17 +4473,18 @@ msgstr "ml" #: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 #: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 #: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 -#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 #: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 -#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 -#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 -#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 -#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 -#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 -#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 -#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" @@ -4482,7 +4501,7 @@ msgstr "mm (cero para deshabilitar)" msgid "mm or %" msgstr "mm o %" -#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 #: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 #: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 #: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 @@ -4501,7 +4520,7 @@ msgstr "mm/s" msgid "mm/s or %" msgstr "mm/s o %" -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 #: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 #: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 #: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 @@ -4527,7 +4546,7 @@ msgstr "mm³/s²" #: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" -msgstr "Modo" +msgstr "&Modo" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" @@ -4541,24 +4560,24 @@ msgstr "Modelo" msgid "Model fixing" msgstr "Reparación de modelos" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model Repair by the Netfabb service" msgstr "Reparación modelo por el servicio Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:413 +#: src/slic3r/Utils/FixModelByWin10.cpp:406 msgid "Model repair canceled" msgstr "Reparación del modelo cancelada" -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model repair failed:" msgstr "Reparación del modelo fallida:" -#: src/slic3r/Utils/FixModelByWin10.cpp:407 +#: src/slic3r/Utils/FixModelByWin10.cpp:400 msgid "Model repair finished" msgstr "Reparación del modelo terminada" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 msgid "Model repaired successfully" msgstr "Modelo reparado exitosamente" @@ -4566,15 +4585,15 @@ msgstr "Modelo reparado exitosamente" msgid "modified" msgstr "modificado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "Modificador" -#: src/slic3r/GUI/Tab.cpp:1163 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "Modificadores" -#: src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "dinero/botella" @@ -4582,11 +4601,11 @@ msgstr "dinero/botella" msgid "money/kg" msgstr "dinero/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "Rueda del ratón" -#: src/slic3r/GUI/GLCanvas3D.cpp:266 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "Rueda del ratón:" @@ -4594,27 +4613,27 @@ msgstr "Rueda del ratón:" msgid "Move" msgstr "Mover" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "Mover plano de recorte" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Move current slider thumb Down" msgstr "Mover el control deslizante actual hacia abajo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Move current slider thumb Up" msgstr "Mover el control deslizante actual hacia arriba" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 msgid "Move drainage hole" msgstr "Mover orificio de drenaje" -#: src/slic3r/GUI/GLCanvas3D.cpp:3538 +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "Mover Objeto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "Mover punto" @@ -4634,7 +4653,7 @@ msgstr "Mover la selección 10 mm en dirección X positiva" msgid "Move selection 10 mm in positive Y direction" msgstr "Mover la selección 10 mm en dirección Y positiva" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "Mover punto de soporte" @@ -4650,36 +4669,42 @@ msgstr "Paso de movimiento configurado a 1 mm" msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Las impresoras de varios materiales pueden necesitar cebar o purgar extrusoras en los cambios de herramientas. Extruya el exceso de material en la torre de limpieza." -#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "Objeto de piezas múltiples detectado" #: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 -#, possible-c-format +#, c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Se encontraron múltiples dispositivos %s. Por favor, conecta solo uno a la vez para flashear." -#: src/slic3r/GUI/Tab.cpp:1181 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "Múltiples Extrusores" -#: src/slic3r/GUI/Plater.cpp:2394 -msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" -msgstr "Se cargaron varios objetos para una impresora de varios materiales.\nEn lugar de considerarlos como objetos múltiples, ¿debería considerar\nestos archivos para formar un solo objeto que tiene varias partes?" +#: src/slic3r/GUI/Plater.cpp:2410 +msgid "" +"Multiple objects were loaded for a multi-material printer.\n" +"Instead of considering them as multiple objects, should I consider\n" +"these files to represent a single object having multiple parts?" +msgstr "" +"Se cargaron varios objetos para una impresora de varios materiales.\n" +"En lugar de considerarlos como objetos múltiples, ¿debería considerar\n" +"estos archivos para formar un solo objeto que tiene varias partes?" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "Multiplicar copias creando una rejilla." -#: src/libslic3r/PrintConfig.cpp:3419 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "Multiplicar las copias por este factor." -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nombre" @@ -4704,7 +4729,7 @@ msgstr "Más cercano" msgid "Network lookup" msgstr "Búsqueda en la red" -#: src/slic3r/GUI/Plater.cpp:2135 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "Nuevo proyecto" @@ -4713,7 +4738,7 @@ msgid "New project, clear plater" msgstr "Nuevo proyecto, limpiar plataforma" #: src/slic3r/GUI/UpdateDialogs.cpp:38 -#, possible-c-format +#, c-format msgid "New version of %s is available" msgstr "Nueva versión de %s disponible" @@ -4721,11 +4746,11 @@ msgstr "Nueva versión de %s disponible" msgid "New version:" msgstr "Nueva versión:" -#: src/slic3r/GUI/GLCanvas3D.cpp:4722 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "Siguiente acción de Rehacer: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:4690 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "Siguiente acción de Deshacer: %1%" @@ -4733,11 +4758,11 @@ msgstr "Siguiente acción de Deshacer: %1%" msgid "No extrusion" msgstr "Sin extrusión" -#: src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "No se puede generar el pad para este modelo con la configuración actual" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "Ningún archivo previamente laminado." @@ -4749,25 +4774,25 @@ msgstr "NO EMPUJAR EN ABSOLUTO" msgid "No sparse layers (EXPERIMENTAL)" msgstr "Sin capas dispersas (EXPERIMENTAL)" -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "Ningún punto de soporte se colocará más cerca de este umbral." #: src/slic3r/GUI/UpdateDialogs.cpp:303 -msgid "No updates aviable" +msgid "No updates available" msgstr "No hay actualizaciones disponibles" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Ninguno" -#: src/slic3r/GUI/Tab.cpp:2199 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1258 +#: src/slic3r/GUI/Plater.cpp:1286 msgid "normal mode" msgstr "modo normal" @@ -4776,10 +4801,10 @@ msgid "not a ZIP archive" msgstr "no es un archivo ZIP" #: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 -msgid "Not found: " +msgid "Not found:" msgstr "No encontrado:" -#: src/slic3r/GUI/DoubleSlider.cpp:985 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "Note" msgstr "Nota" @@ -4795,20 +4820,20 @@ msgstr "Nota: Requiere FlashAir con firmware 2.00.02 o posterior y la función d msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Nota: Se necesita al menos la versión 1.1.0 de OctoPrint." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Nota: algunos accesos directos funcionan solo en modo de (no)edición." -#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 -#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 -#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 -#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "Notas" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 -#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "Date cuenta" @@ -4816,12 +4841,12 @@ msgstr "Date cuenta" msgid "nozzle" msgstr "boquilla" -#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Diámetro de la boquilla" -#: src/slic3r/GUI/ConfigWizard.cpp:970 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "Diámetro de la boquilla:" @@ -4829,7 +4854,7 @@ msgstr "Diámetro de la boquilla:" msgid "Number of cooling moves" msgstr "Número de movimientos de enfriamiento" -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "Número de extrusores de la impresora." @@ -4853,7 +4878,7 @@ msgstr "Número de píxeles en X" msgid "Number of pixels in Y" msgstr "Número de píxeles en Y" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Número de capas sólidas para generar en las superficies inferiores." @@ -4865,19 +4890,19 @@ msgstr "Número de capas sólidas para generar en las superficies superior e inf msgid "Number of solid layers to generate on top surfaces." msgstr "Número de capas sólidas para generar en las superficies superiores." -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "El número de capas necesarias para el tiempo de exposición cambie desde el tiempo de exposición inicial hasta el tiempo de exposición" -#: src/slic3r/GUI/Plater.cpp:243 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "Número de cambios de herramienta" -#: src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "Elevación del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "Manipulación de objetos" @@ -4885,19 +4910,19 @@ msgstr "Manipulación de objetos" msgid "Object name" msgstr "Nombre del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "Objeto o instancia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "Objetos reordenados" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "Configuraciones de objetos para modificar" -#: src/slic3r/GUI/Plater.cpp:2513 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "Objeto demasiado grande?" @@ -4905,11 +4930,11 @@ msgstr "Objeto demasiado grande?" msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "El objeto se utilizará para purgar el nozzle después de un cambio de herramienta para guardar el material que de lo contrario terminaría en la torre de limpieza y disminuir el tiempo de impresión. Los colores de los objetos se mezclarán como resultado." -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "objeto(s)" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "objetos" @@ -4921,7 +4946,7 @@ msgstr "Octagram Spiral" msgid "OctoPrint version" msgstr "Versión de OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "del Objeto actual" @@ -4929,15 +4954,15 @@ msgstr "del Objeto actual" msgid "Offset" msgstr "Desplazamiento" -#: src/slic3r/GUI/DoubleSlider.cpp:923 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "Modo de capa única" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1365 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Uno o más objetos fueron asignados a un extrusor no existente." -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Solo crear soportes si está en contacto con la plataforma. No crea soporte en la impresión." @@ -4945,7 +4970,7 @@ msgstr "Solo crear soportes si está en contacto con la plataforma. No crea sopo msgid "Only infill where needed" msgstr "Solo rellenar cuando sea necesario" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "Solo levantar Z" @@ -4961,11 +4986,11 @@ msgstr "Solo levantar Z menor que" msgid "Only retract when crossing perimeters" msgstr "Solo retraer al cruzar perímetros" -#: src/slic3r/GUI/Tab.cpp:1189 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "Prevención de goteo" -#: src/libslic3r/Print.cpp:1262 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "La prevención de goteo actualmente no es compatible con la torre de limpieza activa." @@ -4973,7 +4998,7 @@ msgstr "La prevención de goteo actualmente no es compatible con la torre de lim msgid "Open a project file" msgstr "Abrir un archivo de proyecto" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "Abrir archivo de certificado CA" @@ -4990,52 +5015,48 @@ msgstr "Abrir página de descarga" msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Abrir proyecto STL/OBJ/AMF/3MF con configuración, limpiar plataforma" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "Abrir el proyecto STL/OBJ/AMF/3MF con config, borrar contenido base" - -#: src/slic3r/GUI/MainFrame.cpp:695 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:693 +#, c-format msgid "Open the %s website in your browser" msgstr "Abrir el sitio web de %s en su navegador" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Abrir la página de descarga de los controladores Prusa3D en su navegador" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "Abre la página de lanzamientos de software en tu navegador" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "Optimizar la orientación" -#: src/slic3r/GUI/Plater.cpp:2751 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "Optimizar Rotación" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "Optimizar la rotación del objeto para obtener mejores resultados de impresión." -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimiza los movimientos de desplazamiento para minimizar el cruce de perímetros. Esto es principalmente útil con extrusores Bowden que sufren goteo. Esta característica ralentiza tanto la impresión como la generación de código G." -#: src/slic3r/GUI/Tab.cpp:1133 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "Opciones de material de soporte y balsa" -#: src/slic3r/GUI/DoubleSlider.cpp:960 +#: src/slic3r/GUI/DoubleSlider.cpp:989 msgid "or press \"+\" key" msgstr "o presiona la tecla \"+\"" -#: src/slic3r/GUI/Plater.cpp:2876 +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "Orientación encontrada." -#: src/slic3r/GUI/Plater.cpp:2875 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "Búsqueda de orientación cancelada." @@ -5043,23 +5064,23 @@ msgstr "Búsqueda de orientación cancelada." msgid "Origin" msgstr "Origen" -#: src/slic3r/GUI/Tab.cpp:1229 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "Otro" -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Otras capas" -#: src/slic3r/GUI/ConfigWizard.cpp:857 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "Otras Marcas" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "Archivo de salida" -#: src/libslic3r/PrintConfig.cpp:3478 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "Archivo de salida" @@ -5067,15 +5088,15 @@ msgstr "Archivo de salida" msgid "Output filename format" msgstr "Formato de nombre de salida" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "Información del modelo de salida" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "Opciones de salida" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Perímetro de voladizos" @@ -5083,23 +5104,23 @@ msgstr "Perímetro de voladizos" msgid "Overhang threshold" msgstr "Umbral de voladizos" -#: src/slic3r/GUI/Tab.cpp:1217 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "Superposición" #: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" -msgstr "C&onfiguración de Impresión" +msgstr "Configu&ración de Impresión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 -#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 -#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 -#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 -#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 -#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 -#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 -#: src/libslic3r/PrintConfig.cpp:2890 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "Pad" @@ -5107,15 +5128,15 @@ msgstr "Pad" msgid "Pad and Support" msgstr "Pad y soportes" -#: src/libslic3r/PrintConfig.cpp:2846 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "Pad alrededor del objeto" -#: src/libslic3r/PrintConfig.cpp:2853 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "Pad alrededor del objeto en todos lados" -#: src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "Tamaño del borde del pad" @@ -5123,31 +5144,31 @@ msgstr "Tamaño del borde del pad" msgid "Pad brim size is too small for the current configuration." msgstr "El tamaño del borde del pad es demasiado pequeño para la configuración actual." -#: src/libslic3r/PrintConfig.cpp:2889 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "Penetración del conector del objeto al Pad" -#: src/libslic3r/PrintConfig.cpp:2871 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "Paso del conector del objeto al Pad" -#: src/libslic3r/PrintConfig.cpp:2880 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "Anchura del conector del pad al objeto" -#: src/libslic3r/PrintConfig.cpp:2860 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "Espacio del pad con el objeto" -#: src/libslic3r/PrintConfig.cpp:2788 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "Altura de la pared del pad" -#: src/libslic3r/PrintConfig.cpp:2835 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "Pendiente de la pared del pad" -#: src/libslic3r/PrintConfig.cpp:2778 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "Espesor de la pared del pad" @@ -5159,28 +5180,28 @@ msgstr "Page Down" msgid "Page Up" msgstr "Page Up" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "nombre del parámetro" -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "Validación de parámetros" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "Pieza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "Manipulación de piezas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "Configuraciones de piezas para modificar" -#: src/slic3r/GUI/GLCanvas3D.cpp:4563 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "Pegar" @@ -5188,11 +5209,11 @@ msgstr "Pegar" msgid "Paste clipboard" msgstr "Pegar portapapeles" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 msgid "Paste from clipboard" msgstr "Pegar desde el portapapeles" -#: src/slic3r/GUI/Plater.cpp:5640 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "Pegar Desde Portapapeles" @@ -5212,12 +5233,16 @@ msgstr "Espaciado entre patrones" msgid "Pattern used to generate support material." msgstr "Patrón utilizado para generar material de soporte." -#: src/slic3r/GUI/DoubleSlider.cpp:976 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "Pausa" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Pause print (\"%1%\")" msgstr "Pausar impresión (\"%1%\")" -#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 -#: src/slic3r/GUI/GLCanvas3D.cpp:987 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "Pausar impresión o código G personalizado" @@ -5225,11 +5250,11 @@ msgstr "Pausar impresión o código G personalizado" msgid "Perform cut" msgstr "Realizar corte" -#: src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2927 msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." msgstr "Rendimiento vs precisión de cálculo. Los valores más bajos pueden producir artefactos no deseados." -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Perímetro" @@ -5246,8 +5271,8 @@ msgstr "perímetros" msgid "Perimeters" msgstr "Perímetros" -#: src/slic3r/GUI/ConfigWizard.cpp:861 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:860 +#, c-format msgid "Pick another vendor supported by %s" msgstr "Elije otro proveedor compatible con% s" @@ -5255,7 +5280,7 @@ msgstr "Elije otro proveedor compatible con% s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Tamaños de imagen para almacenar en un archivo .gcode y .sl1" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "Factor de ensanchamiento del pilar" @@ -5263,10 +5288,6 @@ msgstr "Factor de ensanchamiento del pilar" msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "El diámetro de la cabeza del pin debe ser menor que el diámetro del pilar." -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "Colocar rodamientos en los agujeros y continuar" - #: src/slic3r/GUI/DoubleSlider.cpp:79 msgid "Place bearings in slots and resume printing" msgstr "Coloca los rodamientos en las ranuras y sigue imprimiendo" @@ -5275,23 +5296,19 @@ msgstr "Coloca los rodamientos en las ranuras y sigue imprimiendo" msgid "Place on face" msgstr "Colocar en la cara" -#: src/slic3r/GUI/MainFrame.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Plataforma" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 -msgid "Plater Shortcuts" -msgstr "Atajos para la base" - #: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Por favor comprueba y soluciona tu lista de objetos." -#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "Por favor comprueba tu lista de objetos antes de cambiar los ajustes iniciales." -#: src/slic3r/GUI/Plater.cpp:3272 +#: src/slic3r/GUI/Plater.cpp:3286 msgid "Please select the file to reload" msgstr "Por favor selecciona el archivo a volver a cargar" @@ -5308,14 +5325,10 @@ msgstr "Retrato" msgid "Position" msgstr "Posición" -#: src/slic3r/GUI/Tab.cpp:2363 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "Posición (para impresoras con múltiples extrusores )" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "Posición (mm)" - #: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Posición de los puntos de inicio del perímetro." @@ -5328,7 +5341,7 @@ msgstr "Posición X" msgid "Position Y" msgstr "Posición Y" -#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Scripts de postprocesamiento" @@ -5336,7 +5349,7 @@ msgstr "Scripts de postprocesamiento" msgid "Pre&view" msgstr "Pre&visualizar" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Preferencias" @@ -5352,67 +5365,59 @@ msgstr "Dirección preferida de la unión - jitter" msgid "Preparing infill" msgstr "Preparando relleno" -#: src/slic3r/GUI/Tab.cpp:2904 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2920 +#, c-format msgid "Preset (%s)" msgstr "Ajuste inicial (%s)" -#: src/slic3r/GUI/Tab.cpp:3066 +#: src/slic3r/GUI/Tab.cpp:3082 msgid "Preset with name \"%1%\" already exists." msgstr "Ya existe un preset con el nombre \"% 1%\"." -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - Copiar" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" -msgstr "Presiona para activar el rectángulo de deselección \no para escalar o rotar los objetos seleccionados \nen torno a su propio centro" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Press to activate deselection rectangle" -msgstr "Presionar para activar el rectángulo de deselección " +msgstr "Presionar para activar el rectángulo de deselección" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Presiona para activar la escala de una dirección en la escala Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Presiona para activar el rectángulo de selección\n o para ajustar un 5% en la escala Gizmo\n o para ajustar un 1 mm en el movimiento Gizmo" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:162 msgid "Press to activate selection rectangle" msgstr "Presionar para activar el rectángulo de selección" #: src/slic3r/GUI/KBShortcutsDialog.cpp:198 -msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" -msgstr "Presionar para escalar (en escalar Gizmo) o rotar(en rotar Gizmo)\nobjetos seleccionados alrededor de su propio centro" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "Press to scale selection to fit print volume\nin Gizmo scale" -msgstr "Presiona para escalar la selección para cuadrar en el volumen de impresión\nen escala Gizmo" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "Presiona para seleccionar objetos múltiples o mover objetos múltiples con el ratón" +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"Presionar para escalar (en escalar Gizmo) o rotar(en rotar Gizmo)\n" +"objetos seleccionados alrededor de su propio centro" #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with mouse" -msgstr "Presiona para seleccionar objetos múltiples\no mover objetos múltiples con el ratón" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with a mouse" -msgstr "Presiona para seleccionar objetos múltiples\no mover objetos múltiples con el ratón" +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"Presiona para seleccionar objetos múltiples\n" +"o mover objetos múltiples con el ratón" #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format -msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Presiona para ajustar un 5% en escala Gizmo\no para ajustar cada 1mm en mover Gizmo" +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Presiona para ajustar un 5% en escala Gizmo\n" +"o para ajustar cada 1mm en mover Gizmo" -#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "Previsualización" @@ -5420,11 +5425,7 @@ msgstr "Previsualización" msgid "Preview hollowed and drilled model" msgstr "Vista preliminar del modelo con su interior vaciado y taladrado" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 -msgid "Preview Shortcuts" -msgstr "Vista previa de accesos rápidos" - -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "Archivo anterior laminado (" @@ -5432,7 +5433,7 @@ msgstr "Archivo anterior laminado (" msgid "Prime all printing extruders" msgstr "Cebar todos los extrusores de impresión" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "imprimir" @@ -5444,32 +5445,32 @@ msgstr "Cola de subida al &host de impresión" msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Imprimir perímetros de contorno desde el más externo hasta el más interno en lugar del orden inverso predeterminado." -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "Diámetros de impresión" -#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "Subida al host de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Cola de subida al host de impresión" -#: src/slic3r/GUI/DoubleSlider.cpp:941 +#: src/slic3r/GUI/DoubleSlider.cpp:970 msgid "Print mode" msgstr "Modo de impresión" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "Configuración de Impresión" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "Configuración de impresión" -#: src/slic3r/GUI/Tab.cpp:1480 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "Anular la velocidad de impresión" @@ -5479,17 +5480,17 @@ msgstr "Imprimir z" #: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" -msgstr "Configura&ción de Impresión" +msgstr "Configuración de Impr&esión" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "Imprimible" -#: src/slic3r/GUI/Plater.cpp:816 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "Impresora" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "impresora" @@ -5497,11 +5498,11 @@ msgstr "impresora" msgid "Printer absolute correction" msgstr "Corrección absoluta de la impresora" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "Corrección gamma de la impresora" -#: src/slic3r/GUI/Tab.cpp:978 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "modelo de impresora" @@ -5514,7 +5515,7 @@ msgstr "Notas de la impresora" msgid "Printer scaling correction" msgstr "Corrección de escala de la impresora" -#: src/slic3r/GUI/Tab.hpp:390 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "Configuración de la Impresora" @@ -5534,18 +5535,18 @@ msgstr "Modelo de impresora" msgid "Printer vendor" msgstr "Fabricante de la impresora" -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1388 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Imprimir con múltiples extrusoras de diferentes diámetros de boquilla. Si el soporte debe imprimirse con la extrusora actual (support_material_extruder == 0 o support_material_interface_extruder == 0), todas las boquillas deben ser del mismo diámetro." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:851 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:849 +#, c-format msgid "Processing %s" msgstr "Procesando %s" -#: src/slic3r/GUI/Plater.cpp:2267 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2283 +#, c-format msgid "Processing input file %s" msgstr "Procesando el archivo de entrada %s" @@ -5553,9 +5554,9 @@ msgstr "Procesando el archivo de entrada %s" msgid "Processing triangulated mesh" msgstr "Procesando malla triangulada" -#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 -#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "Dependencias de perfil" @@ -5571,15 +5572,15 @@ msgstr "Progreso" msgid "Progress:" msgstr "Progreso:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" -msgstr "&Controladores de Prusa 3D" +msgstr "Controladores de Prusa 3&D" -#: src/slic3r/GUI/ConfigWizard.cpp:1998 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "Impresoras Prusa de tecnología FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:2001 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Impresoras Prusa de tecnología MSLA" @@ -5588,23 +5589,33 @@ msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap co msgstr "PrusaSlicer está basado en Slic3r de Alessandro Ranellucci y la comunidad RepRap." #: src/slic3r/GUI/GLCanvas3DManager.cpp:284 -#, possible-c-format -msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." -msgstr "PrusaSlicer requiere el controlador de gráficos OpenGL 2.0 para que funcione correctamente, \nmientras que la versión %s OpenGL, renderizado %s, vendedor %s fue detectada." +#, c-format +msgid "" +"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" +"while OpenGL version %s, render %s, vendor %s was detected." +msgstr "" +"PrusaSlicer requiere el controlador de gráficos OpenGL 2.0 para que funcione correctamente, \n" +"mientras que la versión %s OpenGL, renderizado %s, vendedor %s fue detectada." #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "Versión PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "Las interfaces de usuario de PrusaSlicer tiene tres variantes:\nSimple, avanzado y experto.\nEl modo Simple muestra solo las configuraciones usadas con más frecuencia relevantes para la impresión 3D normal. Los otros dos ofrecen ajustes progresivamente más sofisticados, son adecuados para usuarios avanzados y expertos, respectivamente." +#: src/slic3r/GUI/ConfigWizard.cpp:815 +msgid "" +"PrusaSlicer's user interfaces comes in three variants:\n" +"Simple, Advanced, and Expert.\n" +"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "" +"Las interfaces de usuario de PrusaSlicer tiene tres variantes:\n" +"Simple, avanzado y experto.\n" +"El modo Simple muestra solo las configuraciones usadas con más frecuencia relevantes para la impresión 3D normal. Los otros dos ofrecen ajustes progresivamente más sofisticados, son adecuados para usuarios avanzados y expertos, respectivamente." #: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "La purga después del cambio de herramientas se realizará dentro de los rellenos de este objeto. Esto reduce la cantidad de desperdicio, pero puede resultar en un tiempo de impresión más largo debido a movimientos de viaje adicionales." -#: src/slic3r/GUI/Plater.cpp:541 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "Volúmenes de purga" @@ -5620,19 +5631,19 @@ msgstr "Volúmenes de purga - matriz" msgid "Quality" msgstr "Calidad" -#: src/slic3r/GUI/Tab.cpp:1082 +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "Calidad (laminado más lento)" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 +#: src/slic3r/GUI/GLCanvas3D.cpp:273 msgid "Quality / Speed" msgstr "Calidad / Velocidad" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 +#, c-format msgid "Quick Add Settings (%s)" msgstr "Añadir ajustes rápidos (%s)" @@ -5645,15 +5656,15 @@ msgid "Quick Slice and Save As" msgstr "Laminado rápido y Guardar como" #: src/slic3r/GUI/MainFrame.cpp:540 -#, possible-c-format +#, c-format msgid "Quit %s" msgstr "Cerrar %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Radio" -#: src/slic3r/GUI/Tab.cpp:1129 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "Balsa" @@ -5666,8 +5677,14 @@ msgid "Ramming customization" msgstr "Configuración de empuje" #: src/slic3r/GUI/WipeTowerDialog.cpp:41 -msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "El empuje señala la extrusión rápida justo antes de un cambio de filamento en una impresora MM de un sólo extrusor. Su propósito es asegurar una forma adecuada para el extremo de filamento que se va a descargar, para que no haya problemas al insertar uno nuevo y para que se pueda volver a insertar este más tarde. Esta fase es importante y diferentes materiales puede precisar diferentes velocidades para obtener la forma correcta. Por este motivo, las velocidades extrusión durante el empuje son ajustables.\n\nEste es un ajuste para expertos, ajustarlo incorrectamente podrá producir atascos, que la rueda del extrusor arañe el filamento, etc." +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "" +"El empuje señala la extrusión rápida justo antes de un cambio de filamento en una impresora MM de un sólo extrusor. Su propósito es asegurar una forma adecuada para el extremo de filamento que se va a descargar, para que no haya problemas al insertar uno nuevo y para que se pueda volver a insertar este más tarde. Esta fase es importante y diferentes materiales puede precisar diferentes velocidades para obtener la forma correcta. Por este motivo, las velocidades extrusión durante el empuje son ajustables.\n" +"\n" +"Este es un ajuste para expertos, ajustarlo incorrectamente podrá producir atascos, que la rueda del extrusor arañe el filamento, etc." #: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" @@ -5681,7 +5698,7 @@ msgstr "Ancho de la linea de empuje" msgid "Ramming parameters" msgstr "Parámetros de empuje" -#: src/slic3r/GUI/Tab.cpp:1507 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "Ajustes de empuje" @@ -5693,13 +5710,13 @@ msgstr "Aleatorio" msgid "Range" msgstr "Rango" -#: src/libslic3r/SLAPrintSteps.cpp:63 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "Rastrerizando capas" #: src/slic3r/GUI/MainFrame.cpp:596 msgid "Re&load from disk" -msgstr "Re&cargar desde el disco" +msgstr "Recargar desde e&l disco" #: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" @@ -5709,7 +5726,7 @@ msgstr "Reconfigurar" msgid "Ready" msgstr "Listo" -#: src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "Preparado para laminar" @@ -5723,10 +5740,10 @@ msgstr "Vista trasera" #: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" -msgstr "Proyectos recientes" +msgstr "Proy&ectos recientes" #: src/slic3r/GUI/PresetHints.cpp:263 -#, possible-c-format +#, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Espesor de pared delgada del objeto recomendado para una altura de capa %.2f y" @@ -5755,37 +5772,38 @@ msgstr "Rectilíneo" msgid "Rectilinear grid" msgstr "Rejilla rectilínea" -#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Rehacer" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Rehacer %1$d Acción" msgstr[1] "Rehacer %1$d Acciones" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "Rehacer Historia" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "Reduciendo el tiempo de impresión" -#: src/slic3r/GUI/Plater.cpp:3461 +#: src/slic3r/GUI/Plater.cpp:3452 msgid "Reload all from disk" msgstr "Recargar todo desde el disco" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 -#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 msgid "Reload from disk" msgstr "Recargar desde el disco" -#: src/slic3r/GUI/Plater.cpp:3328 -msgid "Reload from: " +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" msgstr "Recargar desde:" #: src/slic3r/GUI/KBShortcutsDialog.cpp:134 @@ -5796,12 +5814,12 @@ msgstr "Recargar la base desde el disco" msgid "Reload the plater from disk" msgstr "Cargar la base del disco" -#: src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "Recargar el objeto seleccionado del disco" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" msgstr "Vuelve a cargar los volúmenes seleccionados desde el disco" @@ -5809,12 +5827,12 @@ msgstr "Vuelve a cargar los volúmenes seleccionados desde el disco" msgid "Remember output directory" msgstr "Recordar el directorio de salida" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "eliminar" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "Eliminar" @@ -5826,11 +5844,11 @@ msgstr "Elimina todos los huecos" msgid "Remove all points" msgstr "Eliminar todos los puntos" -#: src/slic3r/GUI/GLCanvas3D.cpp:251 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "Retirar detalle" -#: src/slic3r/GUI/Plater.cpp:876 +#: src/slic3r/GUI/Plater.cpp:879 msgid "Remove device" msgstr "Eliminar dispositivo" @@ -5838,11 +5856,11 @@ msgstr "Eliminar dispositivo" msgid "Remove extruder from sequence" msgstr "Retirar extrusor de la secuencia" -#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" msgstr "Retirar una copia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Remove Instance of the selected object" msgstr "Retirar instancia del objeto seleccionado" @@ -5850,7 +5868,7 @@ msgstr "Retirar instancia del objeto seleccionado" msgid "Remove layer range" msgstr "Retirar rango de capas" -#: src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" msgstr "Eliminar una instancia del objeto seleccionado" @@ -5858,11 +5876,11 @@ msgstr "Eliminar una instancia del objeto seleccionado" msgid "Remove parameter" msgstr "Eliminar parámetro" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "Retirar punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "Retirar punto de selección" @@ -5871,11 +5889,11 @@ msgid "Remove selected holes" msgstr "Elimina huecos seleccionados" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "Eliminar puntos seleccionados" -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "Eliminar el objeto seleccionado" @@ -5883,47 +5901,51 @@ msgstr "Eliminar el objeto seleccionado" msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Eliminar perfiles de usuario - instalar desde cero (se realizará una instantánea con anterioridad)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "Renombrar" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "Renombrar Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "Renombrar Sub-Objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "Renombrar" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "El cambio de nombre del código G después de copiar en la carpeta de destino seleccionada ha fallado. La ruta actual es %1%.tmp. Intenta exportar de nuevo." + +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "Renderizar con un software renderizador" -#: src/libslic3r/PrintConfig.cpp:3501 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Render con un software de renderizado. El procesador de software MESA incluido se carga en lugar del controlador OpenGL predeterminado." -#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "Reparar" -#: src/slic3r/Utils/FixModelByWin10.cpp:394 +#: src/slic3r/Utils/FixModelByWin10.cpp:387 msgid "Repaired 3MF file contains more than one object" msgstr "El archivo 3MF reparado contiene más de un objeto" -#: src/slic3r/Utils/FixModelByWin10.cpp:398 +#: src/slic3r/Utils/FixModelByWin10.cpp:391 msgid "Repaired 3MF file contains more than one volume" msgstr "El archivo 3MF reparado contiene más de un volumen" -#: src/slic3r/Utils/FixModelByWin10.cpp:392 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Repaired 3MF file does not contain any object" msgstr "El archivo 3MF reparado no contiene ningún objeto" -#: src/slic3r/Utils/FixModelByWin10.cpp:396 +#: src/slic3r/Utils/FixModelByWin10.cpp:389 msgid "Repaired 3MF file does not contain any volume" msgstr "El archivo 3MF reparado no contiene ningún volumen" @@ -5939,31 +5961,31 @@ msgstr "Repetir el último laminado rápido" msgid "Repeat Last Quick Slice" msgstr "Repetir el último laminado rápido" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "¿Reemplazar?" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" -msgstr "I&nformar de un problema" +msgstr "Informar de un &problema" -#: src/slic3r/GUI/MainFrame.cpp:705 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:703 +#, c-format msgid "Report an issue on %s" msgstr "Reportar un problema a %s" #: src/slic3r/Utils/PresetUpdater.cpp:713 -#, possible-c-format +#, c-format msgid "requires max. %s" msgstr "requiere max. %s" #: src/slic3r/Utils/PresetUpdater.cpp:710 -#, possible-c-format +#, c-format msgid "requires min. %s" msgstr "requiere min. %s" #: src/slic3r/Utils/PresetUpdater.cpp:705 -#, possible-c-format +#, c-format msgid "requires min. %s and max. %s" msgstr "requiere un min. %s y un max. %s" @@ -5971,15 +5993,15 @@ msgstr "requiere un min. %s y un max. %s" msgid "Rescan" msgstr "Rescanear" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "Vuelver a examinar los puertos serie" -#: src/slic3r/GUI/GLCanvas3D.cpp:318 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "Reset" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "Restablecer plano de recorte" @@ -5988,7 +6010,7 @@ msgstr "Restablecer plano de recorte" msgid "Reset direction" msgstr "Restablecer dirección" -#: src/slic3r/GUI/Plater.cpp:2707 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "Reiniciar Proyecto" @@ -6005,11 +6027,11 @@ msgstr "Reiniciar rotación" msgid "Reset scale" msgstr "Reiniciar escala" -#: src/slic3r/GUI/GLCanvas3D.cpp:257 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "Reiniciar a la base" -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "Reiniciar Filament Color" @@ -6025,8 +6047,8 @@ msgstr "Retracta cantidad antes de limpiar" msgid "Retract on layer change" msgstr "Retraer en el cambio de capa" -#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2366 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "Retracción" @@ -6046,11 +6068,11 @@ msgstr "Longitud de retracción (cambio de herramienta)" msgid "Retraction Speed" msgstr "Velocidad de retracción" -#: src/slic3r/GUI/Tab.cpp:2382 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retracción cuando la herramienta está desactivada (configuraciones avanzadas para configuraciones de extrusores múltiples )" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "Retracciones" @@ -6058,23 +6080,23 @@ msgstr "Retracciones" msgid "Right" msgstr "Derecha" -#: src/slic3r/GUI/GUI_ObjectList.cpp:400 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "Clic con el botón derecho en el icono para cambiar la propiedad imprimible del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "Clic del botón derecho en el ícono para cambiar los ajustes del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:357 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Clic del botón derecho en el ícono para arreglar el STL a través de Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "Click derecho" -#: src/slic3r/GUI/GLCanvas3D.cpp:248 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "Botón derecho del ratón:" @@ -6086,15 +6108,15 @@ msgstr "Vista derecha" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "Girar" -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "Rotar alrededor del eje X" -#: src/libslic3r/PrintConfig.cpp:3446 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Rotar alrededor del eje Y" @@ -6112,85 +6134,81 @@ msgstr "Gira la selección 45 grados en sentido horario" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 #: src/slic3r/GUI/Mouse3DController.cpp:321 -#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotación" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491 -msgid "Rotation (deg)" -msgstr "Rotación (grados)" - -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "Ángulo de rotación alrededor del eje X en grados." -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Ángulo de rotación alrededor del eje Y en grados." -#: src/libslic3r/PrintConfig.cpp:3437 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Ángulo de rotación alrededor del eje Z en grados." #: src/slic3r/GUI/GUI_App.cpp:797 -#, possible-c-format +#, c-format msgid "Run %s" msgstr "Ejecutar %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "Ejecutando scripts de post-procesamiento" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 #: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 #: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 -#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 -#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 -#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 -#: src/libslic3r/PrintConfig.cpp:2557 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "$" -#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" -msgstr "E&nviar código G" +msgstr "&Enviar código G" -#: src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "E&nviar para imprimir" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3401 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:3417 +#, c-format msgid "Save %s as:" msgstr "Guardar %s como:" -#: src/slic3r/GUI/MainFrame.cpp:828 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:826 +#, c-format msgid "Save %s file as:" msgstr "Guardar archivo %s como:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "¿Guardar cambios?" -#: src/libslic3r/PrintConfig.cpp:3371 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "Guardar archivo de configuración" -#: src/slic3r/GUI/MainFrame.cpp:927 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "Guardar la configuración como:" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "Guarda la configuración al archivo especificado." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:135 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:133 +#, c-format msgid "Save current %s" msgstr "Guardar lo actual %s" @@ -6202,29 +6220,29 @@ msgstr "Guardar el proyecto actual como" msgid "Save current project file as" msgstr "Guardar archivo de proyecto actual como" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "Guardar archivo como:" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "Guardar archivo Código G como:" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Guardar archivo OBJ (menos propenso a errores de coordinación que STL) como:" -#: src/slic3r/GUI/Tab.hpp:442 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "Guardar ajuste inicial" -#: src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "Guarde el conjunto de ajustes iniciales como:" #: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" -msgstr "Guardar proyecto &como" +msgstr "Gu&ardar proyecto como" #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 msgid "Save project (3mf)" @@ -6234,11 +6252,11 @@ msgstr "Guardar proyecto (3mf)" msgid "Save project as (3mf)" msgstr "Guarda el proyecto como (3mf)" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "Guardar archivo SL1 como:" -#: src/slic3r/GUI/MainFrame.cpp:840 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "Guardar archivo zip como:" @@ -6252,27 +6270,27 @@ msgstr "Error al guardar la malla en el contenedor 3MF." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3451 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "Escalar" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276 -msgid "Scale (%)" -msgstr "Escalar (%)" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Factores de escala" #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 -msgid "Scale selection to fit print volume\nin Gizmo scale" -msgstr "Redimensiona para ajustar el volumen de impresión\nen escala Gizmo" +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" +"Redimensiona para ajustar el volumen de impresión\n" +"en escala Gizmo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "Escala los objetos seleccionados para ajustarse al volumen de impresión" -#: src/libslic3r/PrintConfig.cpp:3460 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "Escalar para Adaptarse" @@ -6280,19 +6298,19 @@ msgstr "Escalar para Adaptarse" msgid "Scale To Fit" msgstr "Escalar para Adaptarse" -#: src/libslic3r/PrintConfig.cpp:3461 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "Escalar para ajustarse al volumen dado." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "Escalar al volumen de impresión" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "Factor de escalado o porcentaje." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Subida planificada a `%1%`. Mira Ventana -> Sube a la cola del gestor de impresión" @@ -6312,7 +6330,7 @@ msgstr "Dirección preferida de unión jitter" msgid "Searching for devices" msgstr "Buscando dispositivos" -#: src/slic3r/GUI/Plater.cpp:2842 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "Buscando la orientación óptima" @@ -6324,19 +6342,19 @@ msgstr "Seleccione un archivo gcode:" msgid "Select all objects" msgstr "Seleccionar todos los objetos" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "Seleccionar todos los puntos" -#: src/slic3r/GUI/ConfigWizard.cpp:1979 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "Selecciona todas las impresoras estándar" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "Seleccionar mediante rectángulo" -#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "Seleccione la configuración para cargar:" @@ -6344,35 +6362,27 @@ msgstr "Seleccione la configuración para cargar:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Escoge el espacio de coordenadas en el que se realizará la transformación." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 -msgid "Select extruder number for selected objects and/or parts" -msgstr "Selecciona el número de extrusor para los objetos y/o piezas seleccionados" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "Selecciona el número de extrusores:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "Seleccionar pestaña de configuración de filamento" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 -msgid "Select new extruder for the object/part" -msgstr "Selecciona el nuevo extrusor para el objeto/pieza" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 msgid "Select Plater Tab" msgstr "Seleccionar pestaña de la Base de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "Seleccione la pestaña Configuración de impresión" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "Selecciona pestaña de ajustes de impresora" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "Seleccionar los ajustes mostrados" @@ -6380,37 +6390,43 @@ msgstr "Seleccionar los ajustes mostrados" msgid "Select the language" msgstr "Seleccione el idioma" -#: src/slic3r/GUI/Tab.cpp:59 +#: src/slic3r/GUI/Tab.cpp:57 msgid "Select the print profiles this profile is compatible with." msgstr "Seleccione los perfiles de impresión con las que este perfil es compatible." -#: src/slic3r/GUI/Tab.cpp:53 +#: src/slic3r/GUI/Tab.cpp:51 msgid "Select the printers this profile is compatible with." msgstr "Seleccione las impresoras con las que este perfil es compatible." -#: src/slic3r/GUI/MainFrame.cpp:891 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "Seleccione el archivo STL para reparar:" -#: src/slic3r/GUI/Preferences.cpp:241 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "Selecciona el tamaño del icono de la barra de herramientas con respecto al predeterminado." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "Selecciona el tipo de pieza" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "Selecciona que tipo de pad necesitas" -#: src/slic3r/GUI/Plater.cpp:495 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "Selecciona qué clase de soporte necesitas" -#: src/slic3r/GUI/DoubleSlider.cpp:1890 -msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" -msgstr "Escoge SI si deseas borrar todos los cambios de herramienta,\nNO si deseas que los cambios de herramienta sean cambios de color,\no CANCELAR para no hacer cambios" +#: src/slic3r/GUI/DoubleSlider.cpp:1917 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged." +msgstr "" +"Escoge SI si deseas borrar todos los cambios de herramienta,\n" +"NO si deseas que los cambios de herramienta sean cambios de color,\n" +"o CANCELAR para no hacer cambios." #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" @@ -6420,11 +6436,11 @@ msgstr "Selección-Añadir" msgid "Selection-Add All" msgstr "Selección-Añadir todos" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "Selección-Añadir de la lista" -#: src/slic3r/GUI/GLCanvas3D.cpp:6659 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "Selección-Añadir del rectángulo" @@ -6444,11 +6460,11 @@ msgstr "Selección-Retirar" msgid "Selection-Remove All" msgstr "Selección-Retirar todo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "Selección-Retirar de la lista" -#: src/slic3r/GUI/GLCanvas3D.cpp:6678 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "Selección-Retirar del rectángulo" @@ -6464,7 +6480,7 @@ msgstr "Selección-Retirar Objeto" msgid "Selects all objects" msgstr "Seleccionar todos los objetos" -#: src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "Enviar código G" @@ -6476,19 +6492,19 @@ msgstr "Enviar el código G al host de impresión" msgid "Send to print current plate as G-code" msgstr "Enviar para imprimir la plataforma actual como código G" -#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "Enviar a la impresora" -#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 msgid "Seq." msgstr "Sec." -#: src/slic3r/GUI/Tab.cpp:1233 +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "Impresión secuencial" -#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Puerto serial" @@ -6504,17 +6520,17 @@ msgstr "Puerto serie:" msgid "Service name" msgstr "Nombre del servicio" -#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 -#: src/slic3r/GUI/Tab.cpp:3160 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "Ajuste" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "Establecer como Objeto Separado" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "Establecer como Objetos Separados" @@ -6522,7 +6538,7 @@ msgstr "Establecer como Objetos Separados" msgid "Set extruder change for every" msgstr "Establecer cambio de extrusor para cada" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "Establecer el extrusor para elementos seleccionados" @@ -6530,19 +6546,15 @@ msgstr "Establecer el extrusor para elementos seleccionados" msgid "Set extruder sequence" msgstr "Establecer secuencia extrusor" -#: src/slic3r/GUI/DoubleSlider.cpp:1504 +#: src/slic3r/GUI/DoubleSlider.cpp:1532 msgid "Set extruder sequence for the entire print" msgstr "Fija la secuencia del extrusor para toda la impresión" -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "Establecer la secuencia del extrusor para la impresión completa" - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 msgid "Set extruder(tool) sequence" msgstr "Establecer secuencia extrusor(herramienta)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "Coloca el pulgar inferior en el control deslizante actual" @@ -6550,12 +6562,12 @@ msgstr "Coloca el pulgar inferior en el control deslizante actual" msgid "Set Mirror" msgstr "Establecer Reflejo" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "Establecer número de instancias" -#: src/slic3r/GUI/Plater.cpp:4771 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4756 +#, c-format msgid "Set numbers of copies to %d" msgstr "Establecer el número de copias a %d" @@ -6567,7 +6579,7 @@ msgstr "Establecer Orientación" msgid "Set Position" msgstr "Establecer Posición" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Establecer Imprimible" @@ -6583,7 +6595,7 @@ msgstr "Establecer Escala" msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Establece la orientación real de la pantalla LCD dentro de la impresora SLA. El modo retrato cambiará el significado de los parámetros de ancho y alto de la pantalla y las imágenes de salida girarán 90 grados." -#: src/slic3r/GUI/ConfigWizard.cpp:933 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "Define la forma de la base de impresión de tu impresora." @@ -6631,7 +6643,7 @@ msgstr "Ajusta este valor a la altura máxima que puede alcanzar el extrusor mie msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Ajuste este valor según la distancia vertical entre la punta de la boquilla y (generalmente) las barras X del carro. En otras palabras, esta es la altura del cilindro de holgura alrededor de su extrusor, y representa la profundidad máxima que el extrusor puede asomar antes de colisionar con otros objetos impresos." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Establecer No imprimible" @@ -6639,19 +6651,23 @@ msgstr "Establecer No imprimible" msgid "Set Unprintable Instance" msgstr "Establecer Instancia No Imprimible" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Set upper thumb to current slider thumb" msgstr "Coloca el pulgar superior en el control deslizante actual" -#: src/libslic3r/PrintConfig.cpp:3494 -msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." -msgstr "Ajusta el nivel de avisos: 0:fallo, 1:error, 2:peligro, 3:info, 4:depuración, 5:traza\nPor ejemplo. loglevel=2 registrará mensajes de fallo, error y peligro." +#: src/libslic3r/PrintConfig.cpp:3509 +msgid "" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." +msgstr "" +"Ajusta el nivel de avisos: 0:fallo, 1:error, 2:peligro, 3:info, 4:depuración, 5:traza\n" +"Por ejemplo. loglevel=2 registrará mensajes de fallo, error y peligro." #: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Ajustes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "Ajustes para rango de alturas" @@ -6675,35 +6691,35 @@ msgstr "¿Debo cambiar al patrón de relleno rectilíneo?" msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "¿Debo sincronizar las capas de soporte para habilitar la Torre de Limpieza?" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "Aspecto" -#: src/slic3r/GUI/GUI_Preview.cpp:258 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "Carcasas" -#: src/slic3r/GUI/GLCanvas3D.cpp:254 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "Mayús + botón izquierdo del ratón:" -#: src/slic3r/GUI/GLCanvas3D.cpp:260 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "Mayús + botón derecho del ratón:" -#: src/slic3r/GUI/GUI_Preview.cpp:233 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "Mostrar" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" msgstr "Mostrar carpeta &Configuración" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show &labels" msgstr "Muestra &etiquetas" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "Mostrar Acerca de" @@ -6715,15 +6731,15 @@ msgstr "Mostrar ajustes avanzados" msgid "Show error message" msgstr "Muestra mensaje de error" -#: src/slic3r/GUI/Preferences.cpp:97 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "Mostrar impresiones incompatibles y ajustes iniciales de filamentos" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "Muestra lista de atajos de teclado" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show object/instance labels in 3D scene" msgstr "Muestra etiquetas de pieza/repetición en vista 3D" @@ -6735,7 +6751,7 @@ msgstr "Muestra los ajustes simplificados" msgid "Show supports" msgstr "Muestra soportes" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "Mostrar la información del sistema" @@ -6751,15 +6767,15 @@ msgstr "Muestra la vista 3D preliminar de las rebanadas" msgid "Show the filament settings" msgstr "Mostrar los ajustes de filamento" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "Muestra la lista completa de opciones de configuración de impresión/G-code." -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "Muestra la lista completa de opciones de configuración de impresión SLA." -#: src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "Mostrar la lista de los atajos de teclado" @@ -6775,19 +6791,15 @@ msgstr "Mostrar los ajustes de impresión" msgid "Show the printer settings" msgstr "Mostrar la configuración de la impresora" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "Mostrar esta ayuda." -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "Mostrar carpeta de configuración de usuario (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Show/Hide (L)egend" -msgstr "Mostrar/Ocultar (L)eyenda" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Mostrar/Ocultar cuadro de ajustes dispositivos 3Dconnexion" @@ -6795,7 +6807,7 @@ msgstr "Mostrar/Ocultar cuadro de ajustes dispositivos 3Dconnexion" msgid "Show/Hide Legend" msgstr "Muestra/Oculta Leyenda" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Show/Hide object/instance labels" msgstr "Muestra/Oculta etiquetas de pieza/repetición" @@ -6803,7 +6815,7 @@ msgstr "Muestra/Oculta etiquetas de pieza/repetición" msgid "Simple" msgstr "Sencillo" -#: src/slic3r/GUI/ConfigWizard.cpp:821 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "Modo Simple" @@ -6811,7 +6823,7 @@ msgstr "Modo Simple" msgid "Simple View Mode" msgstr "Modo de visualización sencillo" -#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "Ajuste para MM con un solo extrusor" @@ -6819,21 +6831,27 @@ msgstr "Ajuste para MM con un solo extrusor" msgid "Single Extruder Multi Material" msgstr "Extrusor único de múltiples materiales" -#: src/slic3r/GUI/Tab.cpp:1865 -msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" -msgstr "Multi Material en extrusor único seleccionado,\ny todos los extrusores deben tener el mismo diámetro.\n¿Deseas cambiar el diámetro de todos los extrusores al valor del diámetro del nozzle del primer extrusor?" +#: src/slic3r/GUI/Tab.cpp:1867 +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" +msgstr "" +"Multi Material en extrusor único seleccionado,\n" +"y todos los extrusores deben tener el mismo diámetro.\n" +"¿Deseas cambiar el diámetro de todos los extrusores al valor del diámetro del nozzle del primer extrusor?" -#: src/slic3r/GUI/Tab.cpp:2303 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "Parámetros multimaterial para un sólo extrusor" #: src/slic3r/GUI/BedShapeDialog.cpp:77 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 -#: src/slic3r/GUI/Tab.cpp:2320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "Tamaño" -#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "Tamaño y coordenadas" @@ -6841,12 +6859,12 @@ msgstr "Tamaño y coordenadas" msgid "Size in X and Y of the rectangular plate." msgstr "Tamaño en X e Y de la placa rectangular." -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Falda" -#: src/slic3r/GUI/Tab.cpp:1112 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "Falda y balsa" @@ -6858,59 +6876,59 @@ msgstr "Altura de la falda" msgid "Skirt Loops" msgstr "Vueltas de la falda" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "SLA gizmo atajos de teclado" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "Gizmo SLA apagado" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "Gizmo SLA encendido" -#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "Material SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "Selección Perfiles de Material SLA" -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "Tipo Material SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "Materiales SLA" -#: src/slic3r/GUI/Preset.cpp:1473 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "Impresión SLA" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "Notas del material de impresión de SLA" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "Ajustes de impresión SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "Puntos de soporte SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:692 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "Se detectaron soportes SLA fuera del área de impresión" -#: src/slic3r/GUI/ConfigWizard.cpp:1533 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "Impresoras de tecnología SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "Rebanada" @@ -6930,7 +6948,7 @@ msgstr "Slic3r puede subir archivos G-code a un host de impresión. Este campo d msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r no escalará la velocidad por debajo de esta velocidad." -#: src/libslic3r/PrintConfig.cpp:3344 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "Laminar" @@ -6946,35 +6964,35 @@ msgstr "Laminar un archivo en un código G, guárdar como" msgid "Slice gap closing radius" msgstr "Radio de cierre de los huecos al laminar" -#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5140 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "Laminar ahora" -#: src/libslic3r/PrintConfig.cpp:3318 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Laminar el modelo y exportar las capas de impresión de SLA como PNG." -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "Laminar el modelo y exportar las trayectorias como código G." -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Laminar el modelo como FFF o SLA basado en el valor de configuración de printer_technology." -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "Información del laminado" -#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3647 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "Rebanando" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "Laminado terminado" @@ -6982,19 +7000,19 @@ msgstr "Laminado terminado" msgid "Slicing done" msgstr "Laminado terminado" -#: src/slic3r/GUI/MainFrame.cpp:876 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "¡Laminado realizado!" -#: src/libslic3r/SLAPrintSteps.cpp:209 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "El laminado se ha tenido que parar debido a un error interno: Índice de laminado inconsistente." -#: src/libslic3r/SLAPrintSteps.cpp:43 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "Rebanando modelo" -#: src/libslic3r/SLAPrintSteps.cpp:47 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "Soportes para el laminado" @@ -7014,11 +7032,11 @@ msgstr "Inclinación lenta" msgid "Small perimeters" msgstr "Perímetros pequeños" -#: src/slic3r/GUI/GLCanvas3D.cpp:293 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "Suave" -#: src/slic3r/GUI/GLCanvas3D.cpp:263 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "Suavizado" @@ -7026,15 +7044,15 @@ msgstr "Suavizado" msgid "Snapshot name" msgstr "Nombre de la instantánea" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" -msgstr "&Lanzamientos de Software" +msgstr "Lanzamientos de Softwa&re" #: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "relleno sólido" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 #: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Relleno sólido" @@ -7051,7 +7069,7 @@ msgstr "Extrusor para el relleno sólido" msgid "Solid infill threshold area" msgstr "Área del umbral de relleno sólido" -#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Capas sólidas" @@ -7067,23 +7085,19 @@ msgstr "El material soluble se usa muy probablemente para un soporte soluble." msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Algunos comandos de códigos G/M, incluidos el control de temperatura y otros, no son universales. Configura esta opción en el firmware de tu impresora para obtener una salida compatible. El tipo \"Sin extrusión\" evita que PrusaSlicer exporte ningún valor de extrusión." -#: src/slic3r/GUI/GLCanvas3D.cpp:693 +#: src/slic3r/GUI/GLCanvas3D.cpp:688 msgid "Some objects are not visible" msgstr "Algunas piezas no son visibles" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 -msgid "Some objects are not visible when editing supports" -msgstr "Algunos objetos no son visibles cuando al editar soportes" - -#: src/libslic3r/Print.cpp:1222 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "Algunos objetos están demasiado cerca; el extrusor colisionará con ellos." -#: src/libslic3r/Print.cpp:1224 +#: src/libslic3r/Print.cpp:1228 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Algunos objetos son demasiado altos y no se pueden imprimir sin que colisione el extrusor." -#: src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Algunos objetos pueden llevarse bien con unas pocas pads más pequeñas en lugar de una sola grande. Este parámetro define a qué distancia debe estar el centro de dos pads más pequeñas. Si están más cerca, se fusionarán en una sola pad." @@ -7099,9 +7113,9 @@ msgstr "Espaciado entre líneas de interfaz. Establezca cero para obtener una in msgid "Spacing between support material lines." msgstr "Espaciado entre las líneas de material de soporte." -#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 -#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 #: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 @@ -7121,7 +7135,7 @@ msgstr "Velocidad (mm/s)" msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Velocidad para llenar pequeños espacios usando movimientos cortos de zigzag. Mantenga esto razonablemente bajo para evitar demasiados problemas de vibración y sacudidas. Establezca cero para desactivar el llenado de huecos." -#: src/slic3r/GUI/Tab.cpp:1160 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "Velocidad para movimientos sin impresión" @@ -7129,11 +7143,11 @@ msgstr "Velocidad para movimientos sin impresión" msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Velocidad para perímetros (contornos, también conocidos como conchas verticales). Establecer a cero para auto." -#: src/slic3r/GUI/Tab.cpp:1148 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "Velocidad para movimientos de impresión" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "Velocidad para imprimir puentes." @@ -7185,11 +7199,11 @@ msgstr "Velocidad empleada para descargar el filamento en la torre de limpieza ( msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Velocidad utilizada para descargar la punta del filamento inmediatamente después del ramming." -#: src/slic3r/GUI/Mouse3DController.cpp:313 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "Velocidad:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "Esfera" @@ -7201,36 +7215,36 @@ msgstr "Modo vaso" msgid "Spiral Vase" msgstr "Modo Vaso Espiral" -#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 -#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "Dividir" -#: src/slic3r/GUI/Plater.cpp:4028 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "Dividir el objeto seleccionado" -#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "Dividir el objeto seleccionado en objetos individuales" -#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "Dividir el objeto seleccionado en subpartes individuales" -#: src/slic3r/GUI/GLCanvas3D.cpp:4599 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "Partir en varias piezas" -#: src/slic3r/GUI/Plater.cpp:2965 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "Partir en Varias Piezas" -#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "Separar en piezas" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "Separar en Piezas" @@ -7250,7 +7264,7 @@ msgstr "Empezar un nuevo proyecto" msgid "Start at height" msgstr "Comenzar en altura" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Comenzar el código G" @@ -7271,16 +7285,16 @@ msgstr "Estado" msgid "Status:" msgstr "Estado:" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "Silencio" -#: src/slic3r/GUI/Plater.cpp:1267 +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "modo silencioso" -#: src/slic3r/GUI/Plater.cpp:5001 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4985 +#, c-format msgid "STL file exported to %s" msgstr "Archivo STL exportado a %s" @@ -7288,7 +7302,7 @@ msgstr "Archivo STL exportado a %s" msgid "Stop at height" msgstr "Parar en altura" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "¡Éxito!" @@ -7296,23 +7310,23 @@ msgstr "¡Éxito!" msgid "support" msgstr "soporte" -#: src/libslic3r/PrintConfig.cpp:2683 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "Diámetro de la base del soporte" -#: src/libslic3r/PrintConfig.cpp:2693 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "Altura de la base del soporte" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "Distancia de seguridad de la base de soportes" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "Bloqueo de soporte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "Refuerzo de soporte" @@ -7320,19 +7334,19 @@ msgstr "Refuerzo de soporte" msgid "Support Generator" msgstr "Generador de Soportes" -#: src/slic3r/GUI/Tab.cpp:3593 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "Cabeza del soporte" -#: src/libslic3r/PrintConfig.cpp:2611 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "Diámetro del frontal de la cabeza del soporte" -#: src/libslic3r/PrintConfig.cpp:2620 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "Penetración de la cabeza del soporte" -#: src/libslic3r/PrintConfig.cpp:2629 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "Ancho de la cabeza del soporte" @@ -7340,10 +7354,10 @@ msgstr "Ancho de la cabeza del soporte" msgid "support interface" msgstr "interfaz de soporte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 -#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 #: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 @@ -7357,7 +7371,7 @@ msgstr "interfaz de soporte" msgid "Support material" msgstr "Material de soporte" -#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 #: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Interfaz del material de soporte" @@ -7374,51 +7388,51 @@ msgstr "Extrusor para el material de soporte o balsa" msgid "Support material/raft/skirt extruder" msgstr "Extrusor para el material de soporte/falda/balsa" -#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 -#: src/libslic3r/PrintConfig.cpp:2665 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "Soporte en la base solamente" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "Cambio de parámetros de soporte" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "Pilares de soporte" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "Modo de conexión de los pilares de soporte" -#: src/libslic3r/PrintConfig.cpp:2639 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "Diámetro de los puntos de soporte" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "Densidad de los puntos de soporte" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "Edición de puntos de soporte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 -#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 -#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 -#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 -#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 -#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 -#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 -#: src/libslic3r/PrintConfig.cpp:2764 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "Soportes" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "soportes y pad" @@ -7431,55 +7445,69 @@ msgid "Supports stealth mode" msgstr "Soporta modo silencioso" #: src/slic3r/GUI/ConfigManipulation.cpp:159 -msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" -msgstr "Los soportes funcionan mejor si la siguiente característica está habilitada:\n- Detectar perímetros con puentes" +msgid "" +"Supports work better, if the following feature is enabled:\n" +"- Detect bridging perimeters" +msgstr "" +"Los soportes funcionan mejor si la siguiente característica está habilitada:\n" +"- Detectar perímetros con puentes" -#: src/slic3r/GUI/Preferences.cpp:89 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "Suprima los ajustes iniciales \"- predeterminado -\"" -#: src/slic3r/GUI/Preferences.cpp:91 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Suprima los ajustes iniciales \"- predeterminado -\" en las selecciones Imprimir / Filamento / Impresora una vez que haya otros ajustes preestablecidos disponibles." -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 msgid "Switch code to Change extruder" msgstr "Cambiar código para cambiar extrusor" -#: src/slic3r/GUI/DoubleSlider.cpp:1147 +#: src/slic3r/GUI/DoubleSlider.cpp:1179 msgid "Switch code to Color change (%1%) for:" -msgstr "Código para cambiar de color (%1%) para: " +msgstr "Código para cambiar de color (%1%) para:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "Cambiar a 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "Cambiar al modo edición" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" msgstr "Cambiar a Previsualización" #: src/slic3r/GUI/wxExtensions.cpp:703 -#, possible-c-format +#, c-format msgid "Switch to the %s mode" msgstr "Cambiar al modo %s" #: src/slic3r/GUI/GUI_App.cpp:882 -msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." -msgstr "Cambiar el idioma necesita reiniciar la aplicación.\nPerderás todo el contenido situado en la base." +msgid "" +"Switching the language will trigger application restart.\n" +"You will lose content of the plater." +msgstr "" +"Cambiar el idioma necesita reiniciar la aplicación.\n" +"Perderás todo el contenido situado en la base." #: src/slic3r/GUI/WipeTowerDialog.cpp:365 -msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" -msgstr "¡Cambiar a los ajustes sencillos descartará los cambios realizados en el modo avanzado!\n\n¿Quiere continuar?" +msgid "" +"Switching to simple settings will discard changes done in the advanced mode!\n" +"\n" +"Do you want to proceed?" +msgstr "" +"¡Cambiar a los ajustes sencillos descartará los cambios realizados en el modo avanzado!\n" +"\n" +"¿Quiere continuar?" -#: src/slic3r/GUI/Tab.cpp:1016 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "nombre perfil simbólico" @@ -7491,7 +7519,7 @@ msgstr "Sincronizar las capas de soporte con las capas de impresión del objeto. msgid "Synchronize with object layers" msgstr "Sincronizar con capas las del objeto" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "&Información del Sistema" @@ -7499,21 +7527,21 @@ msgstr "&Información del Sistema" msgid "System Information" msgstr "Información del sistema" -#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 -#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "Ajustes del sistema" #: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" -msgstr "Tomar una &Captura de la configuración" +msgstr "&Tomar una Captura de la configuración" #: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Haciendo una instantánea de la configuración" -#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatura" @@ -7525,11 +7553,11 @@ msgstr "Diferencia de temperatura que se aplicará cuando un extrusor no esté a msgid "Temperature variation" msgstr "Variación de temperatura" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "Temperaturas" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "Test" @@ -7542,20 +7570,27 @@ msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Se supone que el patrón de relleno %1% no funciona a una densidad del 100%." #: src/slic3r/GUI/FirmwareDialog.cpp:548 -#, possible-c-format +#, c-format msgid "The %s device could not have been found" msgstr "El dispositivo %s no se pudo encontrar" #: src/slic3r/GUI/FirmwareDialog.cpp:436 -#, possible-c-format -msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." -msgstr "No se encontró el dispositivo %s. \nSi el dispositivo está conectado, presione el botón Reset al lado del conector USB ..." +#, c-format +msgid "" +"The %s device was not found.\n" +"If the device is connected, please press the Reset button next to the USB connector ..." +msgstr "" +"No se encontró el dispositivo %s. \n" +"Si el dispositivo está conectado, presione el botón Reset al lado del conector USB ..." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 -msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." +msgid "" +"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" +"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" +"once the rotation is embedded into the object coordinates." msgstr "El objeto que está manipulando está inclinado (los ángulos de rotación no son múltiplos de 90º). El escalado no uniforme de objetos inclinados sólo es posible en sistema de coordenadas Mundo, una vez que la rotación se ha aplicado a las coordenadas del objeto." -#: src/libslic3r/PrintConfig.cpp:2717 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "El ángulo por defecto para la conexión de sticks y uniones de soporte." @@ -7591,7 +7626,7 @@ msgstr "El extrusor que se usa al imprimir material de soporte, balsa y falda (1 msgid "The filament material type for use in custom G-codes." msgstr "El tipo de material de filamento para uso en códigos G personalizados." -#: src/libslic3r/PrintConfig.cpp:3479 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "El archivo donde se escribirá el resultado (si no se especifica, se basará en en archivo de entrada)." @@ -7599,60 +7634,52 @@ msgstr "El archivo donde se escribirá el resultado (si no se especifica, se bas msgid "The firmware supports stealth mode" msgstr "El firmware soporta el modo silencioso" -#: src/libslic3r/PrintConfig.cpp:377 +#: src/libslic3r/PrintConfig.cpp:120 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "La primera capa se contraerá en el plano XY por el valor configurado para compensar el aplatamiento de la 1ª capa, también conocido como efecto Pie de Elefante." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "los siguientes caracteres no están permitidos:" -#: src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "el siguiente sufijo no está permitido:" -#: src/libslic3r/PrintConfig.cpp:2862 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "El espacio entre la parte de debajo del objeto y el pad generado en el modo de cero elevación." -#: src/libslic3r/PrintConfig.cpp:2695 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "La altura del cono de la base de un pilar" -#: src/slic3r/GUI/DoubleSlider.cpp:1895 +#: src/slic3r/GUI/DoubleSlider.cpp:1922 msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." msgstr "La información del último cambio de color se guardó para impresión con múltiples extrusores mediante cambios de herramienta para toda la impresión." -#: src/slic3r/GUI/DoubleSlider.cpp:1889 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 msgid "The last color change data was saved for a multi extruder printing." msgstr "La información del último cambio de color se guardó para la impresión multi-extrusor." -#: src/slic3r/GUI/DoubleSlider.cpp:1873 -msgid "The last color change data was saved for a multiple extruder printer profile." -msgstr "La última información de cambio de color se guardó para un perfil de impresora con múltiples extrusores." - -#: src/slic3r/GUI/DoubleSlider.cpp:1872 -msgid "The last color change data was saved for a single extruder printer profile." -msgstr "La información del último cambio de color se guardó para la impresión con un solo extrusor." - -#: src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 msgid "The last color change data was saved for a single extruder printing." msgstr "La información del último cambio de color se ha guardado para impresión con un solo extrusor." -#: src/libslic3r/PrintConfig.cpp:2736 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "La distancia máxima entre dos pilares par que se unan entre si. Un valor cero prohibirá el encadenamiento de pilares." -#: src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "La longitud máxima de un puente" -#: src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "La distancia mínima del modelo a la base de pilares en mm. Tiene sentido en el modo de cero elevación donde hay un hueco de acuerdo a cuando este parámetro se introduce entre el modelo y el pad." -#: src/libslic3r/PrintConfig.cpp:175 +#: src/libslic3r/PrintConfig.cpp:185 msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." msgstr "El número de capas sólidas en la base se incrementa por encima de bottom_solid_layers si es necesario para asegurar un espesor mínimo en la pared de inferior." @@ -7669,8 +7696,14 @@ msgid "The object will be raised by this number of layers, and support material msgstr "El objeto será elevado por este número de capas y se generará material de soporte debajo de él." #: src/libslic3r/PrintConfig.cpp:2424 -msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "El porcentaje del área de la cama. \nSi el área de impresión excede el valor especificado, \nentonces se utilizará una inclinación lenta, de lo contrario - una inclinación rápida" +msgid "" +"The percentage of the bed area. \n" +"If the print area exceeds the specified value, \n" +"then a slow tilt will be used, otherwise - a fast tilt" +msgstr "" +"El porcentaje del área de la cama. \n" +"Si el área de impresión excede el valor especificado, \n" +"entonces se utilizará una inclinación lenta, de lo contrario - una inclinación rápida" #: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" @@ -7696,11 +7729,11 @@ msgstr "El archivo seleccionado no contiene geometría." msgid "The selected file contains several disjoint areas. This is not supported." msgstr "El archivo seleccionado contiene varias áreas disjuntas. Esto no es compatible." -#: src/slic3r/GUI/Plater.cpp:2954 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "El objeto seleccionado no se puede dividir porque contiene más de un volumen / material." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "The selected object couldn't be split because it contains only one part." msgstr "El objeto seleccionado no se pudo dividir porque contiene solo una parte." @@ -7708,11 +7741,17 @@ msgstr "El objeto seleccionado no se pudo dividir porque contiene solo una parte msgid "The selected project is no more available" msgstr "El proyecto seleccionado no está diponible" -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." -msgstr "La impresión secuencial está activada.\nEs imposible incluir G-code personalizado para piezas que se imprimen secuencialmente.\nEste código no se procesará durante la generación del G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:998 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"La impresión secuencial está activada.\n" +"Es imposible incluir G-code personalizado para piezas que se imprimen secuencialmente.\n" +"Este código no se procesará durante la generación del G-code." -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "La pendiente de la pared del pad en relación con el plano de la cama. 90 grados significa paredes rectas." @@ -7726,41 +7765,50 @@ msgstr "La velocidad para las retracciones (solo se aplica al motor del extrusor #: src/slic3r/GUI/ConfigManipulation.cpp:81 #, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" -msgstr "El modo Vaso Espiral necesita:\n-un perímetro\n-cero capas de tapa superior\n-0% densidad de relleno\n-sin soportes\n-Comprueba que está activado el espesor de pared vertical\n-Desactiva la detección de paredes finas" +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"El modo Vaso Espiral necesita:\n" +"-un perímetro\n" +"-cero capas de tapa superior\n" +"-0% densidad de relleno\n" +"-sin soportes\n" +"-Comprueba que está activado el espesor de pared vertical\n" +"-Desactiva la detección de paredes finas" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 -#, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "El modo Vaso Espiral requiere:\n- un perímetro\n- sin capas superiores sólidas\n- 0% densidad de relleno\n- sin material de soporte\n- sin ensure_vertical_shell_thickness" - -#: src/libslic3r/Print.cpp:1233 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "La opción Vaso en espiral solo puede ser usada cuando se imprime un solo objeto." -#: src/libslic3r/Print.cpp:1240 +#: src/libslic3r/Print.cpp:1244 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "La opción Vaso en espiral solo puede ser usada al imprimir objetos de un solo material." -#: src/slic3r/GUI/Tab.cpp:3052 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "El nombre proporcionado está vacío. No se puede guardar." -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "El nombre proporcionado no está disponible." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 -#: src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "El nombre proporcionado no es válido;" -#: src/libslic3r/Print.cpp:1218 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "Los ajustes proporcionados causarán una impresión vacía." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "El grosor de las pads y sus paredes de cavidad opcionales." @@ -7768,80 +7816,98 @@ msgstr "El grosor de las pads y sus paredes de cavidad opcionales." msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "La distancia vertical entre el objeto y la interfaz del material de soporte. Establecer esto en 0 también evitará que Slic3r use el flujo y la velocidad del puente para la primera capa de los objetos." -#: src/slic3r/GUI/Tab.cpp:2571 -msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" +#: src/slic3r/GUI/Tab.cpp:2575 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" msgstr "La opción Limpiar no está disponible cuando se usa el modo Retracción de firmware. ¿Lo inhabilito para habilitar la Retracción de firmware?" -#: src/libslic3r/Print.cpp:1264 +#: src/libslic3r/Print.cpp:1268 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "La Torre de Limpieza actualmente no es compatible con E volumétrico (use_volumetric_e=0)." #: src/slic3r/GUI/ConfigManipulation.cpp:115 -msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "La Torre de Limpieza actualmente admite los soportes no solubles solo si están impresos con el extrusor actual sin activar un cambio de herramienta. \n(tanto support_material_extruder como support_material_interface_extruder deben configurarse en 0)." +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool change.\n" +"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgstr "" +"La Torre de Limpieza actualmente admite los soportes no solubles solo si están impresos con el extrusor actual sin activar un cambio de herramienta. \n" +"(tanto support_material_extruder como support_material_interface_extruder deben configurarse en 0)." -#: src/libslic3r/Print.cpp:1396 +#: src/libslic3r/Print.cpp:1400 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "La Torre de Limpieza actualmente admite los soportes no solubles solo si están impresos con el extrusor actual sin activar un cambio de herramienta. (Tanto support_material_extruder como support_material_interface_extruder deben configurarse en 0)." -#: src/libslic3r/Print.cpp:1266 +#: src/libslic3r/Print.cpp:1270 msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." msgstr "La Torre de Limpieza no se permite ahora para impresiones secuenciales multimaterial." -#: src/libslic3r/Print.cpp:1258 +#: src/libslic3r/Print.cpp:1262 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Actualmente, La Torre de Limpieza solo es compatible con los tipos de código G de Marlin, RepRap/Sprinter y Repetier." -#: src/libslic3r/Print.cpp:1260 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "En la actualidad, Wipe Tower solo es compatible con el direccionamiento relativo del extrusor (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1289 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "La torre de limpieza sólo se permite para varios objetos si se imprimen sobre un número igual de capas de balsa" -#: src/libslic3r/Print.cpp:1291 +#: src/libslic3r/Print.cpp:1295 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "La torre de limpieza sólo es compatible con varios objetos si se imprimen con la misma support_material_contact_distance" -#: src/libslic3r/Print.cpp:1293 +#: src/libslic3r/Print.cpp:1297 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "La torre de limpieza sólo es compatible con varios objetos si se cortan por igual." -#: src/libslic3r/Print.cpp:1287 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "La torre de limpieza sólo es compatible con varios objetos si tienen alturas de capas iguales" -#: src/libslic3r/Print.cpp:1253 +#: src/libslic3r/Print.cpp:1257 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "La torre de limpieza solo es compatible si todos los extrusores tienen el mismo diámetro del nozzle y usan filamento del mismo diámetro." -#: src/libslic3r/Print.cpp:1335 +#: src/libslic3r/Print.cpp:1339 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "La Torre de Limpieza solo es compatible si todos los objetos tienen la misma altura de capa variable" -#: src/libslic3r/SLAPrintSteps.cpp:596 +#: src/libslic3r/SLAPrintSteps.cpp:621 msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." msgstr "Hay objetos no imprimibles. Intenta ajustar la configuración de soportes para que los objetos se puedan imprimir." -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." -msgstr "Hay un cambio de color para el extrusor que no se ha usado antes. \nComprueba tus ajustes para evitar cambios de color innecesarios." +#: src/slic3r/GUI/DoubleSlider.cpp:1030 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"Hay un cambio de color para el extrusor que no se ha usado antes. \n" +"Comprueba tus ajustes para evitar cambios de color innecesarios." -#: src/slic3r/GUI/DoubleSlider.cpp:990 -msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." +#: src/slic3r/GUI/DoubleSlider.cpp:1024 +msgid "" +"There is a color change for extruder that won't be used till the end of print job.\n" +"This code won't be processed during G-code generation." msgstr "Hay un cambio de color para el extrusor que no será usado hasta el final del trabajo de impresión. Este código no será procesado durante la generación del G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:993 -msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." -msgstr "Hay un cambio de extrusor establecido en el mismo extrusor.\nEste código no se procesará durante la generación del código G." +#: src/slic3r/GUI/DoubleSlider.cpp:1027 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Hay un cambio de extrusor establecido en el mismo extrusor.\n" +"Este código no se procesará durante la generación del código G." #: src/slic3r/GUI/UpdateDialogs.cpp:225 -#, possible-c-format +#, c-format msgid "This %s version: %s" msgstr "Esta %s versión: %s" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Este código se inserta entre los objetos cuando se utiliza la impresión secuencial. Por defecto, el extrusor y la temperatura de la cama se reinician utilizando un comando de no espera; sin embargo, si se detectan M104, M109, M140 o M190 en este código personalizado, Slic3r no agregará comandos de temperatura. Tenga en cuenta que puede usar variables de marcador de posición para todas las configuraciones de Slic3r, por lo que puede poner un comando \"M109 S [first_layer_temperature]\" donde lo desee." @@ -7849,7 +7915,7 @@ msgstr "Este código se inserta entre los objetos cuando se utiliza la impresió msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Este código personalizado se inserta en cada cambio de capa, justo después del movimiento Z y antes de que el extrusor se mueva al primer punto de capa. Tenga en cuenta que puede usar variables de marcador de posición para todos los ajustes de Slic3r, así como [layer_num] y [layer_z]." -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Este código personalizado se inserta en cada cambio de capa, justo antes del movimiento Z. Tenga en cuenta que puede usar variables de marcador de posición para todos los ajustes de Slic3r, así como [layer_num] y [layer_z]." @@ -7881,11 +7947,11 @@ msgstr "Esta configuración experimental utiliza comandos G10 y G11 para que el msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Este ajuste experimental utiliza como salida del E valores en milímetros cúbicos en lugar de milímetros lineales. Si su firmware aún no conoce el (los) diámetro (s) del filamento, puede poner comandos como 'M200 D [filament_diameter_0] T0' en su código G inicial para activar el modo volumétrico y usar el diámetro del filamento asociado al filamento seleccionado. en Slic3r. Esto solo se admite en Marlin reciente." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "Este extrusor se aplicará a los objetos seleccionados" -#: src/libslic3r/PrintConfig.cpp:214 +#: src/libslic3r/PrintConfig.cpp:224 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Este factor afecta la cantidad de plástico para formar puentes. Puede disminuirlo ligeramente para extraer los extruidos y evitar el combado, aunque la configuración predeterminada suele ser buena y debe experimentar con la refrigeración (usar un ventilador) antes de ajustar esto." @@ -7893,7 +7959,7 @@ msgstr "Este factor afecta la cantidad de plástico para formar puentes. Puede d msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Este factor cambia la cantidad de flujo proporcionalmente. Es posible que necesite ajustar esta configuración para obtener un buen acabado superficial y corregir el ancho de una sola pared. Los valores usuales están entre 0.9 y 1.1. Si cree que necesita cambiar esto más, verifique el diámetro del filamento y los pasos del E en el firmware." -#: src/libslic3r/PrintConfig.cpp:204 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "La velocidad de este ventilador se aplica durante todos los puentes y voladizos." @@ -7909,24 +7975,40 @@ msgstr "Esta característica permite forzar una capa sólida en cada número de msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Esta función aumentará Z gradualmente mientras imprime un objeto de pared simple para eliminar cualquier costura visible. Esta opción requiere un perímetro único, sin relleno, sin capas sólidas superiores y sin material de soporte. Todavía puede establecer cualquier cantidad de capas sólidas inferiores, así como bucles de falda / balsa. No funcionará al imprimir más de un objeto." -#: src/slic3r/GUI/Plater.cpp:2351 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Este archivo no puede ser cargado en un modo sencillo. ¿Quieres cambiar al modo experto?" -#: src/slic3r/GUI/Plater.cpp:2341 -msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" -msgstr "Este archivo contiene varios objetos posicionados en múltiples alturas. En lugar de considerarlos como objetos múltiples, ¿debería considerar\n este archivo como un único objeto que tiene varias partes?" +#: src/slic3r/GUI/Plater.cpp:2357 +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should I consider\n" +"this file as a single object having multiple parts?" +msgstr "" +"Este archivo contiene varios objetos posicionados en múltiples alturas. En lugar de considerarlos como objetos múltiples, ¿debería considerar\n" +" este archivo como un único objeto que tiene varias partes?" #: src/slic3r/GUI/FirmwareDialog.cpp:332 -#, possible-c-format -msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." -msgstr "Este archivo hex del firmware no se corresponde con el modelo de impresora. El archivo hex está preparado para: %s\nEsta Impresora: %s\n\n¿Quieres continuar y grabar este archivo hex de todos modos?\nPor favor continúa solo si estás seguro de que es lo correcto." +#, c-format +msgid "" +"This firmware hex file does not match the printer model.\n" +"The hex file is intended for: %s\n" +"Printer reported: %s\n" +"\n" +"Do you want to continue and flash this hex file anyway?\n" +"Please only continue if you are sure this is the right thing to do." +msgstr "" +"Este archivo hex del firmware no se corresponde con el modelo de impresora. El archivo hex está preparado para: %s\n" +"Esta Impresora: %s\n" +"\n" +"¿Quieres continuar y grabar este archivo hex de todos modos?\n" +"Por favor continúa solo si estás seguro de que es lo correcto." -#: src/libslic3r/PrintConfig.cpp:304 +#: src/libslic3r/PrintConfig.cpp:314 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Este indicador habilita la lógica de enfriamiento automático que ajusta la velocidad de impresión y la velocidad del ventilador según el tiempo de impresión de la capa." -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:536 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Esta opción activa la balsa que se imprimirá alrededor del objeto en la primera capa." @@ -7938,19 +8020,19 @@ msgstr "Esta bandera impone una retractación cada vez que se realiza un movimie msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Esta bandera moverá la boquilla mientras se retrae para minimizar la posible mancha en los extrusores con fugas." -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "Este es un preajuste preestablecido." -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "Esta es una medida relativa de la densidad de los puntos de soporte." -#: src/slic3r/GUI/Tab.cpp:2334 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Esta es una impresora multimaterial de extrusor único, los diámetros de todas los extrusores se establecerán según el nuevo valor. ¿Quieres proceder?" -#: src/slic3r/GUI/Tab.cpp:957 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "Este es un preajuste del sistema." @@ -7958,11 +8040,11 @@ msgstr "Este es un preajuste del sistema." msgid "This is only used in the Slic3r interface as a visual help." msgstr "Esto solo se usa en la interfaz de Slic3r como ayuda visual." -#: src/libslic3r/PrintConfig.cpp:326 +#: src/libslic3r/PrintConfig.cpp:336 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Esta es la aceleración después de que se usen los valores de aceleración específicos de cada función (perímetro / relleno). Establezca cero para evitar restablecer la aceleración." -#: src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:194 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "Esta es la aceleración que su impresora usará para los puentes. Establezca cero para deshabilitar el control de aceleración para puentes." @@ -8000,8 +8082,12 @@ msgid "This matrix describes volumes (in cubic milimetres) required to purge the msgstr "Esta matriz detalla los volúmenes (en milímetros cúbicos) necesarios para purgar el nuevo filamento en la torre de limpieza para cualquier par de filamentos." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 -msgid "This operation is irreversible.\nDo you want to proceed?" -msgstr "Esta operación es irreversible. \n¿Deseas continuar?" +msgid "" +"This operation is irreversible.\n" +"Do you want to proceed?" +msgstr "" +"Esta operación es irreversible. \n" +"¿Deseas continuar?" #: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." @@ -8064,11 +8150,18 @@ msgid "This vector saves required volumes to change from/to each tool used on th msgstr "Este vector guarda los volúmenes necesarios para cambiar desde/hasta cada herramienta usada en la torre de limpieza. Estos valores se emplean para simplificar la creación de los volúmenes totales de purga más abajo." #: src/slic3r/GUI/UpdateDialogs.cpp:216 -#, possible-c-format -msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "Esta versión de %s no es compatible con los grupos de configuraciones instaladas. Esto sucede probablemente por ejecutar una versión de %s después de haber usado una más reciente.\n\nPuedes salir de %s e intentarlo de nuevo con una versión más reciente, o puedes volver a ejecutar la configuración inicial. Al hacerlo se creará una copia de respaldo de la configuración existente antes de instalar la nueva compatible con esta versión de %s." +#, c-format +msgid "" +"This version of %s is not compatible with currently installed configuration bundles.\n" +"This probably happened as a result of running an older %s after using a newer one.\n" +"\n" +"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "" +"Esta versión de %s no es compatible con los grupos de configuraciones instaladas. Esto sucede probablemente por ejecutar una versión de %s después de haber usado una más reciente.\n" +"\n" +"Puedes salir de %s e intentarlo de nuevo con una versión más reciente, o puedes volver a ejecutar la configuración inicial. Al hacerlo se creará una copia de respaldo de la configuración existente antes de instalar la nueva compatible con esta versión de %s." -#: src/libslic3r/PrintConfig.cpp:2449 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Esto aplicará una corrección gamma a los polígonos 2D rasterizados. Un valor gamma de cero significa que el umbral se encuentra en el medio. Este comportamiento elimina el antialiasing sin perder agujeros en los polígonos." @@ -8080,11 +8173,11 @@ msgstr "Núcleos" msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Núcleos usados para tareas multi-recurso. Número óptimo de núcleos es ligeramente sobre el numero de núcleos/procesadores disponibles." -#: src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "Inclinación" -#: src/slic3r/GUI/Tab.cpp:2092 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "Tiempo de inclinación" @@ -8112,32 +8205,20 @@ msgstr "Tiempo de la inclinación lenta" msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Tiempo de espera después de que se ha descargado el filamento. Puede ayudar para conseguir cambios de herramienta fiables con materiales flexibles que pueden necesitar más tiempo para encogerse a su tamaño original." -#: src/slic3r/GUI/DoubleSlider.cpp:962 -msgid "To add another code use Ctrl + Left click" -msgstr "Para añadir otro código usa Ctrl + Click izquierdo" - -#: src/slic3r/GUI/DoubleSlider.cpp:963 -msgid "To add another code use Right click" -msgstr "Para añadir otro código usa Click derecho" - -#: src/slic3r/GUI/Tab.cpp:968 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "Para hacerlo por favor especifique un nuevo nombre para esos ajustes." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "A excepción de la manipulación redundante de herramientas,\nLos cambios de color para los extrusores no utilizados se eliminaron" - -#: src/slic3r/GUI/Plater.cpp:4023 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "A los objetos" -#: src/slic3r/GUI/Plater.cpp:4025 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "A las piezas" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 -#, possible-c-format +#, c-format msgid "Toggle %c axis mirroring" msgstr "Activar reflejo del eje %c" @@ -8145,13 +8226,13 @@ msgstr "Activar reflejo del eje %c" msgid "too many files" msgstr "demasiados archivos" -#: src/libslic3r/SLAPrintSteps.cpp:154 +#: src/libslic3r/SLAPrintSteps.cpp:190 msgid "Too much overlapping holes." msgstr "Demasiados agujeros superpuestos." -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 -#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Herramienta" @@ -8159,11 +8240,11 @@ msgstr "Herramienta" msgid "Tool #" msgstr "Herramienta nº" -#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "Código G de cambio de herramienta" -#: src/slic3r/GUI/Tab.cpp:1493 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parámetros del cambio de herramienta para impresoras de un único extrusor MM" @@ -8174,7 +8255,7 @@ msgstr "Parámetros del cambio de herramienta para impresoras de un único extru msgid "Top" msgstr "Superior" -#: src/slic3r/GUI/PresetHints.cpp:300 +#: src/slic3r/GUI/PresetHints.cpp:304 msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." msgstr "Sugerencia de grosor de la carcasa superior / inferior: no disponible debido a una altura de capa inválida." @@ -8182,11 +8263,11 @@ msgstr "Sugerencia de grosor de la carcasa superior / inferior: no disponible de msgid "Top fill pattern" msgstr "Patrón de relleno superior" -#: src/slic3r/GUI/PresetHints.cpp:319 +#: src/slic3r/GUI/PresetHints.cpp:323 msgid "Top is open." msgstr "La parte superior está abierta." -#: src/slic3r/GUI/PresetHints.cpp:313 +#: src/slic3r/GUI/PresetHints.cpp:317 msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "La tapa superior es de %1% mm de espesor con una altura de capa de %2% mm." @@ -8194,7 +8275,7 @@ msgstr "La tapa superior es de %1% mm de espesor con una altura de capa de %2% m msgid "top solid infill" msgstr "relleno sólido superior" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 #: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Relleno sólido superior" @@ -8223,13 +8304,12 @@ msgstr "Tiempo de empuje total" msgid "Translate" msgstr "Traducir" +#: src/slic3r/GUI/Mouse3DController.cpp:300 #: src/slic3r/GUI/Mouse3DController.cpp:317 -#: src/slic3r/GUI/Mouse3DController.cpp:337 -#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Translación" -#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Recorrido" @@ -8237,7 +8317,7 @@ msgstr "Recorrido" msgid "Triangles" msgstr "Triángulos" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Intenta reparar cualquier malla no múltiple (esta opción se agrega implícitamente cada vez que necesitamos laminar el modelo para realizar la acción solicitada)." @@ -8245,11 +8325,11 @@ msgstr "Intenta reparar cualquier malla no múltiple (esta opción se agrega imp msgid "Type of the printer." msgstr "Tipo de impresora." -#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "Tipo:" -#: src/slic3r/GUI/Plater.cpp:3436 +#: src/slic3r/GUI/Plater.cpp:3428 msgid "Unable to reload:" msgstr "Incapaz de recargar:" @@ -8257,18 +8337,19 @@ msgstr "Incapaz de recargar:" msgid "undefined error" msgstr "error no definido" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Deshacer" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Deshacer %1$d Acción" msgstr[1] "Deshacer %1$d Acciones" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "Deshacer Historia" @@ -8298,23 +8379,36 @@ msgstr "Velocidad de descarga" msgid "Unloading speed at the start" msgstr "Velocidad de descarga al inicio" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "CANDADO ABIERTO" -#: src/slic3r/GUI/Tab.cpp:3266 -msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." -msgstr "El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados) para el grupo de opciones actual.\nHaz clic para restablecer todas las configuraciones para el grupo de opciones actual a los valores del sistema (o predeterminados)." +#: src/slic3r/GUI/Tab.cpp:3282 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or default) values." +msgstr "" +"El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados) para el grupo de opciones actual.\n" +"Haz clic para restablecer todas las configuraciones para el grupo de opciones actual a los valores del sistema (o predeterminados)." -#: src/slic3r/GUI/Tab.cpp:3281 -msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." -msgstr "El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados).\nHaz clic para reiniciar el valor actual a los del sistema (o predeterminados)" +#: src/slic3r/GUI/Tab.cpp:3297 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"El icono de CANDADO DESBLOQUEADO indica que se cambiaron algunas configuraciones y no son iguales a los valores del sistema (o predeterminados).\n" +"Haz clic para reiniciar el valor actual a los del sistema (o predeterminados)" -#: src/slic3r/GUI/GUI_Preview.cpp:257 +#: src/slic3r/GUI/Plater.cpp:5203 +#, c-format +msgid "Unmounting successful. The device %s(%s) can now be safely removed from the computer." +msgstr "Expulsión exitosa. El dispositivo %s (%s) puede desconectarse del ordenador de forma segura." + +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "Desretracciones" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "Cambios no guardados" @@ -8322,10 +8416,6 @@ msgstr "Cambios no guardados" msgid "Unsaved Presets" msgstr "Ajustes iniciales no guardados" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 -msgid "Unselect gizmo / Clear selection" -msgstr "Deseleccionar gizmo / eliminar selección" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:179 msgid "Unselect gizmo or clear selection" msgstr "Deseleccionar gizmo o borrar selección" @@ -8354,12 +8444,12 @@ msgstr "archivo multidisk no compatible" msgid "Unsupported OpenGL version" msgstr "Versión de OpenGL no soportada" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "Selección no soportada" -#: src/slic3r/GUI/GLCanvas3D.cpp:960 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:955 +#, c-format msgid "up to %.2f mm" msgstr "hasta %.2f mm" @@ -8367,15 +8457,15 @@ msgstr "hasta %.2f mm" msgid "Update available" msgstr "Actualización disponible" -#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "Actualiza los ajustes de fábrica automáticamente" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "Actualizaciones" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Las actualizaciones nunca se realizan sin el consentimiento del usuario y nunca sobre-escriben ajustes personalizados del usuario." @@ -8399,12 +8489,12 @@ msgstr "Cargar el host de impresión con el siguiente nombre de archivo:" msgid "Uploading" msgstr "Subiendo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 msgid "Upper Layer" msgstr "Capa superior" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "Conexión USB/Serial" @@ -8412,11 +8502,11 @@ msgstr "Conexión USB/Serial" msgid "USB/serial port for printer connection." msgstr "Puerto USB/serial para la conexión con la impresora." -#: src/slic3r/GUI/DoubleSlider.cpp:1115 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "Usar otro extrusor" -#: src/slic3r/GUI/Preferences.cpp:147 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "Usar tamaño personalizado para los iconos de la barra de herramientas" @@ -8428,15 +8518,15 @@ msgstr "Usar la retracción del firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Use barras diagonales ( / ) como separadores de directorios si fuese necesario." -#: src/slic3r/GUI/Preferences.cpp:129 +#: src/slic3r/GUI/Preferences.cpp:126 msgid "Use free camera" msgstr "Usar la cámara libre" -#: src/libslic3r/PrintConfig.cpp:2771 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "Usar pad" -#: src/slic3r/GUI/Preferences.cpp:121 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "Usar cámara en perspectiva" @@ -8444,7 +8534,7 @@ msgstr "Usar cámara en perspectiva" msgid "Use relative E distances" msgstr "Usar las distancias relativas en E" -#: src/slic3r/GUI/Preferences.cpp:106 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "Usa la resolución de Retina para la escena 3D" @@ -8460,27 +8550,27 @@ msgstr "Use esta configuración para rotar el patrón de material de soporte en msgid "Use volumetric E" msgstr "Usar E volumétrico" -#: src/slic3r/GUI/DoubleSlider.cpp:1139 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 msgid "used" msgstr "usado" -#: src/slic3r/GUI/Plater.cpp:239 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "Filamento usado (g)" -#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "Filamento usado (m)" -#: src/slic3r/GUI/Plater.cpp:238 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "Filamento usado (mm³)" -#: src/slic3r/GUI/Plater.cpp:1188 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "Material usado (ml)" -#: src/slic3r/GUI/Plater.cpp:240 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "Material usado (unidades)" @@ -8488,8 +8578,8 @@ msgstr "Material usado (unidades)" msgid "User" msgstr "Usuario" -#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 -#: src/slic3r/GUI/PresetBundle.cpp:1670 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "Ajustes de usuario" @@ -8505,31 +8595,31 @@ msgstr "El valor es el mismo que el del sistema" msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "El valor ha cambiado y ya no es igual al valor del sistema o al último valor guardado" -#: src/slic3r/GUI/Tab.cpp:2198 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "Los valores en esta columna son para el modo Normal" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "Los valores en esta columna son para el modo Silencioso" -#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "Altura de capa variable" -#: src/slic3r/GUI/GLCanvas3D.cpp:1713 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "Altura de capa variable - Adaptativa" -#: src/slic3r/GUI/GLCanvas3D.cpp:604 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "Altura de capa variable - Edicción manual" -#: src/slic3r/GUI/GLCanvas3D.cpp:1705 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "Altura de capa variable - Reiniciar" -#: src/slic3r/GUI/GLCanvas3D.cpp:1721 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "Altura de capa variable - Suavizar todo" @@ -8537,7 +8627,7 @@ msgstr "Altura de capa variable - Suavizar todo" msgid "variants" msgstr "variantes" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "fabricante" @@ -8557,24 +8647,24 @@ msgstr "Versión" msgid "version" msgstr "versión" -#: src/slic3r/GUI/Tab.cpp:1055 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "Carcasas verticales" -#: src/slic3r/GUI/GUI_Preview.cpp:220 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "Vista" -#: src/slic3r/GUI/ConfigWizard.cpp:814 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "Modo de vista" -#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 -#: src/libslic3r/SLAPrintSteps.cpp:430 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "Visualizar soportes" -#: src/slic3r/GUI/Plater.cpp:163 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "Volumen" @@ -8582,7 +8672,7 @@ msgstr "Volumen" msgid "Volume to purge (mm³) when the filament is being" msgstr "Volumen a purgar (mm³) cuando el filamento está siendo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "Volúmenes en Objetos reordenados" @@ -8590,11 +8680,11 @@ msgstr "Volúmenes en Objetos reordenados" msgid "Volumetric" msgstr "Volumétrico" -#: src/slic3r/GUI/Tab.cpp:1593 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "Sugerencias de flujo volumétrico no disponibles" -#: src/slic3r/GUI/GUI_Preview.cpp:228 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "Tasa de caudal volumétrico" @@ -8606,12 +8696,12 @@ msgstr "Tasa de flujo volumétrico (mm³/seg)" msgid "Volumetric speed" msgstr "Velocidad volumétrica" -#: src/libslic3r/PrintConfig.cpp:2906 +#: src/libslic3r/PrintConfig.cpp:2915 msgid "Wall thickness" msgstr "Espesor de pared" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Peligro" @@ -8621,16 +8711,16 @@ msgid "Welcome" msgstr "Bienvenido" #: src/slic3r/GUI/ConfigWizard.cpp:427 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Bienvenido al %s Asistente de Configuración" #: src/slic3r/GUI/ConfigWizard.cpp:429 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Bienvenido al %s Ayudante de Configuración" -#: src/slic3r/GUI/Preferences.cpp:99 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Cuando está marcada, los ajustes preestablecidos de impresión y filamento se muestran en el editor de ajustes preestablecidos, incluso si están marcados como incompatibles con la impresora activa" @@ -8638,11 +8728,11 @@ msgstr "Cuando está marcada, los ajustes preestablecidos de impresión y filame msgid "when printing" msgstr "al imprimir" -#: src/libslic3r/PrintConfig.cpp:243 +#: src/libslic3r/PrintConfig.cpp:253 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Al imprimir objetos multi-material, esta configuración hará que slic3r recorte las partes del objeto superpuestas una por la otra (la 2da parte será recortada por la 1ra, la 3ra parte será recortada por la 1ra y 2da, etc.)." -#: src/libslic3r/PrintConfig.cpp:295 +#: src/libslic3r/PrintConfig.cpp:305 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Al imprimir múltiples objetos o copias, esta característica completará cada objeto antes de pasar al siguiente (y comenzará desde la capa inferior). Esta función es útil para evitar el riesgo de impresiones arruinadas. Slic3r debería advertirte y evitar las colisiones del extrusor, pero ten cuidado." @@ -8674,23 +8764,23 @@ msgstr "Cuando la retracción se compensa después de cambiar la herramienta, el msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Cuando la retracción se compensa después de un movimiento, el extrusor necesitará introducir más filamento. Este ajuste raramente se necesita." -#: src/slic3r/GUI/Tab.cpp:3247 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "VIÑETA BLANCA" -#: src/slic3r/GUI/Tab.cpp:3269 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "El icono de VIÑETA BLANCA un ajuste no del sistema (o no por defecto)" -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "El símbolo de VIÑETA BLANCA indica que los ajustes son los mismos que los de la última vez que salvaste los ajustes para el grupo de opciones actual." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "El símbolo de VIÑETA BLANCA indica que los valores son los mismos que los de los ajustes guardados la última vez." -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Ancho" @@ -8698,7 +8788,7 @@ msgstr "Ancho" msgid "Width (mm)" msgstr "Ancho (mm)" -#: src/libslic3r/PrintConfig.cpp:2631 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "Ancho desde el centro de la esfera trasera al centro de la esfera delantera" @@ -8706,7 +8796,7 @@ msgstr "Ancho desde el centro de la esfera trasera al centro de la esfera delant msgid "Width of a wipe tower" msgstr "Ancho de la torre de limpieza" -#: src/libslic3r/PrintConfig.cpp:2882 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Ancho de los palitos de apoyo que conectan la pieza y la base generada." @@ -8734,18 +8824,18 @@ msgstr "Limpiar en el objeto" msgid "Wipe into this object's infill" msgstr "Limpiar en el relleno del objeto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 #: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Opciones de limpieza" -#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Torre de limpieza" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "torre de limpieza" @@ -8758,7 +8848,7 @@ msgstr "Torre de limpieza" msgid "Wipe tower - Purging volume adjustment" msgstr "Torre de limpieza - Ajuste del volumen de purga" -#: src/slic3r/GUI/Tab.cpp:1490 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "Parámetros de la torre de limpieza" @@ -8792,14 +8882,23 @@ msgid "World coordinates" msgstr "Coordenadas mundiales" #: src/slic3r/GUI/UpdateDialogs.cpp:92 -msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "¿Te gustaría instalarlo?\n\nTen en cuenta que primero se creará una instantánea de la configuración. Así que se puede recuperar en cualquier momento en caso de que hubiera algún problema con la nueva versión.\nUpdated configuration bundles:" +msgid "" +"Would you like to install it?\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"¿Te gustaría instalarlo?\n" +"\n" +"Ten en cuenta que primero se creará una instantánea de la configuración. Así que se puede recuperar en cualquier momento en caso de que hubiera algún problema con la nueva versión.\n" +"Updated configuration bundles:" #: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "fallo write calledback" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "Escribir información sobre el modelo en la consola." @@ -8827,7 +8926,7 @@ msgstr "Compensación de tamaño XY" msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordenada Y de la esquina delantera izquierda de la torre de limpieza" -#: src/slic3r/GUI/Plater.cpp:1167 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "Sí" @@ -8843,11 +8942,11 @@ msgstr "Puede poner sus notas con respecto al filamento aquí." msgid "You can put your notes regarding the printer here." msgstr "Puede poner sus notas con respecto a la impresora aquí." -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "Puede poner tus notas sobre el material de impresión de SLA aquí." -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:360 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Puedes configurarlo como un valor positivo para desactivar el ventilador durante todas las capas iniciales, de manera que no empeora la adhesión." @@ -8855,16 +8954,16 @@ msgstr "Puedes configurarlo como un valor positivo para desactivar el ventilador msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Puedes usar todas las opciones de configuración como las variables dentro de esta muestra. Por ejemplo [layer_height], [fill_density] etc.También puedes usar [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "No puede cambiar un tipo de la última parte sólida del objeto." -#: src/slic3r/GUI/Plater.cpp:2374 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2390 +#, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "No puede agregar el(los) objeto(s) desde % s porque uno o algunos de ellos son de varias piezas" -#: src/slic3r/GUI/Plater.cpp:2295 +#: src/slic3r/GUI/Plater.cpp:2311 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "No puedes cargar un proyecto SLA con varias piezas en la base" @@ -8884,29 +8983,33 @@ msgstr "Debes seleccionar al menos un material para las impresoras seleccionadas msgid "You may need to update your graphics card driver." msgstr "Puede que necesites actualizar tu tarjeta de gráficos." -#: src/slic3r/GUI/Preferences.cpp:176 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "You must install a configuration update." +msgstr "Es necesario instalar una actualización de la configuración." + +#: src/slic3r/GUI/Preferences.cpp:172 +#, c-format msgid "You need to restart %s to make the changes effective." msgstr "Es necesario reiniciar %s para hacer los cambios efectivos." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 +#, c-format msgid "You started your selection with %s Item." msgstr "Has empezado la selección con %s Items." -#: src/slic3r/GUI/DoubleSlider.cpp:1875 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 msgid "Your current changes will delete all saved color changes." msgstr "Tus nuevos cambios borrarán todos los cambios de color." -#: src/slic3r/GUI/DoubleSlider.cpp:1896 +#: src/slic3r/GUI/DoubleSlider.cpp:1923 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "Tus cambios actuales eliminarán todos los cambios guardados del extrusor (herramienta)." -#: src/slic3r/GUI/MainFrame.cpp:913 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "Tu fichero fue reparado." -#: src/slic3r/GUI/Plater.cpp:2512 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Tu pieza parece demasiado grande, así que se ha escalado automáticamente para que pueda caber en la base de impresión." @@ -8915,54 +9018,62 @@ msgid "Z offset" msgstr "Ajuste en altura Z" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." -msgstr "Cero como la altura de la primera capa no es válido.\n\nLa altura de la primera capa se restablecerá a 0.01." +msgid "" +"Zero first layer height is not valid.\n" +"\n" +"The first layer height will be reset to 0.01." +msgstr "" +"Cero como la altura de la primera capa no es válido.\n" +"\n" +"La altura de la primera capa se restablecerá a 0.01." #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." -msgstr "Cero como la altura de capa no es válido.\n\nLa altura de capa se restablecerá a 0.01." +msgid "" +"Zero layer height is not valid.\n" +"\n" +"The layer height will be reset to 0.01." +msgstr "" +"Cero como la altura de capa no es válido.\n" +"\n" +"La altura de capa se restablecerá a 0.01." -#: src/libslic3r/PrintConfig.cpp:2658 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/Mouse3DController.cpp:326 -#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Zoom" msgstr "Zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 msgid "Zoom in" msgstr "Aumentar zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 msgid "Zoom out" msgstr "Reducir zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "Zoom a todos los objetos en la escena, si ninguno es seleccionado" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 msgid "Zoom to Bed" msgstr "Zoom a la Cama" #: src/slic3r/GUI/KBShortcutsDialog.cpp:182 -msgid "Zoom to selected object\nor all objects in scene, if none selected" -msgstr "Zoom a objetos seleccionados\no a todos los objetos en escena, si no se seleccionó ninguno" +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"Zoom a objetos seleccionados\n" +"o a todos los objetos en escena, si no se seleccionó ninguno" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "Zoom al objeto seleccionado" - -#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 #: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 #: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" diff --git a/resources/localization/fr/PrusaSlicer.mo b/resources/localization/fr/PrusaSlicer.mo index d71142b7ae01cf3e2a7ec1247f6efc4c5b293b33..815a9b6f5a98a44409e2f3cf0aaf8ae24d60d7f6 100644 GIT binary patch delta 47897 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 delta 50399 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 diff --git a/resources/localization/fr/PrusaSlicer_fr.po b/resources/localization/fr/PrusaSlicer_fr.po index 9411cfd38d..0e0a9accf5 100644 --- a/resources/localization/fr/PrusaSlicer_fr.po +++ b/resources/localization/fr/PrusaSlicer_fr.po @@ -5,133 +5,166 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: PhraseApp (phraseapp.com)\n" +"X-Generator: Poedit 2.2.1\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" #: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Pensez à vérifier les mises à jour sur http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:874 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " a été découpé avec succès." -#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 #: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 #: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 -#: src/libslic3r/PrintConfig.cpp:2758 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/slic3r/GUI/GLCanvas3D.cpp:968 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:963 +#, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3110 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "%1% Préréglage" -#: src/slic3r/GUI/Plater.cpp:4413 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "L'imprimante %1% était active au moment où l'instantané cible Annuler / Refaire a été pris. Basculer vers l'imprimante %1% requiert de recharger les préréglages de %1%." -#: src/libslic3r/Print.cpp:1370 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm est trop bas pour être imprimable avec une hauteur de couche de %3% mm" #: src/slic3r/GUI/PresetHints.cpp:229 -#, possible-c-format +#, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s à une vitesse de filament de %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:1149 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1152 +#, c-format msgid "%d (%d shells)" msgstr "%d (%d coques)" -#: src/slic3r/GUI/Plater.cpp:1157 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1160 +#, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d faces invalides, %d arrêtes corrigées, %d faces retirées, %d faces ajoutées, %d faces inversées, %d arrêtes à l'envers" -#: src/slic3r/GUI/PresetHints.cpp:269 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:270 +#, c-format msgid "%d lines: %.2f mm" msgstr "%d lignes : %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:1029 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:1027 +#, c-format msgid "%d presets successfully imported." msgstr "%d préréglages importés avec succès." -#: src/slic3r/GUI/MainFrame.cpp:694 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:692 +#, c-format msgid "%s &Website" msgstr "Site &Web de %s" #: src/slic3r/GUI/UpdateDialogs.cpp:211 -#, possible-c-format +#, c-format msgid "%s configuration is incompatible" msgstr "La configuration de %s n'est pas compatible" -#: src/slic3r/GUI/Field.cpp:170 -#, possible-c-format +#: src/slic3r/GUI/Field.cpp:175 +#, c-format msgid "%s doesn't support percentage" msgstr "%s ne supporte pas un pourcentage" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, possible-c-format +#, c-format msgid "%s error" msgstr "Erreur %s" #: src/slic3r/GUI/ConfigWizard.cpp:481 -#, possible-c-format +#, c-format msgid "%s Family" msgstr "%s Famille" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, possible-c-format +#, c-format msgid "%s has encountered an error" msgstr "%s a rencontré une erreur" #: src/slic3r/GUI/GUI_App.cpp:138 -#, possible-c-format -msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." -msgstr "%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela peut également être un bug et nous aimerions que vous le signaliez.\n\nL'application va maintenant fermer." +#, c-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" +"\n" +"The application will now terminate." +msgstr "" +"%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela peut également être un bug et nous aimerions que vous le signaliez.\n" +"\n" +"L'application va maintenant fermer." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 -#, possible-c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 +#, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s a rencontré une erreur. Elle a apparemment été provoquée par un manque de mémoire. Si vous êtes certain d'avoir assez de RAM sur votre système, cela peut également être un bug et nous aimerions que vous le signaliez." #: src/slic3r/GUI/UpdateDialogs.cpp:308 -#, possible-c-format -msgid "%s has no configuration updates aviable." -msgstr "%s n'a aucune mise à jour de configuration disponible." +#, c-format +msgid "%s has no configuration updates available." +msgstr "%s n'a aucunes mises à jour de configuration disponibles." #: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 -#, possible-c-format +#, c-format msgid "%s incompatibility" msgstr "Incompatibilité de %s" #: src/slic3r/GUI/UpdateDialogs.cpp:270 -#, possible-c-format -msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." -msgstr "%s utilise à présent une structure de configuration mise à jour.\n\nIl existe à présent des \"préréglages Système\", qui intègrent les réglages par défaut pour les différentes imprimantes. Ces préréglages Système ne peuvent pas être modifiés, mais les utilisateurs peuvent désormais créer leurs propres préréglages héritant des paramètres de l'un des préréglages Système.\nUn tel préréglage peut ainsi hériter d'une valeur particulière de son parent ou la remplacer par une valeur personnalisée.\n\nVeuillez utiliser les %s qui suivent pour paramétrer les nouveaux réglages et éventuellement accepter les mises à jour de réglage automatiques." +#, c-format +msgid "" +"%s now uses an updated configuration structure.\n" +"\n" +"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" +"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" +"\n" +"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +msgstr "" +"%s utilise à présent une structure de configuration mise à jour.\n" +"\n" +"Il existe à présent des \"préréglages Système\", qui intègrent les réglages par défaut pour les différentes imprimantes. Ces préréglages Système ne peuvent pas être modifiés, mais les utilisateurs peuvent désormais créer leurs propres préréglages héritant des paramètres de l'un des préréglages Système.\n" +"Un tel préréglage peut ainsi hériter d'une valeur particulière de son parent ou la remplacer par une valeur personnalisée.\n" +"\n" +"Veuillez utiliser les %s qui suivent pour paramétrer les nouveaux réglages et éventuellement accepter les mises à jour de réglage automatiques." #: src/slic3r/GUI/GUI_App.cpp:820 -#, possible-c-format +#, c-format msgid "%s View Mode" msgstr "Mode de Vue de %s" #: src/slic3r/GUI/UpdateDialogs.cpp:151 -#, possible-c-format -msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "%s va maintenant démarrer les mises à jour. Sinon, il ne pourra pas démarrer.\n\nNotez qu'un instantané complet de la configuration sera créé en premier. Il peut ensuite être restauré à tout moment en cas de problème avec la nouvelle version.\n\nLots de configuration mis à jour :" +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%s va maintenant démarrer les mises à jour. Sinon, il ne pourra pas démarrer.\n" +"\n" +"Notez qu'un instantané complet de la configuration sera créé en premier. Il peut ensuite être restauré à tout moment en cas de problème avec la nouvelle version.\n" +"\n" +"Lots de configuration mis à jour :" -#: src/slic3r/GUI/MainFrame.cpp:707 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:705 +#, c-format msgid "&About %s" msgstr "&Au sujet de %s" @@ -149,9 +182,9 @@ msgstr "&Copier" #: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" -msgstr "&Supprimer la sélection" +msgstr "Suppri&mer la sélection" -#: src/slic3r/GUI/MainFrame.cpp:724 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" msgstr "&Editer" @@ -159,19 +192,19 @@ msgstr "&Editer" msgid "&Export" msgstr "&Exporter" -#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "Onglet des Réglages du &Filament" -#: src/slic3r/GUI/MainFrame.cpp:723 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "&Fichier" -#: src/slic3r/GUI/ConfigWizard.cpp:1984 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "&Fin" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "&Aide" @@ -187,7 +220,7 @@ msgstr "&Langue" msgid "&New Project" msgstr "&Nouveau Projet" -#: src/slic3r/GUI/ConfigWizard.cpp:1983 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "&Suivant >" @@ -197,7 +230,7 @@ msgstr "&Ouvrir Projet" #: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" -msgstr "&Coller" +msgstr "C&oller" #: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" @@ -231,13 +264,13 @@ msgstr "Tout &Sélectionner" msgid "&Undo" msgstr "Ann&uler" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" msgstr "&Vue" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" -msgstr "&Fenêtre" +msgstr "Fenê&tre" #: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" @@ -247,19 +280,19 @@ msgstr "(Tout)" msgid "(minimum)" msgstr "(minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "(Re)découper" #: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" -msgstr "(Re)Découper Maintenant" +msgstr "(Re)Découper Main&tenant" -#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(Inconnu)" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ") non trouvé." @@ -275,7 +308,7 @@ msgstr "0.2 (détachable)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4108 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "Vue d'éditeur 3D" @@ -283,46 +316,46 @@ msgstr "Vue d'éditeur 3D" msgid "3D Honeycomb" msgstr "Nid d'abeille 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:291 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "Paramètres 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:5068 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5038 +#, c-format msgid "3MF file exported to %s" msgstr "Fichier 3MF exporté vers %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1982 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "< &Précédent" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:287 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Une expression booléenne utilisant les valeurs de configuration d'un profil d'imprimante actif. Si cette expression est évaluée comme vraie, ce profil est considéré comme compatible avec le profil d'imprimante actif." -#: src/libslic3r/PrintConfig.cpp:262 +#: src/libslic3r/PrintConfig.cpp:272 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Une expression booléenne utilisant les valeurs de configuration d'un profil d'imprimante actif. Si cette expression est évaluée comme vraie, ce profil est considéré comme compatible avec le profil d'imprimante actif." -#: src/slic3r/GUI/ConfigWizard.cpp:1035 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "La règle générale est 160 à 230 °C pour le PLA et 215 à 250 °C pour l'ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:1049 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "La règle générale est 60 °C pour le PLA et 110 °C pour l'ABS. Laissez à zéro si vous n'avez pas de lit chauffant." -#: src/slic3r/GUI/GLCanvas3D.cpp:691 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "Parcours détecté en dehors de la zone d'impression" #: src/slic3r/GUI/AboutDialog.cpp:199 -#, possible-c-format +#, c-format msgid "About %s" msgstr "Au sujet de %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:964 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:959 +#, c-format msgid "above %.2f mm" msgstr "au dessus de %.2f mm" @@ -330,11 +363,11 @@ msgstr "au dessus de %.2f mm" msgid "Above Z" msgstr "Au-delà de Z" -#: src/slic3r/GUI/Tab.cpp:1166 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "Contrôle de l'accélération (avancé)" -#: src/libslic3r/PrintConfig.cpp:2916 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Accuracy" msgstr "Précision" @@ -346,19 +379,19 @@ msgstr "Activer" msgid "Active" msgstr "Actif" -#: src/slic3r/GUI/DoubleSlider.cpp:1103 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 msgid "active" msgstr "actif" -#: src/slic3r/GUI/GLCanvas3D.cpp:272 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "Adaptatif" -#: src/slic3r/GUI/Tab.cpp:243 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "Ajouter une nouvelle imprimante" -#: src/libslic3r/PrintConfig.cpp:2773 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "Ajouter une base sous le modèle supporté" @@ -366,47 +399,47 @@ msgstr "Ajouter une base sous le modèle supporté" msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Ajouter une enveloppe (une ligne unique de périmètre) autour de la base du support. Ceci rend le support plus fiable, mais aussi plus difficile à retirer." -#: src/slic3r/GUI/DoubleSlider.cpp:989 +#: src/slic3r/GUI/DoubleSlider.cpp:991 msgid "Add another code - Ctrl + Left click" msgstr "Ajouter un autre code - Ctr + Clic gauche" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:992 msgid "Add another code - Right click" msgstr "Ajouter un autre code - Clic droit" -#: src/slic3r/GUI/DoubleSlider.cpp:1449 +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "Ajouter un changement de couleur" -#: src/slic3r/GUI/DoubleSlider.cpp:1148 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "Ajouter le changement de couleur (%1%) pour :" -#: src/slic3r/GUI/DoubleSlider.cpp:959 +#: src/slic3r/GUI/DoubleSlider.cpp:988 msgid "Add color change - Left click" msgstr "Ajouter un changement de couleur - Clic gauche" -#: src/slic3r/GUI/DoubleSlider.cpp:957 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" msgstr "Ajouter un changement de couleur - Clic gauche pour la couleur prédéfinie ou Maj + Clic gauche pour la sélection d'une couleur personnalisée" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "Ajouter un repère de changement de couleur pour la couche en cours" -#: src/slic3r/GUI/DoubleSlider.cpp:1462 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "Ajouter un G-code personnalisé" -#: src/slic3r/GUI/GLCanvas3D.cpp:245 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "Ajouter des détails" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 msgid "Add drainage hole" msgstr "Ajouter un trou de drainage" -#: src/slic3r/GUI/DoubleSlider.cpp:955 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "Add extruder change - Left click" msgstr "Ajouter un changement d'extrudeur - Clic gauche" @@ -414,22 +447,22 @@ msgstr "Ajouter un changement d'extrudeur - Clic gauche" msgid "Add extruder to sequence" msgstr "Ajouter l'extrudeur à la séquence" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "Ajouter un Sous-objet Générique" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "Ajouter une Zone de Hauteur" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 -#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" msgstr "Ajouter l'instance" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Add Instance of the selected object" msgstr "Ajouter une Instance à l'objet sélectionné" @@ -437,7 +470,7 @@ msgstr "Ajouter une Instance à l'objet sélectionné" msgid "Add layer range" msgstr "Ajouter une zone de couche" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "Ajouter des couches" @@ -450,7 +483,7 @@ msgstr "Ajouter un modificateur" msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Ajouter plus de périmètres si nécessaire pour éviter des trous dans les parois inclinées. Slic3r ajoute des périmètres, jusqu'à ce que plus de 70% de la boucle immédiatement au-dessus soit supportée." -#: src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" msgstr "Ajouter une instance supplémentaire de l'objet sélectionné" @@ -458,48 +491,48 @@ msgstr "Ajouter une instance supplémentaire de l'objet sélectionné" msgid "Add part" msgstr "Ajouter une pièce" -#: src/slic3r/GUI/DoubleSlider.cpp:1459 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "Ajouter une pause d'impression" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "Ajouter un point" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "Ajouter un point à la sélection" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "Ajouter des réglages" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "Ajouter une Combinaison de Réglages pour la zone de Hauteur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "Ajouter une Combinaison de Réglages pour l'Objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "Ajouter une Combinaison de Réglages pour le Sous-objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "Ajouter des Réglages pour les Couches" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "Ajouter des Réglages pour un Objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "Ajouter des Réglages pour un Sous-objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "Ajouter une Forme" @@ -515,27 +548,27 @@ msgstr "Ajouter un bloqueur de support" msgid "Add support enforcer" msgstr "Ajouter un générateur de supports" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "Ajouter un point de support" -#: src/slic3r/GUI/GLCanvas3D.cpp:4516 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "Ajouter..." -#: src/slic3r/GUI/PresetBundle.cpp:1697 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "Ajouter/Enlever des filaments" -#: src/slic3r/GUI/Preset.cpp:1151 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "Ajouter/Enlever des matériaux" -#: src/slic3r/GUI/Preset.cpp:1153 +#: src/slic3r/GUI/Preset.cpp:1203 msgid "Add/Remove printers" msgstr "Ajouter/Supprimer des imprimantes" -#: src/slic3r/GUI/Tab.cpp:972 +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "Informations complémentaires :" @@ -543,7 +576,7 @@ msgstr "Informations complémentaires :" msgid "Additional Settings" msgstr "Réglages Additionnels" -#: src/slic3r/GUI/ConfigWizard.cpp:790 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "De plus, un instantané de sauvegarde de l'ensemble de la configuration est créé avant qu'une mise à jour ne soit appliquée." @@ -551,18 +584,19 @@ msgstr "De plus, un instantané de sauvegarde de l'ensemble de la configuration msgid "Address" msgstr "Adresse" -#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 -#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 -#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 -#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "Avancé" -#: src/slic3r/GUI/ConfigWizard.cpp:822 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "Mode avancé" @@ -578,15 +612,15 @@ msgstr "Avancé : journal de Sortie" msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Après un changement d'outil, la position exacte dans la buse du filament qui vient d'être chargé peut ne pas être connue, et la pression du filament n'est probablement pas encore stable. Avant de purger la tête d'impression dans un remplissage ou un objet sacrificiel, Slic3r va toujours utiliser cette quantité de matériau dans la tour de nettoyage pour produire un remplissage successif ou des extrusions d'objet sacrificiel de façon fiable." -#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-Code après changement de couche" -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "Aligner le modèle sur le point défini." -#: src/libslic3r/PrintConfig.cpp:3382 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "Aligner XY" @@ -595,19 +629,15 @@ msgid "Aligned" msgstr "Aligné" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3158 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "Tous" -#: src/libslic3r/Print.cpp:1215 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "Tous les objets sont en dehors du volume d'impression." -#: src/slic3r/GUI/Plater.cpp:3298 -msgid "All objects will be removed, continue ?" -msgstr "Tous les objets seront supprimés, continuer?" - -#: src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "All objects will be removed, continue?" msgstr "Tous les objets seront supprimés, continuer ?" @@ -619,15 +649,15 @@ msgstr "Tout en standard" msgid "allocation failed" msgstr "échec de l'allocation" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "Le long de l'axe X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "Le long de l'axe Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "Le long de l'axe Z" @@ -635,24 +665,28 @@ msgstr "Le long de l'axe Z" msgid "Alternate nozzles:" msgstr "Buses alternatives :" -#: src/slic3r/GUI/Plater.cpp:5022 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5002 +#, c-format msgid "AMF file exported to %s" msgstr "Fichier AMF exporté vers %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 -msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" -msgstr "Objet détecté en dehors de la zone d'impression\nRésolvez ce problème pour poursuivre le processus de découpage" - #: src/slic3r/GUI/GLCanvas3D.cpp:690 +msgid "" +"An object outside the print area was detected\n" +"Resolve the current problem to continue slicing" +msgstr "" +"Objet détecté en dehors de la zone d'impression\n" +"Résolvez ce problème pour poursuivre le processus de découpage" + +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "Objet détecté en dehors de la zone d'impression" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "et il y a les changements non sauvegardés suivants :" -#: src/slic3r/GUI/Plater.cpp:3154 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "Une autre tâche d'export est actuellement en cours." @@ -661,7 +695,7 @@ msgstr "Une autre tâche d'export est actuellement en cours." msgid "Any arrow" msgstr "N'importe quelle flèche" -#: src/slic3r/GUI/Tab.cpp:967 +#: src/slic3r/GUI/Tab.cpp:965 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Toute modification doit être enregistrée comme un nouveau préréglage hérité de celui-ci." @@ -674,7 +708,7 @@ msgid "Application preferences" msgstr "Préférences de l'application" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "Appliquer les modifications" @@ -691,19 +725,23 @@ msgid "archive is too large" msgstr "l'archive est trop volumineuse" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3107 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "Êtes-vous sûr de vouloir %1% le préréglage sélectionné ?" #: src/slic3r/GUI/FirmwareDialog.cpp:902 -msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" -msgstr "Êtes-vous certain de vouloir annuler le processus de flash du firmware ?\nCela pourrait rendre votre imprimante inutilisable !" +msgid "" +"Are you sure you want to cancel firmware flashing?\n" +"This could leave your printer in an unusable state!" +msgstr "" +"Êtes-vous certain de vouloir annuler le processus de flash du firmware ?\n" +"Cela pourrait rendre votre imprimante inutilisable !" -#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 msgid "Are you sure you want to continue?" msgstr "Êtes-vous sûr de vouloir continuer ?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "Êtes-vous certain de vouloir le faire ?" @@ -711,50 +749,54 @@ msgstr "Êtes-vous certain de vouloir le faire ?" msgid "Area fill" msgstr "Remplissage de zone" -#: src/slic3r/GUI/Plater.cpp:638 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "Autour de l'objet" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "Agencer" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "Agencer la sélection" -#: src/libslic3r/PrintConfig.cpp:3428 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Agencer les modèles fournis sur un plateau et les fusionner en un seul modèle afin de ne réaliser les actions qu'une seule fois." -#: src/slic3r/GUI/Plater.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "Agencement en cours" -#: src/slic3r/GUI/Plater.cpp:2825 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "Agencement annulé." -#: src/slic3r/GUI/Plater.cpp:2826 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "Agencement terminé." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "Flèche Bas" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "Flèche Gauche" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "Flèche Droite" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "Flèche Haut" @@ -762,8 +804,8 @@ msgstr "Flèche Haut" msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Une solution consiste à lancer PrusaSlicer avec des graphismes 3D rendus par un logiciel en lançant prusa-slicer.exe avec le paramètre --sw_renderer." -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 -#: src/slic3r/GUI/Tab.cpp:2944 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "Attention !" @@ -776,17 +818,17 @@ msgid "Auto-center parts" msgstr "Centrer automatiquement les pièces" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "Générer automatiquement les points" -#: src/slic3r/GUI/Plater.cpp:1154 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, c-format msgid "Auto-repaired (%d errors)" msgstr "Réparé automatiquement (%d erreurs)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:337 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 +#, c-format msgid "Auto-repaired (%d errors):" msgstr "Réparé automatiquement (%d erreurs):" @@ -794,19 +836,19 @@ msgstr "Réparé automatiquement (%d erreurs):" msgid "Autodetected" msgstr "Autodétecté" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "Autogénérer les points de support" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "L'autogénération va effacer tous les points édités manuellement." -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "Génération automatique" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "Mises à jour automatiques" @@ -814,31 +856,39 @@ msgstr "Mises à jour automatiques" msgid "Automatically repair an STL file" msgstr "Réparer automatiquement un fichier STL" -#: src/slic3r/GUI/Tab.cpp:1173 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "Vitesse automatique (avancé)" -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "Éviter de traverser les périmètres" -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "FLÈCHE ARRIÈRE" -#: src/slic3r/GUI/Tab.cpp:3274 -msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." -msgstr "L'icône FLÈCHE ARRIÈRE indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\nCliquez pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." +#: src/slic3r/GUI/Tab.cpp:3290 +msgid "" +"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click to reset all settings for the current option group to the last saved preset." +msgstr "" +"L'icône FLÈCHE ARRIÈRE indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\n" +"Cliquez pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." -#: src/slic3r/GUI/Tab.cpp:3288 -msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." -msgstr "L'icône FLÈCHE ARRIÈRE indique que la valeur a été changée et qu'elle n'est pas identique au dernier préréglage enregistré.\nCliquez pour restaurer la valeur à celle du dernier préréglage enregistré." +#: src/slic3r/GUI/Tab.cpp:3304 +msgid "" +"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" +"Click to reset current value to the last saved preset." +msgstr "" +"L'icône FLÈCHE ARRIÈRE indique que la valeur a été changée et qu'elle n'est pas identique au dernier préréglage enregistré.\n" +"Cliquez pour restaurer la valeur à celle du dernier préréglage enregistré." #: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Tâche en arrière plan" -#: src/slic3r/GUI/GUI_ObjectList.cpp:349 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "arrêtes à l'envers" @@ -846,7 +896,7 @@ msgstr "arrêtes à l'envers" msgid "based on Slic3r" msgstr "basé sur Slic3r" -#: src/slic3r/GUI/Tab.cpp:1441 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "Plateau" @@ -858,7 +908,7 @@ msgstr "Modèle personnalisé de lit" msgid "Bed custom texture" msgstr "Texture du plateau personnalisée" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "Forme du plateau" @@ -866,23 +916,23 @@ msgstr "Forme du plateau" msgid "Bed shape" msgstr "Forme du plateau" -#: src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "Forme du Plateau et Taille" -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "Température du plateau" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Température du plateau pour les couches après la première. Mettez ceci à zéro pour désactiver les commandes de contrôle de température du plateau dans la sortie." -#: src/slic3r/GUI/ConfigWizard.cpp:1052 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "Température du Plateau :" -#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "G-Code avant changement de couche" @@ -890,7 +940,7 @@ msgstr "G-Code avant changement de couche" msgid "Before roll back" msgstr "Avant le retour en arrière" -#: src/slic3r/GUI/Plater.cpp:637 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "Sous l'objet" @@ -898,27 +948,27 @@ msgstr "Sous l'objet" msgid "Below Z" msgstr "En-deçà de Z" -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "Entre le G-code des objets" -#: src/slic3r/GUI/Tab.cpp:2004 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "Entre le G-code des objets (pour une impression séquentielle)" -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "Volume de la bouteille" -#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "Poids de la bouteille" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 -#: src/libslic3r/PrintConfig.cpp:173 +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "Dessous" @@ -926,15 +976,15 @@ msgstr "Dessous" msgid "Bottom fill pattern" msgstr "Motif de remplissage du dessous" -#: src/slic3r/GUI/PresetHints.cpp:338 +#: src/slic3r/GUI/PresetHints.cpp:342 msgid "Bottom is open." msgstr "Le fond est ouvert." -#: src/slic3r/GUI/PresetHints.cpp:332 +#: src/slic3r/GUI/PresetHints.cpp:336 msgid "Bottom shell is %1% mm thick for layer height %2% mm." msgstr "La coque inférieure a une épaisseur de %1% mm pour une hauteur de couche %2% mm." -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "Couches solides inférieures" @@ -942,37 +992,37 @@ msgstr "Couches solides inférieures" msgid "Bottom View" msgstr "Vue du Dessous" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "Case" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "Pont" -#: src/libslic3r/PrintConfig.cpp:212 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "Ratio de flux pour les ponts" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Remplissage du pont" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "Ponts" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "Vitesse du ventilateur pour les ponts" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "Angle du pont" -#: src/libslic3r/PrintConfig.cpp:194 +#: src/libslic3r/PrintConfig.cpp:204 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Contournement de l'angle du pont. Si laissé à zéro, l'angle du pont sera calculé automatiquement. Sinon, l'angle fourni sera utilisé pour tous les ponts. Utilisez 180° pour un angle nul." @@ -980,16 +1030,16 @@ msgstr "Contournement de l'angle du pont. Si laissé à zéro, l'angle du pont s msgid "Bridging volumetric" msgstr "Volumétrie des ponts" -#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "Bordure" -#: src/libslic3r/PrintConfig.cpp:234 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "Largeur de la bordure" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1719 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "Parcourir" @@ -1005,15 +1055,15 @@ msgstr "Description des Boutons et des Couleurs de Texte" msgid "by the print profile maximum" msgstr "par le maximum du profil de l'imprimante" -#: src/slic3r/GUI/Preferences.cpp:115 +#: src/slic3r/GUI/Preferences.cpp:113 msgid "Camera" msgstr "Caméra" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "Vue caméra" -#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Annuler" @@ -1022,11 +1072,11 @@ msgstr "Annuler" msgid "Cancel selected" msgstr "Annuler la sélection" -#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Annulé" -#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Annulation" @@ -1034,15 +1084,15 @@ msgstr "Annulation" msgid "Cancelling..." msgstr "Annulation..." -#: src/libslic3r/Flow.cpp:55 +#: src/libslic3r/Flow.cpp:61 msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." msgstr "Impossible de calculer la largeur d'extrusion pour %1% : la variable \"%2%\" n'est pas accessible." -#: src/slic3r/GUI/Tab.cpp:3057 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "Impossible d'écraser un profil système." -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "Impossible d'écraser un profil externe." @@ -1050,7 +1100,7 @@ msgstr "Impossible d'écraser un profil externe." msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Il n'est pas possible de continuer sans ajouter des points de support ! Ajoutez des points de support ou désactivez la génération de support." -#: src/slic3r/GUI/Tab.cpp:1832 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "Fonctionnalités" @@ -1058,60 +1108,60 @@ msgstr "Fonctionnalités" msgid "Capture a configuration snapshot" msgstr "Capturer un instantané de la configuration" -#: src/libslic3r/PrintConfig.cpp:3409 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "Centrer" -#: src/libslic3r/PrintConfig.cpp:3410 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "Centrer l'impression autour d'un point donné." -#: src/slic3r/GUI/Tab.cpp:1726 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Fichiers de certificat (*.crt, *.pem)|*.crt;*.pem|Tous les fichiers|*.*" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 msgid "Change camera type (perspective, orthographic)" msgstr "Changer le type d'appareil photo (perspective, orthographique)" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 msgid "Change drainage hole diameter" msgstr "Changer le diamètre du trou de drainage" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "Changer l'extrudeur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "Changer d'Extrudeur" -#: src/slic3r/GUI/DoubleSlider.cpp:1113 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Change extruder (N/A)" msgstr "Changer l'extrudeur (N/A)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "Changer les Extrudeurs" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 -#, possible-c-format +#, c-format msgid "Change Option %s" msgstr "Modifier l'Option %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "Changer le Type de Partie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "Changer le diamètre de la tête de la pointe" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "Modifie le nombre d'instances de l'objet sélectionné" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "Changer le type" @@ -1123,7 +1173,7 @@ msgstr "Téléchargement du Journal des Modifications" msgid "Changing of an application language" msgstr "Changer la langue d'une application" -#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Vérifier les mises à jour de l'application" @@ -1133,13 +1183,13 @@ msgstr "Vérifier les mises à jour de configuration" #: src/slic3r/GUI/GUI_App.cpp:802 msgid "Check for updates" -msgstr "Vérifier les mises à jour" +msgstr "Vérifier les mises à jo&ur" #: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Choisir un fichier à partir duquel importer la texture du plateau (PNG/SVG) :" -#: src/slic3r/GUI/MainFrame.cpp:775 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Choisir un fichier à découper (STL/OBJ/AMF/3MF/PRUSA) :" @@ -1159,7 +1209,7 @@ msgstr "Choisir un fichier (3MF/AMF) :" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Choisir un ou plusieurs fichiers (STL/OBJ/AMF/3MF/PRUSA) :" -#: src/slic3r/GUI/ConfigWizard.cpp:896 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "Choisissez le type de firmware utilisé par votre imprimante." @@ -1167,23 +1217,23 @@ msgstr "Choisissez le type de firmware utilisé par votre imprimante." msgid "Circular" msgstr "Circulaire" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "Faites un clic droit sur la souris pour ouvrir l'Historique" -#: src/slic3r/GUI/GUI_ObjectList.cpp:402 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "Cliquez sur l'icône pour changer les propriétés imprimables de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "Cliquez sur l'icône pour modifier les réglages de l'objet" -#: src/slic3r/GUI/Plater.cpp:340 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "Cliquez pour éditer le préréglage" -#: src/libslic3r/PrintConfig.cpp:242 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "Dissocier les objets multi-pièces" @@ -1193,39 +1243,39 @@ msgid "Clipping of view" msgstr "Le plan de découpage" #: src/slic3r/GUI/FirmwareDialog.cpp:852 -#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Fermer" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 msgid "Closing distance" msgstr "Distance de fermeture" -#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 -#: src/libslic3r/PrintConfig.cpp:582 +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Couleur" -#: src/slic3r/GUI/DoubleSlider.cpp:972 +#: src/slic3r/GUI/DoubleSlider.cpp:1005 msgid "Color change (\"%1%\")" msgstr "Changement de couleur (\"%1%\")" -#: src/slic3r/GUI/DoubleSlider.cpp:973 +#: src/slic3r/GUI/DoubleSlider.cpp:1006 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Changement de couleur (\"%1%\") pour l'extrudeur %2%" #: src/slic3r/GUI/GLCanvas3D.cpp:995 -#, possible-c-format +#, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Changement de couleur pour l'Extrudeur %d à %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 #: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Couleur d'Impression" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "Hauteur du Colorprint" @@ -1245,23 +1295,23 @@ msgstr "Commandes" msgid "Comment:" msgstr "Commentaire :" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "Profils d'impression compatibles" -#: src/libslic3r/PrintConfig.cpp:276 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "Condition des profils d'impression compatibles" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "Imprimantes compatibles" -#: src/libslic3r/PrintConfig.cpp:261 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "Condition de compatibilité des imprimantes" -#: src/libslic3r/PrintConfig.cpp:294 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "Compléter les objets individuels" @@ -1277,15 +1327,15 @@ msgstr "échec de la compression" msgid "Concentric" msgstr "Concentrique" -#: src/slic3r/GUI/ConfigWizard.cpp:2113 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "&Assistant de Configuration" -#: src/slic3r/GUI/ConfigWizard.cpp:2116 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" -msgstr "&Assistant de Configuration" +msgstr "Assistant de Co&nfiguration" -#: src/slic3r/GUI/ConfigWizard.cpp:2112 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "Assistant de Configuration" @@ -1305,15 +1355,11 @@ msgstr "Mise à jour de la configuration" msgid "Configuration update is available" msgstr "Une mise à jour de la configuration est disponible" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Configuration update is necessary to install" -msgstr "Une mise à jour de la configuration est nécessaire pour l'installation." - #: src/slic3r/GUI/UpdateDialogs.cpp:303 msgid "Configuration updates" msgstr "Mises à jour de la configuration" -#: src/slic3r/GUI/ConfigWizard.cpp:2115 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "Assistant de Configuration" @@ -1321,11 +1367,11 @@ msgstr "Assistant de Configuration" msgid "Confirmation" msgstr "Confirmation" -#: src/slic3r/GUI/Tab.cpp:1929 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "La connexion a échoué." -#: src/slic3r/GUI/Tab.cpp:3612 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "Connexion des tiges de support et jonctions" @@ -1345,7 +1391,7 @@ msgstr "La connexion à FlashAir fonctionne correctement et le téléchargement msgid "Connection to OctoPrint works correctly." msgstr "La connexion avec OctoPrint fonctionne correctement." -#: src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "La connexion avec l'imprimante fonctionne correctement." @@ -1361,11 +1407,11 @@ msgstr "Distance de contact Z" msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Contributions par Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik et de nombreux autres personnes." -#: src/libslic3r/PrintConfig.cpp:2650 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Contrôle le type de pont entre deux piliers voisins. Peut-être en zig-zag, en croisement (double zig-zag) ou dynamique auquel cas il alternera automatiquement entre les deux premiers en fonction de la distance entre les deux piliers." -#: src/slic3r/GUI/Tab.cpp:1446 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "Refroidissement" @@ -1377,19 +1423,23 @@ msgstr "Les mouvements de refroidissement accélèrent progressivement à partir msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Les mouvements de refroidissement accélèrent progressivement jusqu'à cette vitesse." -#: src/slic3r/GUI/Tab.cpp:1467 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "Seuils de refroidissement" -#: src/libslic3r/PrintConfig.cpp:317 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "Longueur du tube de refroidissement" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "Position du tube de refroidissement" -#: src/slic3r/GUI/GLCanvas3D.cpp:4554 +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "Copies de l'objet sélectionné" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "Copier" @@ -1397,7 +1447,7 @@ msgstr "Copier" msgid "Copy selection to clipboard" msgstr "Copier la sélection dans le presse-papier" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" @@ -1405,36 +1455,48 @@ msgstr "Copier dans le presse-papier" msgid "Copy to Clipboard" msgstr "Copier dans le Presse-Papier" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "La copie du G-code temporaire est terminée mais le code exporté n'a pas pu être ouvert au cours de la vérification de copie. Le G-code de sortie se trouve en %1%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "La copie du G-code temporaire est terminée mais le code localisé en %1% n'a pas pu être ouvert au cours de la vérification de copie. Le G-code de sortie se trouve en %2%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "La copie du G-code provisoire dans le G-code final a échoué" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "La copie du G-code provisoire dans le G-code final a échoué. Peut-être que la carte SD est protégée en écriture ?" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "La copie du G-code temporaire vers le G-code de sortie a échoué. Il est possible qu'il y ait un problème avec le matériel cible, veuillez tenter à nouveau l'export ou utilisez un matériel différent. Le G-code de sortie corrompu se trouve en %1%.tmp." + #: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Droits d'auteur" -#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "Correction avant expansion" -#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "Corrections" -#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "Coût" -#: src/slic3r/GUI/Plater.cpp:241 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "Coût (argent)" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Impossible d'agencer les objets du modèle ! Certaines géométries sont peut-être non-valides." @@ -1458,7 +1520,7 @@ msgstr "Impossible de se connecter à OctoPrint" msgid "Could not connect to Prusa SLA" msgstr "Impossible de se connecter à Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1689 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "Impossible d'obtenir une référence d'Hôte d'Imprimante valide" @@ -1478,15 +1540,15 @@ msgstr "Les fentes d'une taille inférieure à 2x le rayon de fermeture de l'esp msgid "CRC-32 check failed" msgstr "Échec du test CRC-32" -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "Créer un socle autour de l'objet et ignorer l'élévation du support" -#: src/libslic3r/PrintConfig.cpp:2715 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "Angle critique" -#: src/libslic3r/PrintConfig.cpp:2659 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "Croiser" @@ -1495,28 +1557,28 @@ msgid "Cubic" msgstr "Cubique" #: src/slic3r/GUI/wxExtensions.cpp:704 -#, possible-c-format +#, c-format msgid "Current mode is %s" msgstr "Le mode actuel est %s" -#: src/slic3r/GUI/Tab.cpp:959 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "Le préréglage actuel est hérité du préréglage par défaut." -#: src/slic3r/GUI/Tab.cpp:962 -#, possible-c-format -msgid "Current preset is inherited from:\n\t%s" -msgstr "Le préréglage actuel est hérité de :\n%s" +#: src/slic3r/GUI/Tab.cpp:960 +#, c-format +msgid "" +"Current preset is inherited from:\n" +"\t%s" +msgstr "" +"Le préréglage actuel est hérité de :\n" +"%s" #: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Version actuelle :" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "Pointe (mm)" - -#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Personnalisé" @@ -1525,18 +1587,14 @@ msgstr "Personnalisé" msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Un fichier de certificat CA personnalisé peut être spécifié pour les connexions HTTPS OctoPrint, au format crt / pem. Si ce champ est vide, le certificat par défaut OS CA certificate repository est utilisé." -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "G-code personnalisé" -#: src/slic3r/GUI/DoubleSlider.cpp:1591 +#: src/slic3r/GUI/DoubleSlider.cpp:1619 msgid "Custom G-code on current layer (%1% mm)." msgstr "G-code personnalisé sur la couche actuelle actuel (%1% mm)." -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "G-code personnalisé sur la couche en cours (%1% mm)." - #: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Imprimante Personnalisée" @@ -1550,19 +1608,19 @@ msgid "Custom profile name:" msgstr "Nom de profil personnalisé :" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "Couper" -#: src/slic3r/GUI/Plater.cpp:4801 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "Couper selon un Plan" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "Couper le modèle au Z donné." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "Cylindre" @@ -1570,11 +1628,11 @@ msgstr "Cylindre" msgid "D&eselect all" msgstr "Tout désél&ectionner" -#: src/libslic3r/PrintConfig.cpp:3489 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "Répertoire de données" -#: src/slic3r/GUI/Mouse3DController.cpp:332 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "Zone morte :" @@ -1582,23 +1640,23 @@ msgstr "Zone morte :" msgid "decompression failed or archive is corrupted" msgstr "la décompression a échoué ou l'archive est corrompue" -#: src/slic3r/GUI/Plater.cpp:4735 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" msgstr "Diminuer les Instances" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "Défaut" -#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 #: src/slic3r/GUI/ObjectDataViewModel.cpp:490 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "défaut" @@ -1610,53 +1668,53 @@ msgstr "Angle de base par défaut pour l'orientation du remplissage. Des croisem msgid "Default extrusion width" msgstr "Largeur d'extrusion par défaut" -#: src/slic3r/GUI/Tab.cpp:989 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "profil du filament par défaut" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "Profil de filament par défaut" -#: src/libslic3r/PrintConfig.cpp:336 +#: src/libslic3r/PrintConfig.cpp:346 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Profil de filament par défaut associé au profil d'imprimante courant. En sélectionnant le profil d'imprimante courant, ce profil de filament sera activé." -#: src/slic3r/GUI/Tab.cpp:2903 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2919 +#, c-format msgid "Default preset (%s)" msgstr "Préréglage par défaut (%s)" -#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "Couleur d'impression par défaut" -#: src/slic3r/GUI/Tab.cpp:986 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "profil d'impression par défaut" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "Profil de filament par défaut" -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 -#: src/libslic3r/PrintConfig.cpp:2594 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Profil de filament par défaut associé au profil d'imprimante courant. En sélectionnant le profil d'imprimante courant, ce profil de filament sera activé." -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "profil par défaut du matériau SLA" -#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "Profil par défaut du matériau SLA" -#: src/slic3r/GUI/Tab.cpp:1007 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "profil d'impression SLA par défaut" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "valeur par défaut" @@ -1664,11 +1722,11 @@ msgstr "valeur par défaut" msgid "Define a custom printer profile" msgstr "Définissez un profil d'imprimante personnalisée" -#: src/libslic3r/PrintConfig.cpp:2789 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Définit la profondeur de la cavité du socle. Réglez sur zéro pour désactiver la cavité. Faites bien attention lorsque vous activez cette fonctionnalité, car certaines résines génèrent un effet de succion extrême dans la cavité, et il est alors difficile de retirer l'impression de la feuille de la cuve." -#: src/slic3r/GUI/GUI_ObjectList.cpp:344 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "faces défectueuses" @@ -1676,13 +1734,13 @@ msgstr "faces défectueuses" msgid "Delay after unloading" msgstr "Délai après le déchargement" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "supprimer" -#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "Supprimer" @@ -1690,100 +1748,89 @@ msgstr "Supprimer" msgid "Delete &all" msgstr "Tout eff&acer" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "Tout Supprimer" - -#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "Tout Supprimer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "Supprimer Toutes les Instances depuis l'Objet" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "Supprimer le changement de couleur" -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "Supprimer le changement de couleur pour l'Extrudeur %1%" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "Retirer le repère de changement de couleur pour la couche en cours" -#: src/slic3r/GUI/DoubleSlider.cpp:1491 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "Supprimer le G-code personnalisé" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 msgid "Delete drainage hole" msgstr "Supprimer le trou de drainage" -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "Effacer le changement d'extrudeur vers \"%1%\"" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "Supprimer la Zone de Hauteur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" msgstr "Supprimer l'Instance" -#: src/slic3r/GUI/Plater.cpp:2696 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "Supprimer l'Objet" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 -#, possible-c-format +#, c-format msgid "Delete Option %s" msgstr "Supprimer l'Option %s" -#: src/slic3r/GUI/DoubleSlider.cpp:1490 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "Supprimer la pause d'impression" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Delete selected" msgstr "Supprimer la sélection" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "Supprimer la Sélection" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "Supprimer l'Item Sélectionné" -#: src/slic3r/GUI/Plater.cpp:4692 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "Supprimer les Objets Sélectionnés" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "Supprimer les Réglages" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "Supprimer le sous-objet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "Supprimer un point de support" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "Supprimer ce préréglage" -#: src/slic3r/GUI/DoubleSlider.cpp:1001 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "Supprimer la coche - Faites un clic gauche ou appuyez sur la touche \"-\"" -#: src/slic3r/GUI/DoubleSlider.cpp:1489 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete tool change" msgstr "Supprimer le changement d'outil" @@ -1795,8 +1842,8 @@ msgstr "Supprimer tous les objets" msgid "Deletes the current selection" msgstr "Supprime la sélection en cours" -#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 -#: src/libslic3r/PrintConfig.cpp:2495 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "Densité" @@ -1804,9 +1851,9 @@ msgstr "Densité" msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Densité du remplissage interne, exprimée en pourcentage de 0% à 100%." -#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "Dépendances" @@ -1818,7 +1865,7 @@ msgstr "Vitesse de réinsertion" msgid "Deselect all" msgstr "Désélectionner tout" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "Désélectionner par rectangle" @@ -1838,15 +1885,15 @@ msgstr "Détecter les parois de largeur unique (où deux extrusions côte à cô msgid "Detect thin walls" msgstr "Détecter les parois fines" -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Détecter les parties non-connectées sur un modèle donné (ou plusieurs) et les scinder en objets séparés." -#: src/slic3r/GUI/Plater.cpp:2352 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "Données avancées détectées" -#: src/slic3r/GUI/Mouse3DController.cpp:306 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "Appareil :" @@ -1854,15 +1901,15 @@ msgstr "Appareil :" msgid "Diameter" msgstr "Diamètre" -#: src/libslic3r/PrintConfig.cpp:2685 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "Diamètre en mm de la base du pilier" -#: src/libslic3r/PrintConfig.cpp:2641 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "Diamètre en mm des piliers de support" -#: src/libslic3r/PrintConfig.cpp:2613 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "Diamètre du côté de pointage de la tête" @@ -1874,7 +1921,7 @@ msgstr "Diamètre du plateau d'impression. Il est supposé que l'origine (0,0) e msgid "Direction" msgstr "Direction" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "Désactiver le ventilateur pour le(s) première(s)" @@ -1882,24 +1929,20 @@ msgstr "Désactiver le ventilateur pour le(s) première(s)" msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Désactiver la rétraction lorsque le chemin de déplacement ne franchit pas les périmètres des couches supérieures (et donc les coulures seront probablement invisibles)." -#: src/slic3r/GUI/DoubleSlider.cpp:925 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "Éliminer toutes les modifications personnalisées" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "Annuler les modifications" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "Annuler les changements et continuer malgré tout ?" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "Déplacement (mm)" - -#: src/slic3r/GUI/Tab.cpp:2076 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "Afficher" @@ -1927,7 +1970,7 @@ msgstr "Afficher la symétrie verticale" msgid "Display width" msgstr "Largeur de l'affichage" -#: src/libslic3r/PrintConfig.cpp:367 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "Distance entre les copies" @@ -1935,7 +1978,7 @@ msgstr "Distance entre les copies" msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Distance entre le ou les objet(s) et la jupe. Mettez zéro pour attacher la jupe a(ux) objet(s) et obtenir une bordure pour une meilleure adhésion." -#: src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "La distance entre deux bâtonnets de connexion qui connectent l'objet et le socle généré." @@ -1947,7 +1990,7 @@ msgstr "Distance de l'objet" msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Distance des coordonnées 0,0 du G-code depuis le coin avant gauche du rectangle." -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Distance entre le point central du tube de refroidissement et la pointe de l'extrudeur." @@ -1955,22 +1998,28 @@ msgstr "Distance entre le point central du tube de refroidissement et la pointe msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Distance entre la pointe de l'extrudeur et la position où le filament est positionné en attente lorsqu'il est déchargé. Cela doit correspondre à la valeur dans le firmware de l'imprimante." -#: src/libslic3r/PrintConfig.cpp:368 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Distance utilisée par la fonction d'agencement automatique du plateau." -#: src/libslic3r/PrintConfig.cpp:3471 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Ne pas obtenir d'échec si un fichier fourni pour --télécharger n'existe pas." -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Ne pas ré-agencer les modèles donnés avant la fusion et conserver leurs coordonnées XY originales." -#: src/slic3r/GUI/Field.cpp:235 -#, possible-c-format -msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." -msgstr "Voulez vous dire %s%% au lieu de %s%s ?\nSélectionnez OUI si vous voulez changer cette valeur pour %s%%,\nou NON si vous êtes certain que %s%s est une valeur correcte." +#: src/slic3r/GUI/Field.cpp:240 +#, c-format +msgid "" +"Do you mean %s%% instead of %s %s?\n" +"Select YES if you want to change this value to %s%%, \n" +"or NO if you are sure that %s %s is a correct value." +msgstr "" +"Voulez vous dire %s%% au lieu de %s%s ?\n" +"Sélectionnez OUI si vous voulez changer cette valeur pour %s%%,\n" +"ou NON si vous êtes certain que %s%s est une valeur correcte." #: src/slic3r/GUI/ConfigWizard.cpp:1761 msgid "Do you want to automatic select default filaments?" @@ -1980,7 +2029,7 @@ msgstr "Voulez-vous sélectionner automatiquement les filaments par défaut ?" msgid "Do you want to automatic select default materials?" msgstr "Voulez-vous sélectionner automatiquement les matériaux par défaut ?" -#: src/slic3r/GUI/DoubleSlider.cpp:1893 +#: src/slic3r/GUI/DoubleSlider.cpp:1920 msgid "Do you want to delete all saved tool changes?" msgstr "Voulez-vous supprimer tous les changements d'outils enregistrés ?" @@ -1988,15 +2037,15 @@ msgstr "Voulez-vous supprimer tous les changements d'outils enregistrés ?" msgid "Do you want to proceed?" msgstr "Voulez-vous poursuivre?" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "Do you want to retry" msgstr "Voulez-vous réessayer" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "Voulez-vous sauvegarder vos points de support édités manuellement ?" -#: src/libslic3r/PrintConfig.cpp:3414 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "Ne pas agencer" @@ -2004,7 +2053,7 @@ msgstr "Ne pas agencer" msgid "Don't notify about new releases any more" msgstr "Ne plus me notifier au sujet des nouvelles publications" -#: src/libslic3r/PrintConfig.cpp:359 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "Ne pas supporter les ponts" @@ -2012,17 +2061,17 @@ msgstr "Ne pas supporter les ponts" msgid "Downgrade" msgstr "Rétrograder" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "Faites glisser" -#: src/libslic3r/SLAPrintSteps.cpp:42 +#: src/libslic3r/SLAPrintSteps.cpp:44 msgid "Drilling holes into model." msgstr "Perçage de trous dans le modèle." -#: src/libslic3r/SLAPrintSteps.cpp:163 +#: src/libslic3r/SLAPrintSteps.cpp:199 msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." msgstr "Le perçage des trous dans le maillage a échoué. Cela est généralement dû à un modèle cassé. Essayez de le réparer en premier." @@ -2031,11 +2080,11 @@ msgstr "Le perçage des trous dans le maillage a échoué. Cela est généraleme msgid "Drop to bed" msgstr "Déposer sur le lit" -#: src/libslic3r/PrintConfig.cpp:3418 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "Dupliquer" -#: src/libslic3r/PrintConfig.cpp:3423 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "Dupliquer par grille" @@ -2043,51 +2092,51 @@ msgstr "Dupliquer par grille" msgid "During the other layers, fan" msgstr "Pendant les autres couches, le ventilateur" -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "Dynamique" -#: src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "E&xporter" -#: src/slic3r/GUI/GUI_ObjectList.cpp:345 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "arrêtes corrigées" -#: src/slic3r/GUI/DoubleSlider.cpp:1480 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "Éditer la couleur" -#: src/slic3r/GUI/DoubleSlider.cpp:933 +#: src/slic3r/GUI/DoubleSlider.cpp:960 msgid "Edit current color - Right click the colored slider segment" msgstr "Modifier la couleur actuelle - Cliquez avec le bouton droit sur le segment de curseur de couleur" -#: src/slic3r/GUI/DoubleSlider.cpp:1482 +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "Éditer un G-code personnalisé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "Éditer la Zone de Hauteur" -#: src/slic3r/GUI/DoubleSlider.cpp:1481 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "Modifier le message de pause d'impression" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 msgid "Edit tick mark - Ctrl + Left click" msgstr "Modifier la coche - Ctrl + Clic gauche" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1038 msgid "Edit tick mark - Right click" msgstr "Modifier la coche - Clic droit" -#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "Édition" -#: src/libslic3r/PrintConfig.cpp:375 +#: src/libslic3r/PrintConfig.cpp:118 msgid "Elephant foot compensation" msgstr "Compensation de l'effet patte d'éléphant" @@ -2107,12 +2156,12 @@ msgstr "Émet M73 P[pourcentage imprimé] R[temps restant en minutes] à 1 minut msgid "Empty layers detected, the output would not be printable." msgstr "Couches vides détectées, la sortie ne serait pas imprimable." -#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 #: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Activer" -#: src/libslic3r/PrintConfig.cpp:303 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "Activer le refroidissement automatique" @@ -2120,7 +2169,7 @@ msgstr "Activer le refroidissement automatique" msgid "Enable fan if layer print time is below" msgstr "Activer le ventilateur si le temps d'impression de la couche est inférieur à" -#: src/libslic3r/PrintConfig.cpp:2899 +#: src/libslic3r/PrintConfig.cpp:2908 msgid "Enable hollowing" msgstr "Activer l'évidement" @@ -2148,18 +2197,18 @@ msgstr "Activer la fonction de hauteur de couche variable" msgid "Enable vertical mirroring of output images" msgstr "Activer la symétrie verticale des images de sortie" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "G-code de fin" #: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" -msgstr "Forcer les supports sur le(s) première(s)" +msgstr "Générer des supports sur le(s) première(s)" #: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" -msgstr "Forcer le support pour les n premières couches" +msgstr "Générer des supports sur les n premières couches" #: src/slic3r/GUI/PrintHostDialogs.cpp:198 #: src/slic3r/GUI/PrintHostDialogs.cpp:229 @@ -2170,39 +2219,39 @@ msgstr "Placé dans la file d'attente" msgid "Ensure vertical shell thickness" msgstr "S'assurer de l'épaisseur de la coque verticale" -#: src/slic3r/GUI/DoubleSlider.cpp:1590 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "Entrez le G-code personnalisé utilisé sur la couche actuelle" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "Entrer de nouveaux noms" -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "Entrez le message court qui apparait sur l'affichage de l'imprimante pendant la pause d'impression" - -#: src/slic3r/GUI/DoubleSlider.cpp:1606 +#: src/slic3r/GUI/DoubleSlider.cpp:1634 msgid "Enter short message shown on Printer display when a print is paused" msgstr "Entrez un court message affiché sur l'écran de l'imprimante lorsqu'une impression est mise en pause" -#: src/slic3r/GUI/ConfigWizard.cpp:1048 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Entrez la température du lit nécessaire pour que votre filament colle à votre lit chauffant." -#: src/slic3r/GUI/ConfigWizard.cpp:980 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "Entrez le diamètre de votre filament." -#: src/slic3r/GUI/ConfigWizard.cpp:967 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Entrez le diamètre de la buse de la tête d'impression de votre imprimante." -#: src/slic3r/GUI/DoubleSlider.cpp:1622 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 msgid "Enter the height you want to jump to" msgstr "Entrez la hauteur à laquelle vous souhaitez sauter" -#: src/slic3r/GUI/ConfigWizard.cpp:1034 +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "Saisissez le nombre de copies :" + +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "Entrez la température nécessaire pour extruder votre filament." @@ -2218,27 +2267,27 @@ msgstr "Entrez ici la densité de votre filament. Ceci est uniquement pour des i msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Entrez le diamètre de votre filament ici. Une bonne précision est requise, utilisez un pied à coulisse et calculez la moyenne de plusieurs mesures le long du filament." -#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Erreur" #: src/slic3r/GUI/FirmwareDialog.cpp:645 -#, possible-c-format +#, c-format msgid "Error accessing port at %s: %s" msgstr "Erreur d'accès au port sur %s : %s" -#: src/slic3r/GUI/Plater.cpp:3441 +#: src/slic3r/GUI/Plater.cpp:3433 msgid "Error during reload" msgstr "Erreur lors du rechargement" -#: src/slic3r/GUI/Plater.cpp:5073 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5043 +#, c-format msgid "Error exporting 3MF file %s" msgstr "Erreur d'export du fichier 3MF %s" -#: src/slic3r/GUI/Plater.cpp:5025 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5005 +#, c-format msgid "Error exporting AMF file %s" msgstr "Erreur d'export du fichier AMF %s" @@ -2246,7 +2295,7 @@ msgstr "Erreur d'export du fichier AMF %s" msgid "Error Message" msgstr "Message d'erreur" -#: src/slic3r/GUI/AppConfig.cpp:118 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Erreur d'analyse du fichier config PrusaSlicer, il est probablement corrompu. Essayez de supprimer manuellement le fichier pour récupérer après cette erreur. Vos profils d'utilisateurs ne seront pas affectés." @@ -2258,7 +2307,7 @@ msgstr "Erreur lors du téléchargement vers l'hôte d'impression :" msgid "Error with zip archive" msgstr "Erreur liée à l'archive zip" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "Erreur!" @@ -2267,7 +2316,7 @@ msgid "Error! Invalid model" msgstr "Erreur ! Modèle invalide" #: src/slic3r/GUI/FirmwareDialog.cpp:647 -#, possible-c-format +#, c-format msgid "Error: %s" msgstr "Erreur : %s" @@ -2275,12 +2324,12 @@ msgstr "Erreur : %s" msgid "ERROR: not enough resources to execute a new job." msgstr "ERREUR : il n'y a pas assez de ressources pour exécuter une nouvelle tâche." -#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 -#: src/slic3r/GUI/Plater.cpp:1255 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "Temps d'impression estimé" -#: src/slic3r/GUI/Plater.cpp:499 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "Partout" @@ -2292,16 +2341,16 @@ msgstr "sauf pour les %1% première couches." msgid "except for the first layer." msgstr "sauf pour la première couche." -#: src/libslic3r/Print.cpp:1373 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Dépasse de %1%=%2% mm pour être imprimable avec une buse de diamètre %3% mm" #: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 -#, possible-c-format +#, c-format msgid "Exit %s" msgstr "Sortir de %s" -#: src/libslic3r/PrintConfig.cpp:361 +#: src/libslic3r/PrintConfig.cpp:371 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Option expérimentale pour empêcher la génération de support sous les ponts." @@ -2313,7 +2362,7 @@ msgstr "Option expérimentale qui ajuste le flux pour les surplombs (le flux pou msgid "Expert" msgstr "Expert" -#: src/slic3r/GUI/ConfigWizard.cpp:823 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "Mode expert" @@ -2321,7 +2370,7 @@ msgstr "Mode expert" msgid "Expert View Mode" msgstr "Mode de Vue Expert" -#: src/slic3r/GUI/Plater.cpp:5555 +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "Exporter" @@ -2329,15 +2378,15 @@ msgstr "Exporter" msgid "Export &Config" msgstr "Exporter la &Configuration" -#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" msgstr "Exporter le &G-code" #: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" -msgstr "Exporter les parcours en tant que OBJ" +msgstr "Exporter les parcours en &tant que OBJ" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "Exporter 3MF" @@ -2345,15 +2394,15 @@ msgstr "Exporter 3MF" msgid "Export all presets to file" msgstr "Exporter tous les préréglage vers un fichier" -#: src/libslic3r/PrintConfig.cpp:3328 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "Exporter AMF" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "Exporter le fichier AMF :" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "Exporter en tant que STL" @@ -2385,7 +2434,7 @@ msgstr "Exporter le plateau courant en STL" msgid "Export current plate as STL including supports" msgstr "Exporter le contenu du plateau en STL, supports inclus" -#: src/slic3r/GUI/Plater.cpp:3673 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "L'export a échoué" @@ -2393,21 +2442,20 @@ msgstr "L'export a échoué" msgid "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Exportez les chemins d'accès complets des modèles et des sources de pièces dans des fichiers 3mf et amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 -#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "Exporter le G-code" -#: src/libslic3r/PrintConfig.cpp:3305 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "Exporter OBJ" -#: src/slic3r/GUI/Plater.cpp:2594 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "Exporter le fichier OBJ :" -#: src/slic3r/Utils/FixModelByWin10.cpp:369 -#: src/slic3r/Utils/FixModelByWin10.cpp:374 +#: src/slic3r/Utils/FixModelByWin10.cpp:368 msgid "Export of a temporary 3mf file failed" msgstr "Exporter un fichier temporaire 3mf qui a échoué" @@ -2423,43 +2471,43 @@ msgstr "Exporter le plateau en tant que &STL" msgid "Export plate as STL &including supports" msgstr "Exporter le plateau en STL en &incluant les supports" -#: src/libslic3r/PrintConfig.cpp:3317 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "Exporter SLA" -#: src/slic3r/GUI/Preferences.cpp:73 +#: src/slic3r/GUI/Preferences.cpp:72 msgid "Export sources full pathnames to 3mf and amf" msgstr "Exporter les noms de chemins complets des sources vers 3mf et amf" -#: src/libslic3r/PrintConfig.cpp:3333 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "Exporter STL" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "Exporter le fichier STL :" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "Exporter le(s) modèle(s) en tant que 3MF." -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "Exporter le(s) modèle(s) en tant que AMF." -#: src/libslic3r/PrintConfig.cpp:3306 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "Exporter le(s) modèle(s) en tant que OBJ." -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "Exporter le(s) modèle(s) en tant que STL." -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "Exporter l'objet sélectionné en tant que fichier STL" -#: src/slic3r/GUI/Plater.cpp:877 +#: src/slic3r/GUI/Plater.cpp:880 msgid "Export to SD card / Flash drive" msgstr "Exporter vers une carte SD / une clé USB" @@ -2467,7 +2515,7 @@ msgstr "Exporter vers une carte SD / une clé USB" msgid "Export toolpaths as OBJ" msgstr "Exporter le parcours en tant que OBJ" -#: src/libslic3r/Print.cpp:1634 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "Exportation du G-code" @@ -2484,15 +2532,15 @@ msgstr "Exportation du modèle source" msgid "Exposition time is out of printer profile bounds." msgstr "Le temps d'exposition dépasse les limites du profil d'imprimante." -#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "Exposition" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "Temps d'exposition" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Périmètre externe" @@ -2520,23 +2568,23 @@ msgstr "Distance de chargement supplémentaire" msgid "Extra perimeters if needed" msgstr "Périmètres supplémentaires si nécessaire" -#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 #: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Extrudeur" -#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 -#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 -#: src/libslic3r/GCode/PreviewData.cpp:445 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format msgid "Extruder %d" msgstr "Extrudeur %d" -#: src/slic3r/GUI/DoubleSlider.cpp:978 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "L'extrudeur (outil) est remplacée par l'extrudeur \"%1%\"" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "Températures de l'Extrudeur et du Lit" @@ -2544,7 +2592,7 @@ msgstr "Températures de l'Extrudeur et du Lit" msgid "Extruder changed to" msgstr "Extrudeur changé à" -#: src/slic3r/GUI/Tab.cpp:1235 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "Dégagement de l'extrudeur (mm)" @@ -2564,8 +2612,8 @@ msgstr "Température de l’extrudeur pour la première couche. Si vous voulez c msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Température de l'extrudeur pour les couches après la première. Mettez zéro pour désactiver les commandes de contrôle de la température dans le fichier de sortie." -#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 @@ -2580,15 +2628,15 @@ msgstr "Axe d'extrusion" msgid "Extrusion multiplier" msgstr "Multiplicateur d'extrusion" -#: src/slic3r/GUI/ConfigWizard.cpp:1038 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "Température d'Extrusion :" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "Largeur d'extrusion" -#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 #: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 #: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 #: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 @@ -2596,23 +2644,23 @@ msgstr "Largeur d'extrusion" msgid "Extrusion Width" msgstr "Largeur d'Extrusion" -#: src/slic3r/GUI/Plater.cpp:164 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "Faces" -#: src/slic3r/GUI/GUI_ObjectList.cpp:347 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "faces ajoutées" -#: src/slic3r/GUI/GUI_ObjectList.cpp:346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "faces supprimées" -#: src/slic3r/GUI/GUI_ObjectList.cpp:348 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "faces inversées" -#: src/libslic3r/PrintConfig.cpp:2508 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "Couches estompées" @@ -2632,11 +2680,11 @@ msgstr "Échec du traitement du modèle output_filename_format." msgid "Fan" msgstr "Ventilateur" -#: src/slic3r/GUI/Tab.cpp:1458 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "Réglages du ventilateur" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "Vitesse du ventilateur" @@ -2656,33 +2704,33 @@ msgstr "Inclinaison rapide" msgid "Fatal error" msgstr "Erreur fatale" -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 #: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Type de fonctionnalité" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "Types de fonctionnalité" -#: src/slic3r/GUI/ConfigWizard.cpp:1528 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "Imprimantes Technologie FFF" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 -#: src/slic3r/GUI/Tab.cpp:1428 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1472 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "filament" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "Diamètres du Filament et de la Buse" -#: src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "Diamètre du Filament :" @@ -2698,7 +2746,7 @@ msgstr "Temps de chargement du filament" msgid "Filament notes" msgstr "Notes du filament" -#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "Annulations de Filament" @@ -2706,15 +2754,15 @@ msgstr "Annulations de Filament" msgid "Filament parking position" msgstr "Position d'attente du filament" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "Sélection des Profils de Filament" -#: src/slic3r/GUI/Tab.cpp:1473 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "Propriétés du filament" -#: src/slic3r/GUI/Tab.hpp:354 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "Réglages du filament" @@ -2730,7 +2778,7 @@ msgstr "Temps de déchargement du filament" msgid "filaments" msgstr "filaments" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "Filaments" @@ -2742,7 +2790,7 @@ msgstr "échec de la fermeture du fichier" msgid "file create failed" msgstr "échec de création du fichier" -#: src/slic3r/GUI/MainFrame.cpp:793 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "Fichier non trouvé" @@ -2806,7 +2854,7 @@ msgstr "Motif pour les remplissages pour le remplissage du haut. Ceci affecte se msgid "Finished" msgstr "Terminé" -#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "Firmware" @@ -2818,11 +2866,11 @@ msgstr "Outil de flash du firmware" msgid "Firmware image:" msgstr "Image du firmware :" -#: src/slic3r/GUI/Tab.cpp:2573 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "Rétraction du Firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:892 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "Type de Firmware" @@ -2835,7 +2883,7 @@ msgstr "Première couche" msgid "First layer height" msgstr "Hauteur de la première couche" -#: src/libslic3r/Print.cpp:1418 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "La hauteur de la première couche ne peut pas être supérieure au diamètre de la buse" @@ -2847,11 +2895,11 @@ msgstr "Vitesse de la première couche" msgid "First layer volumetric" msgstr "Volume de la première couche" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "Corriger avec Netfabb" -#: src/slic3r/GUI/Plater.cpp:3482 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "Corriger Avec NetFabb" @@ -2883,7 +2931,7 @@ msgstr "Processus de flash en cours. Veuillez ne pas déconnecter l'imprimante ! msgid "Flashing succeeded!" msgstr "Flash effectué avec succès !" -#: src/slic3r/GUI/Tab.cpp:1220 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "Flux" @@ -2891,48 +2939,38 @@ msgstr "Flux" msgid "flow rate is maximized" msgstr "le débit est maximisé" -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "Pour ajouter un autre code faites un clic droit sur la souris" - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "Pour ajouter un changement d'extrudeur faites un clic gauche sur la souris" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "Pour ajouter un changement de couleur faites un clic gauche avec la souris" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" -msgstr "Pour Supprimer le code \"%1%\" utilisez le clic gauche de la souris\nPour Modifier le code \"%1%\" utilisez le clic droit de la souris" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" -msgstr "Pour Supprimer le changement de couleur utiliser le clic gauche de la souris\nPour Modifier la couleur utiliser le clic droit de la souris" - #: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Pour plus d'informations, merci de visiter notre page wiki :" -#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "Seulement pour les générateur de supports" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3249 -msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." -msgstr "pour le bouton gauche : indique un préréglage non-système (ou non par défaut),\npour le bouton droit : indique que le réglage n'a pas été modifié." +#: src/slic3r/GUI/Tab.cpp:3265 +msgid "" +"for the left button: \tindicates a non-system (or non-default) preset,\n" +"for the right button: \tindicates that the settings hasn't been modified." +msgstr "" +"pour le bouton gauche : indique un préréglage non-système (ou non par défaut),\n" +"pour le bouton droit : indique que le réglage n'a pas été modifié." #: src/slic3r/GUI/ConfigManipulation.cpp:136 -msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." -msgstr "Pour que la tour de nettoyage fonctionne avec les supports solubles, les couches du support\ndoivent être synchronisées avec les couches d'objets." +msgid "" +"For the Wipe Tower to work with the soluble supports, the support layers\n" +"need to be synchronized with the object layers." +msgstr "" +"Pour que la tour de nettoyage fonctionne avec les supports solubles, les couches du support\n" +"doivent être synchronisées avec les couches d'objets." -#: src/libslic3r/Print.cpp:1392 +#: src/libslic3r/Print.cpp:1396 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." -msgstr "Pour que la Tour de Nettoyage fonctionne avec des supports solubles, les couches de support\ndoivent être synchronisées avec les couches de l'objet." +msgstr "" +"Pour que la Tour de Nettoyage fonctionne avec des supports solubles, les couches de support\n" +"doivent être synchronisées avec les couches de l'objet." -#: src/libslic3r/PrintConfig.cpp:2855 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "Forcer le socle partout autour de l'objet" @@ -2948,7 +2986,7 @@ msgstr "Force la génération de coques solides entre des volumes/matériaux adj msgid "From" msgstr "De" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "Depuis la Liste d'Objet Vous ne pouvez pas supprimer la dernière partie solide de l'objet." @@ -2960,19 +2998,23 @@ msgstr "Avant" msgid "Front View" msgstr "Vue Avant" -#: src/slic3r/GUI/Tab.cpp:1015 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "nom de profil complet" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/DoubleSlider.cpp:987 -msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." -msgstr "Le G-code associé à cette coche est en conflit avec le mode d'impression.\nLe modifier entraînera des modifications des données du curseur." +#: src/slic3r/GUI/DoubleSlider.cpp:1021 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"Le G-code associé à cette coche est en conflit avec le mode d'impression.\n" +"Le modifier entraînera des modifications des données du curseur." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "Fichier G-code exporté vers %1%" @@ -2984,17 +3026,17 @@ msgstr "Version du G-code" msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2496 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 #: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Remplissage des trous" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 -#: src/slic3r/GUI/Tab.cpp:2038 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "Général" @@ -3008,25 +3050,25 @@ msgstr "Générer des supports" #: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." -msgstr "Générer des supports pour le nombre de couches spécifié à partir du bas, que les supports normaux soient activés ou non et sans tenir compte de seuils d'inclinaison. Ceci est utile pour obtenir une meilleure adhésion pour des objets ayant une surface de contact très fine ou limitée sur le plateau." +msgstr "Générer des supports pour le nombre de couches spécifié à partir du bas, que les supports normaux soient activés ou non et sans tenir compte des seuils d'inclinaison. Ceci est utile pour obtenir une meilleure adhérence pour des objets ayant une surface de contact très fine ou limitée sur le plateau." -#: src/libslic3r/PrintConfig.cpp:2604 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "Générer des supports" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "Générer des supports pour les modèles" -#: src/libslic3r/Print.cpp:1610 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "Génération de la bordure" -#: src/libslic3r/Print.cpp:1638 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "Génération du G-code" -#: src/libslic3r/SLAPrintSteps.cpp:46 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "Génération du socle" @@ -3034,7 +3076,7 @@ msgstr "Génération du socle" msgid "Generating perimeters" msgstr "Génération des périmètres" -#: src/libslic3r/Print.cpp:1602 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "Génération de la jupe" @@ -3042,35 +3084,35 @@ msgstr "Génération de la jupe" msgid "Generating support material" msgstr "Génération des supports" -#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "Génération des points de support" -#: src/libslic3r/SLAPrintSteps.cpp:45 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "Génération de l'arbre de support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "Générique" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 msgid "Gizmo cut" msgstr "Couper le Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 msgid "Gizmo move" msgstr "Déplacer le Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 msgid "Gizmo Place face on bed" msgstr "Emplacement du Gizmo face au lit" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 msgid "Gizmo rotate" msgstr "Pivoter le Gizmo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 msgid "Gizmo scale" msgstr "Échelle du Gizmo" @@ -3078,25 +3120,25 @@ msgstr "Échelle du Gizmo" msgid "Gizmo SLA hollow" msgstr "Gizmo SLA évidé" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 msgid "Gizmo SLA support points" msgstr "Points de support SLA du Gizmo" -#: src/slic3r/GUI/GLCanvas3D.cpp:2945 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "Gizmo-Déplacement" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "Gizmo-Positionner sur la surface" -#: src/slic3r/GUI/GLCanvas3D.cpp:3025 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "Gizmo-Rotation" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "Gizmo-Échelle" @@ -3108,7 +3150,7 @@ msgstr "Gizmos" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero Licence Publique Générale, version 3" -#: src/slic3r/GUI/ConfigWizard.cpp:981 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Une bonne précision est requise, utilisez un pied à coulisse et calculez la moyenne de plusieurs mesures le long du filament." @@ -3116,11 +3158,11 @@ msgstr "Une bonne précision est requise, utilisez un pied à coulisse et calcul msgid "Grid" msgstr "Grille" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "Manipulation d'un groupe" -#: src/slic3r/GUI/Preferences.cpp:137 +#: src/slic3r/GUI/Preferences.cpp:133 msgid "GUI" msgstr "GUI" @@ -3128,7 +3170,7 @@ msgstr "GUI" msgid "Gyroid" msgstr "Gyroïde" -#: src/slic3r/GUI/Tab.cpp:2921 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "a les changements suivants non-enregistrés :" @@ -3144,7 +3186,7 @@ msgstr "La pénétration de la tête ne doit pas être supérieure à la largeur msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Température du plateau chauffant pour la première couche. Mettez ceci à zéro pour désactiver les commandes de contrôle de température du plateau dans la sortie." -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Hauteur" @@ -3160,32 +3202,32 @@ msgstr "Hauteur de la jupe exprimée en couches. Mettez une valeur élevée pour msgid "Height of the display" msgstr "Hauteur de l'affichage" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "Modificateur de la zone de hauteur" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "Zones de hauteur" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "Hauteurs auxquelles le changement de filament doit se produire." #: src/slic3r/GUI/ConfigWizard.cpp:433 -#, possible-c-format +#, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Bonjour, bienvenu dans %s ! Ce %s vous aide à la configuration initiale ; juste quelques paramètres et vous serez prêt à imprimer." -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "Aide" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "Aide (options FFF)" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "Aide (options SLA)" @@ -3197,7 +3239,7 @@ msgstr "Ici vous pouvez ajuster le volume de purge nécessaire (mm³) pour une p msgid "High extruder current on filament swap" msgstr "Courant de l'extrudeur élevé lors du changement de filament" -#: src/slic3r/GUI/GLCanvas3D.cpp:282 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 msgid "Higher print quality versus higher print speed." msgstr "Meilleure qualité d'impression par rapport à une vitesse d'impression plus élevée." @@ -3205,7 +3247,7 @@ msgstr "Meilleure qualité d'impression par rapport à une vitesse d'impression msgid "Hilbert Curve" msgstr "Courbe de Hilbert" -#: src/slic3r/GUI/Plater.cpp:1039 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "Maintenez la touche Majuscule pour Trancher et Exporter le G-code" @@ -3217,15 +3259,15 @@ msgstr "Profondeur du trou" msgid "Hole diameter" msgstr "Diamètre du trou" -#: src/slic3r/GUI/Plater.cpp:2744 +#: src/slic3r/GUI/Plater.cpp:2760 msgid "Hollow" msgstr "Évider" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 msgid "Hollow and drill" msgstr "Évider et percer" -#: src/libslic3r/PrintConfig.cpp:2901 +#: src/libslic3r/PrintConfig.cpp:2910 msgid "Hollow out a model to have an empty interior" msgstr "Évider un modèle pour avoir un intérieur vide" @@ -3233,60 +3275,48 @@ msgstr "Évider un modèle pour avoir un intérieur vide" msgid "Hollow this object" msgstr "Évider cet objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 -#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 -#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 -#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 -#: src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 msgid "Hollowing" msgstr "Évidement" -#: src/libslic3r/PrintConfig.cpp:2916 -msgid "Hollowing accuracy" -msgstr "Précision" - -#: src/slic3r/GUI/Plater.cpp:2910 +#: src/slic3r/GUI/Plater.cpp:2926 msgid "Hollowing cancelled." msgstr "Évidement annulé." -#: src/libslic3r/PrintConfig.cpp:2925 -msgid "Hollowing closing distance" -msgstr "Distance de fermeture" - -#: src/slic3r/GUI/Plater.cpp:2911 +#: src/slic3r/GUI/Plater.cpp:2927 msgid "Hollowing done." msgstr "Évidement terminé." -#: src/slic3r/GUI/Plater.cpp:2913 +#: src/slic3r/GUI/Plater.cpp:2929 msgid "Hollowing failed." msgstr "L'évidement a échoué." -#: src/libslic3r/PrintConfig.cpp:2928 +#: src/libslic3r/PrintConfig.cpp:2937 msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." msgstr "L'Évidement se fait en deux temps : tout d'abord, un intérieur fictif est calculé plus profondément (décalage plus distance de fermeture) dans l'objet puis il est ré-augmenté jusqu'au décalage spécifié. Une distance de fermeture plus importante rend l'intérieur plus rond. À zéro, l'intérieur sera très semblable à l'extérieur." -#: src/libslic3r/SLAPrintSteps.cpp:41 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Hollowing model" msgstr "Évidement du modèle" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 msgid "Hollowing parameter change" msgstr "Modification des paramètres d'évidement" -#: src/libslic3r/PrintConfig.cpp:2906 -msgid "Hollowing thickness" -msgstr "Épaisseur de la paroi" - #: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Nid d'abeille" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "Coques horizontales" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:245 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Largeur horizontale de la bordure qui sera imprimée autour de chaque objet sur la première couche." @@ -3306,23 +3336,27 @@ msgstr "Nom d'hôte" msgid "Hostname, IP or URL" msgstr "Nom d'hôte, IP ou URL" -#: src/slic3r/GUI/Tab.cpp:141 -msgid "Hover the cursor over buttons to find more information \nor click this button." -msgstr "Passez le curseur au dessus des boutons pour obtenir plus d'informations\nou cliquez sur ce bouton." +#: src/slic3r/GUI/Tab.cpp:139 +msgid "" +"Hover the cursor over buttons to find more information \n" +"or click this button." +msgstr "" +"Passez le curseur au dessus des boutons pour obtenir plus d'informations\n" +"ou cliquez sur ce bouton." -#: src/libslic3r/PrintConfig.cpp:2803 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "Jusqu'où le socle doit-il s'étendre autour de la géométrie contenue" -#: src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "À quelle profondeur les petits connecteurs doivent-ils pénétrer dans le corps du modèle." -#: src/libslic3r/PrintConfig.cpp:2622 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "Niveau de pénétration de l'épingle dans la surface du modèle" -#: src/libslic3r/PrintConfig.cpp:2746 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "A quel point les supports devraient soutenir l'objet supporté. Si la fonction \"Socle autour de l'objet\" est activée, cette valeur est ignorée." @@ -3334,12 +3368,18 @@ msgstr "HTTPS CA Fichier" msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "Le fichier HTTPS CA est optionnel. Il est uniquement requis si vous utilisez le HTTPS avec un certificat auto-signé." -#: src/slic3r/GUI/Tab.cpp:1755 -#, possible-c-format -msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "Fichier HTTPS CA :\n\tDans ce système, %s utilise des certificats HTTPS issus du système Magasin de Certificats ou Trousseau.\n\tPour utiliser un fichier CA personnalisé, veuillez importer votre fichier CA dans le Magasin de Certificats / Trousseau." +#: src/slic3r/GUI/Tab.cpp:1757 +#, c-format +msgid "" +"HTTPS CA File:\n" +" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" +" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "" +"Fichier HTTPS CA :\n" +"\tDans ce système, %s utilise des certificats HTTPS issus du système Magasin de Certificats ou Trousseau.\n" +"\tPour utiliser un fichier CA personnalisé, veuillez importer votre fichier CA dans le Magasin de Certificats / Trousseau." -#: src/slic3r/GUI/Preferences.cpp:226 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "Taille de l'icône par rapport à la taille par défaut" @@ -3351,13 +3391,13 @@ msgstr "ID" msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Si cette case est cochée, les supports seront générés automatiquement en fonction de la valeur seuil de surplomb. Si cette case n'est pas cochée, les supports seront générés uniquement dans les volumes \"Générateur de supports\"." -#: src/slic3r/GUI/ConfigWizard.cpp:772 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:773 +#, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si activé, %s vérifie en ligne l'existence de nouvelles versions de Slic3r PE. Lorsqu'une nouvelle version est disponible, une notification est affichée au démarrage suivant de l'application (jamais pendant l'utilisation du programme). Ceci est uniquement un mécanisme de notification, aucune installation automatique n'est faite." -#: src/slic3r/GUI/ConfigWizard.cpp:782 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:783 +#, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Si activé, %s télécharge les mises à jours des préréglages système intégrés en arrière-plan. Ces mises à jour sont téléchargées dans un répertoire temporaire séparé. Lorsqu'une nouvelle version de préréglages est disponible, elle est proposée au démarrage de l'application." @@ -3366,10 +3406,14 @@ msgid "If enabled, all printing extruders will be primed at the front edge of th msgstr "Si ceci est activé, tous les extrudeurs qui impriment seront positionnés sur la bordure avant du lit d'impression au début de l'impression." #: src/slic3r/GUI/ConfigWizard.cpp:805 -msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." -msgstr "Si activé, permet à la commande Recharger à partir du disque de rechercher et de charger automatiquement les fichiers lorsqu'elle est invoquée.\nSi non activée, la commande Recharger à partir du disque demandera de sélectionner chaque fichier à l'aide d'une boîte de dialogue d'ouverture de fichier." +msgid "" +"If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "" +"Si activé, permet à la commande Recharger à partir du disque de rechercher et de charger automatiquement les fichiers lorsqu'elle est invoquée.\n" +"Si non activée, la commande Recharger à partir du disque demandera de sélectionner chaque fichier à l'aide d'une boîte de dialogue d'ouverture de fichier." -#: src/slic3r/GUI/Preferences.cpp:75 +#: src/slic3r/GUI/Preferences.cpp:74 msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." msgstr "Si activé, permet à la commande Recharger à partir du disque de rechercher et de charger automatiquement les fichiers lorsqu'elle est invoquée." @@ -3377,11 +3421,11 @@ msgstr "Si activé, permet à la commande Recharger à partir du disque de reche msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Si activé, PrusaSlicer vérifie l'existence de ses nouvelles versions en ligne . Lorsqu'une nouvelle version est disponible, une notification est affichée au prochain démarrage de l'application (jamais pendant l'utilisation du programme). Ceci est uniquement un mécanisme de notification, aucune installation automatique n'est faite." -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Si activé, Slic3r télécharge les mises à jours des préréglages système intégrés en arrière-plan. Ces mises à jour sont téléchargées dans un répertoire temporaire séparé. Lorsqu'une nouvelle version de préréglages est disponible, elle est proposée au démarrage de l'application." -#: src/slic3r/GUI/Preferences.cpp:108 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Si ceci est activé, la scène 3D sera affichée avec la résolution Retina. Si vous rencontrez des problèmes de performance 3D, le fait de désactiver cette option vous aidera peut-être." @@ -3389,15 +3433,15 @@ msgstr "Si ceci est activé, la scène 3D sera affichée avec la résolution Ret msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Si elle est activée, la tour de nettoyage ne sera pas imprimée sur des couches sans changement d'outil. Sur les couches avec un changement d'outil, l'extrudeur se déplacera vers le bas pour imprimer la tour de nettoyage. C'est à l'utilisateur de s'assurer qu'il n'y a pas de collision avec l'impression." -#: src/slic3r/GUI/Preferences.cpp:131 +#: src/slic3r/GUI/Preferences.cpp:128 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Si activé, utilise la caméra libre. Si non activé, utilise la caméra contrainte." -#: src/slic3r/GUI/Preferences.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Si activé, utilise la l'appareil photo en perspective. Si n'est pas activé, utilise l'appareil photo en vue orthographique." -#: src/slic3r/GUI/Preferences.cpp:149 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Si activé, vous pouvez changer la taille des icônes de la barre d'outils manuellement." @@ -3461,7 +3505,7 @@ msgstr "Si le firmware de votre imprimante ne gère pas le décalage de l'extrud msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Si votre firmware requiert des valeurs relatives pour E, cochez cette case, sinon laissez-la décochée. La plupart des firmwares utilisent des valeurs absolues." -#: src/libslic3r/PrintConfig.cpp:3470 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "Ignorer les fichiers de configuration non-existants" @@ -3481,15 +3525,15 @@ msgstr "Importer la Configuration depuis le &projet" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importer une Configuration depuis ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:4616 +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "Importer l'Objet" -#: src/slic3r/GUI/Plater.cpp:4620 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "Importer les Objets" -#: src/slic3r/Utils/FixModelByWin10.cpp:390 +#: src/slic3r/Utils/FixModelByWin10.cpp:383 msgid "Import of the repaired 3mf file failed" msgstr "Échec de l'import du fichier 3mf réparé" @@ -3497,16 +3541,12 @@ msgstr "Échec de l'import du fichier 3mf réparé" msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importer STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "Importer STL/OBJ/AMF/3MF sans la configuration, garder le lit" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importer un STL/OBJ/AMF/3MF sans configuration, conserver le plateau" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 +#, c-format msgid "In this mode you can select only other %s Items%s" msgstr "Dans ce mode vous ne pouvez sélectionner que d'autres %s Items %s" @@ -3515,42 +3555,51 @@ msgid "Incompatible bundles:" msgstr "Lots incompatibles :" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -#, possible-c-format +#, c-format msgid "Incompatible with this %s" msgstr "Incompatible avec ce %s" -#: src/slic3r/GUI/Plater.cpp:4700 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" msgstr "Augmenter les Instances" -#: src/slic3r/GUI/GLCanvas3D.cpp:269 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "Augmenter/diminuer la zone d'édition" -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2922 msgid "Indexing hollowed object" msgstr "Indexation de l'objet évidé" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 -msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\n\nCliquez sur l'icône CADENAS OUVERT pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." +#: src/slic3r/GUI/Tab.cpp:3258 +msgid "" +"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "" +"indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\n" +"\n" +"Cliquez sur l'icône CADENAS OUVERT pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indique que les paramètres sont les mêmes que les valeurs système (ou par défaut) pour le groupe d'options en cours" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3254 -msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." -msgstr "indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\nCliquez sur l'icône FLÈCHE ARRIÈRE pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." +#: src/slic3r/GUI/Tab.cpp:3270 +msgid "" +"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +msgstr "" +"indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\n" +"Cliquez sur l'icône FLÈCHE ARRIÈRE pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré." #: src/slic3r/GUI/ConfigManipulation.cpp:211 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 -#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 -#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 #: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 @@ -3576,12 +3625,12 @@ msgstr "Extrudeur pour le remplissage" msgid "Infill/perimeters overlap" msgstr "Chevauchement remplissage/périmètres" -#: src/libslic3r/Print.cpp:1580 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "Remplissage des couches" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "Info" @@ -3593,15 +3642,15 @@ msgstr "Hérite du profil" msgid "Initial exposition time is out of printer profile bounds." msgstr "Le temps d'exposition initial est en dehors des limites du profil d'imprimante." -#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "Temps d'exposition initial" -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "Hauteur de couche initiale" -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "La valeur entrée est hors plage" @@ -3611,11 +3660,11 @@ msgstr "Inspecter / activer les instantanés de configuration" #: src/slic3r/GUI/ObjectDataViewModel.cpp:60 #: src/slic3r/GUI/ObjectDataViewModel.cpp:216 -#, possible-c-format +#, c-format msgid "Instance %d" msgstr "Instance %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "Manipulation d'instance" @@ -3623,8 +3672,8 @@ msgstr "Manipulation d'instance" msgid "Instances" msgstr "Instances" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "Instances vers les Objets Séparés" @@ -3648,11 +3697,11 @@ msgstr "Coques d'interface" msgid "internal error" msgstr "erreur interne" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Remplissage interne" -#: src/slic3r/GUI/Plater.cpp:3090 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "Donnée non valide" @@ -3673,7 +3722,7 @@ msgstr "Pénétration de Tête invalide" msgid "invalid header or archive is corrupted" msgstr "entête non valide ou archive corrompue" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Entrée numérique non valide." @@ -3691,15 +3740,11 @@ msgstr "Diamètre de tête d'épingle non valide" msgid "is licensed under the" msgstr "est sous licence" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Is necessary to install a configuration update. " -msgstr "Il est nécessaire d'installer une mise à niveau de configuration." - -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "n'est pas compatible avec le profil d'impression" -#: src/slic3r/GUI/Tab.cpp:2924 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "n'est pas compatible avec l'imprimante" @@ -3711,11 +3756,11 @@ msgstr "Isométrique" msgid "Iso View" msgstr "Vue Isométrique" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "Il ne peut être supprimé ou modifié." -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "It is not allowed to change the file to reload" msgstr "Il n'est pas autorisé de modifier le fichier à recharger" @@ -3723,11 +3768,11 @@ msgstr "Il n'est pas autorisé de modifier le fichier à recharger" msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Il peut être intéressant d'augmenter le courant du moteur de l'extrudeur pendant la séquence d'échange de filament pour permettre un débit d'expulsion rapide et pour compenser la résistance lors du chargement d'un filament avec une pointe mal taillée." -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Il est impossible d'imprimer un (des) objet(s) en plusieurs parties avec la technologie SLA." -#: src/slic3r/GUI/Tab.cpp:2225 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "Limites de mouvements brusques" @@ -3735,13 +3780,13 @@ msgstr "Limites de mouvements brusques" msgid "Jitter" msgstr "Gigue" -#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 -#: src/slic3r/GUI/DoubleSlider.cpp:1623 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 msgid "Jump to height" msgstr "Sauter à la hauteur" -#: src/slic3r/GUI/DoubleSlider.cpp:928 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:955 +#, c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "Sauter à la hauteur %s ou Définir la séquence d'extrusion pour toute l'impression" @@ -3753,7 +3798,7 @@ msgstr "Garder le ventilateur toujours actif" msgid "Keep lower part" msgstr "Garder la partie du bas" -#: src/slic3r/GUI/GLCanvas3D.cpp:309 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "Garder au minimum" @@ -3761,7 +3806,7 @@ msgstr "Garder au minimum" msgid "Keep upper part" msgstr "Garder la partie du haut" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "Raccourcis Clavier" @@ -3769,7 +3814,7 @@ msgstr "Raccourcis Clavier" msgid "Keyboard shortcuts" msgstr "Raccourcis clavier" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" @@ -3789,57 +3834,57 @@ msgstr "Langue" msgid "Language selection" msgstr "Sélection de la langue" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "La dernière instance d'un objet ne peut être supprimée." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "Couche" #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Hauteur de couche" -#: src/libslic3r/Print.cpp:1423 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "La hauteur de couche ne peut pas être supérieure au diamètre de la buse" -#: src/slic3r/GUI/Tab.cpp:2358 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "Limites de hauteur de couche" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "Hauteur de couche :" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "Réglages de zone de Couche à modifier" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 #: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 #: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 #: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "couches" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 -#: src/slic3r/GUI/Tab.cpp:3585 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "Couches" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "Couches et périmètres" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 -#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 #: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 @@ -3853,16 +3898,12 @@ msgstr "Couches et Périmètres" msgid "Layers Slider" msgstr "Barre de défilement des couches" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 -msgid "Layers Slider Shortcuts" -msgstr "Raccourcis du Curseur de Couches" - -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" msgstr "Du bas" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" msgstr "Du haut" @@ -3871,13 +3912,13 @@ msgstr "Du haut" msgid "Left" msgstr "Gauche" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "Clic gauche" -#: src/slic3r/GUI/GLCanvas3D.cpp:242 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "Bouton gauche de souris :" @@ -3885,7 +3926,7 @@ msgstr "Bouton gauche de souris :" msgid "Left View" msgstr "Vue Gauche" -#: src/slic3r/GUI/GUI_Preview.cpp:259 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "Légende" @@ -3893,7 +3934,7 @@ msgstr "Légende" msgid "Length" msgstr "Longueur" -#: src/libslic3r/PrintConfig.cpp:318 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Longueur du tube de refroidissement pour limiter l'espace pour les déplacements de refroidissement à l'intérieur de celui-ci." @@ -3910,7 +3951,7 @@ msgstr "Levage de l'axe Z" msgid "Line" msgstr "Ligne" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "Charger" @@ -3918,22 +3959,14 @@ msgstr "Charger" msgid "Load a model" msgstr "Charger un modèle" -#: src/libslic3r/PrintConfig.cpp:3490 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Charger et stocker les réglages dans le répertoire donné. Ceci est utile pour conserver différents profils ou inclure des configurations depuis un stockage réseau." -#: src/libslic3r/PrintConfig.cpp:3474 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "Charger le fichier de configuration" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "Charger la Configuration depuis .ini/amf/3mf/gcode" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "Charger la Configuration depuis .ini/amf/3mf/gcode et fusionner" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Charger une configuration à partir d'un ini/amf/3mf/gcode et fusionner" @@ -3942,7 +3975,7 @@ msgstr "Charger une configuration à partir d'un ini/amf/3mf/gcode et fusionner" msgid "Load configuration from project file" msgstr "Charger la configuration depuis le fichier du projet" -#: src/libslic3r/PrintConfig.cpp:3475 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Charger la configuration depuis le fichier spécifié. Ceci peut être utilisé plusieurs fois afin de charger des options depuis plusieurs fichiers." @@ -3950,15 +3983,15 @@ msgstr "Charger la configuration depuis le fichier spécifié. Ceci peut être u msgid "Load exported configuration file" msgstr "Charger le fichier de configuration exporté" -#: src/slic3r/GUI/Plater.cpp:1375 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "Charger le Fichier" -#: src/slic3r/GUI/Plater.cpp:1379 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "Charger les Fichiers" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "Charger une Partie" @@ -3966,7 +3999,7 @@ msgstr "Charger une Partie" msgid "Load presets from a bundle" msgstr "Charger les préréglages à partir d'un lot" -#: src/slic3r/GUI/Plater.cpp:4588 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "Charger le Projet" @@ -3982,11 +4015,11 @@ msgstr "Charger..." msgid "loaded" msgstr "chargé" -#: src/slic3r/GUI/Plater.cpp:2410 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "Chargé" -#: src/slic3r/GUI/Plater.cpp:2257 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "Chargement" @@ -3999,7 +4032,7 @@ msgid "Loading of current presets" msgstr "Chargement de préréglages actuels" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:378 msgid "Loading repaired model" msgstr "Chargement du modèle réparé" @@ -4020,19 +4053,19 @@ msgstr "Coordonnées locaux" msgid "Lock supports under new islands" msgstr "Verrouiller les supports sous de nouveaux îlots" -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "VERROU VERROUILLE" -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "L'icône VERROU VERROUILLE indique que les réglages sont les mêmes que les valeurs système (ou par défaut) pour le groupe d'options actuel" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "L'icône VERROU VERROUILLÉ indique que la valeur est la même que la valeur système (ou par défaut)." -#: src/libslic3r/PrintConfig.cpp:3493 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "Niveau d'enregistrement" @@ -4040,12 +4073,12 @@ msgstr "Niveau d'enregistrement" msgid "Loops (minimum)" msgstr "Boucles (minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 msgid "Lower Layer" msgstr "Couche Inférieure" -#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -4053,11 +4086,7 @@ msgstr "Couche Inférieure" msgid "Machine limits" msgstr "Limites de la machine" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "Principaux Raccourcis" - -#: src/slic3r/GUI/Plater.cpp:168 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "Variété" @@ -4065,23 +4094,23 @@ msgstr "Variété" msgid "Manual editing" msgstr "Édition manuelle" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "Fichier SLA masqué exporté vers %1%" -#: src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "Onglet Réglage&s Matériau" -#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "Matériau" -#: src/slic3r/GUI/Tab.hpp:415 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "Réglages Matériau" -#: src/slic3r/GUI/Plater.cpp:165 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "Matériaux" @@ -4089,15 +4118,15 @@ msgstr "Matériaux" msgid "Max" msgstr "Maximum" -#: src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "Longueur maximum de pont" -#: src/libslic3r/PrintConfig.cpp:2813 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "Distance maximum de fusion" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "Distance maximum de jonction de pilier" @@ -4181,11 +4210,11 @@ msgstr "Accélérations maximum Y" msgid "Maximum acceleration Z" msgstr "Accélérations maximum Z" -#: src/slic3r/GUI/Tab.cpp:2218 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "Accélérations maximum" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "Temps d'exposition maximum" @@ -4221,11 +4250,11 @@ msgstr "Vitesse d'avance maximum en Y" msgid "Maximum feedrate Z" msgstr "Vitesse d'avance maximum en Z" -#: src/slic3r/GUI/Tab.cpp:2213 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "Vitesses d'avance maximum" -#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "Temps d'exposition initiale Maximum" @@ -4265,15 +4294,15 @@ msgstr "Mouvement brusque maximum Z" msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Vitesse volumétrique maximale autorisée pour ce filament. Limite la vitesse volumétrique d'une impression au minimum des vitesses volumétriques d'impression et de filament. Mettez à zéro pour enlever la limite." -#: src/libslic3r/PrintConfig.cpp:3427 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "Fusionner" -#: src/libslic3r/PrintConfig.cpp:2674 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Le fait de fusionner des ponts ou des piliers avec d'autres piliers peut augmenter le rayon. Zéro signifie aucune augmentation, un signifie augmentation totale." -#: src/libslic3r/SLAPrintSteps.cpp:62 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "Fusion des tranches et calcul des statistiques" @@ -4281,14 +4310,10 @@ msgstr "Fusion des tranches et calcul des statistiques" msgid "Mesh repair failed." msgstr "Échec de la réparation du maillage." -#: src/slic3r/GUI/DoubleSlider.cpp:1607 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "Message pour mettre en pause l'impression sur la couche en cours (%1% mm)." -#: src/libslic3r/PrintConfig.cpp:3120 -msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -msgstr "Les messages avec une sévérité inférieure ou égale au loglevel seront imprimés. 0 : identification, 1 : débogage, 3 : avertissement , 4 : erreur, 5 : fatal" - #: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Minimum" @@ -4301,7 +4326,7 @@ msgstr "Vitesse d'impression minimale" msgid "min PrusaSlicer version" msgstr "Version minimum de PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:2763 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "Distance minimale des points de support" @@ -4317,11 +4342,11 @@ msgstr "Distance minimale des points" msgid "Minimal purge on wipe tower" msgstr "Purge minimale sur la tour de nettoyage" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:187 msgid "Minimum bottom shell thickness" msgstr "Épaisseur minimale de la coque inférieure" -#: src/slic3r/GUI/PresetHints.cpp:335 +#: src/slic3r/GUI/PresetHints.cpp:339 msgid "Minimum bottom shell thickness is %1% mm." msgstr "L'épaisseur minimale de la coque inférieure est de %1% mm." @@ -4329,7 +4354,7 @@ msgstr "L'épaisseur minimale de la coque inférieure est de %1% mm." msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Résolution minimale pour les détails, utilisée pour simplifier le fichier d'entrée afin d'accélérer le découpage et de réduire l'utilisation de la mémoire. Les modèles haute-résolution possèdent souvent plus de détails que ce que les imprimantes peuvent produire. Mettez à zéro pour désactiver toute simplification et utiliser la résolution complète de l'entrée." -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "Temps d'exposition minimum" @@ -4341,15 +4366,15 @@ msgstr "Vitesse d'avance minimum lors de l'extrusion" msgid "Minimum feedrate when extruding (M205 S)" msgstr "Vitesse d'avance minimum lors de l'extrusion (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2230 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "Vitesses d'avance minimum" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "Temps d'exposition initiale minimum" -#: src/slic3r/GUI/Tab.cpp:1071 +#: src/slic3r/GUI/Tab.cpp:1069 msgid "Minimum shell thickness" msgstr "Épaisseur de coque minimale" @@ -4361,7 +4386,7 @@ msgstr "Épaisseur minimale d'une coque supérieure/inférieure" msgid "Minimum top shell thickness" msgstr "Épaisseur minimale de la coque supérieure" -#: src/slic3r/GUI/PresetHints.cpp:316 +#: src/slic3r/GUI/PresetHints.cpp:320 msgid "Minimum top shell thickness is %1% mm." msgstr "L'épaisseur minimale de la coque supérieure est de %1% mm." @@ -4377,7 +4402,7 @@ msgstr "Vitesse d'avance minimum en déplacement" msgid "Minimum travel feedrate (M205 T)" msgstr "Vitesse d'avance minimum en déplacement (M205 T)" -#: src/libslic3r/PrintConfig.cpp:2908 +#: src/libslic3r/PrintConfig.cpp:2917 msgid "Minimum wall thickness of a hollowed model." msgstr "Épaisseur de paroi minimale d'un modèle évidé." @@ -4385,7 +4410,7 @@ msgstr "Épaisseur de paroi minimale d'un modèle évidé." msgid "Minimum width of features to maintain when doing elephant foot compensation." msgstr "Largeur minimum des caractéristiques à maintenir lorsque vous pratiquez une compensation de pied d'éléphant." -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "Symétrie" @@ -4393,23 +4418,23 @@ msgstr "Symétrie" msgid "Mirror horizontally" msgstr "Symétriser horizontalement" -#: src/slic3r/GUI/GLCanvas3D.cpp:2075 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "Symétriser l'Objet" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "Symétriser l'objet sélectionné" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "Symétriser l'objet sélectionné selon l'axe X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "Symétriser l'objet sélectionné selon l'axe Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "Symétriser l'objet sélectionné selon l'axe Z" @@ -4418,7 +4443,7 @@ msgid "Mirror vertically" msgstr "Symétriser verticalement" #: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 -#, possible-c-format +#, c-format msgid "Mismatched type of print host: %s" msgstr "Mauvais appariement de l'hôte d'impression : %s" @@ -4426,21 +4451,21 @@ msgstr "Mauvais appariement de l'hôte d'impression : %s" msgid "Mixed" msgstr "Mélangé" -#: src/libslic3r/PrintConfig.cpp:2482 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" #: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 #: src/slic3r/GUI/ObjectDataViewModel.cpp:94 #: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 #: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 -#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 -#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 -#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 #: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 #: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 #: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 @@ -4455,17 +4480,18 @@ msgstr "ml" #: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 #: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 #: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 -#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 #: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 -#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 -#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 -#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 -#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 -#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 -#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 -#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" @@ -4482,7 +4508,7 @@ msgstr "mm (zéro pour désactiver)" msgid "mm or %" msgstr "mm ou %" -#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 #: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 #: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 #: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 @@ -4501,7 +4527,7 @@ msgstr "mm/s" msgid "mm/s or %" msgstr "mm/s ou %" -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 #: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 #: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 #: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 @@ -4527,7 +4553,7 @@ msgstr "mm³/s²" #: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" -msgstr "Mode" +msgstr "&Mode" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" @@ -4541,24 +4567,24 @@ msgstr "Modèle" msgid "Model fixing" msgstr "Réparation d'un modèle" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model Repair by the Netfabb service" msgstr "Réparation d'un modèle par le service Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:413 +#: src/slic3r/Utils/FixModelByWin10.cpp:406 msgid "Model repair canceled" msgstr "Réparation du modèle annulée" -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model repair failed:" msgstr "Échec de la réparation du modèle:" -#: src/slic3r/Utils/FixModelByWin10.cpp:407 +#: src/slic3r/Utils/FixModelByWin10.cpp:400 msgid "Model repair finished" msgstr "Réparation du modèle terminée" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 msgid "Model repaired successfully" msgstr "Réparation du modèle réussie" @@ -4566,15 +4592,15 @@ msgstr "Réparation du modèle réussie" msgid "modified" msgstr "modifié" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "Modificateur" -#: src/slic3r/GUI/Tab.cpp:1163 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "Modificateurs" -#: src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "prix/bouteille" @@ -4582,11 +4608,11 @@ msgstr "prix/bouteille" msgid "money/kg" msgstr "€/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "Roulette de la souris" -#: src/slic3r/GUI/GLCanvas3D.cpp:266 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "Roulette de la souris:" @@ -4594,27 +4620,27 @@ msgstr "Roulette de la souris:" msgid "Move" msgstr "Déplacer" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "Déplacer le plan de coupe" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Move current slider thumb Down" msgstr "Déplacer le curseur actuel vers le bas" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Move current slider thumb Up" msgstr "Déplacer le curseur actuel vers le haut" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 msgid "Move drainage hole" msgstr "Déplacer le trou de drainage" -#: src/slic3r/GUI/GLCanvas3D.cpp:3538 +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "Déplacer l'Objet" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "Déplacer le point" @@ -4634,7 +4660,7 @@ msgstr "Déplacer la sélection de 10 mm dans la direction positive X" msgid "Move selection 10 mm in positive Y direction" msgstr "Déplacer la sélection de 10 mm dans la direction positive Y" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "Déplacer un point de support" @@ -4650,36 +4676,42 @@ msgstr "Pas du mouvement réglé sur 1 mm" msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Les imprimantes multi-matériaux peuvent avoir besoin de préparer ou de purger leurs extrudeurs lors d'un changement d'outil. Extruder le matériau en excès dans la tour de nettoyage." -#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "Objet multi-pièces détecté" #: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 -#, possible-c-format +#, c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Plusieurs %s équipements ont été détectés. Veuillez n'en connecter qu'un seul à la fois pour le processus de flash." -#: src/slic3r/GUI/Tab.cpp:1181 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "Extrudeurs Multiples" -#: src/slic3r/GUI/Plater.cpp:2394 -msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" -msgstr "Plusieurs fichiers ont été chargés pour une impression multi-matériaux.\nAu lieu de les considérer en tant que plusieurs objets, dois-je considérer\nces fichiers en tant que un seul objet ayant plusieurs pièces ?" +#: src/slic3r/GUI/Plater.cpp:2410 +msgid "" +"Multiple objects were loaded for a multi-material printer.\n" +"Instead of considering them as multiple objects, should I consider\n" +"these files to represent a single object having multiple parts?" +msgstr "" +"Plusieurs fichiers ont été chargés pour une impression multi-matériaux.\n" +"Au lieu de les considérer en tant que plusieurs objets, dois-je considérer\n" +"ces fichiers en tant que un seul objet ayant plusieurs pièces ?" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "Multiplier les copies en créant une grille." -#: src/libslic3r/PrintConfig.cpp:3419 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "Multiplier les copies par ce facteur." -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nom" @@ -4704,7 +4736,7 @@ msgstr "Le plus proche" msgid "Network lookup" msgstr "Recherche réseau" -#: src/slic3r/GUI/Plater.cpp:2135 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "Nouveau Projet" @@ -4713,7 +4745,7 @@ msgid "New project, clear plater" msgstr "Nouveau projet, libérer le plateau" #: src/slic3r/GUI/UpdateDialogs.cpp:38 -#, possible-c-format +#, c-format msgid "New version of %s is available" msgstr "Une nouvelle version de %s est disponible" @@ -4721,11 +4753,11 @@ msgstr "Une nouvelle version de %s est disponible" msgid "New version:" msgstr "Nouvelle version :" -#: src/slic3r/GUI/GLCanvas3D.cpp:4722 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "Prochaine action Répéter : %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:4690 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "Prochaine action Annuler : %1%" @@ -4733,11 +4765,11 @@ msgstr "Prochaine action Annuler : %1%" msgid "No extrusion" msgstr "Aucune extrusion" -#: src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "Aucun socle ne peut être généré pour ce modèle avec la configuration actuelle" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "Aucun fichier précédemment découpé." @@ -4749,25 +4781,25 @@ msgstr "PAS D'EXPULSION DU TOUT" msgid "No sparse layers (EXPERIMENTAL)" msgstr "Sans couches dispersées (EXPERIMENTAL)" -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "Aucun point de support ne sera positionné plus près que ce seuil." #: src/slic3r/GUI/UpdateDialogs.cpp:303 -msgid "No updates aviable" +msgid "No updates available" msgstr "Aucune mise à jour disponible" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Aucun" -#: src/slic3r/GUI/Tab.cpp:2199 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "Normal" -#: src/slic3r/GUI/Plater.cpp:1258 +#: src/slic3r/GUI/Plater.cpp:1286 msgid "normal mode" msgstr "mode normal" @@ -4776,10 +4808,10 @@ msgid "not a ZIP archive" msgstr "n'est pas une archive ZIP" #: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 -msgid "Not found: " -msgstr "Introuvable :" +msgid "Not found:" +msgstr "Introuvable:" -#: src/slic3r/GUI/DoubleSlider.cpp:985 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "Note" msgstr "Remarque" @@ -4795,20 +4827,20 @@ msgstr "Remarque : FlashAir avec firmware 2.00.02 ou plus récent avec une fonct msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Note : une version d'Octoprint supérieure ou égale à 1.1.0 est requise." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Remarque: certains raccourcis ne fonctionnent qu'en mode de (non-)édition." -#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 -#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 -#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 -#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "Notes" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 -#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "Remarque" @@ -4816,12 +4848,12 @@ msgstr "Remarque" msgid "nozzle" msgstr "buse" -#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Diamètre de la buse" -#: src/slic3r/GUI/ConfigWizard.cpp:970 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "Diamètre de la Buse :" @@ -4829,7 +4861,7 @@ msgstr "Diamètre de la Buse :" msgid "Number of cooling moves" msgstr "Nombres de mouvements de refroidissement" -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "Nombre d'extrudeurs de l'imprimante." @@ -4853,7 +4885,7 @@ msgstr "Nombre de pixels présents dans X" msgid "Number of pixels in Y" msgstr "Nombre de pixels présents dans Y" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Nombre de couches solides à générer sur les surfaces inférieures." @@ -4865,19 +4897,19 @@ msgstr "Nombre de couches solides à générer sur les surfaces supérieures et msgid "Number of solid layers to generate on top surfaces." msgstr "Nombre de couches solides à générer sur les surfaces supérieures." -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Nombre de couches nécessaires pour que le temps d'exposition passe du temps d'exposition initial au temps d'exposition normal" -#: src/slic3r/GUI/Plater.cpp:243 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "Nombre de changements d'outil" -#: src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "Élévation de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "Manipulation de l'Objet" @@ -4885,19 +4917,19 @@ msgstr "Manipulation de l'Objet" msgid "Object name" msgstr "Nom de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "Objet ou Instance" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "Objet réorganisé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "Réglages de l'Objet à modifier" -#: src/slic3r/GUI/Plater.cpp:2513 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "Objet trop grand ?" @@ -4905,11 +4937,11 @@ msgstr "Objet trop grand ?" msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "L'objet sera utilisé pour purger la buse après un changement d'outil pour économiser du matériau qui finirait normalement dans la tour de nettoyage et raccourcirait le temps d'impression. Par conséquent, les couleurs de l'objet seront mélangées." -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "objet(s)" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "objets" @@ -4921,7 +4953,7 @@ msgstr "Spirale Octagramme" msgid "OctoPrint version" msgstr "Version d'OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "d'un Objet en cours" @@ -4929,15 +4961,15 @@ msgstr "d'un Objet en cours" msgid "Offset" msgstr "Décalage" -#: src/slic3r/GUI/DoubleSlider.cpp:923 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "Mode couche unique" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1365 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Un ou plusieurs objets ont été affectés à un extrudeur que l'imprimante ne possède pas." -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Créer uniquement des supports reposant sur le plateau. Ne pas créer pas de supports sur une impression." @@ -4945,7 +4977,7 @@ msgstr "Créer uniquement des supports reposant sur le plateau. Ne pas créer pa msgid "Only infill where needed" msgstr "Faire remplissage seulement où cela est nécessaire" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "Lever Z seulement" @@ -4961,11 +4993,11 @@ msgstr "Lever Z seulement en-dessous de" msgid "Only retract when crossing perimeters" msgstr "Rétracter uniquement lors du franchissement de périmètres" -#: src/slic3r/GUI/Tab.cpp:1189 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "Prévention des coulures" -#: src/libslic3r/Print.cpp:1262 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "La prévention des écoulements n'est actuellement pas supportée lorsque la tour de nettoyage est activée." @@ -4973,7 +5005,7 @@ msgstr "La prévention des écoulements n'est actuellement pas supportée lorsqu msgid "Open a project file" msgstr "Ouvrir un fichier de projet" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "Ouvrir le fichier de certificat CA" @@ -4990,52 +5022,48 @@ msgstr "Ouvrir la page de téléchargement" msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Ouvrir un projet STL/OBJ/AMF/3MF avec configuration, libérer le plateau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "Ouvrir un projet STL/OBJ/AMF/3MF avec la configuration, effacer le lit" - -#: src/slic3r/GUI/MainFrame.cpp:695 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:693 +#, c-format msgid "Open the %s website in your browser" msgstr "Ouvrir le site web de %s dans votre navigateur" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Ouvrir la page de téléchargement des drivers Prusa3D dans votre navigateur" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "Ouvrir la page des publications du logiciel dans votre navigateur" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "Optimiser l'orientation" -#: src/slic3r/GUI/Plater.cpp:2751 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "Optimiser la Rotation" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "Optimiser la rotation de l'objet pour un meilleur résultat d'impression." -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optimiser les déplacements afin de minimiser le franchissement de périmètres. Ceci est surtout utile avec les extruder Bowden qui sont sujets aux coulures. Cette fonctionnalité ralentit l'impression et la génération du G-code." -#: src/slic3r/GUI/Tab.cpp:1133 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "Options pour le matériau de support et le radeau" -#: src/slic3r/GUI/DoubleSlider.cpp:960 +#: src/slic3r/GUI/DoubleSlider.cpp:989 msgid "or press \"+\" key" msgstr "ou appuyez sur la touche \"+\"" -#: src/slic3r/GUI/Plater.cpp:2876 +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "Orientation trouvée." -#: src/slic3r/GUI/Plater.cpp:2875 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "Recherche de l'orientation annulée." @@ -5043,23 +5071,23 @@ msgstr "Recherche de l'orientation annulée." msgid "Origin" msgstr "Origine" -#: src/slic3r/GUI/Tab.cpp:1229 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "Autre" -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Autres couches" -#: src/slic3r/GUI/ConfigWizard.cpp:857 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "Autres Fabriquants" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "Fichier de sortie" -#: src/libslic3r/PrintConfig.cpp:3478 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "Fichier de Sortie" @@ -5067,15 +5095,15 @@ msgstr "Fichier de Sortie" msgid "Output filename format" msgstr "Format du nom de fichier de sortie" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "Information du Modèle de Sortie" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "Options de sortie" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Périmètre en surplomb" @@ -5083,23 +5111,23 @@ msgstr "Périmètre en surplomb" msgid "Overhang threshold" msgstr "Seuil de surplomb" -#: src/slic3r/GUI/Tab.cpp:1217 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "Chevauchement" #: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" -msgstr "Onglet des Réglages d'Imp&ression" +msgstr "Onglet des &Réglages d'Impression" -#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 -#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 -#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 -#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 -#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 -#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 -#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 -#: src/libslic3r/PrintConfig.cpp:2890 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "Socle" @@ -5107,15 +5135,15 @@ msgstr "Socle" msgid "Pad and Support" msgstr "Socle et Support" -#: src/libslic3r/PrintConfig.cpp:2846 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "Socle autour de l'objet" -#: src/libslic3r/PrintConfig.cpp:2853 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "Socle partout autour de l'objet" -#: src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "Taille du bord de socle" @@ -5123,31 +5151,31 @@ msgstr "Taille du bord de socle" msgid "Pad brim size is too small for the current configuration." msgstr "La taille du bord de socle est trop petite pour la configuration actuelle." -#: src/libslic3r/PrintConfig.cpp:2889 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "Pénétration du connecteur de l'objet socle" -#: src/libslic3r/PrintConfig.cpp:2871 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "Pas du connecteur de l'objet socle" -#: src/libslic3r/PrintConfig.cpp:2880 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "Largeur du connecteur de l'objet socle" -#: src/libslic3r/PrintConfig.cpp:2860 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "Espace entre l'objet et le socle" -#: src/libslic3r/PrintConfig.cpp:2788 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "Hauteur de la paroi du socle" -#: src/libslic3r/PrintConfig.cpp:2835 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "Inclinaison de la paroi du socle" -#: src/libslic3r/PrintConfig.cpp:2778 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "Épaisseur de la paroi du socle" @@ -5159,28 +5187,28 @@ msgstr "Page Down" msgid "Page Up" msgstr "Page Up" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "nom du paramètre" -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "Validation du paramètre" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "Pièce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "Manipulation d'une pièce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "Réglages de la pièce à modifier" -#: src/slic3r/GUI/GLCanvas3D.cpp:4563 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "Coller" @@ -5188,11 +5216,11 @@ msgstr "Coller" msgid "Paste clipboard" msgstr "Coller le presse-papier" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 msgid "Paste from clipboard" msgstr "Coller depuis le presse-papier" -#: src/slic3r/GUI/Plater.cpp:5640 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "Coller Depuis le Presse-Papier" @@ -5212,12 +5240,16 @@ msgstr "Espacement du motif" msgid "Pattern used to generate support material." msgstr "Motif utilisé pour générer les supports." -#: src/slic3r/GUI/DoubleSlider.cpp:976 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "Pause" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Pause print (\"%1%\")" msgstr "Mettre en pause l'impression (\"%1%\")" -#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 -#: src/slic3r/GUI/GLCanvas3D.cpp:987 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "Pause d'impression ou G-code personnalisé" @@ -5225,11 +5257,11 @@ msgstr "Pause d'impression ou G-code personnalisé" msgid "Perform cut" msgstr "Effectuer la coupe" -#: src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2927 msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." msgstr "Performance vs précision du calcul. Des valeurs plus faibles peuvent produire des artefacts indésirables." -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Périmètre" @@ -5246,8 +5278,8 @@ msgstr "périmètres" msgid "Perimeters" msgstr "Périmètres" -#: src/slic3r/GUI/ConfigWizard.cpp:861 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:860 +#, c-format msgid "Pick another vendor supported by %s" msgstr "Choisissez un autre fournisseur pris en charge par %s" @@ -5255,7 +5287,7 @@ msgstr "Choisissez un autre fournisseur pris en charge par %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Tailles d'image devant être stockées dans des fichiers .gcode et .sl1" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "Facteur d'élargissement du pilier" @@ -5263,10 +5295,6 @@ msgstr "Facteur d'élargissement du pilier" msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Le diamètre de la tête d'épingle doit être plus petit que le diamètre du pilier." -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "Placer les roulements dans les fentes et relancer" - #: src/slic3r/GUI/DoubleSlider.cpp:79 msgid "Place bearings in slots and resume printing" msgstr "Placer les roulements dans les fentes et reprendre l'impression" @@ -5275,23 +5303,19 @@ msgstr "Placer les roulements dans les fentes et reprendre l'impression" msgid "Place on face" msgstr "Positionner sur la surface" -#: src/slic3r/GUI/MainFrame.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Plateau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 -msgid "Plater Shortcuts" -msgstr "Raccourcis du Plateau" - #: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Veuillez vérifier et réparer votre liste d'objet." -#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "Veuillez vérifier votre liste d'objet avant le changement de préréglage." -#: src/slic3r/GUI/Plater.cpp:3272 +#: src/slic3r/GUI/Plater.cpp:3286 msgid "Please select the file to reload" msgstr "Veuillez sélectionner le fichier à recharger" @@ -5308,14 +5332,10 @@ msgstr "Portrait" msgid "Position" msgstr "Position" -#: src/slic3r/GUI/Tab.cpp:2363 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "Position (pour les imprimantes multi-extrudeurs)" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "Position (en mm)" - #: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Position des points de départ des périmètres." @@ -5328,7 +5348,7 @@ msgstr "Position X" msgid "Position Y" msgstr "Position Y" -#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Scripts de post-traitement" @@ -5336,7 +5356,7 @@ msgstr "Scripts de post-traitement" msgid "Pre&view" msgstr "Pré&visualisation" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Préférences" @@ -5352,67 +5372,61 @@ msgstr "Direction préférée de la jointure - gigue" msgid "Preparing infill" msgstr "Préparation du remplissage" -#: src/slic3r/GUI/Tab.cpp:2904 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2920 +#, c-format msgid "Preset (%s)" msgstr "Préréglage (%s)" -#: src/slic3r/GUI/Tab.cpp:3066 +#: src/slic3r/GUI/Tab.cpp:3082 msgid "Preset with name \"%1%\" already exists." msgstr "Un préréglage avec le nom \"%1%\" existe déjà." -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - Copie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" -msgstr "Appuyez pour activer le rectangle de\ndésélection ou pour redimensionner\nou faire pivoter les objets sélectionnés\nautour de leur propre centre" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Press to activate deselection rectangle" msgstr "Appuyer pour activer le rectangle de déselection" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Press to activate one direction scaling in Gizmo scale" -msgstr "Appuyez pour activer le redimensionnement\ndans une direction pour le Gizmo" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Appuyez pour activer le rectangle\nde sélection ou pour modifier de 5%\nla dimension du Gizmo ou pour\nmodifier d'1 mm le déplacement du\nGizmo" +msgstr "" +"Appuyez pour activer le redimensionnement\n" +"dans une direction pour le Gizmo" #: src/slic3r/GUI/KBShortcutsDialog.cpp:162 msgid "Press to activate selection rectangle" msgstr "Appuyer pour activer le rectangle de sélection" #: src/slic3r/GUI/KBShortcutsDialog.cpp:198 -msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" -msgstr "Appuyer pour redimensionner (à l'échelle du Gizmo) ou faire pivoter (rotation du Gizmo)\nles objets sélectionnés autour de leur propre centre" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "Press to scale selection to fit print volume\nin Gizmo scale" -msgstr "Appuyez pour redimensionner la sélection afin\nqu'elle s'ajuste aux dimensions du Gizmo" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "Clicquez pour sélectionner plusieurs objets ou pour déplacer plusieurs objets avec la souris" +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"Appuyer pour redimensionner (à l'échelle du Gizmo) ou faire pivoter (rotation du Gizmo)\n" +"les objets sélectionnés autour de leur propre centre" #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with mouse" -msgstr "Clicquez pour sélectionner plusieurs objets\nou pour déplacer plusieurs objets avec la souris" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with a mouse" -msgstr "Clicquez pour sélectionner plusieurs objets\nou pour déplacer plusieurs objets avec la souris" +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"Clicquez pour sélectionner plusieurs objets\n" +"ou pour déplacer plusieurs objets avec la souris" #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format -msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Appuyer pour modifier de 5% à l'échelle du Gizmo\nou pour modifier d'1 mm le mouvement du Gizmo" +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Appuyer pour modifier de 5% à l'échelle du Gizmo\n" +"ou pour modifier d'1 mm le mouvement du Gizmo" -#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "Aperçu" @@ -5420,11 +5434,7 @@ msgstr "Aperçu" msgid "Preview hollowed and drilled model" msgstr "Aperçu du modèle évidé et percé" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 -msgid "Preview Shortcuts" -msgstr "Prévisualisation des Raccourcis" - -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "Fichier précédemment découpé (" @@ -5432,7 +5442,7 @@ msgstr "Fichier précédemment découpé (" msgid "Prime all printing extruders" msgstr "Préparer tous les extrudeurs d'impression" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "imprimer" @@ -5444,32 +5454,32 @@ msgstr "File d'Attente de Téléchargement de l'&Hôte d'Impression" msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Imprimer les périmètres de l'extérieur vers l'intérieur au lieu de l'ordre par défaut qui est inversé." -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "Diamètres d'Impression" -#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "Téléchargement de l'Hôte d'Impression" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "File d'Attente de téléchargement de l'hôte d'impression" -#: src/slic3r/GUI/DoubleSlider.cpp:941 +#: src/slic3r/GUI/DoubleSlider.cpp:970 msgid "Print mode" msgstr "Mode d'impression" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "Réglages d'Impression" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "Réglages d'impression" -#: src/slic3r/GUI/Tab.cpp:1480 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "Contournement de la vitesse d'impression" @@ -5481,15 +5491,15 @@ msgstr "Imprimer z" msgid "Print&er Settings Tab" msgstr "Onglet des Réglages de l'Imprimant&e" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "Imprimable" -#: src/slic3r/GUI/Plater.cpp:816 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "Imprimante" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "imprimer" @@ -5497,11 +5507,11 @@ msgstr "imprimer" msgid "Printer absolute correction" msgstr "Correction absolue de l'imprimante" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "Correction gamma de l'imprimante" -#: src/slic3r/GUI/Tab.cpp:978 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "modèle de l'imprimante" @@ -5514,7 +5524,7 @@ msgstr "Notes de l'imprimante" msgid "Printer scaling correction" msgstr "Correction de redimensionnement de l'imprimante" -#: src/slic3r/GUI/Tab.hpp:390 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "Réglages de l'Imprimante" @@ -5534,18 +5544,18 @@ msgstr "Variante d'imprimante" msgid "Printer vendor" msgstr "Fabriquant de l'imprimante" -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1388 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Impression avec plusieurs extrudeurs de différents diamètres de buse. Si le support doit être imprimé avec l'extrudeur courant (support_material_extruder == 0 ou support_material_interface_extruder == 0), toutes les buses doivent avoir le même diamètre." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:851 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:849 +#, c-format msgid "Processing %s" msgstr "Traitement %s" -#: src/slic3r/GUI/Plater.cpp:2267 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2283 +#, c-format msgid "Processing input file %s" msgstr "Traitement du fichier d'entrée %s" @@ -5553,9 +5563,9 @@ msgstr "Traitement du fichier d'entrée %s" msgid "Processing triangulated mesh" msgstr "Traitement de maillage triangulé" -#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 -#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "Dépendances du profil" @@ -5571,15 +5581,15 @@ msgstr "Progression" msgid "Progress:" msgstr "Progression :" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" msgstr "&Drivers Prusa 3D" -#: src/slic3r/GUI/ConfigWizard.cpp:1998 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "Imprimantes à Technologie FFF Prusa" -#: src/slic3r/GUI/ConfigWizard.cpp:2001 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Imprimantes à Technologie MSLA Prusa" @@ -5588,23 +5598,33 @@ msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap co msgstr "PrusaSlicer est basé sur Slic3r par Alessandro Ranellucci et la communauté RepRap." #: src/slic3r/GUI/GLCanvas3DManager.cpp:284 -#, possible-c-format -msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." -msgstr "PrusaSlicer a besoin de pilotes graphiques opérationnels OpenGL 2.0 pour fonctionner correctement,\nalors que OpenGL version %s, rendu %s, fournisseur %s a été détecté." +#, c-format +msgid "" +"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" +"while OpenGL version %s, render %s, vendor %s was detected." +msgstr "" +"PrusaSlicer a besoin de pilotes graphiques opérationnels OpenGL 2.0 pour fonctionner correctement,\n" +"alors que OpenGL version %s, rendu %s, fournisseur %s a été détecté." #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "Version de PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "Les interfaces utilisateur de PrusaSlicer se déclinent en trois variantes :\nSimple, Avancé et Expert.\nLe mode Simple affiche uniquement les paramètres les plus fréquemment utilisés pertinents pour l'impression 3D régulière. Les deux autres offrent des réglages fins de plus en plus sophistiqués, ils conviennent respectivement aux utilisateurs avancés et experts." +#: src/slic3r/GUI/ConfigWizard.cpp:815 +msgid "" +"PrusaSlicer's user interfaces comes in three variants:\n" +"Simple, Advanced, and Expert.\n" +"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "" +"Les interfaces utilisateur de PrusaSlicer se déclinent en trois variantes :\n" +"Simple, Avancé et Expert.\n" +"Le mode Simple affiche uniquement les paramètres les plus fréquemment utilisés pertinents pour l'impression 3D régulière. Les deux autres offrent des réglages fins de plus en plus sophistiqués, ils conviennent respectivement aux utilisateurs avancés et experts." #: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "La purge après le changement d'outil sera faite dans le remplissage de l'objet. Cela diminue le gaspillage mais peut rallonger le temps d'impression à cause des mouvements supplémentaires." -#: src/slic3r/GUI/Plater.cpp:541 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "Volumes de purge" @@ -5620,19 +5640,19 @@ msgstr "Volumes de purge - matrice" msgid "Quality" msgstr "Qualité" -#: src/slic3r/GUI/Tab.cpp:1082 +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "Qualité (découpage plus lent)" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 +#: src/slic3r/GUI/GLCanvas3D.cpp:273 msgid "Quality / Speed" msgstr "Qualité / Vitesse" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 +#, c-format msgid "Quick Add Settings (%s)" msgstr "Ajout de Réglages Rapide (%s)" @@ -5645,15 +5665,15 @@ msgid "Quick Slice and Save As" msgstr "Découpage Rapide et Enregistrer Sous" #: src/slic3r/GUI/MainFrame.cpp:540 -#, possible-c-format +#, c-format msgid "Quit %s" msgstr "Quitter %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Rayon" -#: src/slic3r/GUI/Tab.cpp:1129 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "Radeau" @@ -5666,8 +5686,14 @@ msgid "Ramming customization" msgstr "Personnalisation de l'expulsion" #: src/slic3r/GUI/WipeTowerDialog.cpp:41 -msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "L'Expulsion décrit l'extrusion rapide qui a lieu juste avant un changement d'outil sur une imprimante MM à extrudeur unique. Le but est de donner une forme correcte au filament déchargé afin qu'il n'empêche pas l'insertion du nouveau filament et puisse être réinséré lui-même plus tard. Cette phase est importante et des matériaux différents peuvent nécessiter des vitesses d'extrusion différentes pour obtenir la bonne forme. De ce fait, les débits d'extrusion pendant l'expulsion sont ajustables.\n\nCeci est un paramétrage de niveau expert, et un mauvais ajustement provoquera probablement des blocages, des accrochages de la roue de l'extrudeur sur le filament , etc ..." +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "" +"L'Expulsion décrit l'extrusion rapide qui a lieu juste avant un changement d'outil sur une imprimante MM à extrudeur unique. Le but est de donner une forme correcte au filament déchargé afin qu'il n'empêche pas l'insertion du nouveau filament et puisse être réinséré lui-même plus tard. Cette phase est importante et des matériaux différents peuvent nécessiter des vitesses d'extrusion différentes pour obtenir la bonne forme. De ce fait, les débits d'extrusion pendant l'expulsion sont ajustables.\n" +"\n" +"Ceci est un paramétrage de niveau expert, et un mauvais ajustement provoquera probablement des blocages, des accrochages de la roue de l'extrudeur sur le filament , etc ..." #: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" @@ -5681,7 +5707,7 @@ msgstr "Largeur de la ligne d'expulsion" msgid "Ramming parameters" msgstr "Paramètres de l'expulsion" -#: src/slic3r/GUI/Tab.cpp:1507 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "Réglages de l'expulsion" @@ -5693,13 +5719,13 @@ msgstr "Aléatoire" msgid "Range" msgstr "Zone" -#: src/libslic3r/SLAPrintSteps.cpp:63 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "Tramage des couches" #: src/slic3r/GUI/MainFrame.cpp:596 msgid "Re&load from disk" -msgstr "Re&charger à partir du disque" +msgstr "Recharger à partir du dis&que" #: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" @@ -5709,7 +5735,7 @@ msgstr "Reconfigurer" msgid "Ready" msgstr "Prêt" -#: src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "Prêt à découper" @@ -5723,10 +5749,10 @@ msgstr "Vue Arrière" #: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" -msgstr "Projets récents" +msgstr "Proj&ets récents" #: src/slic3r/GUI/PresetHints.cpp:263 -#, possible-c-format +#, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Épaisseur des parois fines de l'objet recommandée pour la hauteur de couche %.2f et" @@ -5755,38 +5781,39 @@ msgstr "Rectiligne" msgid "Rectilinear grid" msgstr "Grille rectiligne" -#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Recommencer" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Répéter %1$d Action" msgstr[1] "Répéter %1$d Actions" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "Répéter Historique" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "Réduction du temps d'impression" -#: src/slic3r/GUI/Plater.cpp:3461 +#: src/slic3r/GUI/Plater.cpp:3452 msgid "Reload all from disk" msgstr "Tout recharger à partir du disque" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 -#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 msgid "Reload from disk" msgstr "Recharger à partir du disque" -#: src/slic3r/GUI/Plater.cpp:3328 -msgid "Reload from: " -msgstr "Recharger depuis : " +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" +msgstr "Recharger depuis :" #: src/slic3r/GUI/KBShortcutsDialog.cpp:134 msgid "Reload plater from disk" @@ -5796,12 +5823,12 @@ msgstr "Recharger le plateau depuis le disque" msgid "Reload the plater from disk" msgstr "Recharger le plateau à partir du disque" -#: src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "Recharger l'objet sélectionné à partir du disque" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" msgstr "Recharger les volumes sélectionnés à partir du disque" @@ -5809,12 +5836,12 @@ msgstr "Recharger les volumes sélectionnés à partir du disque" msgid "Remember output directory" msgstr "Se souvenir du répertoire de sortie" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "retirer" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "Retirer" @@ -5826,11 +5853,11 @@ msgstr "Supprimer tous les trous" msgid "Remove all points" msgstr "Retirer tous les points" -#: src/slic3r/GUI/GLCanvas3D.cpp:251 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "Supprimer les détails" -#: src/slic3r/GUI/Plater.cpp:876 +#: src/slic3r/GUI/Plater.cpp:879 msgid "Remove device" msgstr "Supprimer l'appareil" @@ -5838,11 +5865,11 @@ msgstr "Supprimer l'appareil" msgid "Remove extruder from sequence" msgstr "Supprimer l'extrudeur de la séquence" -#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" msgstr "Supprimer l'instance" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Remove Instance of the selected object" msgstr "Supprimer l'instance de l'objet sélectionné" @@ -5850,7 +5877,7 @@ msgstr "Supprimer l'instance de l'objet sélectionné" msgid "Remove layer range" msgstr "Supprimer la zone de couche" -#: src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" msgstr "Supprime une instance de l'objet sélectionné" @@ -5858,11 +5885,11 @@ msgstr "Supprime une instance de l'objet sélectionné" msgid "Remove parameter" msgstr "Supprimer le paramètre" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "Supprimer le point" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "Supprimer le point de la sélection" @@ -5871,11 +5898,11 @@ msgid "Remove selected holes" msgstr "Supprimer les trous sélectionnés" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "Retirer les points sélectionnés" -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "Retirer l'objet sélectionné" @@ -5883,47 +5910,51 @@ msgstr "Retirer l'objet sélectionné" msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Supprimer les profils d'utilisateur - installation à partir de zéro (un instantané des réglages sera pris)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "Renommer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "Renommer l'Objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "Renommer le Sous-objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "Renommage" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "La tentative pour renommer le G-code après l'avoir copié dans le dossier sélectionné a échoué. Le chemin actuel est %1%.tmp. Veuillez tenter à nouveau l'export." + +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "Rendu avec avec un logiciel de rendu" -#: src/libslic3r/PrintConfig.cpp:3501 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Appliquer un rendu avec un logiciel de rendu. Le logiciel de rendu MESA qui est fourni est chargé à la place du pilote OpenGL présent par défaut." -#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "Réparer" -#: src/slic3r/Utils/FixModelByWin10.cpp:394 +#: src/slic3r/Utils/FixModelByWin10.cpp:387 msgid "Repaired 3MF file contains more than one object" msgstr "Le fichier 3MF réparé contient plus d'un objet" -#: src/slic3r/Utils/FixModelByWin10.cpp:398 +#: src/slic3r/Utils/FixModelByWin10.cpp:391 msgid "Repaired 3MF file contains more than one volume" msgstr "Le fichier 3MF réparé contient plus d'un volume" -#: src/slic3r/Utils/FixModelByWin10.cpp:392 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Repaired 3MF file does not contain any object" msgstr "Le fichier 3MF réparé ne contient aucun objet" -#: src/slic3r/Utils/FixModelByWin10.cpp:396 +#: src/slic3r/Utils/FixModelByWin10.cpp:389 msgid "Repaired 3MF file does not contain any volume" msgstr "Le fichier 3MF réparé ne contient aucun volume" @@ -5939,31 +5970,31 @@ msgstr "Répéter le dernier découpage rapide" msgid "Repeat Last Quick Slice" msgstr "Répéter le Dernier Découpage Rapide" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "Remplacer ?" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" msgstr "S&ignaler un Problème" -#: src/slic3r/GUI/MainFrame.cpp:705 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:703 +#, c-format msgid "Report an issue on %s" msgstr "Signaler un problème sur %s" #: src/slic3r/Utils/PresetUpdater.cpp:713 -#, possible-c-format +#, c-format msgid "requires max. %s" msgstr "nécessite max. %s" #: src/slic3r/Utils/PresetUpdater.cpp:710 -#, possible-c-format +#, c-format msgid "requires min. %s" msgstr "nécessite min. %s" #: src/slic3r/Utils/PresetUpdater.cpp:705 -#, possible-c-format +#, c-format msgid "requires min. %s and max. %s" msgstr "nécessite min. %s et max. %s" @@ -5971,15 +6002,15 @@ msgstr "nécessite min. %s et max. %s" msgid "Rescan" msgstr "Scanner à nouveau" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "Rescanner les ports série" -#: src/slic3r/GUI/GLCanvas3D.cpp:318 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "Réinitialiser" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "Réinitialiser le plan de coupe" @@ -5988,7 +6019,7 @@ msgstr "Réinitialiser le plan de coupe" msgid "Reset direction" msgstr "Réinitialiser la direction" -#: src/slic3r/GUI/Plater.cpp:2707 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "Réinitialiser le Projet" @@ -6005,11 +6036,11 @@ msgstr "Réinitialiser la Rotation" msgid "Reset scale" msgstr "Réinitialiser l'échelle" -#: src/slic3r/GUI/GLCanvas3D.cpp:257 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "Réinitialiser à la base" -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "Réinitialiser la Couleur du Filament" @@ -6025,8 +6056,8 @@ msgstr "Quantité de rétractation avant essuyage" msgid "Retract on layer change" msgstr "Rétracter lors des changements de couche" -#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2366 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "Rétraction" @@ -6046,11 +6077,11 @@ msgstr "Longueur de Rétractation (changement d'outil)" msgid "Retraction Speed" msgstr "Vitesse de Rétractation" -#: src/slic3r/GUI/Tab.cpp:2382 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Rétractation lorsque l'outil est désactivé (réglages avancés pour les configurations multi-extrudeurs)" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "Rétractions" @@ -6058,23 +6089,23 @@ msgstr "Rétractions" msgid "Right" msgstr "Droite" -#: src/slic3r/GUI/GUI_ObjectList.cpp:400 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "Clic droit sur l'icône pour changer les propriétés imprimables de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "Clic droit sur l'icône pour changer les réglages de l'objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:357 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Clic droit sur l'icône pour réparer le STL avec Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "Clic droit" -#: src/slic3r/GUI/GLCanvas3D.cpp:248 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "Clic droit souris :" @@ -6086,15 +6117,15 @@ msgstr "Vue Droite" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "Pivoter" -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "Pivoter autour de X" -#: src/libslic3r/PrintConfig.cpp:3446 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Pivoter autour de Y" @@ -6112,85 +6143,81 @@ msgstr "Faire pivoter la sélection de 45 degrés dans le sens des aiguilles d'u #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 #: src/slic3r/GUI/Mouse3DController.cpp:321 -#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotation" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491 -msgid "Rotation (deg)" -msgstr "Rotation (deg)" - -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "Angle de rotation autour de l'axe X en degrés." -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Angle de rotation autour de l'axe Y en degrés." -#: src/libslic3r/PrintConfig.cpp:3437 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Angle de rotation autour de l'axe Z en degrés." #: src/slic3r/GUI/GUI_App.cpp:797 -#, possible-c-format +#, c-format msgid "Run %s" msgstr "Run %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "Exécuter des scripts de post-traitement" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 #: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 #: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 -#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 -#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 -#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 -#: src/libslic3r/PrintConfig.cpp:2557 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" -msgstr "Envoyer le G-code" +msgstr "&Envoyer le G-code" -#: src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "Envoyer pour imprimer" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3401 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:3417 +#, c-format msgid "Save %s as:" msgstr "Enregistrer %s sous :" -#: src/slic3r/GUI/MainFrame.cpp:828 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:826 +#, c-format msgid "Save %s file as:" msgstr "Enregistrer le fichier %s sous :" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "Enregistrer les modifications ?" -#: src/libslic3r/PrintConfig.cpp:3371 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "Sauvegarder le fichier de configuration" -#: src/slic3r/GUI/MainFrame.cpp:927 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "Enregistrer la configuration sous :" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "Enregistrer la configuration dans le fichier spécifié." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:135 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:133 +#, c-format msgid "Save current %s" msgstr "Enregistrer l'état actuel %s" @@ -6202,23 +6229,23 @@ msgstr "Sauvegarder le fichier du projet en cours" msgid "Save current project file as" msgstr "Sauvegarder le fichier du projet en cours sous" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "Enregistrer le fichier sous :" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "Sauvegarder le fichier G-code en tant que :" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Enregistrer le fichier OBJ (moins enclin aux erreurs de coordonnées que le STL) sous :" -#: src/slic3r/GUI/Tab.hpp:442 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "Enregistrer le préréglage" -#: src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "Enregistrer le lot de préréglages sous :" @@ -6234,11 +6261,11 @@ msgstr "Sauvegarder le projet (3mf)" msgid "Save project as (3mf)" msgstr "Sauvegarder le projet en tant que (3mf)" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "Sauvegarder le fichier SL1 sous :" -#: src/slic3r/GUI/MainFrame.cpp:840 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "Sauvegarder le fichier zip sous :" @@ -6252,27 +6279,27 @@ msgstr "Échec de la sauvegarde du maillage dans le contenant 3MF." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3451 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "Redimensionner" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276 -msgid "Scale (%)" -msgstr "Redimensionner (%)" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Facteurs de redimensionnement" #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 -msgid "Scale selection to fit print volume\nin Gizmo scale" -msgstr "Redimensionner la sélection pour l'adapter au volume d'impression\nà l'échelle du Gizmo" +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" +"Redimensionner la sélection pour l'adapter au volume d'impression\n" +"à l'échelle du Gizmo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "Redimensionner l'objet sélectionné pour qu'il s'ajuste au volume d'impression" -#: src/libslic3r/PrintConfig.cpp:3460 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "Redimensionner pour Ajuster" @@ -6280,19 +6307,19 @@ msgstr "Redimensionner pour Ajuster" msgid "Scale To Fit" msgstr "Redimensionner pour Ajuster" -#: src/libslic3r/PrintConfig.cpp:3461 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "Redimensionner pour ajuster à un volume donné." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "Redimensionner pour ajuster au volume d'impression" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "Facteur ou pourcentage de redimensionnement." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Planification du téléchargement dans `%1%`. Voir : Imprimer la file d'attente de téléchargement de l'hôte" @@ -6312,7 +6339,7 @@ msgstr "Gigue de la direction préférée de la jointure" msgid "Searching for devices" msgstr "Recherche des dispositifs" -#: src/slic3r/GUI/Plater.cpp:2842 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "Recherche de l'orientation optimale" @@ -6324,19 +6351,19 @@ msgstr "Sélectionnez un fichier gcode :" msgid "Select all objects" msgstr "Sélectionner tous les objets" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "Sélectionner tous les points" -#: src/slic3r/GUI/ConfigWizard.cpp:1979 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "Sélectionner toutes les imprimantes standard" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "Sélectionner par rectangle" -#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "Sélectionner la configuration à charger :" @@ -6344,35 +6371,27 @@ msgstr "Sélectionner la configuration à charger :" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Sélectionnez un espace de coordonnées dans lequel la transformation sera effectuée." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 -msgid "Select extruder number for selected objects and/or parts" -msgstr "Sélectionner le numéro d'extrudeur pour les objets et/ou pièces sélectionnés" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "Sélectionner le numéro de l'extrudeur :" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "Sélectionner l'Onglet des Réglages du Filament" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 -msgid "Select new extruder for the object/part" -msgstr "Sélectionner un nouvel extrudeur pour l'objet/la pièce" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 msgid "Select Plater Tab" msgstr "Sélectionner l'Onglet du Plateau" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "Sélectionner l'Onglet des Réglages d'Impression" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "Sélectionner l'Onglet des Réglages de l'Imprimante" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "Sélectionner les réglages d'affichage" @@ -6380,37 +6399,43 @@ msgstr "Sélectionner les réglages d'affichage" msgid "Select the language" msgstr "Sélectionner la langue" -#: src/slic3r/GUI/Tab.cpp:59 +#: src/slic3r/GUI/Tab.cpp:57 msgid "Select the print profiles this profile is compatible with." msgstr "Sélectionner les profils d'impression avec lesquels ce profil est compatible." -#: src/slic3r/GUI/Tab.cpp:53 +#: src/slic3r/GUI/Tab.cpp:51 msgid "Select the printers this profile is compatible with." msgstr "Sélectionner les imprimantes avec lesquelles ce profil est compatible." -#: src/slic3r/GUI/MainFrame.cpp:891 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "Sélectionner le fichier STL à réparer :" -#: src/slic3r/GUI/Preferences.cpp:241 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "Sélectionner la taille de l'icône de la barre d'outil par rapport à la taille par défaut." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "Sélectionner le type de pièce" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "Choisissez le type de socle dont vous avez besoin" -#: src/slic3r/GUI/Plater.cpp:495 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "Choisissez le type de support dont vous avez besoin" -#: src/slic3r/GUI/DoubleSlider.cpp:1890 -msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" -msgstr "Sélectionnez OUI si vous souhaitez supprimer tous les changements d'outil enregistrées, \n\tNON si vous souhaitez que tous les changements d'outil soient remplacés par des modifications de couleur, \n\tou ANNULER pour ne pas les modifier." +#: src/slic3r/GUI/DoubleSlider.cpp:1917 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged." +msgstr "" +"Sélectionnez OUI si vous souhaitez supprimer tous les changements d'outil enregistrées, \n" +"NON si vous souhaitez que tous les changements d'outil soient remplacés par des modifications de couleur, \n" +"ou ANNULER pour ne pas les modifier." #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" @@ -6420,11 +6445,11 @@ msgstr "Sélection-Ajouter" msgid "Selection-Add All" msgstr "Sélection-Ajouter Tout" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "Sélection-Ajouter depuis la liste" -#: src/slic3r/GUI/GLCanvas3D.cpp:6659 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "Sélection-Ajouter depuis le rectangle" @@ -6444,11 +6469,11 @@ msgstr "Sélection-Retirer" msgid "Selection-Remove All" msgstr "Sélection-Retirer Tout" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "Sélection-Retirer de la liste" -#: src/slic3r/GUI/GLCanvas3D.cpp:6678 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "Sélection-Retirer du rectangle" @@ -6464,7 +6489,7 @@ msgstr "Sélection-Supprimer l'Objet" msgid "Selects all objects" msgstr "Sélectionner tous les objets" -#: src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "Envoyer le G-code" @@ -6476,19 +6501,19 @@ msgstr "Envoyer le G-Code à l'hôte d'imprimante" msgid "Send to print current plate as G-code" msgstr "Envoyer pour imprimer le plateau actuel en tant que G-code" -#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "Envoyer à l'imprimante" -#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 msgid "Seq." msgstr "Seq." -#: src/slic3r/GUI/Tab.cpp:1233 +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "Impression séquentielle" -#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Port série" @@ -6504,17 +6529,17 @@ msgstr "Port série :" msgid "Service name" msgstr "Nom du service" -#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 -#: src/slic3r/GUI/Tab.cpp:3160 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "Appliquer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "Définir comme Objet Séparé" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "Définir comme Objets Séparés" @@ -6522,7 +6547,7 @@ msgstr "Définir comme Objets Séparés" msgid "Set extruder change for every" msgstr "Définir le changement d'extrudeur pour chaque" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "Définir l'extrudeur pour les items sélectionnés" @@ -6530,19 +6555,15 @@ msgstr "Définir l'extrudeur pour les items sélectionnés" msgid "Set extruder sequence" msgstr "Définir la séquence d'extrudeur" -#: src/slic3r/GUI/DoubleSlider.cpp:1504 +#: src/slic3r/GUI/DoubleSlider.cpp:1532 msgid "Set extruder sequence for the entire print" msgstr "Définir la séquence d'extrusion pour l'ensemble de l'impression" -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "Définir la séquence d'extrudeur pour l'impression complète" - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 msgid "Set extruder(tool) sequence" msgstr "Définir la séquence d'extrudeur (outil)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "Définir le curseur inférieur sur le curseur actuel" @@ -6550,12 +6571,12 @@ msgstr "Définir le curseur inférieur sur le curseur actuel" msgid "Set Mirror" msgstr "Appliquer la Symétrie" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "Définir le nombre d'instances" -#: src/slic3r/GUI/Plater.cpp:4771 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4756 +#, c-format msgid "Set numbers of copies to %d" msgstr "Régler le nombre de copies sur %d" @@ -6567,7 +6588,7 @@ msgstr "Définir l'Orientation" msgid "Set Position" msgstr "Définir la Position" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Définir Imprimable" @@ -6583,7 +6604,7 @@ msgstr "Définir l'Échelle" msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Définit l'orientation de l'affichage LCD dans l'imprimante SLA. Le mode portrait échangera la signification des paramètres de hauteurs et de largeur et les images de sortie seront pivotées de 90 degrés." -#: src/slic3r/GUI/ConfigWizard.cpp:933 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "Réglez la forme du plateau de votre imprimante." @@ -6631,7 +6652,7 @@ msgstr "Réglez cette valeur sur la hauteur maximum que peut atteindre votre ext msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Paramétrez ceci avec la distance verticale entre la pointe de la buse et (habituellement) les tiges du chariot de l'axe X. En d'autres termes, il s'agit de la hauteur du cylindre de dégagement autour de l'extrudeur, et elle représente la profondeur maximum à laquelle peut descendre l'extrudeur avant d'entrer en collision avec d'autres objets imprimés." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Définir non-Imprimable" @@ -6639,19 +6660,23 @@ msgstr "Définir non-Imprimable" msgid "Set Unprintable Instance" msgstr "Définir une Instance non-Imprimable" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Set upper thumb to current slider thumb" msgstr "Définir le curseur supérieur sur le curseur actuel" -#: src/libslic3r/PrintConfig.cpp:3494 -msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." -msgstr "Définit la sensibilité de journalisation. 0 : fatal, 1: erreur, 2 : avertissement, 3 : info, 4 : débogage, 5 : trace\nPar exemple. loglevel = 2 enregistre les messages d'erreur et d'avertissement de niveau fatal." +#: src/libslic3r/PrintConfig.cpp:3509 +msgid "" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." +msgstr "" +"Définit la sensibilité de journalisation. 0 : fatal, 1: erreur, 2 : avertissement, 3 : info, 4 : débogage, 5 : trace\n" +"Par exemple. loglevel = 2 enregistre les messages d'erreur et d'avertissement de niveau fatal." #: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Réglages" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "Réglages pour la zone de hauteur" @@ -6675,35 +6700,35 @@ msgstr "Dois-je passer au motif de remplissage rectiligne?" msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Dois-je synchroniser les couches de support afin d'activer la Tour de Nettoyage ?" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "Forme" -#: src/slic3r/GUI/GUI_Preview.cpp:258 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "Coques" -#: src/slic3r/GUI/GLCanvas3D.cpp:254 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "Maj + Clic gauche souris :" -#: src/slic3r/GUI/GLCanvas3D.cpp:260 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "Maj + Clic droit souris :" -#: src/slic3r/GUI/GUI_Preview.cpp:233 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "Afficher" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" msgstr "Afficher le Répertoire de &Configuration" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show &labels" msgstr "Afficher les &labels" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "Afficher la boîte de dialogue à propos" @@ -6715,15 +6740,15 @@ msgstr "Afficher les réglages avancés" msgid "Show error message" msgstr "Afficher le message d'erreur" -#: src/slic3r/GUI/Preferences.cpp:97 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "Afficher les préréglages d'impression et de filament incompatibles" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "Afficher la liste des raccourcis clavier" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show object/instance labels in 3D scene" msgstr "Afficher les labels de l'objet /instance dans la scène 3D" @@ -6735,7 +6760,7 @@ msgstr "Afficher les réglages simplifiés" msgid "Show supports" msgstr "Afficher les supports" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "Afficher les informations système" @@ -6751,15 +6776,15 @@ msgstr "Afficher la prévisualisation des tranches 3D" msgid "Show the filament settings" msgstr "Afficher les réglages de filament" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "Afficher la liste complète des options de configuration d'impression/G-code." -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "Afficher la liste complète des options de configuration d'impression SLA." -#: src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "Afficher la liste des raccourcis clavier" @@ -6775,19 +6800,15 @@ msgstr "Afficher les réglages d'impression" msgid "Show the printer settings" msgstr "Afficher les réglages de l'imprimante" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "Afficher cette aide." -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "Afficher le répertoire de configuration utilisateur (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Show/Hide (L)egend" -msgstr "Afficher/Masquer la (L)égende" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Afficher/Masquer le dialogue des paramètres des périphériques 3Dconnexion" @@ -6795,7 +6816,7 @@ msgstr "Afficher/Masquer le dialogue des paramètres des périphériques 3Dconne msgid "Show/Hide Legend" msgstr "Afficher/Cacher la Légende" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Show/Hide object/instance labels" msgstr "Afficher/Masquer les labels de l'objet/instance" @@ -6803,7 +6824,7 @@ msgstr "Afficher/Masquer les labels de l'objet/instance" msgid "Simple" msgstr "Simple" -#: src/slic3r/GUI/ConfigWizard.cpp:821 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "Mode simple" @@ -6811,7 +6832,7 @@ msgstr "Mode simple" msgid "Simple View Mode" msgstr "Mode de Vue Simple" -#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "Réglage MM pour extrudeur unique" @@ -6819,21 +6840,28 @@ msgstr "Réglage MM pour extrudeur unique" msgid "Single Extruder Multi Material" msgstr "Multi Material à extrudeur unique" -#: src/slic3r/GUI/Tab.cpp:1865 -msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" -msgstr "Le Multi-Matériaux Extrudeur Unique est sélectionné,\net tous les extrudeurs doivent avoir le même diamètre.\nVoulez-vous modifier le diamètre pour tous les extrudeurs\nen utilisant la valeur du diamètre de la buse du premier extrudeur ?" +#: src/slic3r/GUI/Tab.cpp:1867 +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" +msgstr "" +"Le Multi-Matériaux Extrudeur Unique est sélectionné,\n" +"et tous les extrudeurs doivent avoir le même diamètre.\n" +"Voulez-vous modifier le diamètre pour tous les extrudeurs\n" +"en utilisant la valeur du diamètre de la buse du premier extrudeur ?" -#: src/slic3r/GUI/Tab.cpp:2303 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "Paramètres multimatériaux pour extrudeur unique" #: src/slic3r/GUI/BedShapeDialog.cpp:77 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 -#: src/slic3r/GUI/Tab.cpp:2320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "Taille" -#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "Taille et coordonnées" @@ -6841,12 +6869,12 @@ msgstr "Taille et coordonnées" msgid "Size in X and Y of the rectangular plate." msgstr "Taille en X et Y du plateau rectangulaire." -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Jupe" -#: src/slic3r/GUI/Tab.cpp:1112 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "Jupe et bordure" @@ -6858,59 +6886,59 @@ msgstr "Hauteur de la jupe" msgid "Skirt Loops" msgstr "Boucles de la Jupe" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "Raccourcis clavier pour le gizmo SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "Gizmo SLA désactivé" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "Gizmo SLA activé" -#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "Matériau SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "Sélection des Profils Matériaux SLA" -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "Type de matériau SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "Matériaux SLA" -#: src/slic3r/GUI/Preset.cpp:1473 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "Impression SLA" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "Notes concernant le matériau d'impression SLA" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "Réglages d'impression SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "Points de Support SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:692 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "SLA supports détectés en dehors de la zone d'impression" -#: src/slic3r/GUI/ConfigWizard.cpp:1533 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "Imprimantes Technologie SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "Slab" @@ -6930,7 +6958,7 @@ msgstr "Slic3r peut télécharger des fichiers G-code vers un hôte d'impression msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r ne descendra pas en-dessous de cette vitesse." -#: src/libslic3r/PrintConfig.cpp:3344 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "Découper" @@ -6946,35 +6974,35 @@ msgstr "Découper un fichier en G-code, enregistrer sous" msgid "Slice gap closing radius" msgstr "Découper le rayon de fermeture de l'espacement" -#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5140 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "Découper maintenant" -#: src/libslic3r/PrintConfig.cpp:3318 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Découper le modèle et exporter les couches d'impression SLA en tant que PNG." -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "Découper le modèle et exporter les parcours en tant que G-code." -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Découper le modèle en tant que FFF ou SLA en fonction de la valeur de configuration de la printer_technology." -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "Informations de découpage" -#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3647 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "Découpe" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "Découpe annulée" @@ -6982,19 +7010,19 @@ msgstr "Découpe annulée" msgid "Slicing done" msgstr "Découpe effectuée" -#: src/slic3r/GUI/MainFrame.cpp:876 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "Découpe Effectuée !" -#: src/libslic3r/SLAPrintSteps.cpp:209 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "La découpe a du être interrompue du fait d'une erreur interne : index de découpage inconsistant." -#: src/libslic3r/SLAPrintSteps.cpp:43 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "Découpe du modèle" -#: src/libslic3r/SLAPrintSteps.cpp:47 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "Découpe des supports" @@ -7014,11 +7042,11 @@ msgstr "Inclinaison lente" msgid "Small perimeters" msgstr "Périmètres courts" -#: src/slic3r/GUI/GLCanvas3D.cpp:293 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "Lisse" -#: src/slic3r/GUI/GLCanvas3D.cpp:263 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "Lissage" @@ -7026,15 +7054,15 @@ msgstr "Lissage" msgid "Snapshot name" msgstr "Nom de l'instantané" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" -msgstr "Software & Publications" +msgstr "Softwa&re Publications" #: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "remplissage solide" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 #: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Remplissage solide" @@ -7051,7 +7079,7 @@ msgstr "Extrudeur pour le remplissage solide" msgid "Solid infill threshold area" msgstr "Surface de seuil pour le remplissage solide" -#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Couches solides" @@ -7067,23 +7095,19 @@ msgstr "Il est probable qu'un matériau soluble soit utilisé pour un support so msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Certaines commandes G/M-code, y compris le contrôle de la température ainsi que d'autres, ne sont pas universelles. Paramétrez cette option dans le firmware de votre imprimante pour obtenir une sortie compatible. L'option \"Pas d'extrusion\" empêche complètement PrusaSlicer d'exporter toute valeur d'extrusion." -#: src/slic3r/GUI/GLCanvas3D.cpp:693 +#: src/slic3r/GUI/GLCanvas3D.cpp:688 msgid "Some objects are not visible" msgstr "Certains objets ne sont pas visibles" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 -msgid "Some objects are not visible when editing supports" -msgstr "Certains objets ne sont pas visibles lorsque les supports sont édités" - -#: src/libslic3r/Print.cpp:1222 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "Certains objets sont trop proches ; votre extrudeur va entrer en collision avec eux." -#: src/libslic3r/Print.cpp:1224 +#: src/libslic3r/Print.cpp:1228 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Certains objets sont trop grands et ne peuvent pas être imprimés sans collision avec l'extrudeur." -#: src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Certains objets peuvent s'accommoder de quelques petits socles au lieu d'un seul grand. Ce paramètre définit à quelle distance le centre de deux petits socles devrait se trouver. S'ils sont proches, ils seront fusionnés en un seul socle." @@ -7099,9 +7123,9 @@ msgstr "Espacement entre les lignes d'interface. Mettez à zéro pour obtenir un msgid "Spacing between support material lines." msgstr "Espacement entre les lignes des supports." -#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 -#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 #: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 @@ -7121,7 +7145,7 @@ msgstr "Vitesse (mm/s)" msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Vitesse pour combler de petits interstices avec de courts mouvements en zigzag. Gardez un réglage relativement lent afin d'éviter les problèmes de vibration et de résonance. Réglez sur zéro pour désactiver le remplissage d'interstices." -#: src/slic3r/GUI/Tab.cpp:1160 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "Vitesse pour les déplacements sans impression" @@ -7129,11 +7153,11 @@ msgstr "Vitesse pour les déplacements sans impression" msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Vitesse pour les périmètres (contours, parois verticales). Réglez sur zéro pour un ajustement automatique." -#: src/slic3r/GUI/Tab.cpp:1148 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "Vitesse pour les déplacements d'impression" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "Vitesse d'impression des ponts." @@ -7185,11 +7209,11 @@ msgstr "Vitesse utilisée pour décharger le filament sur la tour de nettoyage ( msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Vitesse utilisée pour décharger l'extrémité du filament juste après l'expulsion." -#: src/slic3r/GUI/Mouse3DController.cpp:313 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" -msgstr "vitesse :" +msgstr "Vitesse:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "Sphère" @@ -7201,36 +7225,36 @@ msgstr "Mode de vase spirale" msgid "Spiral Vase" msgstr "Vase Spirale" -#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 -#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "Scinder" -#: src/slic3r/GUI/Plater.cpp:4028 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "Scinder l'objet sélectionné" -#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "Scinder l'objet sélectionné en objets individuels" -#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "Scinder l'objet sélectionné en sous-parties individuelles" -#: src/slic3r/GUI/GLCanvas3D.cpp:4599 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "Diviser en objets individuels" -#: src/slic3r/GUI/Plater.cpp:2965 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "Diviser en Objets" -#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "Scinder en parties" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "Scinder en Parties" @@ -7250,7 +7274,7 @@ msgstr "Démarrer un nouveau projet" msgid "Start at height" msgstr "Hauteur de début" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "G-code de début" @@ -7271,16 +7295,16 @@ msgstr "État" msgid "Status:" msgstr "État :" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "Mode silencieux" -#: src/slic3r/GUI/Plater.cpp:1267 +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "mode silencieux" -#: src/slic3r/GUI/Plater.cpp:5001 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4985 +#, c-format msgid "STL file exported to %s" msgstr "Fichier STL exporté vers %s" @@ -7288,7 +7312,7 @@ msgstr "Fichier STL exporté vers %s" msgid "Stop at height" msgstr "Hauteur d'arrêt" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "Réussi !" @@ -7296,23 +7320,23 @@ msgstr "Réussi !" msgid "support" msgstr "support" -#: src/libslic3r/PrintConfig.cpp:2683 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "Diamètre de la base du support" -#: src/libslic3r/PrintConfig.cpp:2693 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "Hauteur de la base du support" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "Distance de sécurité de la base du support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "Bloqueur de Support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "Générateur de Support" @@ -7320,19 +7344,19 @@ msgstr "Générateur de Support" msgid "Support Generator" msgstr "Générateur de support" -#: src/slic3r/GUI/Tab.cpp:3593 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "Tête du support" -#: src/libslic3r/PrintConfig.cpp:2611 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "Diamètre avant de la tête du support" -#: src/libslic3r/PrintConfig.cpp:2620 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "Pénétration de la tête du support" -#: src/libslic3r/PrintConfig.cpp:2629 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "Largeur de la tête du support" @@ -7340,10 +7364,10 @@ msgstr "Largeur de la tête du support" msgid "support interface" msgstr "interface du support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 -#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 #: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 @@ -7355,9 +7379,9 @@ msgstr "interface du support" #: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 #: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" -msgstr "Support" +msgstr "Supports" -#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 #: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Interface des supports" @@ -7374,51 +7398,51 @@ msgstr "Extrudeur pour l'interface des supports/du radeau" msgid "Support material/raft/skirt extruder" msgstr "Extrudeur pour support/raft/jupe" -#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 -#: src/libslic3r/PrintConfig.cpp:2665 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "Support sur le plateau uniquement" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "Changement des paramètres de support" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "Pilier de support" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "Mode de connexion du pilier de support" -#: src/libslic3r/PrintConfig.cpp:2639 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "Diamètre du pilier de support" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "Densité des points de support" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "Éditer les points de support" -#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 -#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 -#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 -#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 -#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 -#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 -#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 -#: src/libslic3r/PrintConfig.cpp:2764 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "Supports" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "supports et socle" @@ -7431,55 +7455,67 @@ msgid "Supports stealth mode" msgstr "Supporte le mode silencieux" #: src/slic3r/GUI/ConfigManipulation.cpp:159 -msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" -msgstr "Les supports fonctionnent mieux, si la fonctionnalité suivante est activée :\n- Détecter les périmètres de pontage" +msgid "" +"Supports work better, if the following feature is enabled:\n" +"- Detect bridging perimeters" +msgstr "" +"Les supports fonctionnent mieux, si la fonctionnalité suivante est activée :\n" +"- Détecter les périmètres de pontage" -#: src/slic3r/GUI/Preferences.cpp:89 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "Supprimer les préréglages \" - par défaut - \"" -#: src/slic3r/GUI/Preferences.cpp:91 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Supprimer les préréglages \" - par défaut - \" dans les choix Impression / Filament / Imprimante une fois qu'il y a d'autres préréglages valides disponibles." -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 msgid "Switch code to Change extruder" msgstr "Code de changement pour Changer l'extrudeur" -#: src/slic3r/GUI/DoubleSlider.cpp:1147 +#: src/slic3r/GUI/DoubleSlider.cpp:1179 msgid "Switch code to Color change (%1%) for:" msgstr "Code de changement pour Changer de couleur (%1%) pour :" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "Basculer vers la 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "Basculer vers le mode édition" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" msgstr "Basculer vers la Prévisualisation" #: src/slic3r/GUI/wxExtensions.cpp:703 -#, possible-c-format +#, c-format msgid "Switch to the %s mode" msgstr "Basculer vers le mode %s" #: src/slic3r/GUI/GUI_App.cpp:882 -msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." +msgid "" +"Switching the language will trigger application restart.\n" +"You will lose content of the plater." msgstr "Le changement de langue déclenchera le redémarrage de l’application. L'objet et tous les paramètres non enregistrés seront perdus." #: src/slic3r/GUI/WipeTowerDialog.cpp:365 -msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" -msgstr "Basculer vers les réglages simples annulera les changements effectués en mode avancé !\n\nVoulez-vous continuer ?" +msgid "" +"Switching to simple settings will discard changes done in the advanced mode!\n" +"\n" +"Do you want to proceed?" +msgstr "" +"Basculer vers les réglages simples annulera les changements effectués en mode avancé !\n" +"\n" +"Voulez-vous continuer ?" -#: src/slic3r/GUI/Tab.cpp:1016 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "nom de profil symbolique" @@ -7491,7 +7527,7 @@ msgstr "Synchroniser les couches du support avec les couches d'impression de l'o msgid "Synchronize with object layers" msgstr "Synchroniser avec les couches de l'objet" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "&Informations sur le Système" @@ -7499,9 +7535,9 @@ msgstr "&Informations sur le Système" msgid "System Information" msgstr "Informations sur le Système" -#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 -#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "Préréglages système" @@ -7513,7 +7549,7 @@ msgstr "Capturer un in&stantané de la configuration" msgid "Taking configuration snapshot" msgstr "Instantané de la configuration en cours" -#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Température" @@ -7525,11 +7561,11 @@ msgstr "Différence de température devant être appliquée quand un extrudeur n msgid "Temperature variation" msgstr "Variation de température" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "Températures" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "Test" @@ -7542,20 +7578,27 @@ msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Le modèle de remplissage %1% n'est pas censé fonctionner avec une densité de 100%." #: src/slic3r/GUI/FirmwareDialog.cpp:548 -#, possible-c-format +#, c-format msgid "The %s device could not have been found" msgstr "L'équipement %s n'a pas pu être trouvé" #: src/slic3r/GUI/FirmwareDialog.cpp:436 -#, possible-c-format -msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." -msgstr "L'équipement %s n'a pas été trouvé.\nSi l'équipement est connecté, veuillez appuyer sur le bouton Reset à côté du connecteur USB ..." +#, c-format +msgid "" +"The %s device was not found.\n" +"If the device is connected, please press the Reset button next to the USB connector ..." +msgstr "" +"L'équipement %s n'a pas été trouvé.\n" +"Si l'équipement est connecté, veuillez appuyer sur le bouton Reset à côté du connecteur USB ..." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 -msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." +msgid "" +"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" +"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" +"once the rotation is embedded into the object coordinates." msgstr "L'objet actuel est incliné (les angles de rotation ne sont pas des multiples de 90 °). La mise à l'échelle non uniforme des objets inclinés est possible dans le système de coordonnées seulement quand la rotation est incorporée aux coordonnées de l'objet." -#: src/libslic3r/PrintConfig.cpp:2717 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "L'angle par défaut pour connecter les tiges de support et les jonctions." @@ -7591,7 +7634,7 @@ msgstr "L'extrudeur à utiliser pour imprimer des supports, du raft ou des conto msgid "The filament material type for use in custom G-codes." msgstr "Le type de matériau de filament à utiliser dans les G-codes personnalisés." -#: src/libslic3r/PrintConfig.cpp:3479 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Le fichier dans lequel la sortie sera écrite (si rien n'est spécifié, il sera basé sur le fichier d'entrée)" @@ -7599,60 +7642,52 @@ msgstr "Le fichier dans lequel la sortie sera écrite (si rien n'est spécifié, msgid "The firmware supports stealth mode" msgstr "Le firmware est compatible avec le mode silencieux" -#: src/libslic3r/PrintConfig.cpp:377 +#: src/libslic3r/PrintConfig.cpp:120 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "La première couche sera réduite sur le plan XY selon la valeur configurée afin de compenser l'écrasement de la première couche également connu sous le nom d'effet Pied d'Éléphant." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "les caractères suivant ne sont pas autorisés :" -#: src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "le suffixe suivant n'est pas autorisé :" -#: src/libslic3r/PrintConfig.cpp:2862 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Espace entre le bas de l'objet et le socle généré en mode élévation zéro." -#: src/libslic3r/PrintConfig.cpp:2695 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "La hauteur du cône de la base du pilier" -#: src/slic3r/GUI/DoubleSlider.cpp:1895 +#: src/slic3r/GUI/DoubleSlider.cpp:1922 msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." msgstr "Les dernières données de changement de couleur ont été enregistrées pour une impression multi-extrudeur avec des changements d'outils pour l'impression entière." -#: src/slic3r/GUI/DoubleSlider.cpp:1889 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 msgid "The last color change data was saved for a multi extruder printing." msgstr "Les dernières données de changement de couleur ont été enregistrées pour une impression multi-extrudeur." -#: src/slic3r/GUI/DoubleSlider.cpp:1873 -msgid "The last color change data was saved for a multiple extruder printer profile." -msgstr "Les dernières données de changement de couleur ont été enregistrées pour un profil d'imprimante à extrudeurs multiples." - -#: src/slic3r/GUI/DoubleSlider.cpp:1872 -msgid "The last color change data was saved for a single extruder printer profile." -msgstr "Les dernières données de changement de couleur ont été enregistrées pour un profil d'imprimante à extrudeur unique." - -#: src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 msgid "The last color change data was saved for a single extruder printing." msgstr "Les dernières données de changement de couleur ont été sauvegardées une vue d'une impression avec extrudeur simple." -#: src/libslic3r/PrintConfig.cpp:2736 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "La distance maximum entre deux piliers pour qu'ils soient reliés. Une valeur de zéro empêchera les piliers en cascade." -#: src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "La longueur maximum d'un pont" -#: src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Distance minimum entre la base du pilier et le modèle en mm. Utile en mode élévation zéro où un espace correspondant à ce paramètre est inséré entre le modèle et le socle." -#: src/libslic3r/PrintConfig.cpp:175 +#: src/libslic3r/PrintConfig.cpp:185 msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." msgstr "Le nombre de couches solides inférieures est augmenté au-dessus de bottom_solid_layers si nécessaire pour satisfaire l'épaisseur minimale de la coque inférieure." @@ -7669,8 +7704,14 @@ msgid "The object will be raised by this number of layers, and support material msgstr "L'objet sera surélevé de ce nombre de couches, et du support sera généré en dessous." #: src/libslic3r/PrintConfig.cpp:2424 -msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "Pourcentage de la zone du lit.\nSi la zone d'impression excède la valeur spécifiée,\nalors une inclinaison lente sera appliquée, sinon - une inclinaison rapide" +msgid "" +"The percentage of the bed area. \n" +"If the print area exceeds the specified value, \n" +"then a slow tilt will be used, otherwise - a fast tilt" +msgstr "" +"Pourcentage de la zone du lit.\n" +"Si la zone d'impression excède la valeur spécifiée,\n" +"alors une inclinaison lente sera appliquée, sinon - une inclinaison rapide" #: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" @@ -7696,11 +7737,11 @@ msgstr "Le fichier sélectionné ne contient aucune géométrie." msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Le fichier sélectionné contient plusieurs zones disjointes. Cela n'est pas utilisable." -#: src/slic3r/GUI/Plater.cpp:2954 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "L'objet sélectionné ne peut être scindé car il contient plus d'un volume/matériau." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "The selected object couldn't be split because it contains only one part." msgstr "L'objet sélectionné n'a pu être scindé car il ne contient qu'une seule pièce." @@ -7708,11 +7749,17 @@ msgstr "L'objet sélectionné n'a pu être scindé car il ne contient qu'une seu msgid "The selected project is no more available" msgstr "Le projet sélectionné n'est plus disponible" -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." -msgstr "L'impression séquentielle est activée.\nIl est impossible d'appliquer un G-code personnalisé pour des objets en impression séquentielle.\nCe code ne sera pas traité au cours de la génération du G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:998 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"L'impression séquentielle est activée.\n" +"Il est impossible d'appliquer un G-code personnalisé pour des objets en impression séquentielle.\n" +"Ce code ne sera pas traité au cours de la génération du G-code." -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "La pente de la paroi du socle par rapport au plan du lit. 90 degrés donne des murs droits." @@ -7726,41 +7773,50 @@ msgstr "La vitesse des rétractations (ne s'applique qu'au moteur de l'extrudeur #: src/slic3r/GUI/ConfigManipulation.cpp:81 #, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" -msgstr "Les dernières données de changement de couleur ont été enregistrées pour une impression multi-extrudeur avec des changements d'outils pour l'impression entière." +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Les prérequis du mode Vase Spiral sont :\n" +"-Un seul périmètre\n" +"-Aucunes couches solides supérieures\n" +"-Une densité de remplissage de 0%\n" +"-Pas de support\n" +"-Vérifier que l'épaisseur de coque verticale est activée\n" +"-La détection de parois fines doit être désactivée" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 -#, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "Le mode Vase Spirale nécessite :\n- un périmètre\n- pas de couches solides supérieures\n- une densité de remplissage de 0%\n- pas de matériau de soutien\n- la non-activation d'Assurer l'épaisseur verticale de la paroi" - -#: src/libslic3r/Print.cpp:1233 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "L'option Vase Spirale ne peut être utilisé que lors de l'impression d'un seul objet." -#: src/libslic3r/Print.cpp:1240 +#: src/libslic3r/Print.cpp:1244 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "L'option Vase Spirale ne peut être utilisé que lors de l'impression d'objets mono-matériau." -#: src/slic3r/GUI/Tab.cpp:3052 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "Le nom proposé est vide. Sauvegarde impossible." -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "Le nom proposé n'est pas disponible." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 -#: src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "Le nom fourni n'est pas valide ;" -#: src/libslic3r/Print.cpp:1218 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "Les réglages fournis vont entraîner une impression vide." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "L'épaisseur du socle et de ses parois de cavité optionnelles." @@ -7768,80 +7824,104 @@ msgstr "L'épaisseur du socle et de ses parois de cavité optionnelles." msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Distance verticale entre l'objet et l'intercalaire du support. Régler cette valeur sur zéro empêchera Slic3r d'utiliser la vitesse et le débit des ponts pour la première couche de l'objet." -#: src/slic3r/GUI/Tab.cpp:2571 -msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" -msgstr "L'option Nettoyage n'est pas disponible lorsque vous utilisez le mode Rétractation du Firmware.\n\nVoulez-vous que je la désactive pour permettre la Rétractation du Firmware ?" +#: src/slic3r/GUI/Tab.cpp:2575 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"L'option Nettoyage n'est pas disponible lorsque vous utilisez le mode Rétractation du Firmware.\n" +"\n" +"Voulez-vous que je la désactive pour permettre la Rétractation du Firmware ?" -#: src/libslic3r/Print.cpp:1264 +#: src/libslic3r/Print.cpp:1268 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "À l'heure actuelle, la Tour de Nettoyage ne prend pas en charge l'E volumétrique (use_volumetric_e-0)." #: src/slic3r/GUI/ConfigManipulation.cpp:115 -msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "La tour de nettoyage prend actuellement en charge les supports non solubles seulement\nsi ils sont imprimés avec l'extrudeur actuel sans déclencher un changement d'outil.\n(support_material_extruder et support_material_interface_extruder doivent être réglés sur 0)." +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool change.\n" +"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgstr "" +"La tour de nettoyage prend actuellement en charge les supports non solubles seulement\n" +"si ils sont imprimés avec l'extrudeur actuel sans déclencher un changement d'outil.\n" +"(support_material_extruder et support_material_interface_extruder doivent être réglés sur 0)." -#: src/libslic3r/Print.cpp:1396 +#: src/libslic3r/Print.cpp:1400 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "A l'heure actuelle la Tour de Nettoyage ne tolère les supports non-solubles que s'ils sont imprimés avec l'extrudeur en cours d'utilisation sans déclencher un changement d'outil. (support_material_extruder de même que support_material_interface_extruder doivent être réglés sur 0)." -#: src/libslic3r/Print.cpp:1266 +#: src/libslic3r/Print.cpp:1270 msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." msgstr "La tour de nettoyage n'est actuellement pas prise en charge pour les impressions séquentielles multimatériaux." -#: src/libslic3r/Print.cpp:1258 +#: src/libslic3r/Print.cpp:1262 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "La tour de nettoyage est actuellement supportée uniquement pour les versions de G-Code de Marlin, RepRap/Sprinter et Repetier." -#: src/libslic3r/Print.cpp:1260 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "La tour de nettoyage est actuellement supportée uniquement avec l'adressage relatif de l'extrudeur (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1289 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "La tour de nettoyage est uniquement supportées pour plusieurs objets s'ils sont imprimés avec un nombre égal de couche de radeau" -#: src/libslic3r/Print.cpp:1291 +#: src/libslic3r/Print.cpp:1295 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils sont imprimés avec la même support_material_contact_distance" -#: src/libslic3r/Print.cpp:1293 +#: src/libslic3r/Print.cpp:1297 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils découpés de la même façon." -#: src/libslic3r/Print.cpp:1287 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "La tour de nettoyage est uniquement supportée pour plusieurs objets s'ils ont une même hauteur de couche" -#: src/libslic3r/Print.cpp:1253 +#: src/libslic3r/Print.cpp:1257 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "La tour de nettoyage n'est supportée que si tous les extrudeurs ont le même diamètre de buse et utilisent un filament de même diamètre." -#: src/libslic3r/Print.cpp:1335 +#: src/libslic3r/Print.cpp:1339 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "La tour de Nettoyage n'est prise en charge que si tous les objets ont la même hauteur de couche variable" -#: src/libslic3r/SLAPrintSteps.cpp:596 +#: src/libslic3r/SLAPrintSteps.cpp:621 msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." msgstr "Il y a des objets non imprimables. Essayez d'ajuster les paramètres de support pour rendre les objets imprimables." -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." -msgstr "Il y a un changement de couleur pour un extrudeur qui n'a pas été utilisé auparavant.\nVérifiez vos paramètres pour éviter les changements de couleur redondants." +#: src/slic3r/GUI/DoubleSlider.cpp:1030 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"Il y a un changement de couleur pour un extrudeur qui n'a pas été utilisé auparavant.\n" +"Vérifiez vos paramètres pour éviter les changements de couleur redondants." -#: src/slic3r/GUI/DoubleSlider.cpp:990 -msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." -msgstr "Il y a un changement de couleur pour un extrudeur qui ne sera pas utilisé avant la fin du travail d'impression.\nCe code ne sera pas traité lors de la génération du G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:1024 +msgid "" +"There is a color change for extruder that won't be used till the end of print job.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Il y a un changement de couleur pour un extrudeur qui ne sera pas utilisé avant la fin du travail d'impression.\n" +"Ce code ne sera pas traité lors de la génération du G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:993 -msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." -msgstr "Une modification d'extrudeur est défini sur le même extrudeur.\nCe code ne sera pas traité lors de la génération du G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:1027 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Une modification d'extrudeur est défini sur le même extrudeur.\n" +"Ce code ne sera pas traité lors de la génération du G-code." #: src/slic3r/GUI/UpdateDialogs.cpp:225 -#, possible-c-format +#, c-format msgid "This %s version: %s" msgstr "Version de ce %s : %s" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Ce code est inséré entre des objets lorsque vous utilisez l'impression séquentielle. Par défaut la température de l'extrudeur et du plateau est réinitialisée et utilise la commande sans-attente ; toutefois si des commandes M104, M109, M140 ou M190 sont détectées dans ce code personnalisé, Slic3r n'ajoutera pas de commandes de température. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r, donc vous pouvez entrer une commande \"M109S[first_layer_temperature]\" où vous le souhaitez." @@ -7849,7 +7929,7 @@ msgstr "Ce code est inséré entre des objets lorsque vous utilisez l'impression msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ce code personnalisé est inséré à chaque changement de couche, juste après le mouvement Z et avant le déplacement de l'extrudeur au point de départ de la couche suivante. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r de même que [layer_num] et [layer_z]." -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ce code personnalisé est inséré à chaque changement de couche, juste avant le mouvement en Z. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r de même que [layer_num] et [layer_z]." @@ -7881,11 +7961,11 @@ msgstr "Ce réglage expérimental utilise les commandes G10 et G11 pour laisser msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Cette fonction expérimentale génère des valeurs de E en millimètres cubiques au lieu de millimètres linéaires. Si votre firmware ne connait pas déjà le diamètre du filament, vous pouvez saisir une commande comme 'M200 D[filament_diameter_0] T0' dans votre G-Code de début pour activer le mode volumétrique, et utiliser le diamètre de filament associé au filament choisi dans Slic3r. Cette fonction n'est utilisable que dans les versions récentes de Marlin." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "Cet extrudeur sera défini pour les items sélectionnés" -#: src/libslic3r/PrintConfig.cpp:214 +#: src/libslic3r/PrintConfig.cpp:224 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Ce facteur affecte la quantité de plastique utilisée pour les ponts. Vous pouvez le diminuer légèrement pour éviter l'affaissement. La valeur par défaut est généralement suffisante et vous devriez expérimenter le refroidissement (utiliser un ventilateur) avant de modifier ceci." @@ -7893,7 +7973,7 @@ msgstr "Ce facteur affecte la quantité de plastique utilisée pour les ponts. V msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Ce facteur modifie proportionnellement le flux d'extrusion. Vous pouvez avoir besoin de modifier ceci afin d'obtenir un rendu de surface net et une largeur correcte pour les murs uniques. Les valeurs habituelles vont de 0.9 à 1.1. Si vous pensez devoir changer davantage cette valeur, vérifiez le diamètre de votre filament et les E Steps dans le firmware." -#: src/libslic3r/PrintConfig.cpp:204 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Cette vitesse de ventilateur sera utilisée pour les ponts et les surplombs." @@ -7909,24 +7989,41 @@ msgstr "Cette fonction permet de forcer l'impression d'une couche solide après msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Cette fonction élèvera le Z graduellement en cas d'impression d'un objet à paroi unique, afin de rendre invisibles les jointures. Cette option nécessite de n'avoir qu'un seul périmètre, de ne pas avoir de remplissage, ni de surface solide supérieure, ni de support. Vous pouvez toujours choisir le nombre de surface solides inférieures de même que les boucles des jupes et des bordures. Cela ne fonctionnera pas si vous imprimez plus d'un objet." -#: src/slic3r/GUI/Plater.cpp:2351 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Ce fichier ne peut être chargé en mode simple. Voulez-vous basculer en mode avancé ?" -#: src/slic3r/GUI/Plater.cpp:2341 -msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" -msgstr "Ce fichier contient plusieurs objets positionnés à différentes hauteurs. Au lieu de les considérer comme des objets distincts, voulez-vous que je considère\nce fichier comme un seul objet en plusieurs parties?" +#: src/slic3r/GUI/Plater.cpp:2357 +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should I consider\n" +"this file as a single object having multiple parts?" +msgstr "" +"Ce fichier contient plusieurs objets positionnés à différentes hauteurs. Au lieu de les considérer comme des objets distincts, voulez-vous que je considère\n" +"ce fichier comme un seul objet en plusieurs parties?" #: src/slic3r/GUI/FirmwareDialog.cpp:332 -#, possible-c-format -msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." -msgstr "Le fichier hex de ce firmware ne correspond pas au modèle d'imprimante.\nLe fichier hex est prévu pour : %s\nImprimante détectée : %s\n\nVoulez-vous continuer et flasher ce fichier hex quand même ?\nS'il vous plait, ne continuez que si vous êtes certain de faire le bon choix." +#, c-format +msgid "" +"This firmware hex file does not match the printer model.\n" +"The hex file is intended for: %s\n" +"Printer reported: %s\n" +"\n" +"Do you want to continue and flash this hex file anyway?\n" +"Please only continue if you are sure this is the right thing to do." +msgstr "" +"Le fichier hex de ce firmware ne correspond pas au modèle d'imprimante.\n" +"Le fichier hex est prévu pour : %s\n" +"Imprimante détectée : %s\n" +"\n" +"Voulez-vous continuer et flasher ce fichier hex quand même ?\n" +"S'il vous plait, ne continuez que si vous êtes certain de faire le bon choix." -#: src/libslic3r/PrintConfig.cpp:304 +#: src/libslic3r/PrintConfig.cpp:314 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Cette option active la logique de refroidissement automatique, qui ajuste la vitesse d'impression et celle du ventilateur en fonction du temps d'impression de la couche." -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:536 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Cette option permet l'impression de la bordure qui entoure chaque objet lors de la première couche." @@ -7938,19 +8035,19 @@ msgstr "Cette option active la rétractation lors d'un déplacement sur l'axe Z. msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Cette option déplace la buse lors des rétractations, limitant ainsi l'apparition d'amas sur les extrudeurs ayant tendance à couler." -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "Ceci est un préréglage par défaut." -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "Ceci est une mesure relative de la densité des points de support." -#: src/slic3r/GUI/Tab.cpp:2334 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Ceci est une imprimante multimatériaux à extrudeur unique, les diamètres de tous les extrudeurs seront réglés sur la nouvelle valeur. Voulez-vous continuer ?" -#: src/slic3r/GUI/Tab.cpp:957 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "Ceci est un préréglage système." @@ -7958,11 +8055,11 @@ msgstr "Ceci est un préréglage système." msgid "This is only used in the Slic3r interface as a visual help." msgstr "Ceci est utilisé dans l'interface de Slic3r uniquement en tant que indication visuelle." -#: src/libslic3r/PrintConfig.cpp:326 +#: src/libslic3r/PrintConfig.cpp:336 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Accélération à laquelle votre imprimante sera réinitialisée suite à une modification de l'accélération des fonctions spécifiques (périmètre/remplissage). Régler sur zéro pour ne pas réinitialiser l'accélération." -#: src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:194 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "L'accélération qui sera utilisée par votre imprimante pour les ponts. Régler sur zéro pour désactiver l'accélération pour les ponts." @@ -8000,8 +8097,12 @@ msgid "This matrix describes volumes (in cubic milimetres) required to purge the msgstr "Cette matrice décrit les volumes (en millimètres cube) nécessaires pour purger le nouveau filament dans la tour de nettoyage pour une paire d'outils donnée." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 -msgid "This operation is irreversible.\nDo you want to proceed?" -msgstr "Cette opération est irréversible.\nVoulez-vous continuer?" +msgid "" +"This operation is irreversible.\n" +"Do you want to proceed?" +msgstr "" +"Cette opération est irréversible.\n" +"Voulez-vous continuer?" #: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." @@ -8064,11 +8165,19 @@ msgid "This vector saves required volumes to change from/to each tool used on th msgstr "Ce vecteur enregistre les volumes requis pour changer l'outil utilisé pour la tour de nettoyage. Ces valeurs sont utilisées pour simplifier la création des volumes de purge complets ci-dessous." #: src/slic3r/GUI/UpdateDialogs.cpp:216 -#, possible-c-format -msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "Cette version de %s n'est pas compatible avec les ensembles de configuration actuellement installés.\nCela survient probablement du fait d'avoir lancé une ancienne version de %s après en avoir utilisé une nouvelle.\n\nVous pouvez soit quitter %s et essayer à nouveau avec une version plus récente, ou vous pouvez relancer la configuration initiale. Procéder ainsi permettra de créer une sauvegarde de la configuration existante avant d'installer les fichiers compatibles avec ce %s." +#, c-format +msgid "" +"This version of %s is not compatible with currently installed configuration bundles.\n" +"This probably happened as a result of running an older %s after using a newer one.\n" +"\n" +"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "" +"Cette version de %s n'est pas compatible avec les ensembles de configuration actuellement installés.\n" +"Cela survient probablement du fait d'avoir lancé une ancienne version de %s après en avoir utilisé une nouvelle.\n" +"\n" +"Vous pouvez soit quitter %s et essayer à nouveau avec une version plus récente, ou vous pouvez relancer la configuration initiale. Procéder ainsi permettra de créer une sauvegarde de la configuration existante avant d'installer les fichiers compatibles avec ce %s." -#: src/libslic3r/PrintConfig.cpp:2449 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Cela appliquera une correction gamma aux polygones 2D tramés. Une valeur gamma de zéro signifie un seuillage avec le seuil au milieu. Ce comportement élimine l'anti-alias sans perdre de trous dans le polygone." @@ -8080,11 +8189,11 @@ msgstr "Threads" msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Les threads sont utilisés pour paralléliser les calculs longs. Le nombre optimal de threads est légèrement supérieur au nombre de coeurs/processeurs disponibles." -#: src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "Incliner" -#: src/slic3r/GUI/Tab.cpp:2092 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "Durée de l'inclinaison" @@ -8112,32 +8221,20 @@ msgstr "Durée de l'inclinaison lente" msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Temps d'attente nécessaire après que le filament ait été déchargé. Peut aider à obtenir des changements d'outils fiables avec des matériaux flexible qui ont besoin de plus de temps pour revenir à leurs dimensions originales." -#: src/slic3r/GUI/DoubleSlider.cpp:962 -msgid "To add another code use Ctrl + Left click" -msgstr "Pour ajouter un autre code, utilisez Ctrl + Clic gauche" - -#: src/slic3r/GUI/DoubleSlider.cpp:963 -msgid "To add another code use Right click" -msgstr "Pour ajouter un autre code, utilisez le Clic droit" - -#: src/slic3r/GUI/Tab.cpp:968 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "Pour faire cela veuillez spécifier un nouveau nom pour le préréglage." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "À l'exception de la manipulation d'outils redondants,\nle(s) Changement(s) de couleur pour le(s) extrudeur(s) inutilisé(s) a (ont) été supprimé(s)" - -#: src/slic3r/GUI/Plater.cpp:4023 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "Vers les objets" -#: src/slic3r/GUI/Plater.cpp:4025 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "Vers les parties" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 -#, possible-c-format +#, c-format msgid "Toggle %c axis mirroring" msgstr "Activer la symétrie sur l'axe %c" @@ -8145,13 +8242,13 @@ msgstr "Activer la symétrie sur l'axe %c" msgid "too many files" msgstr "trop de fichiers" -#: src/libslic3r/SLAPrintSteps.cpp:154 +#: src/libslic3r/SLAPrintSteps.cpp:190 msgid "Too much overlapping holes." msgstr "Trop de trous qui se chevauchent." -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 -#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Outil" @@ -8159,11 +8256,11 @@ msgstr "Outil" msgid "Tool #" msgstr "Outil #" -#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code de changement d'outil" -#: src/slic3r/GUI/Tab.cpp:1493 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "Paramètres de changement d'outil pour les imprimantes multi-matériaux mono-extrudeur" @@ -8174,7 +8271,7 @@ msgstr "Paramètres de changement d'outil pour les imprimantes multi-matériaux msgid "Top" msgstr "Haut" -#: src/slic3r/GUI/PresetHints.cpp:300 +#: src/slic3r/GUI/PresetHints.cpp:304 msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." msgstr "Indice d'épaisseur de coque supérieure / inférieure : non disponible en raison de la hauteur de couche non valide." @@ -8182,11 +8279,11 @@ msgstr "Indice d'épaisseur de coque supérieure / inférieure : non disponible msgid "Top fill pattern" msgstr "Motif de remplissage du dessus" -#: src/slic3r/GUI/PresetHints.cpp:319 +#: src/slic3r/GUI/PresetHints.cpp:323 msgid "Top is open." msgstr "Le haut est ouvert." -#: src/slic3r/GUI/PresetHints.cpp:313 +#: src/slic3r/GUI/PresetHints.cpp:317 msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "La coque supérieure a une épaisseur de %1% mm pour une hauteur de couche %2% mm." @@ -8194,7 +8291,7 @@ msgstr "La coque supérieure a une épaisseur de %1% mm pour une hauteur de couc msgid "top solid infill" msgstr "remplissage solide supérieur" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 #: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Remplissage solide supérieur" @@ -8223,13 +8320,12 @@ msgstr "Durée totale de l'expulsion" msgid "Translate" msgstr "Traduire" +#: src/slic3r/GUI/Mouse3DController.cpp:300 #: src/slic3r/GUI/Mouse3DController.cpp:317 -#: src/slic3r/GUI/Mouse3DController.cpp:337 -#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Translation" -#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Déplacement" @@ -8237,7 +8333,7 @@ msgstr "Déplacement" msgid "Triangles" msgstr "Triangles" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Essayer de réparer tout maillage non-multiple (cette option est ajoutée implicitement dès que nous devons découper le modèle pour accomplir l'action demandée)." @@ -8245,11 +8341,11 @@ msgstr "Essayer de réparer tout maillage non-multiple (cette option est ajouté msgid "Type of the printer." msgstr "Type d'imprimante." -#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "Type :" -#: src/slic3r/GUI/Plater.cpp:3436 +#: src/slic3r/GUI/Plater.cpp:3428 msgid "Unable to reload:" msgstr "Impossible de recharger :" @@ -8257,18 +8353,19 @@ msgstr "Impossible de recharger :" msgid "undefined error" msgstr "erreur non définie" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Annuler" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Annuler %1$d Action" msgstr[1] "Annuler %1$d Actions" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "Annuler Historique" @@ -8298,23 +8395,36 @@ msgstr "Vitesse de déchargement" msgid "Unloading speed at the start" msgstr "Vitesse de déchargement au démarrage" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "CADENAS OUVERT" -#: src/slic3r/GUI/Tab.cpp:3266 -msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." -msgstr "L'icône CADENAS OUVERT indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\nCliquez pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." +#: src/slic3r/GUI/Tab.cpp:3282 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or default) values." +msgstr "" +"L'icône CADENAS OUVERT indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs du système (ou par défaut) pour le groupe d'options actuel.\n" +"Cliquez pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs du système (ou par défaut)." -#: src/slic3r/GUI/Tab.cpp:3281 -msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." -msgstr "L'icône CADENAS OUVERT indique que la valeur a été changée et n'est pas égale à la valeur du système (ou par défaut).\nCliquez pour réinitialiser la valeur actuelle sur les valeurs du système (ou par défaut)." +#: src/slic3r/GUI/Tab.cpp:3297 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"L'icône CADENAS OUVERT indique que la valeur a été changée et n'est pas égale à la valeur du système (ou par défaut).\n" +"Cliquez pour réinitialiser la valeur actuelle sur les valeurs du système (ou par défaut)." -#: src/slic3r/GUI/GUI_Preview.cpp:257 +#: src/slic3r/GUI/Plater.cpp:5203 +#, c-format +msgid "Unmounting successful. The device %s(%s) can now be safely removed from the computer." +msgstr "Démontage réussi. Le matériel %s(%s) peut maintenant être déconnecté de l'ordinateur en toute sécurité." + +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "Dérétractation" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "Modifications Non Sauvegardés" @@ -8322,10 +8432,6 @@ msgstr "Modifications Non Sauvegardés" msgid "Unsaved Presets" msgstr "Préréglages Non Sauvegardés" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 -msgid "Unselect gizmo / Clear selection" -msgstr "Désélectionner le gizmo / Effacer la sélection" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:179 msgid "Unselect gizmo or clear selection" msgstr "Désélectionner le Gizmo ou supprimer la sélection" @@ -8354,12 +8460,12 @@ msgstr "archive multidisque non supportée" msgid "Unsupported OpenGL version" msgstr "Version d'OpenGL non supportée" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "Sélection non supportée" -#: src/slic3r/GUI/GLCanvas3D.cpp:960 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:955 +#, c-format msgid "up to %.2f mm" msgstr "jusqu'à %.2f mm" @@ -8367,15 +8473,15 @@ msgstr "jusqu'à %.2f mm" msgid "Update available" msgstr "Mise à jour disponible" -#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "Mettre à jour automatiquement les Préréglages intégrés" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "Mises à jour" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Les mises à jour ne sont jamais appliquées sans l'accord de l'utilisateur et n'annulent jamais les réglages personnalisés de l'utilisateur." @@ -8399,12 +8505,12 @@ msgstr "Envoyer vers l'Hôte d'Imprimante avec le nom de fichier suivant :" msgid "Uploading" msgstr "Téléchargement" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 msgid "Upper Layer" msgstr "Couche du Haut" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "Connexion USB/Série" @@ -8412,11 +8518,11 @@ msgstr "Connexion USB/Série" msgid "USB/serial port for printer connection." msgstr "Port USB/Série pour la connexion de l'imprimante." -#: src/slic3r/GUI/DoubleSlider.cpp:1115 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "Utiliser un autre extrudeur" -#: src/slic3r/GUI/Preferences.cpp:147 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "Utiliser une taille personnalisée pour les icônes de la barre d'outils" @@ -8428,15 +8534,15 @@ msgstr "Utiliser la rétraction du firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Utilisez des barres obliques (/) comme séparateur de répertoire si nécessaire." -#: src/slic3r/GUI/Preferences.cpp:129 +#: src/slic3r/GUI/Preferences.cpp:126 msgid "Use free camera" msgstr "Utiliser la caméra libre" -#: src/libslic3r/PrintConfig.cpp:2771 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "Utiliser un socle" -#: src/slic3r/GUI/Preferences.cpp:121 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "Utiliser l'appareil photo en perspective" @@ -8444,7 +8550,7 @@ msgstr "Utiliser l'appareil photo en perspective" msgid "Use relative E distances" msgstr "Utiliser des valeurs E relatives" -#: src/slic3r/GUI/Preferences.cpp:106 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "Utiliser la résolution Retina pour la scène 3D" @@ -8460,27 +8566,27 @@ msgstr "Utiliser ce réglage pour orienter le motif du support sur le plan horiz msgid "Use volumetric E" msgstr "E Volumétrique" -#: src/slic3r/GUI/DoubleSlider.cpp:1139 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 msgid "used" msgstr "utilisé" -#: src/slic3r/GUI/Plater.cpp:239 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "Filament Utilisé (g)" -#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "Filament Utilisé (m)" -#: src/slic3r/GUI/Plater.cpp:238 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "Filament Utilisé (mm³)" -#: src/slic3r/GUI/Plater.cpp:1188 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "Matériau Utilisé (ml)" -#: src/slic3r/GUI/Plater.cpp:240 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "Matériau Utilisé (unité)" @@ -8488,8 +8594,8 @@ msgstr "Matériau Utilisé (unité)" msgid "User" msgstr "Utilisateur" -#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 -#: src/slic3r/GUI/PresetBundle.cpp:1670 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "Préréglages utilisateur" @@ -8505,31 +8611,31 @@ msgstr "La valeur est identique à la valeur du système" msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "La valeur a été changée et n'est pas égale à la valeur du système ou au dernier préréglage sauvegardé" -#: src/slic3r/GUI/Tab.cpp:2198 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "Les valeurs de cette colonne sont pour le mode Normal" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "Les valeurs de cette colonne sont pour le mode Silencieux" -#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "Hauteur de couche variable" -#: src/slic3r/GUI/GLCanvas3D.cpp:1713 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "Hauteur de couche variable - Adaptatif" -#: src/slic3r/GUI/GLCanvas3D.cpp:604 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "Hauteur de couche variable - Modification manuelle" -#: src/slic3r/GUI/GLCanvas3D.cpp:1705 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "Hauteur de couche variable - Réinitialisation" -#: src/slic3r/GUI/GLCanvas3D.cpp:1721 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "Hauteur de couche variable - Tout lisser" @@ -8537,7 +8643,7 @@ msgstr "Hauteur de couche variable - Tout lisser" msgid "variants" msgstr "variantes" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "fabriquant" @@ -8557,24 +8663,24 @@ msgstr "Version" msgid "version" msgstr "version" -#: src/slic3r/GUI/Tab.cpp:1055 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "Parois verticales" -#: src/slic3r/GUI/GUI_Preview.cpp:220 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "Vue" -#: src/slic3r/GUI/ConfigWizard.cpp:814 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "Mode de vue" -#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 -#: src/libslic3r/SLAPrintSteps.cpp:430 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "Visualisation des supports" -#: src/slic3r/GUI/Plater.cpp:163 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "Volume" @@ -8582,7 +8688,7 @@ msgstr "Volume" msgid "Volume to purge (mm³) when the filament is being" msgstr "Volume à purger (mm³) lorsque le filament est" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "Volumes dans l'Objet réorganisés" @@ -8590,11 +8696,11 @@ msgstr "Volumes dans l'Objet réorganisés" msgid "Volumetric" msgstr "Volumétrique" -#: src/slic3r/GUI/Tab.cpp:1593 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "Indications du débit volumétrique non disponible" -#: src/slic3r/GUI/GUI_Preview.cpp:228 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "Débit volumétrique" @@ -8606,12 +8712,12 @@ msgstr "Débit volumétrique (mm³/s)" msgid "Volumetric speed" msgstr "Vitesse volumétrique" -#: src/libslic3r/PrintConfig.cpp:2906 +#: src/libslic3r/PrintConfig.cpp:2915 msgid "Wall thickness" msgstr "Épaisseur de la paroi" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Alerte" @@ -8621,16 +8727,16 @@ msgid "Welcome" msgstr "Bienvenue" #: src/slic3r/GUI/ConfigWizard.cpp:427 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Bienvenue dans l'Assistant de Configuration de %s" #: src/slic3r/GUI/ConfigWizard.cpp:429 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Bienvenue dans l'Assistant de Configuration de %s" -#: src/slic3r/GUI/Preferences.cpp:99 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Lorsqu'ils sont sélectionnés, les préréglages de l'imprimante et du filament sont visibles dans l'éditeur de préréglage même s'ils sont désignés comme incompatibles avec l'imprimante en cours d'utilisation" @@ -8638,11 +8744,11 @@ msgstr "Lorsqu'ils sont sélectionnés, les préréglages de l'imprimante et du msgid "when printing" msgstr "pendant l'impression des" -#: src/libslic3r/PrintConfig.cpp:243 +#: src/libslic3r/PrintConfig.cpp:253 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Lorsque vous imprimez des objets multi-matériaux, ce réglage fera en sorte que Slic3r rattache ensemble les parties de l'objet qui se superposent (la 2e partie sera rattachée à la 1ere, la 3e partie sera rattachée à la 1ere et la 2e, etc...)." -#: src/libslic3r/PrintConfig.cpp:295 +#: src/libslic3r/PrintConfig.cpp:305 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Lorsque vous imprimez plusieurs objets ou copies, ce réglage permet de terminer un objet avant de passer au suivant (en repartant de sa première couche). Cette fonction est utile pour éviter les risques d'impressions gâchées. Slic3r doit vous avertir et éviter les collisions entre les objets et l'extrudeur, mais soyez vigilant." @@ -8674,23 +8780,23 @@ msgstr "Lorsque la rétractation est compensée après un changement d'outil, l' msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Lorsque la rétractation est compensée après un déplacement, l'extruder exprimera cette quantité de filament en plus. Ce réglage est rarement nécessaire." -#: src/slic3r/GUI/Tab.cpp:3247 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "PUCE BLANCHE" -#: src/slic3r/GUI/Tab.cpp:3269 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "L'icône en forme de PUCE BLANCHE indique un préréglage non-système (ou non par défaut)." -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "L'icône en forme de PUCE BLANCHE indique que les réglages sont identiques au dernier préréglage sauvegardé pour le groupe d'options actuel." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "L'icône PUCE BLANCHE indique que la valeur est la même que pour le dernier préréglage sauvegardé." -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Largeur" @@ -8698,7 +8804,7 @@ msgstr "Largeur" msgid "Width (mm)" msgstr "Largeur (mm)" -#: src/libslic3r/PrintConfig.cpp:2631 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "Largeur depuis le centre arrière de la sphère jusqu'au centre avant de la sphère" @@ -8706,7 +8812,7 @@ msgstr "Largeur depuis le centre arrière de la sphère jusqu'au centre avant de msgid "Width of a wipe tower" msgstr "Largeur d'une tour de nettoyage" -#: src/libslic3r/PrintConfig.cpp:2882 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Largeur des bâtonnets de connexion qui connectent l'objet et le socle généré." @@ -8734,18 +8840,18 @@ msgstr "Nettoyer dans cet objet" msgid "Wipe into this object's infill" msgstr "Nettoyer dans le remplissage de cet objet" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 #: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Options de nettoyage" -#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Tour de nettoyage" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "tour de nettoyage" @@ -8758,7 +8864,7 @@ msgstr "Tour de Nettoyage" msgid "Wipe tower - Purging volume adjustment" msgstr "Tour de nettoyage - Ajustement du volume de purge" -#: src/slic3r/GUI/Tab.cpp:1490 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "Paramètres de la tour de nettoyage" @@ -8792,14 +8898,24 @@ msgid "World coordinates" msgstr "Les coordonnées mondiales" #: src/slic3r/GUI/UpdateDialogs.cpp:92 -msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "Voulez-vous l'installer ?\n\nNotez qu'un instantané complet de la configuration sera sauvegardé d'abord. Elle peut être restaurée à tout moment si vous rencontrez un problème avec la nouvelle version.\n\nEnsembles de configuration mis à jour :" +msgid "" +"Would you like to install it?\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"Voulez-vous l'installer ?\n" +"\n" +"Notez qu'un instantané complet de la configuration sera sauvegardé d'abord. Elle peut être restaurée à tout moment si vous rencontrez un problème avec la nouvelle version.\n" +"\n" +"Ensembles de configuration mis à jour :" #: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "échec de l'écriture du rappel" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "Rédiger des informations au sujet du modèle en direction de la console." @@ -8813,11 +8929,11 @@ msgstr "Coordonnée X du coin avant gauche d'une tour de nettoyage" #: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" -msgstr "Séparation XY entre un objet et son support" +msgstr "Séparation XY entre un objet et ses supports" #: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." -msgstr "Séparation XY entre un objet et son support. Si la valeur est exprimée en pourcentage (par exemple 50%), elle sera calculée à partir de la largeur du périmètre extérieur." +msgstr "Séparation XY entre un objet et ses supports. Si la valeur est exprimée en pourcentage (par exemple 50%), elle sera calculée à partir de la largeur du périmètre extérieur." #: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" @@ -8827,7 +8943,7 @@ msgstr "Compensation de Taille XY" msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordonnée Y du coin avant gauche d'une tour de nettoyage" -#: src/slic3r/GUI/Plater.cpp:1167 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "Oui" @@ -8843,11 +8959,11 @@ msgstr "Vous pouvez saisir vos remarques concernant le filament ici." msgid "You can put your notes regarding the printer here." msgstr "Vous pouvez saisir ici vos observations concernant l'imprimante." -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "Vous pouvez mettre ici vos annotations concernant le matériau d'impression SLA." -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:360 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Vous pouvez régler ce paramètre sur une valeur positive pour désactiver complètement le ventilateur pendant les premières couches, afin de ne pas rendre l'adhérence plus difficile." @@ -8855,16 +8971,16 @@ msgstr "Vous pouvez régler ce paramètre sur une valeur positive pour désactiv msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Vous pouvez utiliser toutes les options de configuration comme variables dans ce modèle. Par exemple : [layer_height], [fill_density] etc. Vous pouvez aussi utiliser [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "Vous ne pouvez pas changer un type de la dernière partie solide de l'objet." -#: src/slic3r/GUI/Plater.cpp:2374 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2390 +#, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Vous ne pouvez pas ajouter l'objet (les objets) depuis %s car l'un d'entre eux est en plusieurs parties" -#: src/slic3r/GUI/Plater.cpp:2295 +#: src/slic3r/GUI/Plater.cpp:2311 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "Vous ne pouvez pas charger un projet SLA avec un objet en plusieurs parties sur le plateau" @@ -8884,29 +9000,33 @@ msgstr "Vous devez sélectionner au moins un matériau pour les imprimantes sél msgid "You may need to update your graphics card driver." msgstr "Vous avez peut-être besoin de mettre à jour le pilote de votre carte graphique." -#: src/slic3r/GUI/Preferences.cpp:176 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "You must install a configuration update." +msgstr "Il est nécessaire d'installer une mise à niveau de configuration." + +#: src/slic3r/GUI/Preferences.cpp:172 +#, c-format msgid "You need to restart %s to make the changes effective." msgstr "Vous devez redémarrer %s afin que les modifications soient appliquées." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 +#, c-format msgid "You started your selection with %s Item." msgstr "Vous avez commencé votre sélection avec l'item %s." -#: src/slic3r/GUI/DoubleSlider.cpp:1875 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 msgid "Your current changes will delete all saved color changes." msgstr "Vos changements actuels supprimeront toutes les changements de couleur enregistrés." -#: src/slic3r/GUI/DoubleSlider.cpp:1896 +#: src/slic3r/GUI/DoubleSlider.cpp:1923 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "Vos changements actuels supprimeront toutes les changement enregistrés de l'extrudeur (outil)." -#: src/slic3r/GUI/MainFrame.cpp:913 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "Votre fichier a été réparé." -#: src/slic3r/GUI/Plater.cpp:2512 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Votre objet semble être trop grand, il a donc été automatiquement réduit afin de l'adapter à votre plateau d'impression." @@ -8915,54 +9035,62 @@ msgid "Z offset" msgstr "Décalage Z" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." -msgstr "Une hauteur de première couche de zéro n'est pas valide.\n\nLa hauteur de la première couche sera réinitialisée à 0,01." +msgid "" +"Zero first layer height is not valid.\n" +"\n" +"The first layer height will be reset to 0.01." +msgstr "" +"Une hauteur de première couche de zéro n'est pas valide.\n" +"\n" +"La hauteur de la première couche sera réinitialisée à 0,01." #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." -msgstr "Une hauteur de couche de zéro n'est pas valide.\n\nLa hauteur de la couche sera réinitialisée à 0,01." +msgid "" +"Zero layer height is not valid.\n" +"\n" +"The layer height will be reset to 0.01." +msgstr "" +"Une hauteur de couche de zéro n'est pas valide.\n" +"\n" +"La hauteur de la couche sera réinitialisée à 0,01." -#: src/libslic3r/PrintConfig.cpp:2658 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/Mouse3DController.cpp:326 -#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Zoom" msgstr "Zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 msgid "Zoom in" msgstr "Zoom avant" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 msgid "Zoom out" msgstr "Zoom arrière" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "Zoomer sur tous les objets sur la scène, si aucun n'est sélectionné" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 msgid "Zoom to Bed" msgstr "Zoomer sur le Lit" #: src/slic3r/GUI/KBShortcutsDialog.cpp:182 -msgid "Zoom to selected object\nor all objects in scene, if none selected" -msgstr "Zoomer sur l'objet sélectionné\nou sur tous les objets sur la scène, si aucun n'est sélectionné" +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"Zoomer sur l'objet sélectionné\n" +"ou sur tous les objets sur la scène, si aucun n'est sélectionné" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "Zoomer sur l'objet sélectionné" - -#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 #: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 #: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" diff --git a/resources/localization/it/PrusaSlicer.mo b/resources/localization/it/PrusaSlicer.mo index fd631eefa095af221084b0f12da1827d10dd80c5..4367bfd2266ac31214b8dd1fe096d11b4c4b0cb9 100644 GIT binary patch delta 47418 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 diff --git a/resources/localization/it/PrusaSlicer_it.po b/resources/localization/it/PrusaSlicer_it.po index ec34a5d9a3..29b302ba71 100644 --- a/resources/localization/it/PrusaSlicer_it.po +++ b/resources/localization/it/PrusaSlicer_it.po @@ -5,133 +5,166 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: PhraseApp (phraseapp.com)\n" +"X-Generator: Poedit 2.2.1\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" #: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Ricordati di controllare gli aggiornamenti su http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:874 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " generato con successo." -#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 #: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 #: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 -#: src/libslic3r/PrintConfig.cpp:2758 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/slic3r/GUI/GLCanvas3D.cpp:968 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:963 +#, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3110 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "%1% Preset" -#: src/slic3r/GUI/Plater.cpp:4413 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "La stampante %1% era attiva nel momento in cui è stata creata l'istantanea di Annulla / Ripeti dell'oggetto. Passare alla stampante %1% richiede il ricaricamento dei preset %1%." -#: src/libslic3r/Print.cpp:1370 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm è troppo basso per essere un altezza layer stampabile %3% mm" #: src/slic3r/GUI/PresetHints.cpp:229 -#, possible-c-format +#, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s alla velocità del filamento di %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:1149 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1152 +#, c-format msgid "%d (%d shells)" msgstr "%d (%d di perimetri)" -#: src/slic3r/GUI/Plater.cpp:1157 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1160 +#, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d facce degenerate, %d spigoli riparati, %d facce rimosse, %d faccee aggiunte, %d facce invertite, %d spigoli inversi" -#: src/slic3r/GUI/PresetHints.cpp:269 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:270 +#, c-format msgid "%d lines: %.2f mm" msgstr "%d linee: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:1029 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:1027 +#, c-format msgid "%d presets successfully imported." msgstr "%d preset importati correttamente." -#: src/slic3r/GUI/MainFrame.cpp:694 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:692 +#, c-format msgid "%s &Website" msgstr "%s Sito &Web" #: src/slic3r/GUI/UpdateDialogs.cpp:211 -#, possible-c-format +#, c-format msgid "%s configuration is incompatible" msgstr "configurazione %s non compatibile" -#: src/slic3r/GUI/Field.cpp:170 -#, possible-c-format +#: src/slic3r/GUI/Field.cpp:175 +#, c-format msgid "%s doesn't support percentage" msgstr "%s non supporta la percentuale" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, possible-c-format +#, c-format msgid "%s error" msgstr "errore %s" #: src/slic3r/GUI/ConfigWizard.cpp:481 -#, possible-c-format +#, c-format msgid "%s Family" msgstr "Famiglia %s" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, possible-c-format +#, c-format msgid "%s has encountered an error" msgstr "%s ha riscontrato un errore" #: src/slic3r/GUI/GUI_App.cpp:138 -#, possible-c-format -msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." -msgstr "%s ha riscontrato un errore. Probabilmente è stato causato dalla memoria piena. Se sei sicuro di avere abbastanza RAM nel sistema, questo potrebbe essere un bug e te ne saremmo grati se potessi informarci.\n\nL'applicazione verrà chiusa." +#, c-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" +"\n" +"The application will now terminate." +msgstr "" +"%s ha riscontrato un errore. Probabilmente è stato causato dalla memoria piena. Se sei sicuro di avere abbastanza RAM nel sistema, questo potrebbe essere un bug e te ne saremmo grati se potessi informarci.\n" +"\n" +"L'applicazione verrà chiusa." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 -#, possible-c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 +#, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%s ha riscontrato un errore. Probabilmente è stato causato dalla memoria piena. Se sei sicuro di avere abbastanza RAM nel sistema, questo potrebbe essere un bug e te ne saremmo grati se potessi informarci." #: src/slic3r/GUI/UpdateDialogs.cpp:308 -#, possible-c-format -msgid "%s has no configuration updates aviable." -msgstr "%s non ha aggiornamenti di configurazione disponibili." +#, c-format +msgid "%s has no configuration updates available." +msgstr "%s non ha disponibili aggiornamenti di configurazione." #: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 -#, possible-c-format +#, c-format msgid "%s incompatibility" msgstr "incompatibilità %s" #: src/slic3r/GUI/UpdateDialogs.cpp:270 -#, possible-c-format -msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." -msgstr "%s adesso utilizza uno schema aggiornato di configurazioni.\n\nSono stati introdotti i così detti 'Preset di sistema', che contengono i settaggi integrati predefiniti per varie stampanti. Questi preset di sistema non possono essere modificati, però l'utente può creare i propri preset ereditando le impostazioni da quelli di sistema.\nUn preset ereditato può sia ereditare un valore particolare dal genitore, o sovrascriverlo con un valore personalizzato.\n\nSi prega di procedere con il %s che segue per impostare i nuovi preset e scegliere se abilitare gli aggiornamenti automatici del preset." +#, c-format +msgid "" +"%s now uses an updated configuration structure.\n" +"\n" +"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" +"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" +"\n" +"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +msgstr "" +"%s adesso utilizza uno schema aggiornato di configurazioni.\n" +"\n" +"Sono stati introdotti i così detti 'Preset di sistema', che contengono i settaggi integrati predefiniti per varie stampanti. Questi preset di sistema non possono essere modificati, però l'utente può creare i propri preset ereditando le impostazioni da quelli di sistema.\n" +"Un preset ereditato può sia ereditare un valore particolare dal genitore, o sovrascriverlo con un valore personalizzato.\n" +"\n" +"Si prega di procedere con il %s che segue per impostare i nuovi preset e scegliere se abilitare gli aggiornamenti automatici del preset." #: src/slic3r/GUI/GUI_App.cpp:820 -#, possible-c-format +#, c-format msgid "%s View Mode" msgstr "%s Modalità Visualizzazione" #: src/slic3r/GUI/UpdateDialogs.cpp:151 -#, possible-c-format -msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "%s avvierà gli aggiornamenti. In caso contrario non sarà in grado di avviarsi.\n\nSi fa noto che prima verrà creata un'istantanea della configurazione completa. Questa potrà essere ripristinata in qualunque momento se dovesse esserci un problema con la nuova versione.\n\nPacchetti di configurazione aggiornati:" +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%s avvierà gli aggiornamenti. In caso contrario non sarà in grado di avviarsi.\n" +"\n" +"Si fa noto che prima verrà creata un'istantanea della configurazione completa. Questa potrà essere ripristinata in qualunque momento se dovesse esserci un problema con la nuova versione.\n" +"\n" +"Pacchetti di configurazione aggiornati:" -#: src/slic3r/GUI/MainFrame.cpp:707 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:705 +#, c-format msgid "&About %s" msgstr "Inform&azioni su %s" @@ -149,29 +182,29 @@ msgstr "&Copia" #: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" -msgstr "&Elimina selezionati" +msgstr "Eli&mina selezionati" -#: src/slic3r/GUI/MainFrame.cpp:724 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" -msgstr "Modifich&e" +msgstr "&Modifiche" #: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "&Esporta" -#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "Impostazioni &Filamento" -#: src/slic3r/GUI/MainFrame.cpp:723 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "&File" -#: src/slic3r/GUI/ConfigWizard.cpp:1984 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "&Completa" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "&Aiuto" @@ -187,7 +220,7 @@ msgstr "&Lingua" msgid "&New Project" msgstr "&Nuovo progetto" -#: src/slic3r/GUI/ConfigWizard.cpp:1983 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "&Successivo>" @@ -197,7 +230,7 @@ msgstr "Apri Pr&ogetto" #: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" -msgstr "Incolla" +msgstr "I&ncolla" #: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" @@ -209,7 +242,7 @@ msgstr "&Preferenze" #: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" -msgstr "&Esci" +msgstr "Es&ci" #: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" @@ -231,13 +264,13 @@ msgstr "&Seleziona tutto" msgid "&Undo" msgstr "Ann&ulla" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" msgstr "&Vista" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" -msgstr "&Finestra" +msgstr "Fines&tra" #: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" @@ -247,19 +280,19 @@ msgstr "(Tutto)" msgid "(minimum)" msgstr "(minimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "(Ri)processa" #: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" -msgstr "(Re)Slice Ora" +msgstr "(Re)Sli&ce Ora" -#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(Sconosciuto)" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ") non trovato." @@ -275,7 +308,7 @@ msgstr "0.2 (rimovibile)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4108 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "Vista editing 3D" @@ -283,58 +316,58 @@ msgstr "Vista editing 3D" msgid "3D Honeycomb" msgstr "Nido d'ape 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:291 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "Impostazioni 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:5068 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5038 +#, c-format msgid "3MF file exported to %s" msgstr "File 3MF esportato in %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1982 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "< &Precedente" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:287 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Un'espressione booleana che usa i valori di configurazione di un profilo di stampa attivo. Se questa espressione produce un risultato vero, questo profilo si considera compatibile con il profilo stampante attivo." -#: src/libslic3r/PrintConfig.cpp:262 +#: src/libslic3r/PrintConfig.cpp:272 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Un'espressione booleana che usa i valori di configurazione di un profilo stampante attivo. Se questa espressione produce un risultato vero, questo profilo si considera compatibile con il profilo stampante attivo." -#: src/slic3r/GUI/ConfigWizard.cpp:1035 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Una regola generale è da 160 a 230°C per il PLA, e da 215 a 250°C per l'ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:1049 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Una regola generale è 60°C per il PLA e 110°C per l'ABS. Lascia a zero se non hai un piano riscaldato." -#: src/slic3r/GUI/GLCanvas3D.cpp:691 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "È stato rilevato un percorso al di fuori dell'area di stampa" #: src/slic3r/GUI/AboutDialog.cpp:199 -#, possible-c-format +#, c-format msgid "About %s" msgstr "Informazioni su %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:964 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:959 +#, c-format msgid "above %.2f mm" msgstr "sopra %.2f mm" #: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" -msgstr "Z Sopra " +msgstr "Z Sopra" -#: src/slic3r/GUI/Tab.cpp:1166 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "Controllo Accelerazione (avanzato)" -#: src/libslic3r/PrintConfig.cpp:2916 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Accuracy" msgstr "Precisione" @@ -346,19 +379,19 @@ msgstr "Attiva" msgid "Active" msgstr "Attivo" -#: src/slic3r/GUI/DoubleSlider.cpp:1103 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 msgid "active" msgstr "attivo" -#: src/slic3r/GUI/GLCanvas3D.cpp:272 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "Adattivo" -#: src/slic3r/GUI/Tab.cpp:243 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "Aggiungi una nuova stampante" -#: src/libslic3r/PrintConfig.cpp:2773 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "Aggiungi un pad sotto il modello supportato" @@ -366,47 +399,47 @@ msgstr "Aggiungi un pad sotto il modello supportato" msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Aggiunge un contorno (una singola linea di perimetro) attorno alla base del supporto. Questo rende il supporto più affidabile, ma anche più difficile da rimuovere." -#: src/slic3r/GUI/DoubleSlider.cpp:989 +#: src/slic3r/GUI/DoubleSlider.cpp:991 msgid "Add another code - Ctrl + Left click" msgstr "Aggiungi altro codice - Ctrl + Clic sinistro" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:992 msgid "Add another code - Right click" msgstr "Aggiungi un altro codice - Clic destro" -#: src/slic3r/GUI/DoubleSlider.cpp:1449 +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "Aggiungi cambio colore" -#: src/slic3r/GUI/DoubleSlider.cpp:1148 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "Aggiungi cambio colore (%1%) per:" -#: src/slic3r/GUI/DoubleSlider.cpp:959 +#: src/slic3r/GUI/DoubleSlider.cpp:988 msgid "Add color change - Left click" msgstr "Aggiungi cambio colore - Clic sinistro" -#: src/slic3r/GUI/DoubleSlider.cpp:957 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" msgstr "Aggiungi cambio colore - Clic sinistro per colore predefinito o Maiusc + Clic sinistro per selezione personalizzata del colore" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "Aggiungi un segnale di cambio colore al layer corrente" -#: src/slic3r/GUI/DoubleSlider.cpp:1462 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "Aggiungi un G-code personalizzato" -#: src/slic3r/GUI/GLCanvas3D.cpp:245 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "Aggiungi dettagli" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 msgid "Add drainage hole" msgstr "Aggiungi foro di drenaggio" -#: src/slic3r/GUI/DoubleSlider.cpp:955 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "Add extruder change - Left click" msgstr "Aggiungi cambio estrusore - Clic sinistro" @@ -414,22 +447,22 @@ msgstr "Aggiungi cambio estrusore - Clic sinistro" msgid "Add extruder to sequence" msgstr "Aggiungi estrusore alla sequenza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "Aggiungi sotto-oggetto generico" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "Aggiungi Intervallo Altezza" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 -#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" msgstr "Aggiungi istanza" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Add Instance of the selected object" msgstr "Aggiungi istanza all'oggetto selezionato" @@ -437,7 +470,7 @@ msgstr "Aggiungi istanza all'oggetto selezionato" msgid "Add layer range" msgstr "Aggiungi intervallo layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "Aggiungi layer" @@ -450,7 +483,7 @@ msgstr "Aggiungi modificatore" msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Aggiunge più perimetri quando necessario per evitare spazi tra i perimetri inclinati. Slic3r continua ad aggiungere perimetri fino a quando almeno il 70% del giro immediatamente sopra sarà supportato." -#: src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" msgstr "Aggiungi un'altra istanza dell'oggetto selezionato" @@ -458,48 +491,48 @@ msgstr "Aggiungi un'altra istanza dell'oggetto selezionato" msgid "Add part" msgstr "Aggiungi parte" -#: src/slic3r/GUI/DoubleSlider.cpp:1459 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "Aggiungi pausa di stampa" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "Aggiungi punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "Aggiungi punto alla selezione" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "Aggiungi impostazioni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "Aggiungi Gruppo impostazioni per intervallo Altezza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "Aggiungi gruppo di impostazioni per l'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "Aggiungi Gruppi di Impostazioni per il sotto-progetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "Aggiungi impostazioni per i layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "Aggiungi impostazioni per l'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "Aggiungi impostazioni per il sotto-oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "Aggiungi Forma" @@ -515,27 +548,27 @@ msgstr "Aggiungi blocco supporto" msgid "Add support enforcer" msgstr "Aggiungi rinforzo supporto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "Aggiungi punto di supporto" -#: src/slic3r/GUI/GLCanvas3D.cpp:4516 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "Aggiungi..." -#: src/slic3r/GUI/PresetBundle.cpp:1697 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "Aggiungi/Rimuovi filamenti" -#: src/slic3r/GUI/Preset.cpp:1151 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "Aggiungi/Rimuovi materiali" -#: src/slic3r/GUI/Preset.cpp:1153 +#: src/slic3r/GUI/Preset.cpp:1203 msgid "Add/Remove printers" msgstr "Aggiungi/Rimuovi stampanti" -#: src/slic3r/GUI/Tab.cpp:972 +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "Informazioni aggiuntive:" @@ -543,7 +576,7 @@ msgstr "Informazioni aggiuntive:" msgid "Additional Settings" msgstr "Impostazioni Aggiuntive" -#: src/slic3r/GUI/ConfigWizard.cpp:790 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Inoltre viene generata una copia di backup dei preset prima di applicare un aggiornamento." @@ -551,18 +584,19 @@ msgstr "Inoltre viene generata una copia di backup dei preset prima di applicare msgid "Address" msgstr "Indirizzo" -#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 -#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 -#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 -#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "Avanzate" -#: src/slic3r/GUI/ConfigWizard.cpp:822 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "Modalità Avanzata" @@ -578,15 +612,15 @@ msgstr "Avanzato: Log di output" msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Dopo un cambio di attrezzo, l'esatta posizione del filamento appena caricato dentro l'ugello potrebbe essere sconosciuta, e la pressione del filamento probabilmente non è ancora stabile. Prima di spurgare la testina di stampa nel riempimento o in un oggetto sacrificale, Slic3r posizionerà questo materiale in una torre di spurgo al fine di ottenere una successiva estrusione affidabile su oggetto sacrificale o riempimento." -#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-code dopo il cambio layer" -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "Allinea il modello al punto dato." -#: src/libslic3r/PrintConfig.cpp:3382 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "Allinea XY" @@ -595,19 +629,15 @@ msgid "Aligned" msgstr "Allineato" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3158 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "Tutto" -#: src/libslic3r/Print.cpp:1215 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "Tutti gli oggetti sono fuori dal volume di stampa." -#: src/slic3r/GUI/Plater.cpp:3298 -msgid "All objects will be removed, continue ?" -msgstr "Saranno rimossi tutti gli oggetti, continuare?" - -#: src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "All objects will be removed, continue?" msgstr "Saranno rimossi tutti gli oggetti, continuare?" @@ -619,15 +649,15 @@ msgstr "Tutto standard" msgid "allocation failed" msgstr "allocazione fallita" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "Lungo asse X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "Lungo asse Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "Lungo l'asse Z" @@ -635,24 +665,28 @@ msgstr "Lungo l'asse Z" msgid "Alternate nozzles:" msgstr "Ugelli alternativi:" -#: src/slic3r/GUI/Plater.cpp:5022 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5002 +#, c-format msgid "AMF file exported to %s" msgstr "File AMF esportato in %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 -msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" -msgstr "È stato rilevato un oggetto al di fuori dell'area di stampa\nRisolvere il problema per continuare lo slicing" - #: src/slic3r/GUI/GLCanvas3D.cpp:690 +msgid "" +"An object outside the print area was detected\n" +"Resolve the current problem to continue slicing" +msgstr "" +"È stato rilevato un oggetto al di fuori dell'area di stampa\n" +"Risolvere il problema per continuare lo slicing" + +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "È stato rilevato un oggetto al di fuori dell'area di stampa" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "e ha i seguenti cambiamenti non salvati:" -#: src/slic3r/GUI/Plater.cpp:3154 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "Un altro processo di esportazione è in corso." @@ -661,7 +695,7 @@ msgstr "Un altro processo di esportazione è in corso." msgid "Any arrow" msgstr "Qualunque freccia" -#: src/slic3r/GUI/Tab.cpp:967 +#: src/slic3r/GUI/Tab.cpp:965 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Qualunque modifica deve essere salvata come un nuovo preset ereditato da questo." @@ -674,7 +708,7 @@ msgid "Application preferences" msgstr "Preferenze applicazione" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "Applica cambiamenti" @@ -691,19 +725,23 @@ msgid "archive is too large" msgstr "l'archivio è troppo grande" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3107 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "Sei sicuro di voler %1% il preset selezionato?" #: src/slic3r/GUI/FirmwareDialog.cpp:902 -msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" -msgstr "Sei sicuro di voler annullare il flash del firmware?\nQuesto potrebbe lasciare la tua stampante in una condizione inutilizzabile!" +msgid "" +"Are you sure you want to cancel firmware flashing?\n" +"This could leave your printer in an unusable state!" +msgstr "" +"Sei sicuro di voler annullare il flash del firmware?\n" +"Questo potrebbe lasciare la tua stampante in una condizione inutilizzabile!" -#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 msgid "Are you sure you want to continue?" msgstr "Sei sicuro di voler continuare?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "Sei sicuro di voler procedere?" @@ -711,50 +749,54 @@ msgstr "Sei sicuro di voler procedere?" msgid "Area fill" msgstr "Riempimento area" -#: src/slic3r/GUI/Plater.cpp:638 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "Intorno all'oggetto" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "Disponi" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "Disponi selezione" -#: src/libslic3r/PrintConfig.cpp:3428 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Disponi i modelli su un piano e uniscili in un singolo modello al fine di effettuare le operazioni una singola volta." -#: src/slic3r/GUI/Plater.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "Disponendo" -#: src/slic3r/GUI/Plater.cpp:2825 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "Disposizione annullata." -#: src/slic3r/GUI/Plater.cpp:2826 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "Disposizione completata." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "Freccia giù" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "Freccia sinistra" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "Freccia Destra" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "Freccia Su" @@ -762,8 +804,8 @@ msgstr "Freccia Su" msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Come soluzione alternativa, è possibile eseguire PrusaSlicer con una grafica 3D di rendering software eseguendo prusa-slicer.exe con il parametro --sw_renderer." -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 -#: src/slic3r/GUI/Tab.cpp:2944 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "Attenzione!" @@ -776,17 +818,17 @@ msgid "Auto-center parts" msgstr "Centra automaticamente le parti" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "Genera punti automaticamente" -#: src/slic3r/GUI/Plater.cpp:1154 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, c-format msgid "Auto-repaired (%d errors)" msgstr "Auto-riparati (%d errori)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:337 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 +#, c-format msgid "Auto-repaired (%d errors):" msgstr "Auto-riparati (%d errori):" @@ -794,19 +836,19 @@ msgstr "Auto-riparati (%d errori):" msgid "Autodetected" msgstr "Autorilevato" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "Genera automaticamente punti di supporto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "La generazione automatica cancellerà tutti i punti editati manualmente." -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "Generazione automatica" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "Aggiornamenti automatici" @@ -814,31 +856,39 @@ msgstr "Aggiornamenti automatici" msgid "Automatically repair an STL file" msgstr "Ripara automaticamente un file STL" -#: src/slic3r/GUI/Tab.cpp:1173 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "Autovelocità (avanzato)" -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "Evita incrocio perimetri" -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "FRECCIA INDIETRO" -#: src/slic3r/GUI/Tab.cpp:3274 -msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." -msgstr "L'icona FRECCIA INDIETRO indica che le impostazioni sono state cambiate e non corrispondono all'ultimo preset salvato per il seguente gruppo di opzioni.\nClicca per reimpostare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni." +#: src/slic3r/GUI/Tab.cpp:3290 +msgid "" +"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click to reset all settings for the current option group to the last saved preset." +msgstr "" +"L'icona FRECCIA INDIETRO indica che le impostazioni sono state cambiate e non corrispondono all'ultimo preset salvato per il seguente gruppo di opzioni.\n" +"Clicca per reimpostare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni." -#: src/slic3r/GUI/Tab.cpp:3288 -msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." -msgstr "L'icona FRECCIA ALL'INDIETRO indica che il valore è stato cambiato e non corrisponde all'ultimo preset salvato.\nCliccare per reimpostare il valore corrente all'ultimo preset salvato." +#: src/slic3r/GUI/Tab.cpp:3304 +msgid "" +"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" +"Click to reset current value to the last saved preset." +msgstr "" +"L'icona FRECCIA ALL'INDIETRO indica che il valore è stato cambiato e non corrisponde all'ultimo preset salvato.\n" +"Cliccare per reimpostare il valore corrente all'ultimo preset salvato." #: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Elaborazione in background" -#: src/slic3r/GUI/GUI_ObjectList.cpp:349 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "spigoli invertiti" @@ -846,7 +896,7 @@ msgstr "spigoli invertiti" msgid "based on Slic3r" msgstr "basato su Slic3r" -#: src/slic3r/GUI/Tab.cpp:1441 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "Piano" @@ -858,7 +908,7 @@ msgstr "Modello piano personalizzato" msgid "Bed custom texture" msgstr "Forma piano personalizzata" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "Forma Piano" @@ -866,23 +916,23 @@ msgstr "Forma Piano" msgid "Bed shape" msgstr "Forma piano" -#: src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "Forma e dimensioni del piano di stampa" -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "Temperatura piano" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura per i layer dopo il primo. Imposta a zero per disattivare i comandi di controllo della temperatura del piano di stampa in output." -#: src/slic3r/GUI/ConfigWizard.cpp:1052 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "Temperatura piano di stampa:" -#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "G-code prima del cambio layer" @@ -890,7 +940,7 @@ msgstr "G-code prima del cambio layer" msgid "Before roll back" msgstr "Prima di tornare indietro" -#: src/slic3r/GUI/Plater.cpp:637 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "Sotto l'oggetto" @@ -898,27 +948,27 @@ msgstr "Sotto l'oggetto" msgid "Below Z" msgstr "Z Sotto" -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "G-code tra gli oggetti" -#: src/slic3r/GUI/Tab.cpp:2004 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "G-code tra gli oggetti (per stampa sequenziale)" -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "Volume bottiglia" -#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "Peso bottiglia" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 -#: src/libslic3r/PrintConfig.cpp:173 +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "Inferiore" @@ -926,15 +976,15 @@ msgstr "Inferiore" msgid "Bottom fill pattern" msgstr "Trama riempimento inferiore" -#: src/slic3r/GUI/PresetHints.cpp:338 +#: src/slic3r/GUI/PresetHints.cpp:342 msgid "Bottom is open." msgstr "La parte inferiore è aperta." -#: src/slic3r/GUI/PresetHints.cpp:332 +#: src/slic3r/GUI/PresetHints.cpp:336 msgid "Bottom shell is %1% mm thick for layer height %2% mm." msgstr "Il guscio inferiore è spesso %1% mm per l'altezza layer %2% mm." -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "Layer solidi sul fondo" @@ -942,37 +992,37 @@ msgstr "Layer solidi sul fondo" msgid "Bottom View" msgstr "Vista inferiore" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "Cubo" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "Bridge" -#: src/libslic3r/PrintConfig.cpp:212 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "Rapporto flusso Bridge" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Riempimento Bridge" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "Bridge" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "Velocità ventola Bridge" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "Angolo Bridge" -#: src/libslic3r/PrintConfig.cpp:194 +#: src/libslic3r/PrintConfig.cpp:204 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Ignora angolo Bridging. Se lasciato a zero, l'angolo di bridging verrà calcolato automaticamente. Altrimenti l'angolo fornito sarà utilizzato per tutti i bridge. Usa 180° per l'angolo zero." @@ -980,16 +1030,16 @@ msgstr "Ignora angolo Bridging. Se lasciato a zero, l'angolo di bridging verrà msgid "Bridging volumetric" msgstr "Bridging volumetrico" -#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "Brim" -#: src/libslic3r/PrintConfig.cpp:234 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "Larghezza brim" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1719 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "Naviga" @@ -1005,15 +1055,15 @@ msgstr "Descrizione colori testo e pulsanti" msgid "by the print profile maximum" msgstr "secondo il massimo del profilo di stampa" -#: src/slic3r/GUI/Preferences.cpp:115 +#: src/slic3r/GUI/Preferences.cpp:113 msgid "Camera" msgstr "Camera" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "Vista camera" -#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Annulla" @@ -1022,11 +1072,11 @@ msgstr "Annulla" msgid "Cancel selected" msgstr "Cancella selezione" -#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Annullato" -#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Annullamento" @@ -1034,15 +1084,15 @@ msgstr "Annullamento" msgid "Cancelling..." msgstr "Annullo in corso..." -#: src/libslic3r/Flow.cpp:55 +#: src/libslic3r/Flow.cpp:61 msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." msgstr "Non è possibile calcolare la larghezza di estrusione per %1%: Variabile \"%2%\" non accessibile." -#: src/slic3r/GUI/Tab.cpp:3057 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "Impossibile sovrascrivere un profilo di sistema." -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "Impossibile sovrascrivere un profilo esterno." @@ -1050,7 +1100,7 @@ msgstr "Impossibile sovrascrivere un profilo esterno." msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Impossibile procedere senza punti di supporto! Aggiungi i punti di supporto o disattiva la generazione supporti." -#: src/slic3r/GUI/Tab.cpp:1832 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "Caratteristiche" @@ -1058,60 +1108,60 @@ msgstr "Caratteristiche" msgid "Capture a configuration snapshot" msgstr "Cattura un'istantanea della configurazione" -#: src/libslic3r/PrintConfig.cpp:3409 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "Centro" -#: src/libslic3r/PrintConfig.cpp:3410 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "Centra la stampa sul centro dato." -#: src/slic3r/GUI/Tab.cpp:1726 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "File di certificato (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 msgid "Change camera type (perspective, orthographic)" msgstr "Cambia tipo di visuale (prospettica, ortografica)" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 msgid "Change drainage hole diameter" msgstr "Modifica il diametro dei fori di drenaggio" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "Cambia estrusore" -#: src/slic3r/GUI/GUI_ObjectList.cpp:534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "Cambio estrusore" -#: src/slic3r/GUI/DoubleSlider.cpp:1113 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Change extruder (N/A)" msgstr "Cambio estrusore (N/A)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "Cambio Estrusori" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 -#, possible-c-format +#, c-format msgid "Change Option %s" msgstr "Modifica Opzione %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "Modifica il tipo di Parte" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "Modifica diametro punta della testa" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "Cambia il numero di istanze dell'oggetto selezionato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "Cambia tipo" @@ -1123,7 +1173,7 @@ msgstr "Changelog && Download" msgid "Changing of an application language" msgstr "Cambio lingua applicazione" -#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Verifica la presenza di aggiornamenti" @@ -1133,13 +1183,13 @@ msgstr "Controlla aggiornamenti di configurazione" #: src/slic3r/GUI/GUI_App.cpp:802 msgid "Check for updates" -msgstr "Cerca aggiornamenti" +msgstr "Cerca aggiorna&menti" #: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Seleziona un file da cui importare la forma del piano di stampa (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:775 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Scegli un file da processare (STL/OBJ/AMF/3MF/PRUSA):" @@ -1159,7 +1209,7 @@ msgstr "Seleziona un file (3MF/AMF):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Seleziona uno o più file (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:896 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "Indica il firmware usato dalla tua stampante." @@ -1167,23 +1217,23 @@ msgstr "Indica il firmware usato dalla tua stampante." msgid "Circular" msgstr "Circolare" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "Fai click destro per aprire la Storia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:402 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "Clicca l'icona per cambiare le proprietà di stampa dell'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "Fare clic sull'icona per modificare le impostazioni dell'oggetto" -#: src/slic3r/GUI/Plater.cpp:340 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "Clicca per modificare il preset" -#: src/libslic3r/PrintConfig.cpp:242 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "Collega oggetti multi-part" @@ -1193,39 +1243,39 @@ msgid "Clipping of view" msgstr "Ritaglio della vista" #: src/slic3r/GUI/FirmwareDialog.cpp:852 -#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Chiudi" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 msgid "Closing distance" msgstr "Distanza di chiusura" -#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 -#: src/libslic3r/PrintConfig.cpp:582 +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Colore" -#: src/slic3r/GUI/DoubleSlider.cpp:972 +#: src/slic3r/GUI/DoubleSlider.cpp:1005 msgid "Color change (\"%1%\")" msgstr "Cambio colore (\"%1%\")" -#: src/slic3r/GUI/DoubleSlider.cpp:973 +#: src/slic3r/GUI/DoubleSlider.cpp:1006 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Cambio colore (\"%1%\") per Estrusore %2%" #: src/slic3r/GUI/GLCanvas3D.cpp:995 -#, possible-c-format +#, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Cambio colore per Estrusore %d a %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 #: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Color Print (Stampa a Colori)" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "Altezza Colorprint" @@ -1245,23 +1295,23 @@ msgstr "Comandi" msgid "Comment:" msgstr "Commento:" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "Profili di stampa compatibili" -#: src/libslic3r/PrintConfig.cpp:276 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "Condizioni profili di stampa compatibili" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "Stampanti compatibili" -#: src/libslic3r/PrintConfig.cpp:261 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "Condizioni di stampante compatibile" -#: src/libslic3r/PrintConfig.cpp:294 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "Completa singoli oggetti" @@ -1277,15 +1327,15 @@ msgstr "compressione fallita" msgid "Concentric" msgstr "Concentrico" -#: src/slic3r/GUI/ConfigWizard.cpp:2113 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "&Assistente Configurazione" -#: src/slic3r/GUI/ConfigWizard.cpp:2116 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" -msgstr "Configurazione guidata (&Wizard)" +msgstr "Co&nfigurazione guidata" -#: src/slic3r/GUI/ConfigWizard.cpp:2112 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "Assistente configurazione" @@ -1305,15 +1355,11 @@ msgstr "Aggiornamento di configurazione" msgid "Configuration update is available" msgstr "Aggiornamento di configurazione disponibile" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Configuration update is necessary to install" -msgstr "È necessario installare un aggiornamento della configurazione." - #: src/slic3r/GUI/UpdateDialogs.cpp:303 msgid "Configuration updates" msgstr "Aggiornamenti di configurazione" -#: src/slic3r/GUI/ConfigWizard.cpp:2115 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "Configurazione Guidata" @@ -1321,11 +1367,11 @@ msgstr "Configurazione Guidata" msgid "Confirmation" msgstr "Conferma" -#: src/slic3r/GUI/Tab.cpp:1929 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "Connessione fallita." -#: src/slic3r/GUI/Tab.cpp:3612 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "Connessione delle barre di supporto e giunzioni" @@ -1345,7 +1391,7 @@ msgstr "Connessione a FlashAir correttamente funzionante e caricamento abilitato msgid "Connection to OctoPrint works correctly." msgstr "Connessione con OctoPrint funzionante." -#: src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "Connessione con la stampante funzionante." @@ -1361,11 +1407,11 @@ msgstr "Distanza di contatto Z" msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Con il contributo di Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik e molti altri." -#: src/libslic3r/PrintConfig.cpp:2650 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Controlla il tipo di bridge tra due pilastri adiacenti. Può essere zig-zag, croce (doppio zig-zag) o dinamico, che passerà automaticamente tra i due a seconda della distanza tra i due pilastri." -#: src/slic3r/GUI/Tab.cpp:1446 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "Raffreddamento" @@ -1377,19 +1423,23 @@ msgstr "I movimenti di raffreddamento accelerano gradualmente partendo da questa msgid "Cooling moves are gradually accelerating towards this speed." msgstr "I movimenti di raffreddamento accelerano gradualmente verso questa velocità." -#: src/slic3r/GUI/Tab.cpp:1467 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "Soglie di raffreddamento" -#: src/libslic3r/PrintConfig.cpp:317 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "Lunghezza del tubo di raffreddamento" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "Posizione tubo di raffreddamento" -#: src/slic3r/GUI/GLCanvas3D.cpp:4554 +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "Copie dell'oggetto selezionato" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "Copia" @@ -1397,7 +1447,7 @@ msgstr "Copia" msgid "Copy selection to clipboard" msgstr "Copia selezione negli appunti" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 msgid "Copy to clipboard" msgstr "Copia negli appunti" @@ -1405,36 +1455,48 @@ msgstr "Copia negli appunti" msgid "Copy to Clipboard" msgstr "Copia negli appunti" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "Copia del G-code temporaneo completata ma non è stato possibile aprire il codice esportato durante il controllo copia. Il G-code di output è su %1%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "Copia del G-code temporaneo completata ma non è stato possibile aprire il codice originale su %1% durante il controllo copia. Il G-code di output è su %2%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Copia del G-code temporaneo nel G-code di output non riuscita" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Copia del G-code temporaneo nel G-code di output non riuscita. Forse la scheda SD ha la sicura per la scrittura?" +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "Copia del G-code temporaneo nel G-code di output non riuscita. Potrebbe esserci un problema nel dispositivo di destinazione, prova una nuova esportazione con un dispositivo diverso. Il file G-code corrotto è su %1%.tmp." + #: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Copyright" -#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "Correzione dell'espansione" -#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "Correzioni" -#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "Costo" -#: src/slic3r/GUI/Plater.cpp:241 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "Costo (soldi)" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Non è stato possibile disporre gli oggetti! Alcune geometrie potrebbero essere non valide." @@ -1458,7 +1520,7 @@ msgstr "Impossibile connettersi ad OctoPrint" msgid "Could not connect to Prusa SLA" msgstr "Connessione a Prusa SLA fallita" -#: src/slic3r/GUI/Tab.cpp:1689 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "Impossibile ottenere un riferimento Host Stampante valido" @@ -1478,15 +1540,15 @@ msgstr "Le fratture più piccole di 2 volte il gap closing radius vengono riempi msgid "CRC-32 check failed" msgstr "verifica CRC-32 fallita" -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "Genera Pad intorno all'oggetto ed ignora l'elevazione del supporto" -#: src/libslic3r/PrintConfig.cpp:2715 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "Angolo critico" -#: src/libslic3r/PrintConfig.cpp:2659 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "Croce" @@ -1495,28 +1557,28 @@ msgid "Cubic" msgstr "Cubico" #: src/slic3r/GUI/wxExtensions.cpp:704 -#, possible-c-format +#, c-format msgid "Current mode is %s" msgstr "La modalità corrente è %s" -#: src/slic3r/GUI/Tab.cpp:959 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "Il preset attuale è stato ereditato dal preset predefinito." -#: src/slic3r/GUI/Tab.cpp:962 -#, possible-c-format -msgid "Current preset is inherited from:\n\t%s" -msgstr "Il preset corrente è ereditato da:\n%s" +#: src/slic3r/GUI/Tab.cpp:960 +#, c-format +msgid "" +"Current preset is inherited from:\n" +"\t%s" +msgstr "" +"Il preset corrente è ereditato da:\n" +"%s" #: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Versione corrente:" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "Orlo (mm)" - -#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Personalizzato" @@ -1525,18 +1587,14 @@ msgstr "Personalizzato" msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Può essere specificato il file del certificato CA personalizzato per le connessioni OctoPrint HTTPS, in formato crt/pem. Se lasciato in bianco, verrà utilizzato lo OS CA certificate repository predefinito." -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "G-code personalizzato" -#: src/slic3r/GUI/DoubleSlider.cpp:1591 +#: src/slic3r/GUI/DoubleSlider.cpp:1619 msgid "Custom G-code on current layer (%1% mm)." msgstr "G-code personalizzato al layer attuale (%1% mm)." -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "Gcode personalizzato al layer corrente (%1% mm)." - #: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Stampante Personalizzata" @@ -1550,19 +1608,19 @@ msgid "Custom profile name:" msgstr "Nome profilo personalizzato:" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "Taglia" -#: src/slic3r/GUI/Plater.cpp:4801 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "Taglia sul Piano" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "Taglia il modello al dato Z." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "Cilindro" @@ -1570,11 +1628,11 @@ msgstr "Cilindro" msgid "D&eselect all" msgstr "D&eseleziona tutto" -#: src/libslic3r/PrintConfig.cpp:3489 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "Directory dati" -#: src/slic3r/GUI/Mouse3DController.cpp:332 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "Zona morta:" @@ -1582,23 +1640,23 @@ msgstr "Zona morta:" msgid "decompression failed or archive is corrupted" msgstr "decompressione non riuscita o archivio corrotto" -#: src/slic3r/GUI/Plater.cpp:4735 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" msgstr "Diminuisci Istanze" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "Predefinito" -#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 #: src/slic3r/GUI/ObjectDataViewModel.cpp:490 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "predefinito" @@ -1610,53 +1668,53 @@ msgstr "Angolo base predefinito per l'orientamento del riempimento. Su questo ve msgid "Default extrusion width" msgstr "Larghezza estrusione predefinita" -#: src/slic3r/GUI/Tab.cpp:989 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "profilo filamento predefinito" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "Profilo filamento predefinito" -#: src/libslic3r/PrintConfig.cpp:336 +#: src/libslic3r/PrintConfig.cpp:346 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Profilo filamento predefinito associato al profilo stampante corrente. Quando si seleziona il profilo stampante corrente, questo profilo filamento verrà attivato." -#: src/slic3r/GUI/Tab.cpp:2903 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2919 +#, c-format msgid "Default preset (%s)" msgstr "Preset predefinito (%s)" -#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "Colore di stampa predefinito" -#: src/slic3r/GUI/Tab.cpp:986 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "profilo di stampa predefinito" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "Profilo di stampa predefinito" -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 -#: src/libslic3r/PrintConfig.cpp:2594 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Profilo di stampa predefinito associato al profilo stampante corrente. Alla selezione del profilo stampante corrente, questo profilo di stampa verrà attivato." -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "profilo materiale SLA predefinito" -#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "Profilo materiale SLA predefinito" -#: src/slic3r/GUI/Tab.cpp:1007 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "profilo di stampa SLA predefinito" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "valore predefinito" @@ -1664,11 +1722,11 @@ msgstr "valore predefinito" msgid "Define a custom printer profile" msgstr "Inserisci un profilo stampante personalizzato" -#: src/libslic3r/PrintConfig.cpp:2789 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Definisce la profondità della cavità nel pad. Imposta a zero per disattivare la cavità. Fai attenzione ad attivare questa funzione in quanto alcune resine possono causare un effetto ventosa dentro la cavità il che renderà difficile il distacco della stampa dal foglio del vat." -#: src/slic3r/GUI/GUI_ObjectList.cpp:344 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "facce degenerate" @@ -1676,13 +1734,13 @@ msgstr "facce degenerate" msgid "Delay after unloading" msgstr "Ritardo dopo lo scarico" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "elimina" -#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "Elimina" @@ -1690,100 +1748,89 @@ msgstr "Elimina" msgid "Delete &all" msgstr "Elimin&a tutto" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "Elimina tutto" - -#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "Elimina tutto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "Elimina Tutte le Istanze dall'Oggetto" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "Elimina il cambio colore" -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "Elimina il cambio colore per Estrusore %1%" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "Elimina il segnale di cambio colore per il layer corrente" -#: src/slic3r/GUI/DoubleSlider.cpp:1491 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "Elimina G-code personalizzato" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 msgid "Delete drainage hole" msgstr "Elimina foro di drenaggio" -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "Elimina il cambio estrusore a \"%1%\"" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "Elimina Intervallo Altezza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" msgstr "Elimina Istanza" -#: src/slic3r/GUI/Plater.cpp:2696 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "Elimina Oggetto" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 -#, possible-c-format +#, c-format msgid "Delete Option %s" msgstr "Elimina Opzione %s" -#: src/slic3r/GUI/DoubleSlider.cpp:1490 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "Elimina pausa stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Delete selected" msgstr "Elimina selezionato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "Elimina Selezionati" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "Elimina l'elemento selezionato" -#: src/slic3r/GUI/Plater.cpp:4692 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "Elimina Oggetti Selezionati" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "Elimina Impostazioni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "Elimina Sotto-oggetto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "Elimina punto di supporto" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "Elimina questo preset" -#: src/slic3r/GUI/DoubleSlider.cpp:1001 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "Elimina il segno di spunta - Clic sinistro o premi il tasto \"-\"" -#: src/slic3r/GUI/DoubleSlider.cpp:1489 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete tool change" msgstr "Elimina cambio attrezzo" @@ -1795,8 +1842,8 @@ msgstr "Elimina tutti gli oggetti" msgid "Deletes the current selection" msgstr "Elimina la selezione corrente" -#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 -#: src/libslic3r/PrintConfig.cpp:2495 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "Densità" @@ -1804,9 +1851,9 @@ msgstr "Densità" msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Densità del riempimento interno, espresso nell'intervallo 0% - 100%." -#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "Dipendenze" @@ -1818,7 +1865,7 @@ msgstr "Velocità di deretrazione" msgid "Deselect all" msgstr "Deseleziona tutto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "Deseleziona con rettangolo" @@ -1838,15 +1885,15 @@ msgstr "Rileva pareti a spessore singolo (parti in cui non entrano due estrusion msgid "Detect thin walls" msgstr "Rileva perimetri sottili" -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Rileva parti non connesse nel modello(i) dato e le divide in oggetti separati." -#: src/slic3r/GUI/Plater.cpp:2352 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "Rilevati dati avanzati" -#: src/slic3r/GUI/Mouse3DController.cpp:306 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "Dispositivo:" @@ -1854,15 +1901,15 @@ msgstr "Dispositivo:" msgid "Diameter" msgstr "Diametro" -#: src/libslic3r/PrintConfig.cpp:2685 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "Diametro in mm della base del pilastro" -#: src/libslic3r/PrintConfig.cpp:2641 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "Diametro in mm dei pilastri di supporto" -#: src/libslic3r/PrintConfig.cpp:2613 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "Diametro del lato di puntamento della testa" @@ -1874,7 +1921,7 @@ msgstr "Diametro del piano di stampa. Si presume che l'origine (0,0) si trovi al msgid "Direction" msgstr "Direzione" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "Disattiva ventola per i primi" @@ -1882,24 +1929,20 @@ msgstr "Disattiva ventola per i primi" msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Disabilita la retrazione quando la traiettoria del movimento non oltrepassa i perimetri del layer superiore (pertanto qualunque scolatura sarà probabilmente invisibile)." -#: src/slic3r/GUI/DoubleSlider.cpp:925 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "Elimina tutte le modifiche personalizzate" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "Annulla modifiche" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "Eliminare le modifiche e continuare comunque?" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "Spostamento (mm)" - -#: src/slic3r/GUI/Tab.cpp:2076 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "Display" @@ -1927,7 +1970,7 @@ msgstr "Mostra mirroring verticale" msgid "Display width" msgstr "Larghezza display" -#: src/libslic3r/PrintConfig.cpp:367 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "Distanza tra le copie" @@ -1935,7 +1978,7 @@ msgstr "Distanza tra le copie" msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "La distanza tra skirt e oggetto(i). Imposta questo valore a zero per unire lo skirt all'oggetto(i) e ottenere un brim per una migliore adesione." -#: src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Distanza tra due barre di connessione che collegano l'oggetto e il pad generato." @@ -1947,7 +1990,7 @@ msgstr "Distanza dall'oggetto" msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Distanza della coordinata 0,0 del G-code dall'angolo frontale sinistro del rettangolo." -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Distanza del centro del tubo di raffreddamento dalla punta dell'estrusore." @@ -1955,22 +1998,28 @@ msgstr "Distanza del centro del tubo di raffreddamento dalla punta dell'estrusor msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Distanza della punta dell'estrusore dalla posizione dove il filamento viene posto mentre viene scaricato. Dovrebbe essere uguale al valore nel firmware della stampante." -#: src/libslic3r/PrintConfig.cpp:368 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Distanza usata per la funzione disposizione automatica del piano." -#: src/libslic3r/PrintConfig.cpp:3471 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Non fallire se un file fornito a --load non esiste." -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Non disporre i modelli prima dell’unione e mantieni le coordinate XY originali." -#: src/slic3r/GUI/Field.cpp:235 -#, possible-c-format -msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." -msgstr "Intendevi %s invece di %s %s?\nSeleziona SI se vuoi cambiare il valore a %s %%,\no NO se sei sicuro che %s %s è il valore corretto." +#: src/slic3r/GUI/Field.cpp:240 +#, c-format +msgid "" +"Do you mean %s%% instead of %s %s?\n" +"Select YES if you want to change this value to %s%%, \n" +"or NO if you are sure that %s %s is a correct value." +msgstr "" +"Intendevi %s invece di %s %s?\n" +"Seleziona SI se vuoi cambiare il valore a %s %%,\n" +"o NO se sei sicuro che %s %s è il valore corretto." #: src/slic3r/GUI/ConfigWizard.cpp:1761 msgid "Do you want to automatic select default filaments?" @@ -1980,7 +2029,7 @@ msgstr "Vuoi selezionare automaticamente i filamenti predefiniti?" msgid "Do you want to automatic select default materials?" msgstr "Vuoi selezionare automaticamente i materiali predefiniti?" -#: src/slic3r/GUI/DoubleSlider.cpp:1893 +#: src/slic3r/GUI/DoubleSlider.cpp:1920 msgid "Do you want to delete all saved tool changes?" msgstr "Vuoi cancellare tutti i cambi attrezzo salvati?" @@ -1988,15 +2037,15 @@ msgstr "Vuoi cancellare tutti i cambi attrezzo salvati?" msgid "Do you want to proceed?" msgstr "Vuoi continuare?" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "Do you want to retry" msgstr "Vuoi riprovare" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "Vuoi salvare i punti di supporto modificati manualmente?" -#: src/libslic3r/PrintConfig.cpp:3414 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "Non disporre" @@ -2004,7 +2053,7 @@ msgstr "Non disporre" msgid "Don't notify about new releases any more" msgstr "Non notificare più i nuovi rilasci" -#: src/libslic3r/PrintConfig.cpp:359 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "Non supportare i bridge" @@ -2012,17 +2061,17 @@ msgstr "Non supportare i bridge" msgid "Downgrade" msgstr "Downgrade" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "Trascina" -#: src/libslic3r/SLAPrintSteps.cpp:42 +#: src/libslic3r/SLAPrintSteps.cpp:44 msgid "Drilling holes into model." msgstr "Praticare fori nel modello." -#: src/libslic3r/SLAPrintSteps.cpp:163 +#: src/libslic3r/SLAPrintSteps.cpp:199 msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." msgstr "Applicazione dei fori nella mesh non riuscita. Questo solitamente è causato da un modello corrotto. Prova prima a sistemarlo." @@ -2031,11 +2080,11 @@ msgstr "Applicazione dei fori nella mesh non riuscita. Questo solitamente è cau msgid "Drop to bed" msgstr "Poggia sul piano" -#: src/libslic3r/PrintConfig.cpp:3418 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "Duplica" -#: src/libslic3r/PrintConfig.cpp:3423 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "Duplica per griglia" @@ -2043,51 +2092,51 @@ msgstr "Duplica per griglia" msgid "During the other layers, fan" msgstr "Durante gli altri layer, la ventola" -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "Dinamico" -#: src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "Esporta" -#: src/slic3r/GUI/GUI_ObjectList.cpp:345 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "spigoli riparati" -#: src/slic3r/GUI/DoubleSlider.cpp:1480 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "Modifica colore" -#: src/slic3r/GUI/DoubleSlider.cpp:933 +#: src/slic3r/GUI/DoubleSlider.cpp:960 msgid "Edit current color - Right click the colored slider segment" msgstr "Modifica colore attuale - Clic destro sul segmento colorato della barra di scorrimento" -#: src/slic3r/GUI/DoubleSlider.cpp:1482 +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "Modifica G-code personalizzato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "Modifica Intervallo Altezza" -#: src/slic3r/GUI/DoubleSlider.cpp:1481 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "Modifica messaggio pausa di stampa" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 msgid "Edit tick mark - Ctrl + Left click" msgstr "Modifica segno di spunta - Ctrl + Clic Sinistro" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1038 msgid "Edit tick mark - Right click" msgstr "Modifica segno di spunta - Clic destro" -#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "Editing" -#: src/libslic3r/PrintConfig.cpp:375 +#: src/libslic3r/PrintConfig.cpp:118 msgid "Elephant foot compensation" msgstr "Compensazione zampa d'elefante" @@ -2107,12 +2156,12 @@ msgstr "Inserisce M73 P[percent printed] R[remaining time in minutes] ad interva msgid "Empty layers detected, the output would not be printable." msgstr "Rilevati layer vuoti, il file non sarà stampabile." -#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 #: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Abilita" -#: src/libslic3r/PrintConfig.cpp:303 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "Abilita raffreddamento automatico" @@ -2120,7 +2169,7 @@ msgstr "Abilita raffreddamento automatico" msgid "Enable fan if layer print time is below" msgstr "Attiva ventola se la stampa del layer impiega meno di" -#: src/libslic3r/PrintConfig.cpp:2899 +#: src/libslic3r/PrintConfig.cpp:2908 msgid "Enable hollowing" msgstr "Attiva svuotamento" @@ -2148,7 +2197,7 @@ msgstr "Abilita layer ad altezza variabile" msgid "Enable vertical mirroring of output images" msgstr "Attiva mirroring verticale per le immagini di output" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "G-code finale" @@ -2170,39 +2219,39 @@ msgstr "Messo in coda" msgid "Ensure vertical shell thickness" msgstr "Mantieni spessore guscio verticale" -#: src/slic3r/GUI/DoubleSlider.cpp:1590 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "Inserisci il G-code personalizzato da usare al layer corrente" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "Inserisci un nuovo nome" -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "Inserisci un breve messaggio da mostrare sul display della stampante durante la pausa di stampa" - -#: src/slic3r/GUI/DoubleSlider.cpp:1606 +#: src/slic3r/GUI/DoubleSlider.cpp:1634 msgid "Enter short message shown on Printer display when a print is paused" msgstr "Inserisci un breve messaggio da mostrare sul display della stampante quando una stampa è in pausa" -#: src/slic3r/GUI/ConfigWizard.cpp:1048 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Inserisci la temperatura del piano necessaria per l'adesione del filamento al piano riscaldato." -#: src/slic3r/GUI/ConfigWizard.cpp:980 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "Inserisci il diametro del filamento." -#: src/slic3r/GUI/ConfigWizard.cpp:967 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Inserisci il diametro dell'ugello dell'estrusore della stampante." -#: src/slic3r/GUI/DoubleSlider.cpp:1622 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 msgid "Enter the height you want to jump to" msgstr "Inserisci l'altezza a cui si vuole saltare" -#: src/slic3r/GUI/ConfigWizard.cpp:1034 +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "Inserisci il numero di copie:" + +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "Inserisci la temperatura necessaria per estrudere il filamento." @@ -2218,27 +2267,27 @@ msgstr "Inserisci qui la densità del filamento. È solo un'informazione statist msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Inserisci qui il diametro del filamento. È richiesta una buona precisione, pertanto usa un calibro ed esegui misurazioni multiple lungo il filamento, per poi ricavare una media." -#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Errore" #: src/slic3r/GUI/FirmwareDialog.cpp:645 -#, possible-c-format +#, c-format msgid "Error accessing port at %s: %s" msgstr "Errore nell'accedere alla porta a%s: %s" -#: src/slic3r/GUI/Plater.cpp:3441 +#: src/slic3r/GUI/Plater.cpp:3433 msgid "Error during reload" msgstr "Errore durante il ri-caricamento" -#: src/slic3r/GUI/Plater.cpp:5073 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5043 +#, c-format msgid "Error exporting 3MF file %s" msgstr "Errore nell'esportazione del file 3MF %s" -#: src/slic3r/GUI/Plater.cpp:5025 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5005 +#, c-format msgid "Error exporting AMF file %s" msgstr "Errore nell'esportazione del file AMF %s" @@ -2246,7 +2295,7 @@ msgstr "Errore nell'esportazione del file AMF %s" msgid "Error Message" msgstr "Messaggio d'errore" -#: src/slic3r/GUI/AppConfig.cpp:118 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Errore nell'analisi del file config di PrusaSlicer, probabilmente è corrotto. Per risolvere questo problema prova ad eliminare manualmente il file. Il tuoi profili utente non verranno toccati." @@ -2258,7 +2307,7 @@ msgstr "Errore durante il caricamento dell'host di stampa:" msgid "Error with zip archive" msgstr "Errore con archivio zip" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "Errore!" @@ -2267,7 +2316,7 @@ msgid "Error! Invalid model" msgstr "Errore! Modello non valido" #: src/slic3r/GUI/FirmwareDialog.cpp:647 -#, possible-c-format +#, c-format msgid "Error: %s" msgstr "Errore: %s" @@ -2275,12 +2324,12 @@ msgstr "Errore: %s" msgid "ERROR: not enough resources to execute a new job." msgstr "ERRORE: risorse non sufficienti per eseguire un nuovo lavoro." -#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 -#: src/slic3r/GUI/Plater.cpp:1255 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "Tempo di stampa stimato" -#: src/slic3r/GUI/Plater.cpp:499 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "Ovunque" @@ -2292,16 +2341,16 @@ msgstr "ad eccezione dei primi %1% layer." msgid "except for the first layer." msgstr "ad eccezione del primo layer." -#: src/libslic3r/Print.cpp:1373 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "%1% %2% mm eccessivi per essere stampabili con un diametro ugello di %3% mm" #: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 -#, possible-c-format +#, c-format msgid "Exit %s" msgstr "Chiudi %s" -#: src/libslic3r/PrintConfig.cpp:361 +#: src/libslic3r/PrintConfig.cpp:371 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Opzione sperimentale per prevenire la formazione di supporti sotto i bridge." @@ -2313,7 +2362,7 @@ msgstr "Opzione sperimentale per regolare il flusso delle sporgenze (sarà utili msgid "Expert" msgstr "Esperto" -#: src/slic3r/GUI/ConfigWizard.cpp:823 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "Modalità Esperto" @@ -2321,7 +2370,7 @@ msgstr "Modalità Esperto" msgid "Expert View Mode" msgstr "Modalità Visualizzazione Esperto" -#: src/slic3r/GUI/Plater.cpp:5555 +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "Esporta" @@ -2329,7 +2378,7 @@ msgstr "Esporta" msgid "Export &Config" msgstr "Esporta &Configurazione" -#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" msgstr "Esporta &G-code" @@ -2337,7 +2386,7 @@ msgstr "Esporta &G-code" msgid "Export &toolpaths as OBJ" msgstr "Esporta percorso a&ttrezzo come OBJ" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "Esporta 3MF" @@ -2345,15 +2394,15 @@ msgstr "Esporta 3MF" msgid "Export all presets to file" msgstr "Esporta tutti i preset su file" -#: src/libslic3r/PrintConfig.cpp:3328 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "Esporta AMF" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "Esporta file AMF:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "Esporta come STL" @@ -2385,7 +2434,7 @@ msgstr "Esporta il piano corrente come STL" msgid "Export current plate as STL including supports" msgstr "Esporta piano corrente come STL includendo i supporti" -#: src/slic3r/GUI/Plater.cpp:3673 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "Esportazione fallita" @@ -2393,21 +2442,20 @@ msgstr "Esportazione fallita" msgid "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Esporta il percorso completo dei modelli e fonti delle parti nei file 3mf e amf" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 -#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "Esporta G-code" -#: src/libslic3r/PrintConfig.cpp:3305 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "Esporta OBJ" -#: src/slic3r/GUI/Plater.cpp:2594 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "Esporta file OBJ:" -#: src/slic3r/Utils/FixModelByWin10.cpp:369 -#: src/slic3r/Utils/FixModelByWin10.cpp:374 +#: src/slic3r/Utils/FixModelByWin10.cpp:368 msgid "Export of a temporary 3mf file failed" msgstr "L'esportazione di un file 3mf non è riuscita" @@ -2423,43 +2471,43 @@ msgstr "Esporta piano come &STL" msgid "Export plate as STL &including supports" msgstr "Esporta piano come STL &includendo i supporti" -#: src/libslic3r/PrintConfig.cpp:3317 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "Esporta SLA" -#: src/slic3r/GUI/Preferences.cpp:73 +#: src/slic3r/GUI/Preferences.cpp:72 msgid "Export sources full pathnames to 3mf and amf" msgstr "Esporta il percorso completo delle fonti su 3mf e amf" -#: src/libslic3r/PrintConfig.cpp:3333 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "Esporta STL" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "Esporta file STL:" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "Esporta modello/i come 3MF." -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "Esporta il modello(i) come AMF." -#: src/libslic3r/PrintConfig.cpp:3306 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "Esporta il modello(i) come OBJ." -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "Esporta il modello(i) come STL." -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "Esporta l'oggetto selezionato come file STL" -#: src/slic3r/GUI/Plater.cpp:877 +#: src/slic3r/GUI/Plater.cpp:880 msgid "Export to SD card / Flash drive" msgstr "Esporta su scheda SD / memoria Flash" @@ -2467,7 +2515,7 @@ msgstr "Esporta su scheda SD / memoria Flash" msgid "Export toolpaths as OBJ" msgstr "Esporta percorso attrezzo come OBJ" -#: src/libslic3r/Print.cpp:1634 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "Esportando il G-code" @@ -2484,15 +2532,15 @@ msgstr "Esportazione modello sorgente" msgid "Exposition time is out of printer profile bounds." msgstr "Il tempo di esposizione è fuori dai limiti del profilo stampante." -#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "Esposizione" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "Tempo di esposizione" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Perimetro esterno" @@ -2520,23 +2568,23 @@ msgstr "Distanza di caricamento aggiuntiva" msgid "Extra perimeters if needed" msgstr "Perimetro aggiuntivo se necessario" -#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 #: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Estrusore" -#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 -#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 -#: src/libslic3r/GCode/PreviewData.cpp:445 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format msgid "Extruder %d" msgstr "Estrusore %d" -#: src/slic3r/GUI/DoubleSlider.cpp:978 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Estrusore (attrezzo) viene cambiato a Estrusore \"%1%\"" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "Temperature dell'estrusore e del piano" @@ -2544,7 +2592,7 @@ msgstr "Temperature dell'estrusore e del piano" msgid "Extruder changed to" msgstr "Cambia estrusore a" -#: src/slic3r/GUI/Tab.cpp:1235 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "Spazio libero per l'estrusore (mm)" @@ -2564,8 +2612,8 @@ msgstr "Temperatura estrusore per il primo layer. Se vuoi controllare manualment msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Temperatura estrusore per i layer successivi al primo. Imposta questo a zero per disattivare i comandi di controllo temperatura nell'output." -#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 @@ -2580,15 +2628,15 @@ msgstr "Asse estrusore" msgid "Extrusion multiplier" msgstr "Moltiplicatore estrusione" -#: src/slic3r/GUI/ConfigWizard.cpp:1038 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "Temperatura di estrusione:" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "Larghezza estrusione" -#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 #: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 #: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 #: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 @@ -2596,23 +2644,23 @@ msgstr "Larghezza estrusione" msgid "Extrusion Width" msgstr "Larghezza Estrusione" -#: src/slic3r/GUI/Plater.cpp:164 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "Facce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:347 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "aggiunte facce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "rimosse facce" -#: src/slic3r/GUI/GUI_ObjectList.cpp:348 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "facce invertite" -#: src/libslic3r/PrintConfig.cpp:2508 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "Layer sfumati" @@ -2632,11 +2680,11 @@ msgstr "Elaborazione fallita del modello output_filename_format." msgid "Fan" msgstr "Ventola" -#: src/slic3r/GUI/Tab.cpp:1458 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "Impostazioni ventola" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "Velocità ventola" @@ -2656,33 +2704,33 @@ msgstr "Tilt veloce" msgid "Fatal error" msgstr "Errore irreversibile" -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 #: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Tipo di caratteristica" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "Tipi di caratteristica" -#: src/slic3r/GUI/ConfigWizard.cpp:1528 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "Stampanti con tecnologia FFF" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 -#: src/slic3r/GUI/Tab.cpp:1428 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "Filamento" -#: src/slic3r/GUI/Preset.cpp:1472 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "Diametro filamento e ugello" -#: src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "Diametro del filamento:" @@ -2698,7 +2746,7 @@ msgstr "Durata caricamento filamento" msgid "Filament notes" msgstr "Note filamento" -#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "Sovrascrittura filamento" @@ -2706,15 +2754,15 @@ msgstr "Sovrascrittura filamento" msgid "Filament parking position" msgstr "Posizione di parcheggio del filamento" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "Selezione Profili Filamento" -#: src/slic3r/GUI/Tab.cpp:1473 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "Proprietà filamento" -#: src/slic3r/GUI/Tab.hpp:354 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "Impostazioni Filamento" @@ -2730,7 +2778,7 @@ msgstr "Durata scaricamento filamento" msgid "filaments" msgstr "filamenti" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "Filamenti" @@ -2742,7 +2790,7 @@ msgstr "chiusura del file fallita" msgid "file create failed" msgstr "generazione del file non riuscita" -#: src/slic3r/GUI/MainFrame.cpp:793 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "file non trovato" @@ -2806,7 +2854,7 @@ msgstr "Trama per riempimento superiore. Questo influenza solamente il layer sup msgid "Finished" msgstr "Finito" -#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "Firmware" @@ -2818,11 +2866,11 @@ msgstr "Firmware flasher" msgid "Firmware image:" msgstr "Immagine firmware:" -#: src/slic3r/GUI/Tab.cpp:2573 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "Retrazione Firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:892 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "Tipo Firmware" @@ -2835,7 +2883,7 @@ msgstr "Primo layer" msgid "First layer height" msgstr "Altezza del primo layer" -#: src/libslic3r/Print.cpp:1418 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "L'altezza del primo layer non può essere più grande del diametro dell'ugello" @@ -2847,11 +2895,11 @@ msgstr "Velocità del primo layer" msgid "First layer volumetric" msgstr "Volumetrica primo layer" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "Ripara tramite Netfabb" -#: src/slic3r/GUI/Plater.cpp:3482 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "Ripara tramite NetFabb" @@ -2883,7 +2931,7 @@ msgstr "Flash in corso. Non disconnettere la stampante!" msgid "Flashing succeeded!" msgstr "Flash completato con successo!" -#: src/slic3r/GUI/Tab.cpp:1220 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "Flusso" @@ -2891,48 +2939,34 @@ msgstr "Flusso" msgid "flow rate is maximized" msgstr "il flusso viene massimizzato" -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "Per aggiungere un altro codice usa il tasto destro del mouse" - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "Per aggiungere un cambio estrusore usa il tasto sinistro del mouse" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "Per aggiungere un cambio colore usa il tasto sinistro del mouse" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" -msgstr "Per Eliminare il codice \"%1%\" usa il tasto sinistro del mouse\nPer Modificare il codice \"%1%\" usa il tasto destro del mouse" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" -msgstr "Per Eliminare il cambio colore usa il tasto sinistro del mouse\nPer Modificare il colore usa il tasto destro del mouse" - #: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Per maggiori informazioni visita la nostra pagina wiki:" -#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "Solo per rinforzi supporto" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3249 -msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." -msgstr "per il tasto sinistro: indica un preset non di sistema (o non-predefinito),\nper il tasto destro: indica che le impostazioni non sono state modificate." +#: src/slic3r/GUI/Tab.cpp:3265 +msgid "" +"for the left button: \tindicates a non-system (or non-default) preset,\n" +"for the right button: \tindicates that the settings hasn't been modified." +msgstr "" +"per il tasto sinistro: indica un preset non di sistema (o non-predefinito),\n" +"per il tasto destro: indica che le impostazioni non sono state modificate." #: src/slic3r/GUI/ConfigManipulation.cpp:136 -msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." +msgid "" +"For the Wipe Tower to work with the soluble supports, the support layers\n" +"need to be synchronized with the object layers." msgstr "Per far sì che la torre di spurgo funzioni con i supporti solubili, i layer dei supporti devono essere sincronizzati con quelli del modello." -#: src/libslic3r/Print.cpp:1392 +#: src/libslic3r/Print.cpp:1396 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Per far sì che la torre di spurgo funzioni con i supporti solubili, i layer dei supporti devono essere sincronizzati con quelli del modello." -#: src/libslic3r/PrintConfig.cpp:2855 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "Forza il Pad ovunque intorno all'oggetto" @@ -2948,7 +2982,7 @@ msgstr "Forza la generazione di perimetri solidi tra volumi o materiali adiacent msgid "From" msgstr "Da" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "Non è possibile eliminare l'ultima parte solida dall'oggetto nell'elenco Oggetti." @@ -2960,19 +2994,23 @@ msgstr "Frontale" msgid "Front View" msgstr "Vista anteriore" -#: src/slic3r/GUI/Tab.cpp:1015 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "nome completo profilo" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/DoubleSlider.cpp:987 -msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." -msgstr "Il G-code associato a questo segno di spunta è in conflitto con la modalità di stampa.\nLa modifica causerà cambiamenti nei dati della barra di scorrimento." +#: src/slic3r/GUI/DoubleSlider.cpp:1021 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"Il G-code associato a questo segno di spunta è in conflitto con la modalità di stampa.\n" +"La modifica causerà cambiamenti nei dati della barra di scorrimento." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "G-code esportato in %1%" @@ -2984,17 +3022,17 @@ msgstr "Formato G-code" msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2496 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 #: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Riempimento spazi" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 -#: src/slic3r/GUI/Tab.cpp:2038 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "Generale" @@ -3010,23 +3048,23 @@ msgstr "Genera materiale di supporto" msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Genera materiale di supporto per il numero di layer specificati partendo dal basso, a prescindere che sia abilitato il materiale di supporto normale o meno, e indipendentemente dall'angolo limite. Questo è utile per ottenere più adesione negli oggetti con un appoggio sul piano molto sottile o fragile." -#: src/libslic3r/PrintConfig.cpp:2604 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "Genera supporti" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "Genera supporti per i modelli" -#: src/libslic3r/Print.cpp:1610 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "Generazione brim" -#: src/libslic3r/Print.cpp:1638 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "Generazione G-code" -#: src/libslic3r/SLAPrintSteps.cpp:46 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "Generazione pad" @@ -3034,7 +3072,7 @@ msgstr "Generazione pad" msgid "Generating perimeters" msgstr "Generazione perimetri" -#: src/libslic3r/Print.cpp:1602 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "Generando skirt" @@ -3042,35 +3080,35 @@ msgstr "Generando skirt" msgid "Generating support material" msgstr "Generazione materiale di supporto" -#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "Generazione punti di supporto" -#: src/libslic3r/SLAPrintSteps.cpp:45 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "Generazione albero di supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "Generico" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 msgid "Gizmo cut" msgstr "Gizmo Taglia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 msgid "Gizmo move" msgstr "Gizmo Sposta" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 msgid "Gizmo Place face on bed" msgstr "Gizmo Posiziona faccia sul piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 msgid "Gizmo rotate" msgstr "Gizmo Ruota" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 msgid "Gizmo scale" msgstr "Gizmo Ridimensiona" @@ -3078,25 +3116,25 @@ msgstr "Gizmo Ridimensiona" msgid "Gizmo SLA hollow" msgstr "Gizmo SLA Svuota" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 msgid "Gizmo SLA support points" msgstr "Gizmo Punti supporto SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:2945 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "Gizmo-Sposta" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "Gizmo-Posiziona sulla faccia" -#: src/slic3r/GUI/GLCanvas3D.cpp:3025 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "Gizmo-Ruota" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "Gizmo-Ridimensiona" @@ -3108,7 +3146,7 @@ msgstr "Gizmo" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versione 3" -#: src/slic3r/GUI/ConfigWizard.cpp:981 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "È necessaria una buona precisione, quindi utilizza un calibro ed effettua diverse misurazioni lungo il filamento, quindi calcola la media." @@ -3116,11 +3154,11 @@ msgstr "È necessaria una buona precisione, quindi utilizza un calibro ed effett msgid "Grid" msgstr "Griglia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "Manipolazione gruppo" -#: src/slic3r/GUI/Preferences.cpp:137 +#: src/slic3r/GUI/Preferences.cpp:133 msgid "GUI" msgstr "GUI" @@ -3128,7 +3166,7 @@ msgstr "GUI" msgid "Gyroid" msgstr "Giroide" -#: src/slic3r/GUI/Tab.cpp:2921 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "ha le seguenti modifiche non salvate:" @@ -3144,7 +3182,7 @@ msgstr "L'inserimento della capocchia non deve essere più grande della sua larg msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura piano riscaldato per il primo layer. Imposta a zero per disattivare i comandi di controllo temperatura nell'output." -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Altezza" @@ -3160,32 +3198,32 @@ msgstr "Altezza dello skirt espresso in layer. Imposta un valore alto per utiliz msgid "Height of the display" msgstr "Altezza del display" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "Modificatore intervallo Altezza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "Intervalli Altezza" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "Altezze alle quali i cambi di filamento devono avvenire." #: src/slic3r/GUI/ConfigWizard.cpp:433 -#, possible-c-format +#, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Ciao, benvenuto su %s! La %s ti aiuterà con la configurazione iniziale; giusto qualche impostazione e sarai pronto a stampare." -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "Aiuto" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "Aiuto (opzioni FFF)" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "Aiuto (opzioni SLA)" @@ -3197,7 +3235,7 @@ msgstr "Qui è possibile regolare il volume di spurgo necessario (mm³) per ogni msgid "High extruder current on filament swap" msgstr "Alta corrente estrusore al cambio filamento" -#: src/slic3r/GUI/GLCanvas3D.cpp:282 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 msgid "Higher print quality versus higher print speed." msgstr "Qualità di stampa più alta contro velocità di stampa più alta." @@ -3205,7 +3243,7 @@ msgstr "Qualità di stampa più alta contro velocità di stampa più alta." msgid "Hilbert Curve" msgstr "Curva di Hilbert" -#: src/slic3r/GUI/Plater.cpp:1039 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "Tieni premuto Shift per fare lo Slice & Esportare il G-code" @@ -3217,15 +3255,15 @@ msgstr "Profondità foro" msgid "Hole diameter" msgstr "Diametro foro" -#: src/slic3r/GUI/Plater.cpp:2744 +#: src/slic3r/GUI/Plater.cpp:2760 msgid "Hollow" msgstr "Svuota" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 msgid "Hollow and drill" msgstr "Svuota e perfora" -#: src/libslic3r/PrintConfig.cpp:2901 +#: src/libslic3r/PrintConfig.cpp:2910 msgid "Hollow out a model to have an empty interior" msgstr "Svuota un modello per avere l'interno vuoto" @@ -3233,60 +3271,48 @@ msgstr "Svuota un modello per avere l'interno vuoto" msgid "Hollow this object" msgstr "Svuota questo oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 -#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 -#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 -#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 -#: src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 msgid "Hollowing" msgstr "Svuotamento" -#: src/libslic3r/PrintConfig.cpp:2916 -msgid "Hollowing accuracy" -msgstr "Precisione" - -#: src/slic3r/GUI/Plater.cpp:2910 +#: src/slic3r/GUI/Plater.cpp:2926 msgid "Hollowing cancelled." msgstr "Svuotamento annullato." -#: src/libslic3r/PrintConfig.cpp:2925 -msgid "Hollowing closing distance" -msgstr "Distanza di chiusura" - -#: src/slic3r/GUI/Plater.cpp:2911 +#: src/slic3r/GUI/Plater.cpp:2927 msgid "Hollowing done." msgstr "Svuotamento completato." -#: src/slic3r/GUI/Plater.cpp:2913 +#: src/slic3r/GUI/Plater.cpp:2929 msgid "Hollowing failed." msgstr "Svuotamento non riuscito." -#: src/libslic3r/PrintConfig.cpp:2928 +#: src/libslic3r/PrintConfig.cpp:2937 msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." msgstr "Lo svuotamento avviene in due passaggi: prima, viene calcolato un interno immaginario (offset più la distanza di chiusura) nell'oggetto e viene quindi riportato all'offset specificato. Una distanza di chiusura più grande rende l'interno più arrotondato. A zero, l'interno sarà più somigliante all'esterno." -#: src/libslic3r/SLAPrintSteps.cpp:41 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Hollowing model" msgstr "Svuotamento modello" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 msgid "Hollowing parameter change" msgstr "Cambio parametro svuotamento" -#: src/libslic3r/PrintConfig.cpp:2906 -msgid "Hollowing thickness" -msgstr "Spessore parete" - #: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Nido d'ape" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "Gusci orizzontali" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:245 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Larghezza orizzontale del brim che sarà stampata attorno ad ogni oggetto nel primo layer." @@ -3306,23 +3332,25 @@ msgstr "Nome Host" msgid "Hostname, IP or URL" msgstr "Nome Host, IP o URL" -#: src/slic3r/GUI/Tab.cpp:141 -msgid "Hover the cursor over buttons to find more information \nor click this button." +#: src/slic3r/GUI/Tab.cpp:139 +msgid "" +"Hover the cursor over buttons to find more information \n" +"or click this button." msgstr "Scorri il cursore sui bottoni per ottenere maggiori informazioni o clicca su questo bottone." -#: src/libslic3r/PrintConfig.cpp:2803 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "Quanto deve estendersi il Pad attorno la geometria contenuta" -#: src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Quanto devono penetrare i piccoli connettori nel corpo del modello." -#: src/libslic3r/PrintConfig.cpp:2622 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "Quanto deve penetrare l'apice nella superficie del modello" -#: src/libslic3r/PrintConfig.cpp:2746 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Quanto deve sollevarsi il supporto fino all'oggetto supportato. Se \"Pad intorno all'oggetto\" è attivo, questo valore è ignorato." @@ -3334,12 +3362,18 @@ msgstr "File HTTPS CA" msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "File HTTPS CA opzionale. È necessario solo se si intende usare un HTTPS con certificato autofirmato." -#: src/slic3r/GUI/Tab.cpp:1755 -#, possible-c-format -msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "File HTTPS CA:\nSu questo sistema, %s utilizza certificati HTTPS provenienti dal sistema Certificate Store o da Keychain.\nPer utilizzare un file CA personalizzato, importa il tuo file CA sul Certificate Store / Keychain." +#: src/slic3r/GUI/Tab.cpp:1757 +#, c-format +msgid "" +"HTTPS CA File:\n" +" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" +" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "" +"File HTTPS CA:\n" +"Su questo sistema, %s utilizza certificati HTTPS provenienti dal sistema Certificate Store o da Keychain.\n" +"Per utilizzare un file CA personalizzato, importa il tuo file CA sul Certificate Store / Keychain." -#: src/slic3r/GUI/Preferences.cpp:226 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "Dimensioni icona rispetto alla dimensione predefinita" @@ -3351,13 +3385,13 @@ msgstr "ID" msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Se attivo, verranno automaticamente generati i supporti in base al valore soglia di sporgenza. Se disattivato, i supporti verranno generati solamente all'interno dei volumi di \"Rinforzo Supporto\"." -#: src/slic3r/GUI/ConfigWizard.cpp:772 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:773 +#, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Se attivato, %s verifica la presenza di nuove versioni online. Quando è disponibile una nuova versione, viene mostrata una notifica al successivo avvio dell'applicazione (mai durante l'uso del programma). È solo un meccanismo di notifica, non viene effettuato nessun aggiornamento automatico." -#: src/slic3r/GUI/ConfigWizard.cpp:782 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:783 +#, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Se attivo, %s scarica in background gli aggiornamenti dei preset integrati nel sistema. Questi aggiornamenti vengono scaricati in una cartella temporanea separata. Quando è disponibile una nuova versione del preset, questa viene proposta all'avvio." @@ -3366,10 +3400,14 @@ msgid "If enabled, all printing extruders will be primed at the front edge of th msgstr "Se attivata, tutti gli estrusori di stampa verranno preparati nel bordo frontale del piano di stampa all'inizio della stampa." #: src/slic3r/GUI/ConfigWizard.cpp:805 -msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." -msgstr "Se attivo, permette al comando di Ricarica da disco di trovare e caricare automaticamente i file quando richiesti.\nSe non attivo, il comando Ricarica da disco chiederà di selezionare ciascun file tramite finestra di apertura file." +msgid "" +"If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "" +"Se attivo, permette al comando di Ricarica da disco di trovare e caricare automaticamente i file quando richiesti.\n" +"Se non attivo, il comando Ricarica da disco chiederà di selezionare ciascun file tramite finestra di apertura file." -#: src/slic3r/GUI/Preferences.cpp:75 +#: src/slic3r/GUI/Preferences.cpp:74 msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." msgstr "Se attivo, permette il comando Ricarica da disco per trovare e caricare automaticamente i file quando richiesto." @@ -3377,11 +3415,11 @@ msgstr "Se attivo, permette il comando Ricarica da disco per trovare e caricare msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Se attivato, PrusaSlicer verifica la presenza di nuove versioni online. Quando una nuova versione è disponibile, viene mostrata una notifica al successivo avvio dell'applicazione (mai durante l'uso del programma). Questo è solo un meccanismo di notifica, non viene effettuato nessun aggiornamento automatico." -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Se abilitato, Slic3r scarica gli aggiornamenti dei preset inclusi in background. Questi aggiornamenti sono scaricati in una posizione temporanea. Quando una nuova versione dei preset diventa disponibile, viene offerta all'avvio." -#: src/slic3r/GUI/Preferences.cpp:108 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Se attivo, la scena 3D verrà renderizzata con la risoluzione Retina. Se si riscontrano problemi di prestazioni 3D, disattivare questa opzione potrebbe essere d'aiuto." @@ -3389,15 +3427,15 @@ msgstr "Se attivo, la scena 3D verrà renderizzata con la risoluzione Retina. Se msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Se attiva, la torre di spurgo non verrà stampata sui layer con cambio attrezzo. Sui layer con un cambio attrezzo, l'estrusore si sposterà verso il basso per stampare la torre di spurgo. L'utente è responsabile nell'accertarsi che non avvengano collisioni durante la stampa." -#: src/slic3r/GUI/Preferences.cpp:131 +#: src/slic3r/GUI/Preferences.cpp:128 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Se attivo, usa la visuale libera. Se non attivo, usa la visuale vincolata." -#: src/slic3r/GUI/Preferences.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Se attivo, usa la visuale in prospettiva. Se non attivo, usa la visuale ortografica." -#: src/slic3r/GUI/Preferences.cpp:149 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Se attivo, è possibile modificare manualmente la dimensione delle icone degli strumenti." @@ -3461,7 +3499,7 @@ msgstr "Se il firmware non gestisce lo spostamento dell'estrusore, è necessari msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Se il firmware richiede valori E relativi, selezionalo, altrimenti mantienilo deselezionato. Molti firmware utilizzano valori assoluti." -#: src/libslic3r/PrintConfig.cpp:3470 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "Ignora file di configurazione non esistenti" @@ -3481,15 +3519,15 @@ msgstr "Importa Configurazione da &progetto" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importa Config da ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:4616 +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "Importa Oggetto" -#: src/slic3r/GUI/Plater.cpp:4620 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "Importa Oggetti" -#: src/slic3r/Utils/FixModelByWin10.cpp:390 +#: src/slic3r/Utils/FixModelByWin10.cpp:383 msgid "Import of the repaired 3mf file failed" msgstr "Importazione del file 3mf riparato non riuscita" @@ -3497,16 +3535,12 @@ msgstr "Importazione del file 3mf riparato non riuscita" msgid "Import STL/OBJ/AM&F/3MF" msgstr "Importa STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "Importa STL/OBJ/AMF/3MF senza configurazione, mantieni il piano" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Importa STL/OBJ/AMF/3MF senza configurazione, mantieni piano" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 +#, c-format msgid "In this mode you can select only other %s Items%s" msgstr "In questa modalità puoi selezionare solo altri %s oggetti %s" @@ -3515,42 +3549,50 @@ msgid "Incompatible bundles:" msgstr "Gruppi incompatibili:" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -#, possible-c-format +#, c-format msgid "Incompatible with this %s" msgstr "Incompatibile con questo %s" -#: src/slic3r/GUI/Plater.cpp:4700 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" msgstr "Aumenta Istanze" -#: src/slic3r/GUI/GLCanvas3D.cpp:269 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "Aumenta/diminuisci l'area di modifica" -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2922 msgid "Indexing hollowed object" msgstr "Indicizzazione di un oggetto svuotato" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 -msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "indica che è stata modificata qualche impostazione e non è uguale ai valori di sistema (o predefiniti) del corrente gruppo di opzioni.\nClicca l'icona LUCCHETTO APERTO per reimpostare tutte le impostazioni del corrente gruppo di opzioni ai valori di sistema (o predefiniti)." +#: src/slic3r/GUI/Tab.cpp:3258 +msgid "" +"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "" +"indica che è stata modificata qualche impostazione e non è uguale ai valori di sistema (o predefiniti) del corrente gruppo di opzioni.\n" +"Clicca l'icona LUCCHETTO APERTO per reimpostare tutte le impostazioni del corrente gruppo di opzioni ai valori di sistema (o predefiniti)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "indica che le impostazioni sono uguali ai valori di sistema (o predefiniti) per l'attuale gruppo di opzioni" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3254 -msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." -msgstr "indica che le impostazioni sono state modificate e non corrispondono all'ultimo preset salvato per l'attuale gruppo opzioni.\nClicca l'icona FRECCIA INDIETRO per reimpostare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni." +#: src/slic3r/GUI/Tab.cpp:3270 +msgid "" +"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +msgstr "" +"indica che le impostazioni sono state modificate e non corrispondono all'ultimo preset salvato per l'attuale gruppo opzioni.\n" +"Clicca l'icona FRECCIA INDIETRO per reimpostare all'ultimo preset salvato tutte le impostazioni per il seguente gruppo di opzioni." #: src/slic3r/GUI/ConfigManipulation.cpp:211 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 -#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 -#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 #: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 @@ -3576,12 +3618,12 @@ msgstr "Estrusore riempimento" msgid "Infill/perimeters overlap" msgstr "Sovrapposizione riempimento/perimetri" -#: src/libslic3r/Print.cpp:1580 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "Layer di riempimento" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "Info" @@ -3593,15 +3635,15 @@ msgstr "Eredita profilo" msgid "Initial exposition time is out of printer profile bounds." msgstr "Il tempo di esposizione iniziale è fuori dai limiti del profilo stampante." -#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "Tempo di esposizione iniziale" -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "Altezza layer iniziale" -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "Valore input fuori portata" @@ -3611,11 +3653,11 @@ msgstr "Ispeziona / attiva istantanee di configurazione" #: src/slic3r/GUI/ObjectDataViewModel.cpp:60 #: src/slic3r/GUI/ObjectDataViewModel.cpp:216 -#, possible-c-format +#, c-format msgid "Instance %d" msgstr "Istanza %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "Manipolazione istanza" @@ -3623,8 +3665,8 @@ msgstr "Manipolazione istanza" msgid "Instances" msgstr "Istanze" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "Istanze in Oggetti Separati" @@ -3648,11 +3690,11 @@ msgstr "Gusci interfaccia" msgid "internal error" msgstr "errore interno" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Riempimento interno" -#: src/slic3r/GUI/Plater.cpp:3090 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "Dati non validi" @@ -3673,7 +3715,7 @@ msgstr "Inserimento Capocchia non valido" msgid "invalid header or archive is corrupted" msgstr "titolo non valido o archivio corrotto" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Input numerico non valido." @@ -3691,15 +3733,11 @@ msgstr "Diametro apice non valido" msgid "is licensed under the" msgstr "è concesso in licenza ai sensi" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Is necessary to install a configuration update. " -msgstr "È necessario installare un aggiornamento della configurazione." - -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "non è compatibile con il profilo di stampa" -#: src/slic3r/GUI/Tab.cpp:2924 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "non è compatibile con la stampante" @@ -3711,11 +3749,11 @@ msgstr "Iso" msgid "Iso View" msgstr "Vista isometrica" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "Non può essere eliminato o modificato." -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "It is not allowed to change the file to reload" msgstr "Non è permesso modificare il file da ricaricare" @@ -3723,11 +3761,11 @@ msgstr "Non è permesso modificare il file da ricaricare" msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Potrebbe essere utile aumentare la corrente del motore estrusore durante la sequenza di cambio filamento per permettere un avanzamento rapido del ramming e per superare la resistenza durante il caricamento di un filamento con una punta deformata." -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Non è possibile stampare oggetti multi-parte con tecnologia SLA." -#: src/slic3r/GUI/Tab.cpp:2225 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "Limiti Jerk" @@ -3735,13 +3773,13 @@ msgstr "Limiti Jerk" msgid "Jitter" msgstr "Jitter" -#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 -#: src/slic3r/GUI/DoubleSlider.cpp:1623 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 msgid "Jump to height" msgstr "Salta all'altezza" -#: src/slic3r/GUI/DoubleSlider.cpp:928 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:955 +#, c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "Salta all'altezza %s o Imposta sequenza estrusore per l'intera stampa" @@ -3753,7 +3791,7 @@ msgstr "Mantieni la ventola sempre accesa" msgid "Keep lower part" msgstr "Mantieni parte inferiore" -#: src/slic3r/GUI/GLCanvas3D.cpp:309 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "Mantieni min" @@ -3761,7 +3799,7 @@ msgstr "Mantieni min" msgid "Keep upper part" msgstr "Mantieni parte superiore" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "Scorciatoie Tastiera" @@ -3769,7 +3807,7 @@ msgstr "Scorciatoie Tastiera" msgid "Keyboard shortcuts" msgstr "Scorciatoie tastiera" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" @@ -3789,57 +3827,57 @@ msgstr "Lingua" msgid "Language selection" msgstr "Selezione lingua" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "Non è possibile eliminare l'ultima istanza di un oggetto." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "Layer" #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Altezza layer" -#: src/libslic3r/Print.cpp:1423 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "L'altezza layer non può essere più grande del diametro dell'ugello" -#: src/slic3r/GUI/Tab.cpp:2358 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "Limiti altezza layer" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "Altezza layer:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "Impostazioni da modificare in Intervallo Layer" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 #: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 #: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 #: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "layer" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 -#: src/slic3r/GUI/Tab.cpp:3585 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "Layer" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "Layer e perimetri" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 -#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 #: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 @@ -3853,16 +3891,12 @@ msgstr "Layer e Perimetri" msgid "Layers Slider" msgstr "Barra di scorrimento Layer" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 -msgid "Layers Slider Shortcuts" -msgstr "Scorciatoie Scorrimento Layer" - -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" msgstr "Inferiore" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" msgstr "Superiore" @@ -3871,13 +3905,13 @@ msgstr "Superiore" msgid "Left" msgstr "Sinistra" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "Click sinistro" -#: src/slic3r/GUI/GLCanvas3D.cpp:242 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "Tasto sinistro mouse:" @@ -3885,7 +3919,7 @@ msgstr "Tasto sinistro mouse:" msgid "Left View" msgstr "Vista sinistra" -#: src/slic3r/GUI/GUI_Preview.cpp:259 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "Legenda" @@ -3893,7 +3927,7 @@ msgstr "Legenda" msgid "Length" msgstr "Lunghezza" -#: src/libslic3r/PrintConfig.cpp:318 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Lunghezza del tubo di raffreddamento per limitare lo spazio delle mosse di raffreddamento al suo interno." @@ -3910,7 +3944,7 @@ msgstr "Solleva Z" msgid "Line" msgstr "Linea" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "Carica" @@ -3918,22 +3952,14 @@ msgstr "Carica" msgid "Load a model" msgstr "Carica modello" -#: src/libslic3r/PrintConfig.cpp:3490 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Carica e archivia le impostazione in una data cartella. Questo è utile per mantenere diversi profili o aggiungere configurazioni da un archivio di rete." -#: src/libslic3r/PrintConfig.cpp:3474 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "Carica file di configurazione" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "Carica Config da .ini/amf/3mf/gcode" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "Carica Config da .ini/amf/3mf/gcode ed unisci" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Carica Config da ini/amf/3mf/gcode e unisci" @@ -3942,7 +3968,7 @@ msgstr "Carica Config da ini/amf/3mf/gcode e unisci" msgid "Load configuration from project file" msgstr "Carica configurazione dal file di progetto" -#: src/libslic3r/PrintConfig.cpp:3475 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Carica configurazione dal file specificato. Può essere usato più di una volta per caricare opzioni da vari file." @@ -3950,15 +3976,15 @@ msgstr "Carica configurazione dal file specificato. Può essere usato più di un msgid "Load exported configuration file" msgstr "Carica un file di configurazione esportato" -#: src/slic3r/GUI/Plater.cpp:1375 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "Carica file" -#: src/slic3r/GUI/Plater.cpp:1379 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "Carica file" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "Carica Parte" @@ -3966,7 +3992,7 @@ msgstr "Carica Parte" msgid "Load presets from a bundle" msgstr "Carica i preset da un gruppo" -#: src/slic3r/GUI/Plater.cpp:4588 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "Carica Progetto" @@ -3982,11 +4008,11 @@ msgstr "Caricamento..." msgid "loaded" msgstr "caricato" -#: src/slic3r/GUI/Plater.cpp:2410 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "Caricato" -#: src/slic3r/GUI/Plater.cpp:2257 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "Caricamento" @@ -3999,7 +4025,7 @@ msgid "Loading of current presets" msgstr "Caricamento dei preset correnti" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:378 msgid "Loading repaired model" msgstr "Caricamento modello riparato" @@ -4020,19 +4046,19 @@ msgstr "Coordinate locali" msgid "Lock supports under new islands" msgstr "Fissa i supporti sotto le nuove isole" -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "LUCCHETTO CHIUSO" -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "L'icona LUCCHETTO CHIUSO indica che le impostazioni corrispondono ai valori di sistema (o predefiniti) per il seguente gruppo di opzioni" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "L'icona LUCCHETTO CHIUSO indica che il valore è uguale a quello di sistema (o predefinito)." -#: src/libslic3r/PrintConfig.cpp:3493 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "Livello di logging" @@ -4040,12 +4066,12 @@ msgstr "Livello di logging" msgid "Loops (minimum)" msgstr "Giri (minimo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 msgid "Lower Layer" msgstr "Layer Inferiore" -#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -4053,11 +4079,7 @@ msgstr "Layer Inferiore" msgid "Machine limits" msgstr "Limiti macchina" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "Collegamenti Principali" - -#: src/slic3r/GUI/Plater.cpp:168 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "Manifold" @@ -4065,23 +4087,23 @@ msgstr "Manifold" msgid "Manual editing" msgstr "Editing manuale" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "File SLA mascherato esportato su %1%" -#: src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "Scheda Impostazioni Mate&riale" -#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "Materiale" -#: src/slic3r/GUI/Tab.hpp:415 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "Impostazioni Materiali" -#: src/slic3r/GUI/Plater.cpp:165 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "Materiali" @@ -4089,15 +4111,15 @@ msgstr "Materiali" msgid "Max" msgstr "Massimo" -#: src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "Lunghezza massima Bridge" -#: src/libslic3r/PrintConfig.cpp:2813 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "Massima distanza di unione" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "Distanza massima collegamento pilastri" @@ -4181,11 +4203,11 @@ msgstr "Accelerazione massima Y" msgid "Maximum acceleration Z" msgstr "Accelerazione massima Z" -#: src/slic3r/GUI/Tab.cpp:2218 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "Accelerazioni massime" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "Tempo massimo di esposizione" @@ -4221,11 +4243,11 @@ msgstr "Avanzamento massimo Y" msgid "Maximum feedrate Z" msgstr "Avanzamento massimo Z" -#: src/slic3r/GUI/Tab.cpp:2213 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "Avanzamenti massimi" -#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "Tempo massimo di esposizione iniziale" @@ -4265,15 +4287,15 @@ msgstr "Jerk massimo Z" msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Massima velocità volumetrica consentita per questo filamento. Limita la velocità volumetrica massima di una stampa alla velocità volumetrica minima del filamento e di stampa. Imposta a zero per non avere limite." -#: src/libslic3r/PrintConfig.cpp:3427 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "Unisci" -#: src/libslic3r/PrintConfig.cpp:2674 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "L'unione di bridge o pilastri con altri pilastri può aumentarne il raggio. Zero significa nessun incremento, uno significa incremento pieno." -#: src/libslic3r/SLAPrintSteps.cpp:62 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "Unendo gli slice e calcolando le statistiche" @@ -4281,14 +4303,10 @@ msgstr "Unendo gli slice e calcolando le statistiche" msgid "Mesh repair failed." msgstr "Riparazione mesh fallita." -#: src/slic3r/GUI/DoubleSlider.cpp:1607 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "Messaggio per pausa stampa al corrente layer (%1% mm)." -#: src/libslic3r/PrintConfig.cpp:3120 -msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -msgstr "Messaggi con severità inferiore o uguale al loglevel saranno stampati. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" - #: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Minimo" @@ -4301,7 +4319,7 @@ msgstr "Velocità minima di stampa" msgid "min PrusaSlicer version" msgstr "versione PrusaSlicer minima" -#: src/libslic3r/PrintConfig.cpp:2763 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "Distanza minima dei punti di supporto" @@ -4317,11 +4335,11 @@ msgstr "Distanza minima punti" msgid "Minimal purge on wipe tower" msgstr "Spurgo minimo sulla torre di spurgo" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:187 msgid "Minimum bottom shell thickness" msgstr "Spessore minimo guscio inferiore" -#: src/slic3r/GUI/PresetHints.cpp:335 +#: src/slic3r/GUI/PresetHints.cpp:339 msgid "Minimum bottom shell thickness is %1% mm." msgstr "Spessore minimo guscio inferiore è %1% mm." @@ -4329,7 +4347,7 @@ msgstr "Spessore minimo guscio inferiore è %1% mm." msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Risoluzione minima dettaglio, utilizzato per semplificare il file input accelerando lo slicing e riducendo l'utilizzo di memoria. I file ad alta risoluzione spesso hanno più dettaglio di quanto la stampante possa generare. Impostate a zero per disabilitare la semplificazione e utilizzare la risoluzione completa." -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "Tempo minimo di esposizione" @@ -4341,15 +4359,15 @@ msgstr "Avanzamento minimo durante estrusione" msgid "Minimum feedrate when extruding (M205 S)" msgstr "Avanzamento minimo durante estrusione (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2230 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "Avanzamento minimo" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "Tempo minimo di esposizione iniziale" -#: src/slic3r/GUI/Tab.cpp:1071 +#: src/slic3r/GUI/Tab.cpp:1069 msgid "Minimum shell thickness" msgstr "Spessore minimo guscio" @@ -4361,7 +4379,7 @@ msgstr "Spessore minimo guscio superiore / inferiore" msgid "Minimum top shell thickness" msgstr "Spessore minimo guscio superiore" -#: src/slic3r/GUI/PresetHints.cpp:316 +#: src/slic3r/GUI/PresetHints.cpp:320 msgid "Minimum top shell thickness is %1% mm." msgstr "Spessore minimo guscio superiore è %1% mm." @@ -4377,15 +4395,15 @@ msgstr "Avanzamento minimo di spostamento" msgid "Minimum travel feedrate (M205 T)" msgstr "Avanzamento minimo di spostamento (M205 T)" -#: src/libslic3r/PrintConfig.cpp:2908 +#: src/libslic3r/PrintConfig.cpp:2917 msgid "Minimum wall thickness of a hollowed model." msgstr "Spessore minimo parete di un modello svuotato." #: src/libslic3r/PrintConfig.cpp:2449 msgid "Minimum width of features to maintain when doing elephant foot compensation." -msgstr "Larghezza minima della funzione da mantenere durante la compensazione della zampa d'elefante" +msgstr "Larghezza minima della funzione da mantenere durante la compensazione della zampa d'elefante." -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "Specchia" @@ -4393,23 +4411,23 @@ msgstr "Specchia" msgid "Mirror horizontally" msgstr "Specchia orizzontalmente" -#: src/slic3r/GUI/GLCanvas3D.cpp:2075 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "Specchia Oggetto" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "Specchia l'oggetto selezionato" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "Specchia l'oggetto selezionato sull'asse X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "Specchia l'oggetto selezionato sull'asse y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "Specchia l'oggetto selezionato sull'asse Z" @@ -4418,7 +4436,7 @@ msgid "Mirror vertically" msgstr "Specchia verticalmente" #: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 -#, possible-c-format +#, c-format msgid "Mismatched type of print host: %s" msgstr "Tipo di Host di stampa non corrispondente: %s" @@ -4426,21 +4444,21 @@ msgstr "Tipo di Host di stampa non corrispondente: %s" msgid "Mixed" msgstr "Mischiate" -#: src/libslic3r/PrintConfig.cpp:2482 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" #: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 #: src/slic3r/GUI/ObjectDataViewModel.cpp:94 #: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 #: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 -#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 -#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 -#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 #: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 #: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 #: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 @@ -4455,17 +4473,18 @@ msgstr "ml" #: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 #: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 #: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 -#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 #: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 -#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 -#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 -#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 -#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 -#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 -#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 -#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" @@ -4482,7 +4501,7 @@ msgstr "mm (imposta a zero per disabilitare)" msgid "mm or %" msgstr "mm o %" -#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 #: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 #: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 #: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 @@ -4501,7 +4520,7 @@ msgstr "mm/s" msgid "mm/s or %" msgstr "mm/s o %" -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 #: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 #: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 #: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 @@ -4527,7 +4546,7 @@ msgstr "mm³/s²" #: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" -msgstr "Modalità" +msgstr "&Modalità" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" @@ -4541,24 +4560,24 @@ msgstr "Modello" msgid "Model fixing" msgstr "Riparazione modello" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model Repair by the Netfabb service" msgstr "Riparazione Modello dal servizio Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:413 +#: src/slic3r/Utils/FixModelByWin10.cpp:406 msgid "Model repair canceled" msgstr "Riparazione modello annullata" -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model repair failed:" msgstr "Riparazione modello fallita:" -#: src/slic3r/Utils/FixModelByWin10.cpp:407 +#: src/slic3r/Utils/FixModelByWin10.cpp:400 msgid "Model repair finished" msgstr "Riparazione modello terminata" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 msgid "Model repaired successfully" msgstr "Modello riparato con successo" @@ -4566,15 +4585,15 @@ msgstr "Modello riparato con successo" msgid "modified" msgstr "modificato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "Modificatore" -#: src/slic3r/GUI/Tab.cpp:1163 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "Modificatori" -#: src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "soldi/bottiglia" @@ -4582,11 +4601,11 @@ msgstr "soldi/bottiglia" msgid "money/kg" msgstr "soldi/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "Rotella del mouse" -#: src/slic3r/GUI/GLCanvas3D.cpp:266 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "Rotella del mouse:" @@ -4594,27 +4613,27 @@ msgstr "Rotella del mouse:" msgid "Move" msgstr "Sposta" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "Sposta piano di ritaglio" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Move current slider thumb Down" msgstr "Abbassa la barra di scorrimento attuale" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Move current slider thumb Up" msgstr "Solleva la barra di scorrimento attuale" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 msgid "Move drainage hole" msgstr "Sposta foro di drenaggio" -#: src/slic3r/GUI/GLCanvas3D.cpp:3538 +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "Sposta oggetto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "Sposta punto" @@ -4628,13 +4647,13 @@ msgstr "Sposta selezione 10 mm in direzione Y negativa" #: src/slic3r/GUI/KBShortcutsDialog.cpp:167 msgid "Move selection 10 mm in positive X direction" -msgstr "Sposta selezione 10 mm in direzione X positiva " +msgstr "Sposta selezione 10 mm in direzione X positiva" #: src/slic3r/GUI/KBShortcutsDialog.cpp:164 msgid "Move selection 10 mm in positive Y direction" -msgstr "Sposta selezione 10 mm in direzione Y positiva " +msgstr "Sposta selezione 10 mm in direzione Y positiva" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "Sposta punto di supporto" @@ -4650,36 +4669,41 @@ msgstr "Passo del movimento impostato a 1 mm" msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Le stampanti multi-material potrebbero necessitare di caricare o spurgare l'estrusore al cambio di attrezzo. Estrude il materiale in eccesso in una torre di spurgo." -#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "Rilevato oggetto in parti multiple" #: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 -#, possible-c-format +#, c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Trovati molteplici %s dispositivi. Per favore connettine uno alla volta per il flashing." -#: src/slic3r/GUI/Tab.cpp:1181 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "Estrusori multipli" -#: src/slic3r/GUI/Plater.cpp:2394 -msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" -msgstr "Sono stati caricati oggetti multipli per stampante multi-material.\nInvece di considerarli come oggetti multipli, devo considerarli come parte di un singolo oggetto avente parti multiple?" +#: src/slic3r/GUI/Plater.cpp:2410 +msgid "" +"Multiple objects were loaded for a multi-material printer.\n" +"Instead of considering them as multiple objects, should I consider\n" +"these files to represent a single object having multiple parts?" +msgstr "" +"Sono stati caricati oggetti multipli per stampante multi-material.\n" +"Invece di considerarli come oggetti multipli, devo considerarli come parte di un singolo oggetto avente parti multiple?" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "Moltiplica le copie creando una griglia." -#: src/libslic3r/PrintConfig.cpp:3419 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "Moltiplica le copie per questo valore." -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nome" @@ -4704,7 +4728,7 @@ msgstr "Più vicino" msgid "Network lookup" msgstr "Ricerca network" -#: src/slic3r/GUI/Plater.cpp:2135 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "Nuovo progetto" @@ -4713,7 +4737,7 @@ msgid "New project, clear plater" msgstr "Nuovo progetto, pulisci piano" #: src/slic3r/GUI/UpdateDialogs.cpp:38 -#, possible-c-format +#, c-format msgid "New version of %s is available" msgstr "È disponibile una nuova versione di %s" @@ -4721,11 +4745,11 @@ msgstr "È disponibile una nuova versione di %s" msgid "New version:" msgstr "Nuova versione:" -#: src/slic3r/GUI/GLCanvas3D.cpp:4722 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "Ripeti Prossima azione: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:4690 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "Annulla Prossima azione: %1%" @@ -4733,11 +4757,11 @@ msgstr "Annulla Prossima azione: %1%" msgid "No extrusion" msgstr "No estrusione" -#: src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "Non può essere generato nessun Pad per questo modello con la configurazione corrente" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "File non processato precedentemente." @@ -4749,25 +4773,25 @@ msgstr "NESSUN RAMMING" msgid "No sparse layers (EXPERIMENTAL)" msgstr "Nessun layer rado (SPERIMENTALE)" -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "Non verranno posizionati punti di supporto più vicini di questa soglia." #: src/slic3r/GUI/UpdateDialogs.cpp:303 -msgid "No updates aviable" +msgid "No updates available" msgstr "Nessun aggiornamento disponibile" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Nessuno" -#: src/slic3r/GUI/Tab.cpp:2199 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "Normale" -#: src/slic3r/GUI/Plater.cpp:1258 +#: src/slic3r/GUI/Plater.cpp:1286 msgid "normal mode" msgstr "modalità normale" @@ -4776,10 +4800,10 @@ msgid "not a ZIP archive" msgstr "non un archivio ZIP" #: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 -msgid "Not found: " +msgid "Not found:" msgstr "Non trovato:" -#: src/slic3r/GUI/DoubleSlider.cpp:985 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "Note" msgstr "Nota" @@ -4795,20 +4819,20 @@ msgstr "Nota: è necessaria FlashAir con firmware 2.00.02 o successivo e funzion msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Nota: è richiesta una versione di OctoPrint 1.1.0 o successiva." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Nota: alcune scorciatoie funzionano solo in modalità (non)editing." -#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 -#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 -#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 -#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "Note" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 -#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "Avvertenza" @@ -4816,12 +4840,12 @@ msgstr "Avvertenza" msgid "nozzle" msgstr "ugello" -#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Diametro ugello" -#: src/slic3r/GUI/ConfigWizard.cpp:970 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "Diametro ugello:" @@ -4829,7 +4853,7 @@ msgstr "Diametro ugello:" msgid "Number of cooling moves" msgstr "Numero di movimenti di raffreddamento" -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "Numero estrusori della stampante." @@ -4853,7 +4877,7 @@ msgstr "Numero di pixel su X" msgid "Number of pixels in Y" msgstr "Numero di pixel su Y" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Numero di layer solidi da generare sulle superfici inferiori." @@ -4865,19 +4889,19 @@ msgstr "Numero di layer solidi da generare sulle superfici superiori e inferiori msgid "Number of solid layers to generate on top surfaces." msgstr "Numero di layer solidi da generare sulle superfici superiori." -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Numero di layer necessari per la sfumatura del tempo di esposizione dal tempo di esposizione iniziale al tempo di esposizione" -#: src/slic3r/GUI/Plater.cpp:243 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "Numero di cambi attrezzo" -#: src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "Elevazione oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "Manipolazione oggetto" @@ -4885,19 +4909,19 @@ msgstr "Manipolazione oggetto" msgid "Object name" msgstr "Nome oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "Oggetto o Istanza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "Oggetto riordinato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "Impostazioni Oggetto da modificare" -#: src/slic3r/GUI/Plater.cpp:2513 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "Oggetto troppo grande?" @@ -4905,11 +4929,11 @@ msgstr "Oggetto troppo grande?" msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "L'oggetto sarà utilizzato per spurgare l'ugello dopo un cambio di attrezzo per ridurre il tempo di stampa e risparmiare materiale che finirebbe altrimenti nella torre di spurgo. Come risultato, i colori dell'oggetto saranno mischiati." -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "oggetto(i)" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "oggetti" @@ -4921,7 +4945,7 @@ msgstr "Spirale a Ottagramma" msgid "OctoPrint version" msgstr "Versione OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "di un Oggetto corrente" @@ -4929,15 +4953,15 @@ msgstr "di un Oggetto corrente" msgid "Offset" msgstr "Offset" -#: src/slic3r/GUI/DoubleSlider.cpp:923 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "Modalità Un Layer" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1365 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Uno o più oggetti sono assegnati ad un estrusore non presente sulla stampante." -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Genera supporti solo se questi poggiano sulla superficie di stampa. Non genera supporti sulla stampa." @@ -4945,9 +4969,9 @@ msgstr "Genera supporti solo se questi poggiano sulla superficie di stampa. Non msgid "Only infill where needed" msgstr "Riempimento solo quando necessario" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" -msgstr "Solleva Z solamente " +msgstr "Solleva Z solamente" #: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" @@ -4961,11 +4985,11 @@ msgstr "Solleva Z solo al di sotto" msgid "Only retract when crossing perimeters" msgstr "Retrai solo se si attraversa un perimetro" -#: src/slic3r/GUI/Tab.cpp:1189 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "Prevenzione delle fuoriuscite" -#: src/libslic3r/Print.cpp:1262 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "Prevenzione sgocciolamento non è al momento supportata con la torre di spurgo attiva." @@ -4973,7 +4997,7 @@ msgstr "Prevenzione sgocciolamento non è al momento supportata con la torre di msgid "Open a project file" msgstr "Apri un file progetto" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "Apri file di certificato CA" @@ -4990,52 +5014,48 @@ msgstr "Apri la pagina di Download" msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Apri progetto STL/OBJ/AMF/3MF con configurazione, pulisci piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "Apri progetto STL/OBJ/AMF/3MF con configurazione, cancella il piano" - -#: src/slic3r/GUI/MainFrame.cpp:695 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:693 +#, c-format msgid "Open the %s website in your browser" msgstr "Apri il sito web di %s nel browser" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Apri la pagina di download dei driver Prusa3D sul browser" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "Apri la pagina delle versioni software sul browser" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "Ottimizza orientamento" -#: src/slic3r/GUI/Plater.cpp:2751 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "Ottimizza Rotazione" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "Ottimizza la rotazione dell'oggetto per risultati di stampa migliori." -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Ottimizza il movimenti di spostamento per minimizzare l'incrocio di perimetri. È comunemente usato con estrusori Bowden che soffrono di oozing (trasudazione). Questa caratteristica rallenta sia la stampa che la generazione del G-code." -#: src/slic3r/GUI/Tab.cpp:1133 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "Opzioni per materiale di supporto e raft" -#: src/slic3r/GUI/DoubleSlider.cpp:960 +#: src/slic3r/GUI/DoubleSlider.cpp:989 msgid "or press \"+\" key" msgstr "o premi il tasto \"+\"" -#: src/slic3r/GUI/Plater.cpp:2876 +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "Trovato orientamento." -#: src/slic3r/GUI/Plater.cpp:2875 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "Ricerca orientamento annullata." @@ -5043,23 +5063,23 @@ msgstr "Ricerca orientamento annullata." msgid "Origin" msgstr "Origine" -#: src/slic3r/GUI/Tab.cpp:1229 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "Altro" -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Altri layer" -#: src/slic3r/GUI/ConfigWizard.cpp:857 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "Altri Fornitori" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "File di output" -#: src/libslic3r/PrintConfig.cpp:3478 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "File di output" @@ -5067,15 +5087,15 @@ msgstr "File di output" msgid "Output filename format" msgstr "Formato del file di output" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "Info Modello di output" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "Opzioni output" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Perimetro sporgente" @@ -5083,23 +5103,23 @@ msgstr "Perimetro sporgente" msgid "Overhang threshold" msgstr "Soglia sporgenza" -#: src/slic3r/GUI/Tab.cpp:1217 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "Sovrapposizione" #: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" -msgstr "Impostazioni S&tampa" +msgstr "Impos&tazioni Stampa" -#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 -#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 -#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 -#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 -#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 -#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 -#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 -#: src/libslic3r/PrintConfig.cpp:2890 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "Pad" @@ -5107,15 +5127,15 @@ msgstr "Pad" msgid "Pad and Support" msgstr "Pad e Supporto" -#: src/libslic3r/PrintConfig.cpp:2846 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "Pad Intorno all'oggetto" -#: src/libslic3r/PrintConfig.cpp:2853 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "Pad ovunque intorno all'oggetto" -#: src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "Dimensioni brim del Pad" @@ -5123,31 +5143,31 @@ msgstr "Dimensioni brim del Pad" msgid "Pad brim size is too small for the current configuration." msgstr "La dimensione del brim del Pad è troppo piccola per la configurazione attuale." -#: src/libslic3r/PrintConfig.cpp:2889 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "Inserimento connettore Pad dell'oggetto" -#: src/libslic3r/PrintConfig.cpp:2871 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "Passo del connettore del pad dell'oggetto" -#: src/libslic3r/PrintConfig.cpp:2880 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "Lunghezza connettore Pad dell'oggetto" -#: src/libslic3r/PrintConfig.cpp:2860 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "Spazio Pad oggetto" -#: src/libslic3r/PrintConfig.cpp:2788 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "Altezza parete Pad" -#: src/libslic3r/PrintConfig.cpp:2835 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "Inclinazione della parete del pad" -#: src/libslic3r/PrintConfig.cpp:2778 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "Spessore parete Pad" @@ -5159,28 +5179,28 @@ msgstr "Page Down" msgid "Page Up" msgstr "Page Up" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "nome parametro" -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "Validazione parametri" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "Parte" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "Manipolazione parti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "Impostazioni parte da modificare" -#: src/slic3r/GUI/GLCanvas3D.cpp:4563 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "Incolla" @@ -5188,11 +5208,11 @@ msgstr "Incolla" msgid "Paste clipboard" msgstr "Incolla appunti" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 msgid "Paste from clipboard" msgstr "Incolla dagli appunti" -#: src/slic3r/GUI/Plater.cpp:5640 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "Incolla dagli appunti" @@ -5212,12 +5232,16 @@ msgstr "Spaziatura trama" msgid "Pattern used to generate support material." msgstr "Trama usata per generare il materiale di supporto." -#: src/slic3r/GUI/DoubleSlider.cpp:976 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "Pausa" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Pause print (\"%1%\")" msgstr "Metti in pausa (\"%1%\")" -#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 -#: src/slic3r/GUI/GLCanvas3D.cpp:987 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "Pausa stampa o G-code personalizzato" @@ -5225,11 +5249,11 @@ msgstr "Pausa stampa o G-code personalizzato" msgid "Perform cut" msgstr "Effettua taglio" -#: src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2927 msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." msgstr "Prestazioni vs Precisione di calcolo. Valori più bassi possono produrre artefatti non voluti." -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Perimetro" @@ -5246,8 +5270,8 @@ msgstr "perimetri" msgid "Perimeters" msgstr "Perimetri" -#: src/slic3r/GUI/ConfigWizard.cpp:861 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:860 +#, c-format msgid "Pick another vendor supported by %s" msgstr "Scegli un altro distributore supportato da %s" @@ -5255,7 +5279,7 @@ msgstr "Scegli un altro distributore supportato da %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Dimensioni immagine per essere memorizzate nei file .gcode e .sl1" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "Fattore di espansione pilastro" @@ -5263,10 +5287,6 @@ msgstr "Fattore di espansione pilastro" msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Il diametro dell'apice dovrebbe essere più piccolo rispetto al diametro del pilastro." -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "Posiziona i cuscinetti negli alloggi e riprendi" - #: src/slic3r/GUI/DoubleSlider.cpp:79 msgid "Place bearings in slots and resume printing" msgstr "Posiziona i cuscinetti negli alloggi e riprendi a stampare" @@ -5275,23 +5295,19 @@ msgstr "Posiziona i cuscinetti negli alloggi e riprendi a stampare" msgid "Place on face" msgstr "Posiziona sulla faccia" -#: src/slic3r/GUI/MainFrame.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 -msgid "Plater Shortcuts" -msgstr "Scorciatoie Piano" - #: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Per favore controlla e correggi la tua lista oggetti." -#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "Per favore verifica la tua lista di oggetti prima di cambiare i preset." -#: src/slic3r/GUI/Plater.cpp:3272 +#: src/slic3r/GUI/Plater.cpp:3286 msgid "Please select the file to reload" msgstr "Seleziona il file da ricaricare" @@ -5308,14 +5324,10 @@ msgstr "Ritratto" msgid "Position" msgstr "Posizione" -#: src/slic3r/GUI/Tab.cpp:2363 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "Posizione (per stampanti multi-estrusore)" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "Posizione (mm)" - #: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Posizione dei punti iniziali dei perimetri." @@ -5328,7 +5340,7 @@ msgstr "Posizione X" msgid "Position Y" msgstr "Posizione Y" -#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Script di post produzione" @@ -5336,7 +5348,7 @@ msgstr "Script di post produzione" msgid "Pre&view" msgstr "&Visualizza anteprima" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Preferenze" @@ -5352,67 +5364,59 @@ msgstr "Direzione preferita della giunzione - jitter" msgid "Preparing infill" msgstr "Preparazione infill" -#: src/slic3r/GUI/Tab.cpp:2904 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2920 +#, c-format msgid "Preset (%s)" msgstr "Preset (%s)" -#: src/slic3r/GUI/Tab.cpp:3066 +#: src/slic3r/GUI/Tab.cpp:3082 msgid "Preset with name \"%1%\" already exists." msgstr "Preset con il nome \"%1%\" già esistente." -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - Copia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" -msgstr "Premere per attivare il rettangolo di deselezione\no per ridimensionare o ruotare gli oggetti selezionati\nattorno al loro centro" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Press to activate deselection rectangle" msgstr "Premi per attivare il rettangolo di deselezione" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Premere per attivare una direzione di ridimensionamento nel Gizmo ridimensiona" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Premere per attivare il rettangolo di selezione\no per incrementi del 5% nel Gizmo ridimensiona\no per incrementi di 1mm nel Gizmo sposta" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:162 msgid "Press to activate selection rectangle" msgstr "Premi per attivare il rettangolo di selezione" #: src/slic3r/GUI/KBShortcutsDialog.cpp:198 -msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" -msgstr "Premi per ridimensionare (nel Gizmo ridimensiona) o ruotare (nel Gizmo ruota)\nl'oggetto selezionato attorno al proprio centro" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "Press to scale selection to fit print volume\nin Gizmo scale" -msgstr "Premere per ridimensionare la selezione così da entrare nel volume di stampa\nnel Gizmo ridimensiona" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "Premi per selezionare o spostare oggetti multipli con il mouse" +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"Premi per ridimensionare (nel Gizmo ridimensiona) o ruotare (nel Gizmo ruota)\n" +"l'oggetto selezionato attorno al proprio centro" #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with mouse" -msgstr "Premi per selezionare o spostare\noggetti multipli con il mouse" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with a mouse" -msgstr "Premi per selezionare o spostare\noggetti multipli con il mouse" +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"Premi per selezionare o spostare\n" +"oggetti multipli con il mouse" #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format -msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Premi per scatti del 5% nel Gizmo ridimensiona\no per scatti di 1mm nel Gizmo sposta" +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Premi per scatti del 5% nel Gizmo ridimensiona\n" +"o per scatti di 1mm nel Gizmo sposta" -#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "Anteprima" @@ -5420,11 +5424,7 @@ msgstr "Anteprima" msgid "Preview hollowed and drilled model" msgstr "Anteprima del modello svuotato e forato" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 -msgid "Preview Shortcuts" -msgstr "Mostra Scorciatoie" - -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "File precedentemente processato (" @@ -5432,7 +5432,7 @@ msgstr "File precedentemente processato (" msgid "Prime all printing extruders" msgstr "Prepara tutti gli estrusori di stampa" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "stampa" @@ -5444,32 +5444,32 @@ msgstr "Coda di caricamento &Host di stampa" msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Stampa i perimetri di contorno dal più esterno al più interno invece dell'ordine predefinito inverso." -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "Diametro di stampa" -#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "Caricamento Host di stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Coda di caricamento Host di stampa" -#: src/slic3r/GUI/DoubleSlider.cpp:941 +#: src/slic3r/GUI/DoubleSlider.cpp:970 msgid "Print mode" msgstr "Modalità di stampa" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "Impostazioni Stampa" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "Impostazioni di stampa" -#: src/slic3r/GUI/Tab.cpp:1480 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "Scavalca velocità di stampa" @@ -5481,15 +5481,15 @@ msgstr "Stampa z" msgid "Print&er Settings Tab" msgstr "Impostazioni Stampant&e" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "Stampabile" -#: src/slic3r/GUI/Plater.cpp:816 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "Stampante" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "stampante" @@ -5497,11 +5497,11 @@ msgstr "stampante" msgid "Printer absolute correction" msgstr "Correzione assoluta stampante" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "Correzione gamma della stampante" -#: src/slic3r/GUI/Tab.cpp:978 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "modello stampante" @@ -5514,7 +5514,7 @@ msgstr "Note stampante" msgid "Printer scaling correction" msgstr "Correzione di scala stampante" -#: src/slic3r/GUI/Tab.hpp:390 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "Impostazioni stampante" @@ -5534,18 +5534,18 @@ msgstr "Variante della stampante" msgid "Printer vendor" msgstr "Venditore della stampante" -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1388 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Stampa con più estrusori con ugelli di di diametro diverso. Se il supporto deve essere stampato con l'estrusore corrente (support_material_extruder = = 0 o support_material_interface_extruder = = 0), tutti gli ugelli devono avere lo stesso diametro." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:851 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:849 +#, c-format msgid "Processing %s" msgstr "Elaborando %s" -#: src/slic3r/GUI/Plater.cpp:2267 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2283 +#, c-format msgid "Processing input file %s" msgstr "Processando il file di input %s" @@ -5553,9 +5553,9 @@ msgstr "Processando il file di input %s" msgid "Processing triangulated mesh" msgstr "Elaborando la mesh triangolata" -#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 -#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "Dipendenze profilo" @@ -5571,15 +5571,15 @@ msgstr "Progresso" msgid "Progress:" msgstr "Progresso:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" msgstr "Prusa 3D &Drivers" -#: src/slic3r/GUI/ConfigWizard.cpp:1998 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "Stampanti Prusa con tecnologia FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:2001 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Stampanti Prusa con tecnologia MSLA" @@ -5588,23 +5588,31 @@ msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap co msgstr "PrusaSlicer è basato su Slic3r di Alessandro Ranellucci e la comunità RepRap." #: src/slic3r/GUI/GLCanvas3DManager.cpp:284 -#, possible-c-format -msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." +#, c-format +msgid "" +"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" +"while OpenGL version %s, render %s, vendor %s was detected." msgstr "PrusaSlicer richiede un driver video con supporto OpenGL 2.0 per funzionare correttamente, mentre è stata rilevata la versione %s OpenGL, render %s, distributore %s." #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "versione PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "L'interfaccia utente di PrusaSlicer è disponibile in tre varianti:\nSemplice, Avanzata ed Esperto.\nLa modalità Semplice mostra solo le impostazioni rilevanti utilizzate più spesso per una semplice stampa 3D. Le altre due offrono progressivamente ottimizzazioni più sofisticate, sono adatte ad utenti avanzati ed esperti, rispettivamente." +#: src/slic3r/GUI/ConfigWizard.cpp:815 +msgid "" +"PrusaSlicer's user interfaces comes in three variants:\n" +"Simple, Advanced, and Expert.\n" +"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "" +"L'interfaccia utente di PrusaSlicer è disponibile in tre varianti:\n" +"Semplice, Avanzata ed Esperto.\n" +"La modalità Semplice mostra solo le impostazioni rilevanti utilizzate più spesso per una semplice stampa 3D. Le altre due offrono progressivamente ottimizzazioni più sofisticate, sono adatte ad utenti avanzati ed esperti, rispettivamente." #: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Lo spurgo dopo un cambio di attrezzo verrà effettuato dentro il riempimento di questo oggetto. Questo diminuisce la quantità di scarto ma potrebbe prolungare il tempo di stampa a causa di spostamenti aggiuntivi." -#: src/slic3r/GUI/Plater.cpp:541 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "Volumi di spurgo" @@ -5620,19 +5628,19 @@ msgstr "Volumi di spurgo - matrice" msgid "Quality" msgstr "Qualità" -#: src/slic3r/GUI/Tab.cpp:1082 +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "Qualità (slicing più lento)" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 +#: src/slic3r/GUI/GLCanvas3D.cpp:273 msgid "Quality / Speed" msgstr "Qualità / Velocità" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 +#, c-format msgid "Quick Add Settings (%s)" msgstr "Aggiungere Impostazioni Rapide (%s)" @@ -5645,15 +5653,15 @@ msgid "Quick Slice and Save As" msgstr "Slice veloce e Salva Come" #: src/slic3r/GUI/MainFrame.cpp:540 -#, possible-c-format +#, c-format msgid "Quit %s" msgstr "Chiudi %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Raggio" -#: src/slic3r/GUI/Tab.cpp:1129 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "Raft" @@ -5666,8 +5674,14 @@ msgid "Ramming customization" msgstr "Personalizzazione del ramming" #: src/slic3r/GUI/WipeTowerDialog.cpp:41 -msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "Il ramming è la rapida estrusione appena prima di un cambio di attrezzo in una stampante MM ad estrusore singolo. Lo scopo è di dare la forma corretta al capo del filamento scaricato cosicché non prevenga l'inserzione del nuovo filamento e perché possa essere inserito più facilmente esso stesso. Questa fase è importante e materiali diversi possono richiedere velocità diverse per ottenere la forma corretta. Per questo motivo le velocità di estrusione del ramming possono essere modificate.\n\nQuesta è un'impostazione per esperti, valori scorretti produrranno facilmente dei blocchi, o porteranno l'ingranaggio di estrusione a macinare il filamento etc." +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "" +"Il ramming è la rapida estrusione appena prima di un cambio di attrezzo in una stampante MM ad estrusore singolo. Lo scopo è di dare la forma corretta al capo del filamento scaricato cosicché non prevenga l'inserzione del nuovo filamento e perché possa essere inserito più facilmente esso stesso. Questa fase è importante e materiali diversi possono richiedere velocità diverse per ottenere la forma corretta. Per questo motivo le velocità di estrusione del ramming possono essere modificate.\n" +"\n" +"Questa è un'impostazione per esperti, valori scorretti produrranno facilmente dei blocchi, o porteranno l'ingranaggio di estrusione a macinare il filamento etc." #: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" @@ -5681,7 +5695,7 @@ msgstr "Larghezza della linea di Ramming" msgid "Ramming parameters" msgstr "Parametri del ramming" -#: src/slic3r/GUI/Tab.cpp:1507 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "Impostazioni del ramming" @@ -5693,13 +5707,13 @@ msgstr "Casuale" msgid "Range" msgstr "Intervallo" -#: src/libslic3r/SLAPrintSteps.cpp:63 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "Rasterizzazione dei layer" #: src/slic3r/GUI/MainFrame.cpp:596 msgid "Re&load from disk" -msgstr "Ricarica da disco (&l)" +msgstr "R&icarica da disco" #: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" @@ -5709,7 +5723,7 @@ msgstr "Ri-configura" msgid "Ready" msgstr "Pronto" -#: src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "Pronto a processare" @@ -5723,10 +5737,10 @@ msgstr "Vista posteriore" #: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" -msgstr "Progetti recenti" +msgstr "Prog&etti recenti" #: src/slic3r/GUI/PresetHints.cpp:263 -#, possible-c-format +#, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Spessore raccomandato per oggetto con parete sottile per altezza layer %.2f e" @@ -5755,37 +5769,38 @@ msgstr "Rettilineo" msgid "Rectilinear grid" msgstr "Griglia rettilinea" -#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Ripeti" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Ripeti %1$d Azione" msgstr[1] "Ripeti %1$d Azioni" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "Storia Ripeti" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "Riduzione tempo di stampa" -#: src/slic3r/GUI/Plater.cpp:3461 +#: src/slic3r/GUI/Plater.cpp:3452 msgid "Reload all from disk" msgstr "Ricarica tutto da disco" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 -#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 msgid "Reload from disk" msgstr "Ricarica da Disco" -#: src/slic3r/GUI/Plater.cpp:3328 -msgid "Reload from: " +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" msgstr "Ricarica da:" #: src/slic3r/GUI/KBShortcutsDialog.cpp:134 @@ -5796,12 +5811,12 @@ msgstr "Ricarica piano da disco" msgid "Reload the plater from disk" msgstr "Ricarica piano da disco" -#: src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "Ricarica l'oggetto selezionato dal disco" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" msgstr "Ricarica i volumi selezionati dal disco" @@ -5809,12 +5824,12 @@ msgstr "Ricarica i volumi selezionati dal disco" msgid "Remember output directory" msgstr "Ricorda la directory di output" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "rimuovi" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "Rimuovi" @@ -5826,11 +5841,11 @@ msgstr "Rimuovi tutti i fori" msgid "Remove all points" msgstr "Rimuovi tutti i punti" -#: src/slic3r/GUI/GLCanvas3D.cpp:251 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "Rimuovi dettagli" -#: src/slic3r/GUI/Plater.cpp:876 +#: src/slic3r/GUI/Plater.cpp:879 msgid "Remove device" msgstr "Rimuovi dispositivo" @@ -5838,11 +5853,11 @@ msgstr "Rimuovi dispositivo" msgid "Remove extruder from sequence" msgstr "Rimuovi estrusore dalla sequenza" -#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" msgstr "Rimuovi istanza" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Remove Instance of the selected object" msgstr "Rimuovi Istanza dell'oggetto selezionato" @@ -5850,7 +5865,7 @@ msgstr "Rimuovi Istanza dell'oggetto selezionato" msgid "Remove layer range" msgstr "Rimuovi intervallo layer" -#: src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" msgstr "Rimuovi una istanza dell'oggetto selezionato" @@ -5858,11 +5873,11 @@ msgstr "Rimuovi una istanza dell'oggetto selezionato" msgid "Remove parameter" msgstr "Rimuovi parametro" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "Rimuovi punto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "Rimuovi punto dalla selezione" @@ -5871,11 +5886,11 @@ msgid "Remove selected holes" msgstr "Rimuovi i fori selezionati" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "Rimuovi punti selezionati" -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "Rimuovi l'oggetto selezionato" @@ -5883,47 +5898,51 @@ msgstr "Rimuovi l'oggetto selezionato" msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Rimuovi profili utente - reinstalla da zero (sarà prima fatto uno snapshot)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "Rinomina" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "Rinomina oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "Rinomina sotto-oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "Rinomina" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "Non è stato possibile rinominare il G-code dopo la copia nella cartella di destinazione selezionata. Il percorso corrente è %1%.tmp. Prova a esportare di nuovo." + +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "Eseguire il rendering con un software redender" -#: src/libslic3r/PrintConfig.cpp:3501 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Eseguire il rendering con un software redender. Viene caricato il software di rendering MESA integrato al posto del driver OpenGL predefinito ." -#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "Ripara" -#: src/slic3r/Utils/FixModelByWin10.cpp:394 +#: src/slic3r/Utils/FixModelByWin10.cpp:387 msgid "Repaired 3MF file contains more than one object" msgstr "Il file 3MF riparato contiene più di un oggetto" -#: src/slic3r/Utils/FixModelByWin10.cpp:398 +#: src/slic3r/Utils/FixModelByWin10.cpp:391 msgid "Repaired 3MF file contains more than one volume" msgstr "Il file 3MF riparato contiene più di un volume" -#: src/slic3r/Utils/FixModelByWin10.cpp:392 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Repaired 3MF file does not contain any object" msgstr "Il file 3MF riparato non contiene alcun oggetto" -#: src/slic3r/Utils/FixModelByWin10.cpp:396 +#: src/slic3r/Utils/FixModelByWin10.cpp:389 msgid "Repaired 3MF file does not contain any volume" msgstr "Il file 3MF non contiene alcun volume" @@ -5939,31 +5958,31 @@ msgstr "Ripeti l'ultimo slice veloce" msgid "Repeat Last Quick Slice" msgstr "Ripeti l'ultimo slice veloce" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "Sostituire?" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" msgstr "&Segnala un problema" -#: src/slic3r/GUI/MainFrame.cpp:705 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:703 +#, c-format msgid "Report an issue on %s" msgstr "Segnala un problema su %s" #: src/slic3r/Utils/PresetUpdater.cpp:713 -#, possible-c-format +#, c-format msgid "requires max. %s" msgstr "richiede max. %s" #: src/slic3r/Utils/PresetUpdater.cpp:710 -#, possible-c-format +#, c-format msgid "requires min. %s" msgstr "richiede min. %s" #: src/slic3r/Utils/PresetUpdater.cpp:705 -#, possible-c-format +#, c-format msgid "requires min. %s and max. %s" msgstr "richiede min. %s e max. %s" @@ -5971,15 +5990,15 @@ msgstr "richiede min. %s e max. %s" msgid "Rescan" msgstr "Ri-scansiona" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "Scansiona nuovamente porte seriali" -#: src/slic3r/GUI/GLCanvas3D.cpp:318 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" -msgstr "Reimposta " +msgstr "Reimposta" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "Ripristina piano di ritaglio" @@ -5988,7 +6007,7 @@ msgstr "Ripristina piano di ritaglio" msgid "Reset direction" msgstr "Reset direzione" -#: src/slic3r/GUI/Plater.cpp:2707 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "Reimposta Progetto" @@ -6005,11 +6024,11 @@ msgstr "Reimposta rotazione" msgid "Reset scale" msgstr "Reimposta scala" -#: src/slic3r/GUI/GLCanvas3D.cpp:257 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "Ripristina alla base" -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "Ripristina colore Filamento" @@ -6025,8 +6044,8 @@ msgstr "Retrai la quantità prima di pulire" msgid "Retract on layer change" msgstr "Retrai al cambio layer" -#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2366 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "Retrazione" @@ -6046,11 +6065,11 @@ msgstr "Lunghezza Retrazione (cambio attrezzo)" msgid "Retraction Speed" msgstr "Velocità di retrazione" -#: src/slic3r/GUI/Tab.cpp:2382 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retrazione quando l'attrezzo è disabilitato (impostazioni avanzate per setup multi-estrusore)" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "Retrazioni" @@ -6058,23 +6077,23 @@ msgstr "Retrazioni" msgid "Right" msgstr "Destra" -#: src/slic3r/GUI/GUI_ObjectList.cpp:400 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "Fare clic con il pulsante destro del mouse sull'icona per modificare le proprietà dell'oggetto stampabile" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "Click destro sull'icona per cambiare le impostazioni dell'oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:357 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Click destro sull'icona per riparare il file STL tramite Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "Click destro" -#: src/slic3r/GUI/GLCanvas3D.cpp:248 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "Tasto destro mouse:" @@ -6086,15 +6105,15 @@ msgstr "Vista destra" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "Ruota" -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "Ruota attorno ad X" -#: src/libslic3r/PrintConfig.cpp:3446 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Ruota attorno ad Y" @@ -6112,85 +6131,81 @@ msgstr "Ruota la selezione di 45° in senso orario" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 #: src/slic3r/GUI/Mouse3DController.cpp:321 -#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Rotazione" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491 -msgid "Rotation (deg)" -msgstr "Rotazione (gradi)" - -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "Angolo di rotazione attorno all'asse X in gradi." -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Angolo di rotazione sull'asse Y in gradi." -#: src/libslic3r/PrintConfig.cpp:3437 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Angolo di rotazione attorno all'asse Z in gradi." #: src/slic3r/GUI/GUI_App.cpp:797 -#, possible-c-format +#, c-format msgid "Run %s" msgstr "Run %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "Esecuzione script di post produzione" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 #: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 #: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 -#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 -#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 -#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 -#: src/libslic3r/PrintConfig.cpp:2557 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" msgstr "Invia G-cod&e" -#: src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "Manda in stampa" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3401 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:3417 +#, c-format msgid "Save %s as:" msgstr "Salva %s come:" -#: src/slic3r/GUI/MainFrame.cpp:828 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:826 +#, c-format msgid "Save %s file as:" msgstr "Salva file %s come:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "Salvare modifiche?" -#: src/libslic3r/PrintConfig.cpp:3371 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "Salva file config" -#: src/slic3r/GUI/MainFrame.cpp:927 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "Salva configurazione come:" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "Salva configurazione nel file specificato." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:135 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:133 +#, c-format msgid "Save current %s" msgstr "Salva le %s attuali" @@ -6202,23 +6217,23 @@ msgstr "Salva progetto corrente" msgid "Save current project file as" msgstr "Salvare il file del progetto corrente come" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "Salva come:" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "Salva il file G-code come:" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Salva il file OBJ (meno soggetto a errori di coordinate dell'STL) come:" -#: src/slic3r/GUI/Tab.hpp:442 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "Salva preset" -#: src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "Salva il gruppo di preset come:" @@ -6234,11 +6249,11 @@ msgstr "Salva progetto (3mf)" msgid "Save project as (3mf)" msgstr "Salva progetto come (3mf)" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "Salva file SL1 come:" -#: src/slic3r/GUI/MainFrame.cpp:840 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "Salva file zip come:" @@ -6252,27 +6267,27 @@ msgstr "Il salvataggio della rete nel contenitore 3MF non è riuscito." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3451 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "Ridimensiona" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276 -msgid "Scale (%)" -msgstr "Ridimensiona (%)" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Fattore di scala" #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 -msgid "Scale selection to fit print volume\nin Gizmo scale" -msgstr "Ridimensiona la selezione per riempire il volume di stampa\nnel Gizmo Ridimensiona" +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" +"Ridimensiona la selezione per riempire il volume di stampa\n" +"nel Gizmo Ridimensiona" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "Ridimensiona l'oggetto selezionato per entrare nel volume di stampa" -#: src/libslic3r/PrintConfig.cpp:3460 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "Ridimensiona per riempire" @@ -6280,19 +6295,19 @@ msgstr "Ridimensiona per riempire" msgid "Scale To Fit" msgstr "Ridimensiona per adattare" -#: src/libslic3r/PrintConfig.cpp:3461 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "Ridimensiona per adattare al volume dato." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "Ridimensiona a volume di stampa" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "Fattore di scala o percentuale." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Programmazione del caricamento su `%1%`. Vedere finestra -> Coda di caricamento Host di Stampa" @@ -6312,7 +6327,7 @@ msgstr "Direzione preferita giunzione jitter" msgid "Searching for devices" msgstr "Ricerca dispositivi" -#: src/slic3r/GUI/Plater.cpp:2842 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "Ricerca orientamento ottimale" @@ -6324,19 +6339,19 @@ msgstr "Seleziona un file gcode:" msgid "Select all objects" msgstr "Seleziona tutti gli oggetti" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "Seleziona tutti i punti" -#: src/slic3r/GUI/ConfigWizard.cpp:1979 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "Seleziona tutte le stampanti standard" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "Seleziona con rettangolo" -#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "Seleziona configurazione da caricare:" @@ -6344,35 +6359,27 @@ msgstr "Seleziona configurazione da caricare:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Seleziona le coordinate spaziali in cui verrà eseguita la trasformazione." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 -msgid "Select extruder number for selected objects and/or parts" -msgstr "Seleziona il numero estrusore per gli oggetti selezionati e/o parti" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "Seleziona l'estrusore numero:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "Attiva Scheda impostazioni di Filamento" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 -msgid "Select new extruder for the object/part" -msgstr "Seleziona il nuovo estrusore per l'oggetto/parte" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 msgid "Select Plater Tab" msgstr "Seleziona scheda piano" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "Attiva Scheda Impostazioni di Stampa" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "Attiva Scheda Impostazioni Stampante" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "Seleziona le impostazioni mostrate" @@ -6380,37 +6387,43 @@ msgstr "Seleziona le impostazioni mostrate" msgid "Select the language" msgstr "Seleziona la lingua" -#: src/slic3r/GUI/Tab.cpp:59 +#: src/slic3r/GUI/Tab.cpp:57 msgid "Select the print profiles this profile is compatible with." msgstr "Seleziona i profili di stampa compatibili con questo profilo." -#: src/slic3r/GUI/Tab.cpp:53 +#: src/slic3r/GUI/Tab.cpp:51 msgid "Select the printers this profile is compatible with." msgstr "Seleziona le stampanti compatibili con questo profilo." -#: src/slic3r/GUI/MainFrame.cpp:891 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "Seleziona il file STL da riparare:" -#: src/slic3r/GUI/Preferences.cpp:241 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "Seleziona la dimensione delle icone della barra degli strumenti rispetto a quella predefinita." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "Seleziona il tipo di parte" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "Seleziona il tipo di Pad richiesto" -#: src/slic3r/GUI/Plater.cpp:495 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "Seleziona il tipo di supporto richiesto" -#: src/slic3r/GUI/DoubleSlider.cpp:1890 -msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" -msgstr "Seleziona SI se vuoi cancellare tutti i cambi attrezzo salvati,\nNO se vuoi che tutti i cambi attrezzo passino a cambi colore,\no ANNULLA per lasciarlo invariato" +#: src/slic3r/GUI/DoubleSlider.cpp:1917 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged." +msgstr "" +"Seleziona SI se vuoi cancellare tutti i cambi attrezzo salvati,\n" +"NO se vuoi che tutti i cambi attrezzo passino a cambi colore,\n" +"o ANNULLA per lasciarlo invariato." #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" @@ -6420,11 +6433,11 @@ msgstr "Selezione-Aggiungi" msgid "Selection-Add All" msgstr "Selezione-Aggiungi tutti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "Aggiungi selezione da elenco" -#: src/slic3r/GUI/GLCanvas3D.cpp:6659 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "Aggiungi Selezione da rettangolo" @@ -6444,11 +6457,11 @@ msgstr "Selezione-Rimuovi" msgid "Selection-Remove All" msgstr "Selezione-Rimuovi tutti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "Rimozione Selezione dall'elenco" -#: src/slic3r/GUI/GLCanvas3D.cpp:6678 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "Rimuovi selezione da rettangolo" @@ -6464,7 +6477,7 @@ msgstr "Selezione-Rimuovi oggetto" msgid "Selects all objects" msgstr "Seleziona tutti gli oggetti" -#: src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "Invia G-code" @@ -6476,19 +6489,19 @@ msgstr "Invia G-code all’host stampante" msgid "Send to print current plate as G-code" msgstr "Manda alla stampante il piano corrente come G-Code" -#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "Manda alla stampante" -#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 msgid "Seq." msgstr "Seq." -#: src/slic3r/GUI/Tab.cpp:1233 +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "Stampa sequenziale" -#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Porta seriale" @@ -6504,17 +6517,17 @@ msgstr "Porta seriale:" msgid "Service name" msgstr "Nome servizio" -#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 -#: src/slic3r/GUI/Tab.cpp:3160 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "Imposta" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "Imposta come Oggetto Separato" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "Imposta come Oggetti Separati" @@ -6522,7 +6535,7 @@ msgstr "Imposta come Oggetti Separati" msgid "Set extruder change for every" msgstr "Imposta il cambio estrusore per ogni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "Imposta estrusore per gli elementi selezionati" @@ -6530,19 +6543,15 @@ msgstr "Imposta estrusore per gli elementi selezionati" msgid "Set extruder sequence" msgstr "Imposta sequenza estrusore" -#: src/slic3r/GUI/DoubleSlider.cpp:1504 +#: src/slic3r/GUI/DoubleSlider.cpp:1532 msgid "Set extruder sequence for the entire print" msgstr "Imposta sequenza estrusore per l'intera stampa" -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "Imposta la sequenza estrusore per l'intera stampa" - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 msgid "Set extruder(tool) sequence" msgstr "Imposta sequenza estrusore(attrezzo)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "Imposta il cursore inferiore alla barra di scorrimento attuale" @@ -6550,12 +6559,12 @@ msgstr "Imposta il cursore inferiore alla barra di scorrimento attuale" msgid "Set Mirror" msgstr "Imposta specchio" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "Imposta numero di istanze" -#: src/slic3r/GUI/Plater.cpp:4771 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4756 +#, c-format msgid "Set numbers of copies to %d" msgstr "Imposta il numero di copie a %d" @@ -6567,7 +6576,7 @@ msgstr "Imposta orientamento" msgid "Set Position" msgstr "Imposta posizione" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Imposta stampabile" @@ -6583,7 +6592,7 @@ msgstr "Imposta scala" msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Imposta l'orientamento effettivo del display LCD nella stampante SLA. La modalità Ritratto invertirà i valori di altezza e larghezza del display, e le immagini di output saranno ruotate di 90 gradi." -#: src/slic3r/GUI/ConfigWizard.cpp:933 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "Imposta la dimensione del piano della stampante." @@ -6631,7 +6640,7 @@ msgstr "Impostate alla massima altezza che può essere raggiunta dal vostro estr msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Imposta la distanza verticale tra la punta dell'ugello e (solitamente) le barre del carrello X. In altre parole, questa è l'altezza dello spazio cilindrico attorno l'estrusore, e indica la profondità massima che l'estrusore può affacciarsi prima di sbattere con altri oggetti stampati." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Imposta non stampabile" @@ -6639,19 +6648,23 @@ msgstr "Imposta non stampabile" msgid "Set Unprintable Instance" msgstr "Imposta Istanza non stampabile" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Set upper thumb to current slider thumb" msgstr "Imposta il cursore superiore alla barra di scorrimento attuale" -#: src/libslic3r/PrintConfig.cpp:3494 -msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." -msgstr "Imposta la sensibilità di log. 0:fatale, 1:errore, 2:avviso, 3:informazioni, 4:debug, 5:traccia\nPer esempio. loglevel=2 registra messaggi fatali, di errore e di avviso." +#: src/libslic3r/PrintConfig.cpp:3509 +msgid "" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." +msgstr "" +"Imposta la sensibilità di log. 0:fatale, 1:errore, 2:avviso, 3:informazioni, 4:debug, 5:traccia\n" +"Per esempio. loglevel=2 registra messaggi fatali, di errore e di avviso." #: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Impostazioni" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "Impostazioni per intervallo altezza" @@ -6675,35 +6688,35 @@ msgstr "Devo passare alla trama di riempimento rettilinea?" msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Devo sincronizzare i supporti layer in modo da poter attivare la Torre di Spurgo?" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "Forma" -#: src/slic3r/GUI/GUI_Preview.cpp:258 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "Gusci" -#: src/slic3r/GUI/GLCanvas3D.cpp:254 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "Shift + Tasto sinistro mouse:" -#: src/slic3r/GUI/GLCanvas3D.cpp:260 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "Shift + Tasto destro mouse:" -#: src/slic3r/GUI/GUI_Preview.cpp:233 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "Mostra" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" msgstr "Mostra Cartella &Configurazione" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show &labels" -msgstr "Mostra etichette (&l)" +msgstr "Mostra &etichette" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "Mostra la finestra di informazioni" @@ -6715,15 +6728,15 @@ msgstr "Mostra impostazioni avanzate" msgid "Show error message" msgstr "Mostra messaggio d'errore" -#: src/slic3r/GUI/Preferences.cpp:97 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "Mostra preset di stampa e di filamento incompatibili" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "Mostra elenco scorciatoie di tastiera" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show object/instance labels in 3D scene" msgstr "Mostra nella scena 3D le etichette dell'oggetto/istanza" @@ -6735,7 +6748,7 @@ msgstr "Mostra impostazioni semplificate" msgid "Show supports" msgstr "Mostra supporti" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "Mostra informazioni di sistema" @@ -6751,15 +6764,15 @@ msgstr "Mostra anteprima slice 3D" msgid "Show the filament settings" msgstr "Mostra impostazioni filamento" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "Mostra l'elenco completo delle opzioni di configurazione stampa/G-code." -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "Mostra la lista completa delle opzioni di configurazione di stampa SLA." -#: src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "Mostra l'elenco delle scorciatoie di tastiera" @@ -6775,19 +6788,15 @@ msgstr "Mostra impostazioni di stampa" msgid "Show the printer settings" msgstr "Mostra impostazioni della stampante" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "Mostra questo aiuto." -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "Mostra cartella configurazione utente (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Show/Hide (L)egend" -msgstr "Mostra/Nascondi (L)egenda" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Mostra/Nascondi finestra delle impostazioni dei dispositivi 3Dconnexion" @@ -6795,7 +6804,7 @@ msgstr "Mostra/Nascondi finestra delle impostazioni dei dispositivi 3Dconnexion" msgid "Show/Hide Legend" msgstr "Mostra/Nascondi Legenda" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Show/Hide object/instance labels" msgstr "Mostra/Nascondi etichette dell'oggetto/istanza" @@ -6803,7 +6812,7 @@ msgstr "Mostra/Nascondi etichette dell'oggetto/istanza" msgid "Simple" msgstr "Semplice" -#: src/slic3r/GUI/ConfigWizard.cpp:821 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "Modalità Semplice" @@ -6811,7 +6820,7 @@ msgstr "Modalità Semplice" msgid "Simple View Mode" msgstr "Modalità di visualizzazione semplice" -#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "Setup Estrusore singolo MM" @@ -6819,21 +6828,27 @@ msgstr "Setup Estrusore singolo MM" msgid "Single Extruder Multi Material" msgstr "Estrusore singolo Multi Material" -#: src/slic3r/GUI/Tab.cpp:1865 -msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" -msgstr "Materiale multiplo a singolo estrusore selezionato,\ntutti gli estrusori devono avere lo stesso diametro.\nVuoi modificare il diametro di tutti gli estrusori al valore del diametro dell'ugello del primo estrusore?" +#: src/slic3r/GUI/Tab.cpp:1867 +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" +msgstr "" +"Materiale multiplo a singolo estrusore selezionato,\n" +"tutti gli estrusori devono avere lo stesso diametro.\n" +"Vuoi modificare il diametro di tutti gli estrusori al valore del diametro dell'ugello del primo estrusore?" -#: src/slic3r/GUI/Tab.cpp:2303 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "Parametri estrusore singolo materiale multiplo" #: src/slic3r/GUI/BedShapeDialog.cpp:77 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 -#: src/slic3r/GUI/Tab.cpp:2320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "Dimensioni" -#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "Dimensione e coordinate" @@ -6841,12 +6856,12 @@ msgstr "Dimensione e coordinate" msgid "Size in X and Y of the rectangular plate." msgstr "Dimensioni X e Y del piano rettangolare." -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Skirt" -#: src/slic3r/GUI/Tab.cpp:1112 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "Skirt e brim" @@ -6858,59 +6873,59 @@ msgstr "Altezza skirt" msgid "Skirt Loops" msgstr "Giri skirt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "Scorciatoie di tastiera gizmo SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "Gizmo SLA disattivato" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "Gizmo SLA attivato" -#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "Materiale SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "Selezione Profili Materiale SLA" -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "Tipo materiale SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "Materiali SLA" -#: src/slic3r/GUI/Preset.cpp:1473 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "Stampa SLA" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "Note sul materiale di stampa SLA" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "Impostazioni di stampa SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "Punti di Supporto SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:692 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "Sono stati rilevati supporti SLA al di fuori dell'area di stampa" -#: src/slic3r/GUI/ConfigWizard.cpp:1533 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "Stampanti con tecnologia SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "Lastra" @@ -6930,7 +6945,7 @@ msgstr "Slic3r può caricare i file G-code su un host della stampante. Questo ca msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r non rallenterà la velocità al di sotto di questa." -#: src/libslic3r/PrintConfig.cpp:3344 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "Processa" @@ -6946,35 +6961,35 @@ msgstr "Processa un file in G-code, salva come" msgid "Slice gap closing radius" msgstr "Gap closing radius per slicing" -#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5140 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "Processa ora" -#: src/libslic3r/PrintConfig.cpp:3318 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Effettua lo slice del modello ed esporta i layer di stampa SLA come PNG." -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "Effettua slice del modello ed esporta il percorso come G-code." -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Effettua lo slice del modello come FFF o SLA in base al valore di configurazione di printer_technology." -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "Informazioni processo" -#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3647 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "Slicing" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "Slicing completato" @@ -6982,19 +6997,19 @@ msgstr "Slicing completato" msgid "Slicing done" msgstr "Slicing completato" -#: src/slic3r/GUI/MainFrame.cpp:876 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "Slicing Completato!" -#: src/libslic3r/SLAPrintSteps.cpp:209 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Lo slicing è stato interrotto a causa di un errore interno: Indice di slice inconsistente." -#: src/libslic3r/SLAPrintSteps.cpp:43 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "Slice modello" -#: src/libslic3r/SLAPrintSteps.cpp:47 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "Supporti di Slicing" @@ -7014,11 +7029,11 @@ msgstr "Inclinazione lenta" msgid "Small perimeters" msgstr "Perimetri piccoli" -#: src/slic3r/GUI/GLCanvas3D.cpp:293 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "Leviga" -#: src/slic3r/GUI/GLCanvas3D.cpp:263 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "Levigatura" @@ -7026,7 +7041,7 @@ msgstr "Levigatura" msgid "Snapshot name" msgstr "Nome istantanea" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" msgstr "Ve&rsioni Software" @@ -7034,7 +7049,7 @@ msgstr "Ve&rsioni Software" msgid "solid infill" msgstr "riempimento solido" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 #: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Riempimento solido" @@ -7051,7 +7066,7 @@ msgstr "Estrusore riempimento solido" msgid "Solid infill threshold area" msgstr "Area soglia riempimento solido" -#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Layer solidi" @@ -7067,23 +7082,19 @@ msgstr "Il materiale solubile è comunemente usato per un supporto solubile." msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Alcuni comandi G/M-code, incluso il controllo di temperatura e altri, non sono universali. Imposta questa opzione nel firmware della tua stampante per ottenere un output compatibile. La versione \"No extrusion\" evita che PrusaSlicer non esporti alcun valore." -#: src/slic3r/GUI/GLCanvas3D.cpp:693 +#: src/slic3r/GUI/GLCanvas3D.cpp:688 msgid "Some objects are not visible" msgstr "Alcuni oggetti non sono visibili" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 -msgid "Some objects are not visible when editing supports" -msgstr "Alcuni oggetti non sono visibili nel modificare i supporti" - -#: src/libslic3r/Print.cpp:1222 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "Alcuni oggetti sono troppo vicini; l'estrusore li colpirà." -#: src/libslic3r/Print.cpp:1224 +#: src/libslic3r/Print.cpp:1228 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Alcuni oggetti sono troppo alti e non possono essere stampati senza essere colpiti dall'estrusore." -#: src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Per alcuni oggetti possono bastare pochi piccoli pad invece che un singolo pad grande. Questo parametro definisce quanto può essere lontano il centro di due pad. Se questi sono più vicini, si fonderanno in un unico pad." @@ -7099,9 +7110,9 @@ msgstr "Spaziatura tra le linee di interfaccia. Imposta a zero per ottenere un'i msgid "Spacing between support material lines." msgstr "Spaziatura tra le linee del materiale di supporto." -#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 -#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 #: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 @@ -7121,7 +7132,7 @@ msgstr "Velocità (mm/s)" msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Velocità per il riempimento degli spazi stretti utilizzando brevi movimenti a zig-zag. Mantieni questa velocità ragionevolmente bassa per evitare problemi di oscillazione e risonanza. Imposta a zero per disabilitare il riempimento degli spazi." -#: src/slic3r/GUI/Tab.cpp:1160 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "Velocità per i movimenti non di stampa" @@ -7129,11 +7140,11 @@ msgstr "Velocità per i movimenti non di stampa" msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Velocità per i perimetri (contorni, conosciuti anche come gusci verticali). Imposta a zero per automatizzare." -#: src/slic3r/GUI/Tab.cpp:1148 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "Velocità per i movimenti di stampa" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "Velocità di stampa Bridge." @@ -7185,11 +7196,11 @@ msgstr "Velocità usata per scaricare il filamento sulla wipe tower (non influis msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Velocità utilizzata per scaricare la punta del filamento immediatamente dopo il ramming." -#: src/slic3r/GUI/Mouse3DController.cpp:313 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "Velocità:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "Sfera" @@ -7201,36 +7212,36 @@ msgstr "Vaso a spirale" msgid "Spiral Vase" msgstr "Vaso a spirale" -#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 -#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "Dividi" -#: src/slic3r/GUI/Plater.cpp:4028 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "Dividi l'oggetto selezionato" -#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "Dividi l'oggetto selezionato in singoli oggetti" -#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "Dividi l'oggetto selezionato in singole sotto parti" -#: src/slic3r/GUI/GLCanvas3D.cpp:4599 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "Separa in oggetti" -#: src/slic3r/GUI/Plater.cpp:2965 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "Separa in oggetti" -#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "Dividi in parti" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "Dividi in parti" @@ -7250,7 +7261,7 @@ msgstr "Inizia un nuovo progetto" msgid "Start at height" msgstr "Inizia all'altezza" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "G-code iniziale" @@ -7271,16 +7282,16 @@ msgstr "Stato" msgid "Status:" msgstr "Stato:" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "Silenzioso" -#: src/slic3r/GUI/Plater.cpp:1267 +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "modalità silenziosa" -#: src/slic3r/GUI/Plater.cpp:5001 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4985 +#, c-format msgid "STL file exported to %s" msgstr "File STL esportato in %s" @@ -7288,7 +7299,7 @@ msgstr "File STL esportato in %s" msgid "Stop at height" msgstr "Ferma all'altezza" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "Successo!" @@ -7296,23 +7307,23 @@ msgstr "Successo!" msgid "support" msgstr "supporto" -#: src/libslic3r/PrintConfig.cpp:2683 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "Diametro della base del supporto" -#: src/libslic3r/PrintConfig.cpp:2693 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "Altezza della base del supporto" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "Distanza di sicurezza base supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "Blocco Supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "Rinforzo Supporto" @@ -7320,19 +7331,19 @@ msgstr "Rinforzo Supporto" msgid "Support Generator" msgstr "Generatore Supporti" -#: src/slic3r/GUI/Tab.cpp:3593 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "Testa supporto" -#: src/libslic3r/PrintConfig.cpp:2611 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "Diametro anteriore della testa del supporto" -#: src/libslic3r/PrintConfig.cpp:2620 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "Inserimento testa del supporto" -#: src/libslic3r/PrintConfig.cpp:2629 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "Larghezza testa del supporto" @@ -7340,10 +7351,10 @@ msgstr "Larghezza testa del supporto" msgid "support interface" msgstr "interfaccia supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 -#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 #: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 @@ -7357,7 +7368,7 @@ msgstr "interfaccia supporto" msgid "Support material" msgstr "Materiale di supporto" -#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 #: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Interfaccia materiale di supporto" @@ -7374,51 +7385,51 @@ msgstr "Estrusore materiale di supporto/intefaccia raft" msgid "Support material/raft/skirt extruder" msgstr "Estrusore materiale di supporto/raft/skirt" -#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 -#: src/libslic3r/PrintConfig.cpp:2665 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "Supporti solo dal piano di stampa" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "Modifica parametro del Supporto" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "Pilastro di supporto" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "Modalità di connessione dei pilastri di supporto" -#: src/libslic3r/PrintConfig.cpp:2639 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "Diametro pilastro di supporto" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "Densità punti di supporto" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "Edita punti di supporto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 -#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 -#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 -#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 -#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 -#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 -#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 -#: src/libslic3r/PrintConfig.cpp:2764 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "Supporti" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "supporti e pad" @@ -7431,55 +7442,69 @@ msgid "Supports stealth mode" msgstr "Supporto modalità silenziosa" #: src/slic3r/GUI/ConfigManipulation.cpp:159 -msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" -msgstr "I supporti funzionano meglio se le la seguente funzione è attivata:\n- Rileva perimetri ponte" +msgid "" +"Supports work better, if the following feature is enabled:\n" +"- Detect bridging perimeters" +msgstr "" +"I supporti funzionano meglio se le la seguente funzione è attivata:\n" +"- Rileva perimetri ponte" -#: src/slic3r/GUI/Preferences.cpp:89 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "Nascondi i preset \" - default - \"" -#: src/slic3r/GUI/Preferences.cpp:91 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Nascondi i preset \" - default - \" nelle selezioni Stampa / Filamento / Stampante non appena sono disponibili altri preset validi." -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 msgid "Switch code to Change extruder" msgstr "Passa il codice a Cambio estrusore" -#: src/slic3r/GUI/DoubleSlider.cpp:1147 +#: src/slic3r/GUI/DoubleSlider.cpp:1179 msgid "Switch code to Color change (%1%) for:" msgstr "Passa il codice a Cambio colore (%1%) per:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "Passa a 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "Passa alla modalità modifica" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" msgstr "Passa ad Anteprima" #: src/slic3r/GUI/wxExtensions.cpp:703 -#, possible-c-format +#, c-format msgid "Switch to the %s mode" msgstr "Passa alla modalità %s" #: src/slic3r/GUI/GUI_App.cpp:882 -msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." -msgstr "Il cambio della lingua necessita il riavvio dell'applicazione.\nVerrà cancellato il contenuto del piano." +msgid "" +"Switching the language will trigger application restart.\n" +"You will lose content of the plater." +msgstr "" +"Il cambio della lingua necessita il riavvio dell'applicazione.\n" +"Verrà cancellato il contenuto del piano." #: src/slic3r/GUI/WipeTowerDialog.cpp:365 -msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" -msgstr "Cambiare alle impostazioni semplici eliminerà tutte le modifiche fatte alle impostazioni complesse!\n\nProcedere?" +msgid "" +"Switching to simple settings will discard changes done in the advanced mode!\n" +"\n" +"Do you want to proceed?" +msgstr "" +"Cambiare alle impostazioni semplici eliminerà tutte le modifiche fatte alle impostazioni complesse!\n" +"\n" +"Procedere?" -#: src/slic3r/GUI/Tab.cpp:1016 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "nome simbolico profilo" @@ -7491,7 +7516,7 @@ msgstr "Sincronizza i layer di supporto con i layer dell'oggetto stampato. È ut msgid "Synchronize with object layers" msgstr "Sincronizza con i layer dell'oggetto" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "&Info di Sistema" @@ -7499,9 +7524,9 @@ msgstr "&Info di Sistema" msgid "System Information" msgstr "Informazioni di sistema" -#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 -#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "Preset di sistema" @@ -7513,7 +7538,7 @@ msgstr "Cattura I&stantanea di Configurazione" msgid "Taking configuration snapshot" msgstr "Cattura istantanea della configurazione" -#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatura" @@ -7525,11 +7550,11 @@ msgstr "La differenza di temperatura da applicare quando un estrusore non è att msgid "Temperature variation" msgstr "Variazione di temperatura" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "Temperature" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "Test" @@ -7542,20 +7567,29 @@ msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "La trama di riempimento %1% non è fatta per lavorare con densità al 100%." #: src/slic3r/GUI/FirmwareDialog.cpp:548 -#, possible-c-format +#, c-format msgid "The %s device could not have been found" msgstr "Il dispositivo %s non è stato trovato" #: src/slic3r/GUI/FirmwareDialog.cpp:436 -#, possible-c-format -msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." -msgstr "Il dispositivo %s non è stato trovato.\nSe il dispositivo è connesso, premi il pulsante Reset vicino al connettore USB ..." +#, c-format +msgid "" +"The %s device was not found.\n" +"If the device is connected, please press the Reset button next to the USB connector ..." +msgstr "" +"Il dispositivo %s non è stato trovato.\n" +"Se il dispositivo è connesso, premi il pulsante Reset vicino al connettore USB ..." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 -msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." -msgstr "L'oggetto modificato corrente è inclinato (angoli di rotazione non multipli di 90°).\nUn ridimensionamento non uniforme di un oggetto inclinato è possibile solamente su un sistema di coordinate reali, non appena la rotazione è inclusa nelle coordinate dell'oggetto." +msgid "" +"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" +"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" +"once the rotation is embedded into the object coordinates." +msgstr "" +"L'oggetto modificato corrente è inclinato (angoli di rotazione non multipli di 90°).\n" +"Un ridimensionamento non uniforme di un oggetto inclinato è possibile solamente su un sistema di coordinate reali, non appena la rotazione è inclusa nelle coordinate dell'oggetto." -#: src/libslic3r/PrintConfig.cpp:2717 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "Angolo predefinito per la connessione delle barre di supporto e le giunzioni." @@ -7591,7 +7625,7 @@ msgstr "L'estrusore da utilizzare per la stampa del materiale di supporto, raft msgid "The filament material type for use in custom G-codes." msgstr "Tipo di materiale da usare nei G-code personalizzati." -#: src/libslic3r/PrintConfig.cpp:3479 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Il file dove verrà scritto l'output (se non specificato, sarà basato sul file di input)." @@ -7599,60 +7633,52 @@ msgstr "Il file dove verrà scritto l'output (se non specificato, sarà basato s msgid "The firmware supports stealth mode" msgstr "Il firmware supporta la modalità silenziosa" -#: src/libslic3r/PrintConfig.cpp:377 +#: src/libslic3r/PrintConfig.cpp:120 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "Il primo layer verrà ristretto sul piano XY dal valore configurato, così da compensare per lo schiacciamento del 1° layer, anche noto come effetto Zampa d'elefante." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "non sono permessi i seguenti caratteri:" -#: src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "il seguente suffisso non è permesso:" -#: src/libslic3r/PrintConfig.cpp:2862 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Lo spazio tra la parte inferiore dell'oggetto e il pad generato nella modalità ad elevazione zero." -#: src/libslic3r/PrintConfig.cpp:2695 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "Altezza del cono alla base del pilastro" -#: src/slic3r/GUI/DoubleSlider.cpp:1895 +#: src/slic3r/GUI/DoubleSlider.cpp:1922 msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." msgstr "Gli ultimi dati del cambio colore sono stati salvati per una stampa a estrusore multiplo con cambi di attrezzo per l'intera stampa." -#: src/slic3r/GUI/DoubleSlider.cpp:1889 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 msgid "The last color change data was saved for a multi extruder printing." msgstr "Gli ultimi dati del cambio colore sono stati salvati per una stampa a estrusore multiplo." -#: src/slic3r/GUI/DoubleSlider.cpp:1873 -msgid "The last color change data was saved for a multiple extruder printer profile." -msgstr "Gli ultimi dati del cambio colore sono stati salvati per un profilo stampante a estrusore multiplo." - -#: src/slic3r/GUI/DoubleSlider.cpp:1872 -msgid "The last color change data was saved for a single extruder printer profile." -msgstr "Gli ultimi dati del cambio colore sono stati salvati per un profilo stampante a estrusore singolo." - -#: src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 msgid "The last color change data was saved for a single extruder printing." msgstr "I dati dell'ultimo cambio colore sono stati salvati per la stampa ad estrusore singolo." -#: src/libslic3r/PrintConfig.cpp:2736 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "La distanza massima tra due pilastri per collegarsi gli uni agli altri. Un valore di zero impedisce i pilastri a cascata." -#: src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "La lunghezza massima di un bridge" -#: src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Distanza minima della base del pilastro dal modello in mm. Ha senso con modalità ad elevazione zero in cui viene inserito uno spazio tra modello e pad a seconda di questo parametro." -#: src/libslic3r/PrintConfig.cpp:175 +#: src/libslic3r/PrintConfig.cpp:185 msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." msgstr "Il numero di layer solidi inferiori è aumentato al di sopra di bottom_solid_layers se necessario per soddisfare lo spessore minimo del guscio inferiore." @@ -7669,8 +7695,14 @@ msgid "The object will be raised by this number of layers, and support material msgstr "L'oggetto verrà sollevato per questo numero di layer e verrà generato il materiale di supporto al di sotto di esso." #: src/libslic3r/PrintConfig.cpp:2424 -msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "La percentuale dell'area del piano.\nSe l'area di stampa supera un determinato valore,\nverrà utilizzata l'inclinazione lenta, in caso contrario - l'inclinazione veloce" +msgid "" +"The percentage of the bed area. \n" +"If the print area exceeds the specified value, \n" +"then a slow tilt will be used, otherwise - a fast tilt" +msgstr "" +"La percentuale dell'area del piano.\n" +"Se l'area di stampa supera un determinato valore,\n" +"verrà utilizzata l'inclinazione lenta, in caso contrario - l'inclinazione veloce" #: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" @@ -7696,11 +7728,11 @@ msgstr "Il file selezionato non contiene geometrie." msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Il file selezionato contiene molteplici aree disgiunte. Non è supportato." -#: src/slic3r/GUI/Plater.cpp:2954 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "L'oggetto selezionato non può essere diviso perché contiene più di un volume/materiale." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "The selected object couldn't be split because it contains only one part." msgstr "L'oggetto selezionato non può essere diviso perché contiene solo una parte." @@ -7708,11 +7740,17 @@ msgstr "L'oggetto selezionato non può essere diviso perché contiene solo una p msgid "The selected project is no more available" msgstr "Il progetto selezionato non è più disponibile" -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." -msgstr "La stampa sequenziale è attiva.\nNon è possibile applicare alcun G-code personalizzato per oggetti con stampa sequenziale.\nQuesto codice non sarà processato durante la generazione del G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:998 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"La stampa sequenziale è attiva.\n" +"Non è possibile applicare alcun G-code personalizzato per oggetti con stampa sequenziale.\n" +"Questo codice non sarà processato durante la generazione del G-code." -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "Inclinazione della parete del pad relativa al piano. 90 gradi equivale a pareti dritte." @@ -7726,41 +7764,50 @@ msgstr "Velocità delle retrazioni (si applica solamente al motore dell'estrusor #: src/slic3r/GUI/ConfigManipulation.cpp:81 #, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" -msgstr "La modalità Vaso a spirale necessita:\n-un solo perimetro\n-nessun layer solido superiore\n-densità riempimento 0%\n-nessun materiale di supporto\n-Mantieni spessore guscio verticale attivo\n-Rileva perimetri sottili disattivo" +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"La modalità Vaso a spirale necessita:\n" +"-un solo perimetro\n" +"-nessun layer solido superiore\n" +"-densità riempimento 0%\n" +"-nessun materiale di supporto\n" +"-Mantieni spessore guscio verticale attivo\n" +"-Rileva perimetri sottili disattivo" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 -#, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "La modalità Vaso a spirale richiede:\n- un solo perimetro\n- nessun layer solido superiore\n- densità riempimento 0%\n- nessun materiale di supporto\n- disattivazione \"Mantieni spessore guscio verticale\"" - -#: src/libslic3r/Print.cpp:1233 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "L'opzione Vaso a Spirale può essere utilizzata soltanto durante la stampa di un oggetto singolo." -#: src/libslic3r/Print.cpp:1240 +#: src/libslic3r/Print.cpp:1244 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "L'opzione Vaso a Spirale può essere usata solo durante la stampa di oggetti in materiale singolo." -#: src/slic3r/GUI/Tab.cpp:3052 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "Il nome fornito è vuoto. Non può essere salvato." -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "Il nome fornito non è disponibile." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 -#: src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "Il nome fornito non è valido;" -#: src/libslic3r/Print.cpp:1218 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "Le configurazioni fornite causeranno una stampa vuota." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "Lo spessore del pad e delle intercapedini opzionali." @@ -7768,80 +7815,101 @@ msgstr "Lo spessore del pad e delle intercapedini opzionali." msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Distanza verticale tra oggetto e interfaccia del materiale di supporto. Impostando questo valore a 0 eviterà che Slic3r utilizzi il flusso e velocità bridge per il primo layer dell'oggetto." -#: src/slic3r/GUI/Tab.cpp:2571 -msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" -msgstr "La funzione Wipe non è disponibile quando si usa la modalità Retrazione Firmware.\n\nDevo disattivarla per poter abilitare la Retrazione Firmware?" +#: src/slic3r/GUI/Tab.cpp:2575 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"La funzione Wipe non è disponibile quando si usa la modalità Retrazione Firmware.\n" +"\n" +"Devo disattivarla per poter abilitare la Retrazione Firmware?" -#: src/libslic3r/Print.cpp:1264 +#: src/libslic3r/Print.cpp:1268 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "La Torre di Spurgo attualmente non supporta la volumetrica E (use_volumetric_e=0)." #: src/slic3r/GUI/ConfigManipulation.cpp:115 -msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool change.\n" +"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "La Torre di Spurgo attualmente è compatibile con i supporti non solubili solamente se questi sono stampati con l'attuale estrusore senza l'innesco di un cambio attrezzo. (entrambi support_material_extruder e support_material_interface_extruder devono essere impostati a 0)." -#: src/libslic3r/Print.cpp:1396 +#: src/libslic3r/Print.cpp:1400 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "La Torre di Spurgo attualmente è compatibile con i supporti non solubili solamente se questi sono stampati con l'attuale estrusore senza l'innesco di un cambio attrezzo. (entrambi support_material_extruder e support_material_interface_extruder devono essere impostati a 0)." -#: src/libslic3r/Print.cpp:1266 +#: src/libslic3r/Print.cpp:1270 msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." msgstr "La Torre di spurgo non è al momento supportata per stampe multi-material sequenziali." -#: src/libslic3r/Print.cpp:1258 +#: src/libslic3r/Print.cpp:1262 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "La torre di spurgo al momento è supportata solo nelle versioni G-code per Marlin, RepRap/Sprinter e Repetier." -#: src/libslic3r/Print.cpp:1260 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Attualmente la Torre di spurgo è supportata solo con l'indirizzamento relativo dell'estrusore (use_relative_e_distances = 1)." -#: src/libslic3r/Print.cpp:1289 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi vengono stampati sullo stesso numero di layer di raft" -#: src/libslic3r/Print.cpp:1291 +#: src/libslic3r/Print.cpp:1295 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi vengono stampati sullo stesso support_material_contact_distance" -#: src/libslic3r/Print.cpp:1293 +#: src/libslic3r/Print.cpp:1297 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi sono processati allo stesso modo." -#: src/libslic3r/Print.cpp:1287 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "La Torre di spurgo è supportata con oggetti multipli solo se questi hanno la stessa altezza layer" -#: src/libslic3r/Print.cpp:1253 +#: src/libslic3r/Print.cpp:1257 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "La torre di spurgo è supportata solo se tutti gli estrusori hanno l'ugello con lo stesso diametro ed utilizzano filamenti con lo stesso diametro." -#: src/libslic3r/Print.cpp:1335 +#: src/libslic3r/Print.cpp:1339 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "La Torre di spurgo è supportata solo se tutti gli oggetti hanno la stessa altezza layer variabile" -#: src/libslic3r/SLAPrintSteps.cpp:596 +#: src/libslic3r/SLAPrintSteps.cpp:621 msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." msgstr "Sono presenti oggetti non stampabili. Prova a regolare le impostazioni dei supporti per rendere gli oggetti stampabili." -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." -msgstr "È presente un cambio colore per l'estrusore che non è stato usato prima.\nControlla le impostazioni per evitare cambi colore ridondanti." +#: src/slic3r/GUI/DoubleSlider.cpp:1030 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"È presente un cambio colore per l'estrusore che non è stato usato prima.\n" +"Controlla le impostazioni per evitare cambi colore ridondanti." -#: src/slic3r/GUI/DoubleSlider.cpp:990 -msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." -msgstr "È presente un cambio colore per l'estrusore che non sarà utilizzato fino alla fine del lavoro di stampa.\nQuesto codice non sarà processato durante la generazione del G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:1024 +msgid "" +"There is a color change for extruder that won't be used till the end of print job.\n" +"This code won't be processed during G-code generation." +msgstr "" +"È presente un cambio colore per l'estrusore che non sarà utilizzato fino alla fine del lavoro di stampa.\n" +"Questo codice non sarà processato durante la generazione del G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:993 -msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." -msgstr "È presente un cambio estrusore impostato nello stesso estrusore.\nQuesto codice non verrà processato durante la generazione del G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:1027 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"È presente un cambio estrusore impostato nello stesso estrusore.\n" +"Questo codice non verrà processato durante la generazione del G-code." #: src/slic3r/GUI/UpdateDialogs.cpp:225 -#, possible-c-format +#, c-format msgid "This %s version: %s" msgstr "%s versione: %s" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Questo codice è inserito tra gli oggetti quando si utilizza una stampa sequenziale. Come predefinito, la temperatura di estrusione e del piano sono resettate con il comando non-attesa; in ogni caso se nel codice personalizzato vengono rilevati i comandi M104,M109,M140 o M190, Slic3r non aggiungerà i comandi di temperatura. Si fa presente che puoi usare variabili sostitutive per tutte le impostazioni di Slic3r, quindi puoi inserire un comando \"M109 S[first_layer_temperature]\" quando preferisci." @@ -7849,7 +7917,7 @@ msgstr "Questo codice è inserito tra gli oggetti quando si utilizza una stampa msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Questo codice personalizzato è inserito ad ogni cambio layer, subito dopo il movimento Z e prima che l'estrusore si sposti al punto del primo layer. Si fa presente che puoi usare variabili sostitutive per tutte le impostazioni di Slic3r sia per [layer_num] che per [layer_z]." -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Questo codice personalizzato è inserito ad ogni cambio layer, subito prima del movimento Z. Si fa presente che puoi usare variabili sostitutive per tutte le impostazioni di Slic3r sia per [layer_num] che per [layer_z]." @@ -7881,11 +7949,11 @@ msgstr "Questa funziona sperimentale utilizza i comandi G10 e G11 per permettere msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Questa impostazione sperimentale produce un valore in uscita di E in millimetri cubici anziché in millimetri lineari. Se il tuo firmware non sa ancora qual'è il diametro del filamento, puoi inserire un comando tipo 'M200 D[filament_diameter_0] T0' nel tuo G-code iniziale in modo da attivare la funzione volumetrica e usare il diametro associato al filamento selezionato su Slic3r. Questa funziona è supportata solo nel Marlin più recente." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "L'estrusore sarà impostato per gli elementi selezionati" -#: src/libslic3r/PrintConfig.cpp:214 +#: src/libslic3r/PrintConfig.cpp:224 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Questo valore influenza la quantità di plastica per il bridging. Puoi diminuirlo leggermente per tendere il materiale estruso ed evitare che si afflosci, sebbene le impostazioni predefinite sono generalmente buone ed è consigliabile sperimentare con il raffreddamento (usare la ventola) prima di modificare questo valore." @@ -7893,7 +7961,7 @@ msgstr "Questo valore influenza la quantità di plastica per il bridging. Puoi d msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Questo valore modifica proporzionalmente il valore del flusso. Dovrai modificare questa impostazione per ottenere una buona finitura superficiale e correggere la larghezza delle pareti singole. Normalmente i valori sono tra 0.9 e 1.1. Se ritieni di dover modificare questo valore ulteriormente, controlla il diametro del filamento e i passi E del tuo firmware." -#: src/libslic3r/PrintConfig.cpp:204 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Questa velocità della ventola verrà forzata durante tutti i bridge e overhang." @@ -7909,24 +7977,41 @@ msgstr "Questa funzione permette di forzare un layer solido ogni tot layer. Zero msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Questa funzione solleverà Z gradualmente durante la stampa di un oggetto a parete singola allo scopo di rimuovere qualunque giunzione. Questa opzione richiede un singolo perimetro, nessun riempimento, nessun layer solido superiore e nessun materiale di supporto. È possibile comunque impostare qualunque numero di layer solidi inferiori così come per i giri di skirt/brim. Non funzionerà stampando più di un oggetto." -#: src/slic3r/GUI/Plater.cpp:2351 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Non è possibile caricare questo file in modalità semplice. Si desidera passare alla modalità avanzata?" -#: src/slic3r/GUI/Plater.cpp:2341 -msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" -msgstr "Questo file contiene numerosi oggetti posizionati ad altezze multiple. Invece di considerarli come oggetti multipli, devo considerare \nquesto file come un oggetto singolo con parti multiple?" +#: src/slic3r/GUI/Plater.cpp:2357 +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should I consider\n" +"this file as a single object having multiple parts?" +msgstr "" +"Questo file contiene numerosi oggetti posizionati ad altezze multiple. Invece di considerarli come oggetti multipli, devo considerare \n" +"questo file come un oggetto singolo con parti multiple?" #: src/slic3r/GUI/FirmwareDialog.cpp:332 -#, possible-c-format -msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." -msgstr "Questo file hex di firmware non è corretto per il modello della stampante. \nIl file hex è per: %s\nLa stampante è: %s\n\nVuoi continuare ed installare il firmware comunque?\nContinua solo se sei certo che sia la cosa giusta da fare." +#, c-format +msgid "" +"This firmware hex file does not match the printer model.\n" +"The hex file is intended for: %s\n" +"Printer reported: %s\n" +"\n" +"Do you want to continue and flash this hex file anyway?\n" +"Please only continue if you are sure this is the right thing to do." +msgstr "" +"Questo file hex di firmware non è corretto per il modello della stampante. \n" +"Il file hex è per: %s\n" +"La stampante è: %s\n" +"\n" +"Vuoi continuare ed installare il firmware comunque?\n" +"Continua solo se sei certo che sia la cosa giusta da fare." -#: src/libslic3r/PrintConfig.cpp:304 +#: src/libslic3r/PrintConfig.cpp:314 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Questa funzione abilita il raffreddamento automatico che regola la velocità di stampa e la velocità della ventola in base al tempo di stampa del layer." -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:536 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "La spunta su questa opzione abilita il brim che verrà stampato attorno ad ogni oggetto nel primo layer." @@ -7938,19 +8023,19 @@ msgstr "Questo contrassegno forza una retrazione ogni volta che viene effettuato msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Questo contrassegno farà spostare l'ugello durante la retrazione in modo da minimizzare il possibile grumo con estrusori che trasudano." -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "Questo è un preset predefinito." -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "Questa è una misura relativa della densità dei punti di supporto." -#: src/slic3r/GUI/Tab.cpp:2334 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "Questa è una stampante multi-material ad estrusore singolo, i diametri di tutti gli estrusori verranno impostati al nuovo valore. Vuoi continuare?" -#: src/slic3r/GUI/Tab.cpp:957 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "Questo è un preset di sistema." @@ -7958,11 +8043,11 @@ msgstr "Questo è un preset di sistema." msgid "This is only used in the Slic3r interface as a visual help." msgstr "Utilizzato solo nell'interfaccia di Slic3r come aiuto visivo." -#: src/libslic3r/PrintConfig.cpp:326 +#: src/libslic3r/PrintConfig.cpp:336 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Questa è l'accelerazione a cui la stampante sarà reimpostata dopo aver utilizzato un valore di accelerazione per un ruolo specifico (perimetro/riempimento). Imposta a zero per evitare del tutto la reimpostazione dell'accelerazione." -#: src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:194 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "Questa è l'accelerazione che la tua stampante utilizzerà per i bridge. Impostala a zero per disattivare il controllo dell'accelerazione per i bridge." @@ -8000,8 +8085,12 @@ msgid "This matrix describes volumes (in cubic milimetres) required to purge the msgstr "Questa matrice descrive il volume (in millimetri cubici) necessario per spurgare il filamento nella torre di spurgo per una qualunque coppia di attrezzi." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 -msgid "This operation is irreversible.\nDo you want to proceed?" -msgstr "Questa operazione è irreversibile.\nVuoi continuare?" +msgid "" +"This operation is irreversible.\n" +"Do you want to proceed?" +msgstr "" +"Questa operazione è irreversibile.\n" +"Vuoi continuare?" #: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." @@ -8064,11 +8153,19 @@ msgid "This vector saves required volumes to change from/to each tool used on th msgstr "Questo vettore salva il volume necessario per cambiare da/a ogni attrezzo usato per la torre di spurgo. Questi valori vengono usati per semplificare la creazione dei volumi di spurgo completi." #: src/slic3r/GUI/UpdateDialogs.cpp:216 -#, possible-c-format -msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "Questa versione di %s non è compatibile con gli attuali gruppi di configurazioni installati.\nProbabilmente è causato dall'esecuzione di una vecchia versione di %s dopo averne utilizzata una più recente.\n\nProva a chiudere %s e riprovare con una versione più recente, o prova ad effettuare nuovamente la configurazione iniziale. Così facendo creerai un'istantanea di backup della configurazione esistente prima di istallare i file compatibili con questo %s." +#, c-format +msgid "" +"This version of %s is not compatible with currently installed configuration bundles.\n" +"This probably happened as a result of running an older %s after using a newer one.\n" +"\n" +"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "" +"Questa versione di %s non è compatibile con gli attuali gruppi di configurazioni installati.\n" +"Probabilmente è causato dall'esecuzione di una vecchia versione di %s dopo averne utilizzata una più recente.\n" +"\n" +"Prova a chiudere %s e riprovare con una versione più recente, o prova ad effettuare nuovamente la configurazione iniziale. Così facendo creerai un'istantanea di backup della configurazione esistente prima di istallare i file compatibili con questo %s." -#: src/libslic3r/PrintConfig.cpp:2449 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "Questo applicherà una correzione gamma ai poligoni 2D rasterizzati. Un valore gamma di zero comporta una calcolo della soglia nel mezzo. Questo comportamento elimina l'antialiasing senza perdere i fori nei poligoni." @@ -8080,11 +8177,11 @@ msgstr "Thread" msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "I thread sono utilizzati per parallelizzare operazioni di lunga durata. Il numero di thread ottimali è leggermente superiore al numero di core / processori disponibili." -#: src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "Inclina" -#: src/slic3r/GUI/Tab.cpp:2092 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "Tempo di tilt" @@ -8112,32 +8209,20 @@ msgstr "Tempo di inclinazione lenta" msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Tempo di attesa dopo lo scarico del filamento. Può aiutare ad ottenere cambi affidabili con materiali flessibili che potrebbero richiedere più tempo per tornare alle dimensioni originali." -#: src/slic3r/GUI/DoubleSlider.cpp:962 -msgid "To add another code use Ctrl + Left click" -msgstr "Per aggiungere un altro codice fai clic Destro+ Sinistro" - -#: src/slic3r/GUI/DoubleSlider.cpp:963 -msgid "To add another code use Right click" -msgstr "Per aggiungere un altro codice fai clic Destro" - -#: src/slic3r/GUI/Tab.cpp:968 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "Per favore specifica un nuovo nome per il preset per effettuare l'operazione." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "Ad eccezione della manipolazione ridondante dell'attrezzo,\nIl(i) cambio(i) colore per gli estrusori(e) inutilizzati è stato(sono stati) eliminato(i)" - -#: src/slic3r/GUI/Plater.cpp:4023 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "In oggetti" -#: src/slic3r/GUI/Plater.cpp:4025 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "In parti" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 -#, possible-c-format +#, c-format msgid "Toggle %c axis mirroring" msgstr "Attiva / disattiva il mirroring dell'asse %c" @@ -8145,13 +8230,13 @@ msgstr "Attiva / disattiva il mirroring dell'asse %c" msgid "too many files" msgstr "troppi file" -#: src/libslic3r/SLAPrintSteps.cpp:154 +#: src/libslic3r/SLAPrintSteps.cpp:190 msgid "Too much overlapping holes." msgstr "Troppi fori sovrapposti." -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 -#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Attrezzo" @@ -8159,11 +8244,11 @@ msgstr "Attrezzo" msgid "Tool #" msgstr "Utensile #" -#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code cambio attrezzo" -#: src/slic3r/GUI/Tab.cpp:1493 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parametri di cambio attrezzo per stampanti MM con estrusore singolo" @@ -8174,7 +8259,7 @@ msgstr "Parametri di cambio attrezzo per stampanti MM con estrusore singolo" msgid "Top" msgstr "Superiore" -#: src/slic3r/GUI/PresetHints.cpp:300 +#: src/slic3r/GUI/PresetHints.cpp:304 msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." msgstr "Suggerimento per lo spessore del guscio Superiore / Inferiore: non disponibile a causa di un'altezza dello strato non valida." @@ -8182,11 +8267,11 @@ msgstr "Suggerimento per lo spessore del guscio Superiore / Inferiore: non dispo msgid "Top fill pattern" msgstr "Trama riempimento superiore" -#: src/slic3r/GUI/PresetHints.cpp:319 +#: src/slic3r/GUI/PresetHints.cpp:323 msgid "Top is open." msgstr "La parte superiore è aperta." -#: src/slic3r/GUI/PresetHints.cpp:313 +#: src/slic3r/GUI/PresetHints.cpp:317 msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Il guscio superiore è spesso %1% mm per l'altezza layer %2% mm." @@ -8194,7 +8279,7 @@ msgstr "Il guscio superiore è spesso %1% mm per l'altezza layer %2% mm." msgid "top solid infill" msgstr "riempimento solido superiore" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 #: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Riempimento solido superiore" @@ -8223,13 +8308,12 @@ msgstr "Durata totale di ramming" msgid "Translate" msgstr "Traduci" +#: src/slic3r/GUI/Mouse3DController.cpp:300 #: src/slic3r/GUI/Mouse3DController.cpp:317 -#: src/slic3r/GUI/Mouse3DController.cpp:337 -#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Traduzione" -#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Spostamento" @@ -8237,7 +8321,7 @@ msgstr "Spostamento" msgid "Triangles" msgstr "Tiangoli" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Prova a riparare mesh non-manifold (questa opzione viene aggiunta implicitamente ogni volta che effettuiamo uno slice sul modello per effettuare l'azione richiesta)." @@ -8245,11 +8329,11 @@ msgstr "Prova a riparare mesh non-manifold (questa opzione viene aggiunta implic msgid "Type of the printer." msgstr "Tipologia stampante." -#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "Tipo:" -#: src/slic3r/GUI/Plater.cpp:3436 +#: src/slic3r/GUI/Plater.cpp:3428 msgid "Unable to reload:" msgstr "Impossibile ricaricare:" @@ -8257,18 +8341,19 @@ msgstr "Impossibile ricaricare:" msgid "undefined error" msgstr "errore non definito" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Annulla" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Annulla %1$d Azione" msgstr[1] "Annulla %1$d Azioni" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "Storia Annulla" @@ -8298,23 +8383,34 @@ msgstr "Velocità di scaricamento" msgid "Unloading speed at the start" msgstr "Velocità iniziale di scaricamento" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "LUCCHETTO APERTO" -#: src/slic3r/GUI/Tab.cpp:3266 -msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." -msgstr "L'icona del LUCCHETTO APERTO indica che alcune impostazioni sono state modificate e non sono uguali ai valori di sistema (o predefinite) per il gruppo di opzioni corrente.\nClicca qui per reimpostare tutte le impostazioni del gruppo corrente ai valori di sistema (o predefiniti)." +#: src/slic3r/GUI/Tab.cpp:3282 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or default) values." +msgstr "" +"L'icona del LUCCHETTO APERTO indica che alcune impostazioni sono state modificate e non sono uguali ai valori di sistema (o predefinite) per il gruppo di opzioni corrente.\n" +"Clicca qui per reimpostare tutte le impostazioni del gruppo corrente ai valori di sistema (o predefiniti)." -#: src/slic3r/GUI/Tab.cpp:3281 -msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." +#: src/slic3r/GUI/Tab.cpp:3297 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" +"Click to reset current value to the system (or default) value." msgstr "L'icona del LUCCHETTO APERTO indica che il valore è stato cambiato e non è uguale al valore di sistema (o predefinito). Clicca per reimpostare il valore corrente al valore di sistema (o predefinito)." -#: src/slic3r/GUI/GUI_Preview.cpp:257 +#: src/slic3r/GUI/Plater.cpp:5203 +#, c-format +msgid "Unmounting successful. The device %s(%s) can now be safely removed from the computer." +msgstr "Espulsione riuscita. Il dispositivo %s(%s) adesso può essere rimosso in sicurezza dal computer." + +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "De-retrazioni" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "Modifiche non salvate" @@ -8322,10 +8418,6 @@ msgstr "Modifiche non salvate" msgid "Unsaved Presets" msgstr "Preset non salvati" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 -msgid "Unselect gizmo / Clear selection" -msgstr "Deseleziona gizmo / Ripulisci la selezione" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:179 msgid "Unselect gizmo or clear selection" msgstr "Deseleziona gizmo o pulisci selezione" @@ -8354,12 +8446,12 @@ msgstr "archivio multidisk non supportato" msgid "Unsupported OpenGL version" msgstr "Versione OpenGL non supportata" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "Selezione non supportata" -#: src/slic3r/GUI/GLCanvas3D.cpp:960 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:955 +#, c-format msgid "up to %.2f mm" msgstr "fino a %.2f mm" @@ -8367,15 +8459,15 @@ msgstr "fino a %.2f mm" msgid "Update available" msgstr "Aggiornamento disponibile" -#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "Aggiorna automaticamente i Preset integrati" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "Aggiornamenti" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Gli aggiornamenti non vengono mai applicati senza il consenso dell'utente e non sovrascrivono mai i settaggi personalizzati dell'utente." @@ -8399,12 +8491,12 @@ msgstr "Carica all'Host di stampa con il seguente nome file:" msgid "Uploading" msgstr "Caricamento" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 msgid "Upper Layer" msgstr "Layer superiore" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "Connessione USB/Seriale" @@ -8412,11 +8504,11 @@ msgstr "Connessione USB/Seriale" msgid "USB/serial port for printer connection." msgstr "Porta USB/Seriale per connessione stampante." -#: src/slic3r/GUI/DoubleSlider.cpp:1115 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "Usa un altro estrusore" -#: src/slic3r/GUI/Preferences.cpp:147 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "Utilizza dimensione personalizzata per le icone degli strumenti" @@ -8428,15 +8520,15 @@ msgstr "Usa retrazione firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Usa la barra ( / ) come separatore di cartella se necessario." -#: src/slic3r/GUI/Preferences.cpp:129 +#: src/slic3r/GUI/Preferences.cpp:126 msgid "Use free camera" msgstr "Usa l'inquadratura libera" -#: src/libslic3r/PrintConfig.cpp:2771 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "Utilizza pad" -#: src/slic3r/GUI/Preferences.cpp:121 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "Usa la visuale prospettica" @@ -8444,7 +8536,7 @@ msgstr "Usa la visuale prospettica" msgid "Use relative E distances" msgstr "Usa distanze E relative" -#: src/slic3r/GUI/Preferences.cpp:106 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "Usa risoluzione Retina per la scena 3D" @@ -8460,27 +8552,27 @@ msgstr "Usa questa impostazione per ruotare la trama del materiale di supporto s msgid "Use volumetric E" msgstr "Utilizza E volumetrico" -#: src/slic3r/GUI/DoubleSlider.cpp:1139 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 msgid "used" msgstr "usato" -#: src/slic3r/GUI/Plater.cpp:239 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "Filamento usato (g)" -#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "Filamento usato (m)" -#: src/slic3r/GUI/Plater.cpp:238 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "Filamento usato (mm³)" -#: src/slic3r/GUI/Plater.cpp:1188 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "Materiale Usato (ml)" -#: src/slic3r/GUI/Plater.cpp:240 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "Materiale usato (unità)" @@ -8488,8 +8580,8 @@ msgstr "Materiale usato (unità)" msgid "User" msgstr "Utente" -#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 -#: src/slic3r/GUI/PresetBundle.cpp:1670 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "Preset utente" @@ -8505,31 +8597,31 @@ msgstr "Valore uguale a quello di sistema" msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Il valore è stato modificato e non è uguale al valore di sistema o all'ultimo preset salvato" -#: src/slic3r/GUI/Tab.cpp:2198 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "I valori in questa colonna sono per la modalità Normale" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "I valori in questa colonna sono per la modalità Silenziosa" -#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "Altezza layer variabile" -#: src/slic3r/GUI/GLCanvas3D.cpp:1713 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "Altezza layer variabile - Adattivo" -#: src/slic3r/GUI/GLCanvas3D.cpp:604 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "Altezza layer variabile - Modifica manuale" -#: src/slic3r/GUI/GLCanvas3D.cpp:1705 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "Altezza layer variabile - Ripristina" -#: src/slic3r/GUI/GLCanvas3D.cpp:1721 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "Altezza layer variabile - Leviga tutto" @@ -8537,7 +8629,7 @@ msgstr "Altezza layer variabile - Leviga tutto" msgid "variants" msgstr "varianti" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "produttore" @@ -8557,24 +8649,24 @@ msgstr "Versione" msgid "version" msgstr "versione" -#: src/slic3r/GUI/Tab.cpp:1055 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "Gusci verticali" -#: src/slic3r/GUI/GUI_Preview.cpp:220 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "Vista" -#: src/slic3r/GUI/ConfigWizard.cpp:814 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "Modalità Visualizzazione" -#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 -#: src/libslic3r/SLAPrintSteps.cpp:430 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "Visualizzazione supporti" -#: src/slic3r/GUI/Plater.cpp:163 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "Volume" @@ -8582,7 +8674,7 @@ msgstr "Volume" msgid "Volume to purge (mm³) when the filament is being" msgstr "Il volume di spurgo (mm³) quando il filamento viene" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "Volumi in Oggetto riordinati" @@ -8590,11 +8682,11 @@ msgstr "Volumi in Oggetto riordinati" msgid "Volumetric" msgstr "Volumetrico" -#: src/slic3r/GUI/Tab.cpp:1593 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "Suggerimenti sul flusso volumetrico non disponibili" -#: src/slic3r/GUI/GUI_Preview.cpp:228 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "Flusso volumetrico" @@ -8606,12 +8698,12 @@ msgstr "Flusso volumetrico (mm³/s)" msgid "Volumetric speed" msgstr "Velocità volumetrica" -#: src/libslic3r/PrintConfig.cpp:2906 +#: src/libslic3r/PrintConfig.cpp:2915 msgid "Wall thickness" msgstr "Spessore parete" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Attenzione" @@ -8621,16 +8713,16 @@ msgid "Welcome" msgstr "Benvenuto" #: src/slic3r/GUI/ConfigWizard.cpp:427 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Benvenuto nell'Assistente di Configurazione di %s" #: src/slic3r/GUI/ConfigWizard.cpp:429 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Benvenuto nella Configurazione Guidata di %s" -#: src/slic3r/GUI/Preferences.cpp:99 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Quando attivato, i preset di stampa e di filamento vengono mostrati nell'editor dei preset anche se sono segnati come incompatibili con la stampante attiva" @@ -8638,11 +8730,11 @@ msgstr "Quando attivato, i preset di stampa e di filamento vengono mostrati nell msgid "when printing" msgstr "durante la stampa" -#: src/libslic3r/PrintConfig.cpp:243 +#: src/libslic3r/PrintConfig.cpp:253 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "Durante la stampa di oggetti multi-materiali, questa impostazione farà si che Slic3r unisca le parti sovrapposte dell'oggetto (la seconda sarà collegata con la prima, la terza parte sarà collegata con la prima e la seconda ecc..)." -#: src/libslic3r/PrintConfig.cpp:295 +#: src/libslic3r/PrintConfig.cpp:305 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Durante la stampa di oggetti multipli o copie, questa funzione completerà ciascun oggetto prima di spostarsi al prossimo (e iniziando la stampa dal primo layer). Questa funzione è utile per evitare il rischio di stampe rovinate. Slic3r dovrebbe avvisarti e prevenire collisioni con l'estrusore, ma fai attenzione." @@ -8674,23 +8766,23 @@ msgstr "Quando la retrazione è compensata dopo un cambio di attrezzo, l'estruso msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Quando la retrazione è compensata dopo un movimento di spostamento, l'estrusore spingerà questa quantità addizionale di filamento. Questa impostazione è raramente necessaria." -#: src/slic3r/GUI/Tab.cpp:3247 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "PALLINO BIANCO" -#: src/slic3r/GUI/Tab.cpp:3269 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "L'icona a forma di PALLINO BIANCO indica un preset non di sistema (o non predefinito)." -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "L'icona a forma di PALLINO BIANCO indica che le impostazioni corrispondono agli ultimi preset salvati per il gruppo di opzioni corrente." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "L'icona a forma di PALLINO BIANCO indica che il valore è lo stesso dell'ultimo preset salvato." -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Larghezza" @@ -8698,7 +8790,7 @@ msgstr "Larghezza" msgid "Width (mm)" msgstr "Larghezza (mm)" -#: src/libslic3r/PrintConfig.cpp:2631 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "Spessore dal centro della sfera posteriore al centro della sfera anteriore" @@ -8706,7 +8798,7 @@ msgstr "Spessore dal centro della sfera posteriore al centro della sfera anterio msgid "Width of a wipe tower" msgstr "Larghezza della torre di spurgo" -#: src/libslic3r/PrintConfig.cpp:2882 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Larghezza delle barre di connessione che collegano l'oggetto e il pad generato." @@ -8734,18 +8826,18 @@ msgstr "Spurgo in questo oggetto" msgid "Wipe into this object's infill" msgstr "Spurgo nel riempimento di questo oggetto" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 #: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Opzioni pulizia" -#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Torre di spurgo" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "torre di spurgo" @@ -8758,7 +8850,7 @@ msgstr "Torre di spurgo" msgid "Wipe tower - Purging volume adjustment" msgstr "Torre di spurgo - Regolazione volume di spurgo" -#: src/slic3r/GUI/Tab.cpp:1490 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "Parametri torre di spurgo" @@ -8792,14 +8884,24 @@ msgid "World coordinates" msgstr "Coordinate reali" #: src/slic3r/GUI/UpdateDialogs.cpp:92 -msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "Vuoi installarlo?\n\nNota: verrà prima creata un'istantanea della configurazione completa. Potrà essere ripristinata in qualunque momento se dovessero presentarsi problemi con la nuova versione.\n\nGruppo di configurazioni aggiornate:" +msgid "" +"Would you like to install it?\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"Vuoi installarlo?\n" +"\n" +"Nota: verrà prima creata un'istantanea della configurazione completa. Potrà essere ripristinata in qualunque momento se dovessero presentarsi problemi con la nuova versione.\n" +"\n" +"Gruppo di configurazioni aggiornate:" #: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "scrittura richiamo non riuscita" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "Scrivi informazioni sul modello alla console." @@ -8827,7 +8929,7 @@ msgstr "Compensazione dimensione XY" msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Coordinata Y dell'angolo frontale sinistro di una torre di spurgo" -#: src/slic3r/GUI/Plater.cpp:1167 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "Si" @@ -8843,11 +8945,11 @@ msgstr "È possibile inserire qui le note riguardanti il filamento." msgid "You can put your notes regarding the printer here." msgstr "È possibile inserire qui le note riguardanti la stampante." -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "È possibile inserire qui le proprie note riguardo il materiale di stampa SLA." -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:360 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "È possibile impostare un valore positivo per disattivare completamente la ventola durante i primi layer, così da non peggiorare l'adesione." @@ -8855,16 +8957,16 @@ msgstr "È possibile impostare un valore positivo per disattivare completamente msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "È possibile utilizzare tutte le opzioni di configurazione come variabili all'interno di questo modello. Ad esempio: [layer_height], [fill_density] ecc. Puoi anche usare [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename ], [nome_filename_input]." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "Non è possibile modificare il tipo dell'ultima parte solida dell'oggetto." -#: src/slic3r/GUI/Plater.cpp:2374 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2390 +#, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Non è possibile aggiungere oggetti da %s perché uno o più sono multi-parte" -#: src/slic3r/GUI/Plater.cpp:2295 +#: src/slic3r/GUI/Plater.cpp:2311 msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "Non è possibile caricare un progetto SLA con un oggetto multi-parte sul piano" @@ -8884,29 +8986,33 @@ msgstr "Devi selezionare almeno un materiale per le stampanti selezionate" msgid "You may need to update your graphics card driver." msgstr "Dovresti aggiornare i driver della scheda video." -#: src/slic3r/GUI/Preferences.cpp:176 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "You must install a configuration update." +msgstr "È necessario installare un aggiornamento della configurazione." + +#: src/slic3r/GUI/Preferences.cpp:172 +#, c-format msgid "You need to restart %s to make the changes effective." msgstr "È necessario riavviare %s per rendere effettive le modifiche." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 +#, c-format msgid "You started your selection with %s Item." msgstr "Hai iniziato la selezione con %s elementi." -#: src/slic3r/GUI/DoubleSlider.cpp:1875 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 msgid "Your current changes will delete all saved color changes." msgstr "Le modifiche attuali cancelleranno tutti i cambi colore salvati." -#: src/slic3r/GUI/DoubleSlider.cpp:1896 +#: src/slic3r/GUI/DoubleSlider.cpp:1923 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "Le modifiche attuali cancelleranno tutti i cambi estrusore (attrezzo) salvati." -#: src/slic3r/GUI/MainFrame.cpp:913 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "Il file è stato riparato." -#: src/slic3r/GUI/Plater.cpp:2512 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "L'oggetto sembra essere troppo grande, è stato quindi ridimensionato automaticamente per entrare nel piano di stampa." @@ -8915,54 +9021,62 @@ msgid "Z offset" msgstr "Offset Z" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." -msgstr "Altezza primo layer a zero non è valida.\n\nL'altezza del primo layer verrà reimpostata a 0.01." +msgid "" +"Zero first layer height is not valid.\n" +"\n" +"The first layer height will be reset to 0.01." +msgstr "" +"Altezza primo layer a zero non è valida.\n" +"\n" +"L'altezza del primo layer verrà reimpostata a 0.01." #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." -msgstr "Altezza layer zero non valida.\n\nL'altezza layer verrà reimpostata a 0.01." +msgid "" +"Zero layer height is not valid.\n" +"\n" +"The layer height will be reset to 0.01." +msgstr "" +"Altezza layer zero non valida.\n" +"\n" +"L'altezza layer verrà reimpostata a 0.01." -#: src/libslic3r/PrintConfig.cpp:2658 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/Mouse3DController.cpp:326 -#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Zoom" msgstr "Zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 msgid "Zoom in" msgstr "Zoom in" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 msgid "Zoom out" msgstr "Zoom out" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "Zoom su tutti gli oggetti nella scena, se nessuno è selezionato" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 msgid "Zoom to Bed" msgstr "Zoom sul piano" #: src/slic3r/GUI/KBShortcutsDialog.cpp:182 -msgid "Zoom to selected object\nor all objects in scene, if none selected" -msgstr "Zoom sull'oggetto selezionato\no tutti gli oggetti in scena, se nessuno è selezionato" +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"Zoom sull'oggetto selezionato\n" +"o tutti gli oggetti in scena, se nessuno è selezionato" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "Zoom sull'oggetto selezionato" - -#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 #: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 #: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" diff --git a/resources/localization/ja/PrusaSlicer.mo b/resources/localization/ja/PrusaSlicer.mo index 32d829ce935a19c6ad1e6e47fc41f484aca40023..9211b25b0ffcc72027a43e2cf651498358895afd 100644 GIT binary patch delta 63309 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¨(Xg{%Gbkv}TCS$?%K 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 ISpD?>0C~<3zW@LL delta 47237 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 diff --git a/resources/localization/ja/PrusaSlicer_ja.po b/resources/localization/ja/PrusaSlicer_ja.po index 810f9796aa..1db540918b 100644 --- a/resources/localization/ja/PrusaSlicer_ja.po +++ b/resources/localization/ja/PrusaSlicer_ja.po @@ -5,384 +5,458 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: PhraseApp (phraseapp.com)\n" +"X-Generator: Poedit 2.2.1\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" -#: src/slic3r/GUI/MainFrame.cpp:61 +#: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " -http://github.com/prusa3d/PrusaSlicer/releasesで更新を確認することを忘れないでください" -#: src/slic3r/GUI/MainFrame.cpp:727 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " スライス完了。" -#: src/libslic3r/PrintConfig.cpp:179 src/libslic3r/PrintConfig.cpp:745 -#: src/libslic3r/PrintConfig.cpp:1154 src/libslic3r/PrintConfig.cpp:1217 -#: src/libslic3r/PrintConfig.cpp:1462 src/libslic3r/PrintConfig.cpp:2260 -#: src/libslic3r/PrintConfig.cpp:2502 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 +#: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/libslic3r/GCode/PreviewData.cpp:504 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:963 +#, c-format msgid "%.2f - %.2f mm" msgstr "%.2f〜%.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:2958 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "プリセット%1%" -#: src/slic3r/GUI/Plater.cpp:3831 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." -msgstr "ターゲットの元に戻す/やり直しスナップショットが作成された時点で、%1%プリンターがアクティブでした。 %1%プリンターに切り替えるには、%1%プリセットの再読み込みが必要です。" +msgstr "ターゲットの元に戻す/やり直しスナップショットが作成された時点で、%1%プリンターがアクティブでした。 %1%プリンターに切り替えるには、%1%プリセットのリロードが必要です。" -#: src/libslic3r/Print.cpp:1282 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mmはレイヤーの高さ%3% mmでプリントするには低すぎます" -#: src/slic3r/GUI/PresetHints.cpp:228 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:229 +#, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "フィラメント速度%3.2f mm/sで%3.2f mm³/ s。" -#: src/slic3r/GUI/Plater.cpp:974 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1152 +#, c-format msgid "%d (%d shells)" msgstr "%d (%d 領域)" -#: src/slic3r/GUI/Plater.cpp:982 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1160 +#, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d縮退ファセット、%dエッジ修正、%dファセット削除、%dファセット追加、%dファセット反転、%d後方エッジ" -#: src/slic3r/GUI/PresetHints.cpp:268 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:270 +#, c-format msgid "%d lines: %.2f mm" msgstr "%dライン:%.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:894 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:1027 +#, c-format msgid "%d presets successfully imported." msgstr "%d プリセットを正常にインポートしました。" -#: src/slic3r/GUI/MainFrame.cpp:550 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:692 +#, c-format msgid "%s &Website" -msgstr "%s&Webサイト" +msgstr "%s &Webサイト" -#: src/slic3r/GUI/UpdateDialogs.cpp:113 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:211 +#, c-format msgid "%s configuration is incompatible" msgstr "%s構成に互換性がありません" -#: src/slic3r/GUI/Field.cpp:136 -#, possible-c-format +#: src/slic3r/GUI/Field.cpp:175 +#, c-format msgid "%s doesn't support percentage" msgstr "%sは比率をサポートしていません" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, possible-c-format +#, c-format msgid "%s error" msgstr "%sエラー" -#: src/slic3r/GUI/ConfigWizard.cpp:336 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:481 +#, c-format msgid "%s Family" msgstr "%sファミリー" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, possible-c-format +#, c-format msgid "%s has encountered an error" msgstr "%sでエラーが発生しました" -#: src/slic3r/GUI/GUI_App.cpp:132 -#, possible-c-format -msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." -msgstr "%sでエラーが発生しました。 メモリ不足が原因である可能性があります。 システムに十分なRAMがあるのにこのエラーが発生している場合、バグの可能性がありますので、ご報告いただければ幸いです。\n\nこれで、アプリケーションは終了します。" +#: src/slic3r/GUI/GUI_App.cpp:138 +#, c-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" +"\n" +"The application will now terminate." +msgstr "" +"%sでエラーが発生しました。 メモリ不足が原因である可能性があります。 システムに十分なRAMがあるのにこのエラーが発生している場合、バグの可能性がありますので、ご報告いただければ幸いです。\n" +"\n" +"これで、アプリケーションは終了します。" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:155 -#, possible-c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 +#, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "%sでエラーが発生しました。 メモリ不足の可能性があります。 システムに十分な空きメモリー領域があるのに発生した場合、バグの可能性がありますので、ご報告いただければ幸いです。" -#: src/slic3r/GUI/UpdateDialogs.cpp:112 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:308 +#, c-format +msgid "%s has no configuration updates available." +msgstr "%sには使用可能な構成の更新がありません。" + +#: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 +#, c-format msgid "%s incompatibility" msgstr "%sと互換性がありません" -#: src/slic3r/GUI/UpdateDialogs.cpp:172 -#, possible-c-format -msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +#: src/slic3r/GUI/UpdateDialogs.cpp:270 +#, c-format +msgid "" +"%s now uses an updated configuration structure.\n" +"\n" +"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" +"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" +"\n" +"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." msgstr "%sは、更新された構成を使用するようになりました。さまざまなプリンターのデフォルト設定を含む、いわゆる「システムプリセット」が導入されました。 これらのシステムプリセットは変更できません。代わりに、ユーザーはシステムプリセットの1つから設定を継承して独自のプリセットを作成できます。新しく作成されたプリセットは、その前身から値を継承するか、変更された値で上書きできます。%sの指示に従って新しい設定を行い、自動プリセット更新を有効にするかどうかを選択します。" -#: src/slic3r/GUI/GUI_App.cpp:681 -#, possible-c-format +#: src/slic3r/GUI/GUI_App.cpp:820 +#, c-format msgid "%s View Mode" msgstr "%s表示モード" -#: src/slic3r/GUI/MainFrame.cpp:563 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%sは更新を開始します。 そうしないと、実行できません。\n" +" \n" +"最初に、構成の完全なスナップショットが作成され、新しいバージョンに問題がある場合は回復できます。\n" +" \n" +"更新された構成パッケージ:" + +#: src/slic3r/GUI/MainFrame.cpp:705 +#, c-format msgid "&About %s" msgstr "%sについて(&A)" -#: src/slic3r/GUI/GUI_App.cpp:769 +#: src/slic3r/GUI/GUI_App.cpp:908 msgid "&Configuration" msgstr "構成(&C)" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" msgstr "構成スナップショット(&C)" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" msgstr "コピー(&C)" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" msgstr "選択したものを削除(&D)" -#: src/slic3r/GUI/MainFrame.cpp:575 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" msgstr "編集(&E)" -#: src/slic3r/GUI/MainFrame.cpp:377 +#: src/slic3r/GUI/MainFrame.cpp:506 msgid "&Export" msgstr "エクスポート(&E)" -#: src/slic3r/GUI/MainFrame.cpp:480 src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "フィラメント設定タブ(&F)" -#: src/slic3r/GUI/MainFrame.cpp:574 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "ファイル(&F)" -#: src/slic3r/GUI/ConfigWizard.cpp:1094 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "終了(&F)" -#: src/slic3r/GUI/MainFrame.cpp:580 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "ヘルプ(&H)" -#: src/slic3r/GUI/MainFrame.cpp:359 +#: src/slic3r/GUI/MainFrame.cpp:474 msgid "&Import" msgstr "インポート(&I)" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/GUI_App.cpp:822 +msgid "&Language" +msgstr "言語(&L)" + +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "&New Project" msgstr "新しいプロジェクト(&N)" -#: src/slic3r/GUI/ConfigWizard.cpp:1093 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "次 >(&N)" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "&Open Project" msgstr "プロジェクトのオープン(&O)" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:591 msgid "&Paste" msgstr "貼り付け(&P)" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" msgstr "プレートタブ(&P)" -#: src/slic3r/GUI/GUI_App.cpp:665 +#: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" msgstr "環境設定(&P)" -#: src/slic3r/GUI/MainFrame.cpp:409 +#: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" msgstr "中止(&Q)" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" msgstr "やり直し(&R)" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" msgstr "STLファイルの修復(&R)" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" msgstr "プロジェクトを保存(&S)" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" msgstr "全て選択(&S)" -#: src/slic3r/GUI/MainFrame.cpp:558 +#: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "元に戻す(&U)" -#: src/slic3r/GUI/MainFrame.cpp:577 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" msgstr "ビュー(&V)" -#: src/slic3r/GUI/MainFrame.cpp:576 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" msgstr "ウィンドウ(&W)" -#: src/slic3r/GUI/ConfigWizard.cpp:574 src/slic3r/GUI/ConfigWizard.cpp:602 +#: src/slic3r/GUI/ConfigWizard.cpp:603 src/slic3r/GUI/ConfigWizard.cpp:631 msgid "(All)" msgstr "(全て)" -#: src/libslic3r/PrintConfig.cpp:1376 +#: src/libslic3r/PrintConfig.cpp:1446 msgid "(minimum)" msgstr "(最小)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:111 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "スライス" -#: src/slic3r/GUI/MainFrame.cpp:455 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "(Re)Slice No&w" msgstr "(再)スライス実行(&w)" -#: src/libslic3r/PrintConfig.cpp:760 src/libslic3r/PrintConfig.cpp:2555 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(不明)" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ")見つかりません。" -#: src/libslic3r/PrintConfig.cpp:1857 +#: src/libslic3r/PrintConfig.cpp:1918 msgid "0 (soluble)" msgstr "0 (溶解性)" -#: src/libslic3r/PrintConfig.cpp:1858 +#: src/libslic3r/PrintConfig.cpp:1919 msgid "0.2 (detachable)" msgstr "0.2(分離可能)" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:3074 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "3D編集画面" -#: src/libslic3r/PrintConfig.cpp:804 +#: src/libslic3r/PrintConfig.cpp:851 msgid "3D Honeycomb" msgstr "3Dハニカム" -#: src/slic3r/GUI/Mouse3DController.cpp:255 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "3Dconnexion設定" -#: src/slic3r/GUI/Plater.cpp:3590 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5038 +#, c-format msgid "3MF file exported to %s" msgstr "3MFファイルを%sにエクスポートしました" -#: src/slic3r/GUI/ConfigWizard.cpp:1092 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "< 戻る(&B)" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:287 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "アクティブなプリントプロファイルの構成値を使用する論理式。 この式の結果がtrueの場合、このプロファイルはアクティブなプリントプロファイルと互換性があるとみなされます。" -#: src/libslic3r/PrintConfig.cpp:236 +#: src/libslic3r/PrintConfig.cpp:272 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "アクティブなプリンタープロファイルの構成値を使った論理式です。 この論理式が真の場合、このプロファイルはアクティブなプリンタープロファイルと互換性があると見なされます。" -#: src/slic3r/GUI/ConfigWizard.cpp:609 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "一般的には、PLAは160〜230℃、ABSは215〜250℃です。" -#: src/slic3r/GUI/ConfigWizard.cpp:623 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "一般的には、PLAでは60℃、ABSでは110℃です。 ヒートベッドがないプリンタではゼロを入力します。" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "プリント可能範囲外のツールパスが検出されました" -#: src/slic3r/GUI/AboutDialog.cpp:35 -#, possible-c-format +#: src/slic3r/GUI/AboutDialog.cpp:199 +#, c-format msgid "About %s" msgstr "%sについて" -#: src/libslic3r/GCode/PreviewData.cpp:499 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:959 +#, c-format msgid "above %.2f mm" msgstr "%.2fmm以上" -#: src/libslic3r/PrintConfig.cpp:1499 +#: src/libslic3r/PrintConfig.cpp:1569 msgid "Above Z" msgstr "Zの上" -#: src/slic3r/GUI/Tab.cpp:1103 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "加速度コントロール (上級者向け)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73 +#: src/libslic3r/PrintConfig.cpp:2925 +msgid "Accuracy" +msgstr "精度" + +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:78 msgid "Activate" msgstr "アクティベート" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43 msgid "Active" msgstr "アクティブ" -#: src/slic3r/GUI/GLCanvas3D.cpp:273 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 +msgid "active" +msgstr "アクティブ" + +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "アダプティブ" -#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "新しいプリンターを追加" -#: src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "サポートされているモデルの下にパッドを追加します" -#: src/libslic3r/PrintConfig.cpp:1971 +#: src/libslic3r/PrintConfig.cpp:2058 msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "サポートの周りに覆い(1つの円周線)を追加します。 これにより、サポートの造形信頼性が高まりますが、除去するのが難しくなります。" -#: src/slic3r/GUI/wxExtensions.cpp:3441 +#: src/slic3r/GUI/DoubleSlider.cpp:991 +msgid "Add another code - Ctrl + Left click" +msgstr "別のコードを追加 - Ctrl +左クリック" + +#: src/slic3r/GUI/DoubleSlider.cpp:992 +msgid "Add another code - Right click" +msgstr "その他のコードを追加ー右クリック" + +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "色の変更を追加" -#: src/slic3r/GUI/wxExtensions.cpp:3435 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "色の変更(%1%)を追加:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 +#: src/slic3r/GUI/DoubleSlider.cpp:988 +msgid "Add color change - Left click" +msgstr "カラー変更の追加 - 左クリック" + +#: src/slic3r/GUI/DoubleSlider.cpp:986 +msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" +msgstr "色の変更の追加-定義済みの色の場合は左クリック、カスタムの色選択の場合はシフト +左クリック" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "現在のレイヤーに色変更マーカーを追加" -#: src/slic3r/GUI/wxExtensions.cpp:3447 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "カスタムG-コードの追加" -#: src/slic3r/GUI/GLCanvas3D.cpp:246 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "詳細を追加" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 +msgid "Add drainage hole" +msgstr "抜き穴を追加" + +#: src/slic3r/GUI/DoubleSlider.cpp:984 +msgid "Add extruder change - Left click" +msgstr "エクストルーダーの変更を追加-左クリック" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:192 msgid "Add extruder to sequence" msgstr "エクストルーダーをリストに追加します" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1662 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "一般的なサブオブジェクトの追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2584 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2613 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2631 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "高さ範囲追加" -#: src/slic3r/GUI/GLCanvas3D.cpp:3463 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" msgstr "インスタンス追加" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Add Instance of the selected object" msgstr "選択したオブジェクトのインスタンスを追加" @@ -390,112 +464,113 @@ msgstr "選択したオブジェクトのインスタンスを追加" msgid "Add layer range" msgstr "レイヤー範囲追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1950 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "レイヤー追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1067 +#: src/slic3r/GUI/GUI_ObjectList.cpp:52 msgid "Add modifier" msgstr "個別条件領域の追加" -#: src/libslic3r/PrintConfig.cpp:447 +#: src/libslic3r/PrintConfig.cpp:479 #, no-c-format msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "傾斜したモデルに隙間ができるのを避けるために、必要に応じて外周を追加します。 Slic3rは、すぐ上のループの70%以上がカバーされるまで、外周を追加します。" -#: src/slic3r/GUI/Plater.cpp:3516 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" msgstr "選択したオブジェクトの1つ以上のインスタンスを追加します" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1066 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1082 +#: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "パーツ追加" -#: src/slic3r/GUI/wxExtensions.cpp:3444 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "プリントの一時停止を追加" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "ポイント追加" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "選択ポイントを追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "設定を追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "高さ範囲の設定バンドルを追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1191 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "オブジェクトの設定バンドルを追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1190 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "サブオブジェクトの設定バンドルを追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "レイヤー設定の追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1128 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "オブジェクト設定の追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1127 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "サブオブジェクト設定の追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1676 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1922 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "形状を追加" -#: src/libslic3r/PrintConfig.cpp:382 +#: src/libslic3r/PrintConfig.cpp:409 msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)." msgstr "傾斜面付近でソリッドインフィル(塗りつぶし)を追加して、垂直方向の厚みを保証します(トップ+ボトムソリッドレイヤー)。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1069 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 +#: src/slic3r/GUI/GUI_ObjectList.cpp:54 msgid "Add support blocker" msgstr "サポートブロッカーを追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1068 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1086 +#: src/slic3r/GUI/GUI_ObjectList.cpp:53 msgid "Add support enforcer" msgstr "強制サポートを追加する" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:531 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "サポートポイントの追加" -#: src/slic3r/GUI/GLCanvas3D.cpp:3392 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "追加..." -#: src/slic3r/GUI/PresetBundle.cpp:1683 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "フィラメントの追加/削除" -#: src/slic3r/GUI/Preset.cpp:1102 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "材料の追加/削除" -#: src/slic3r/GUI/Tab.cpp:920 +#: src/slic3r/GUI/Preset.cpp:1203 +msgid "Add/Remove printers" +msgstr "プリンターの追加/削除" + +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "追加情報:" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:59 msgid "Additional Settings" msgstr "追加設定" -#: src/slic3r/GUI/ConfigWizard.cpp:431 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "更新が適用される前に、構成全体の追加バックアップスナップショットが作成されます。" @@ -503,287 +578,317 @@ msgstr "更新が適用される前に、構成全体の追加バックアップ msgid "Address" msgstr "アドレス" -#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76 -#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026 -#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139 -#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515 -#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435 -#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350 -#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 +#: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 +#: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "上級者向け" -#: src/slic3r/GUI/ConfigWizard.cpp:786 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "拡張モード" -#: src/slic3r/GUI/GUI_App.cpp:675 +#: src/slic3r/GUI/GUI_App.cpp:814 msgid "Advanced View Mode" msgstr "高度なビューモード" -#: src/slic3r/GUI/FirmwareDialog.cpp:803 +#: src/slic3r/GUI/FirmwareDialog.cpp:841 msgid "Advanced: Output log" msgstr "上級者向け:出力ログ" -#: src/libslic3r/PrintConfig.cpp:636 +#: src/libslic3r/PrintConfig.cpp:668 msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "ツールを交換した後、ノズル内に新しく挿入されたフィラメントの正確な位置がわからない場合があり、フィラメントの押圧が安定していない場合があります。 プリントヘッドをインフィル(中塗り)または犠牲オブジェクトでパージする前に、Slic3rは常にこの量の材料をワイプタワーに試し出しすることで、インフィルまたは犠牲オブジェクトを確実に形成します。" -#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "レイヤーチェンジ後のGコード" -#: src/libslic3r/PrintConfig.cpp:3009 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "モデルを指定されたポイントに合わせます。" -#: src/libslic3r/PrintConfig.cpp:3008 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "XYで整列" -#: src/libslic3r/PrintConfig.cpp:1561 +#: src/libslic3r/PrintConfig.cpp:1631 msgid "Aligned" msgstr "整列された" -#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986 +#: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "全て" -#: src/libslic3r/Print.cpp:1135 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "すべてのオブジェクトはプリントボリュームの外側にあります。" -#: src/slic3r/GUI/Plater.cpp:3298 -msgid "All objects will be removed, continue ?" -msgstr "全てのオブジェクトが除去されます。続行しますか?" +#: src/slic3r/GUI/Plater.cpp:4669 +msgid "All objects will be removed, continue?" +msgstr "すべてのオブジェクトが削除されます、続行しますか?" -#: src/slic3r/GUI/ConfigWizard.cpp:188 +#: src/slic3r/GUI/ConfigWizard.cpp:289 msgid "All standard" msgstr "すべての標準" -#: src/libslic3r/Zipper.cpp:65 +#: src/libslic3r/Zipper.cpp:62 msgid "allocation failed" msgstr "割り当て失敗" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "X軸に沿って" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "Y軸に沿って" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "Z軸に沿って" -#: src/slic3r/GUI/ConfigWizard.cpp:122 +#: src/slic3r/GUI/ConfigWizard.cpp:222 msgid "Alternate nozzles:" msgstr "代替ノズル:" -#: src/slic3r/GUI/Plater.cpp:3561 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5002 +#, c-format msgid "AMF file exported to %s" msgstr "%sにエクスポートされたAMFファイル" -#: src/slic3r/GUI/GLCanvas3D.cpp:725 -msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" +#: src/slic3r/GUI/GLCanvas3D.cpp:690 +msgid "" +"An object outside the print area was detected\n" +"Resolve the current problem to continue slicing" msgstr "プリント領域外のオブジェクトが検出されました。スライスを続行するには、この問題を解決してください" -#: src/slic3r/GUI/GLCanvas3D.cpp:720 +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "プリント可能範囲外のオブジェクトが検出されました" -#: src/slic3r/GUI/Tab.cpp:2781 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "また、次の未保存の変更があります :" -#: src/slic3r/GUI/Plater.cpp:2461 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "現在、別のエクスポートジョブを実行中です。" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Any arrow" +msgstr "任意の矢印" + +#: src/slic3r/GUI/Tab.cpp:965 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "修正したら、これから継承された新しいプリセットとして保存する必要があります。" -#: src/libslic3r/PrintConfig.cpp:88 +#: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" msgstr "APIキー/パスワード" -#: src/slic3r/GUI/GUI_App.cpp:671 +#: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "ソフトウェア設定" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "変更を適用" -#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638 +#: src/libslic3r/PrintConfig.cpp:575 src/libslic3r/PrintConfig.cpp:1708 msgid "approximate seconds" msgstr "秒(約)" -#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807 +#: src/libslic3r/PrintConfig.cpp:428 src/libslic3r/PrintConfig.cpp:854 msgid "Archimedean Chords" msgstr "アルキメデスコード" -#: src/libslic3r/Zipper.cpp:91 +#: src/libslic3r/Zipper.cpp:88 msgid "archive is too large" msgstr "アーカイブが大きすぎます" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:2955 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "%1%のプリセットを選択してよろしいですか?" -#: src/slic3r/GUI/FirmwareDialog.cpp:862 -msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" -msgstr "ファームウェアの書込みをキャンセルしてもよろしいですか?\nこれにより、プリンターが使用できない状態になる可能性があります!" +#: src/slic3r/GUI/FirmwareDialog.cpp:902 +msgid "" +"Are you sure you want to cancel firmware flashing?\n" +"This could leave your printer in an unusable state!" +msgstr "" +"ファームウェアの書込みをキャンセルしてもよろしいですか?\n" +"これにより、プリンターが使用できない状態になる可能性があります!" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1191 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 +msgid "Are you sure you want to continue?" +msgstr "続行しますか?" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "実行してもよろしいですか?" -#: src/libslic3r/PrintConfig.cpp:2258 +#: src/libslic3r/PrintConfig.cpp:2423 msgid "Area fill" msgstr "領域塗りつぶし" -#: src/slic3r/GUI/Plater.cpp:609 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "オブジェクトの周り" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:135 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "整列" -#: src/slic3r/GUI/GLCanvas3D.cpp:3486 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "選択の整列" -#: src/libslic3r/PrintConfig.cpp:3054 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "モデルをプリントパッド上に配置し、それらを1つのモデルにマージして、一度で実行できるようにします。" -#: src/slic3r/GUI/Plater.cpp:2106 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "整列" -#: src/slic3r/GUI/Plater.cpp:2718 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "配列中止。" -#: src/slic3r/GUI/Plater.cpp:2144 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "準備完了。" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "下矢印" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "左矢印" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "右矢印" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "上矢印" -#: src/slic3r/GUI/GUI_App.cpp:303 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:290 msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "回避策として、--sw_rendererパラメーターを指定してprusa-slicer.exeを実行することにより、PrusaSlicerの3Dグラフィックのレンダリングにソフトウェアレンダラーを使用させます。" -#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743 -#: src/slic3r/GUI/Tab.cpp:2798 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "注意!" -#: src/libslic3r/PrintConfig.cpp:1785 +#: src/libslic3r/PrintConfig.cpp:1871 msgid "Auto generated supports" msgstr "自動生成サポート" -#: src/slic3r/GUI/Preferences.cpp:44 +#: src/slic3r/GUI/Preferences.cpp:47 msgid "Auto-center parts" msgstr "パーツの自動センタリング" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "自動ポイント生成" -#: src/slic3r/GUI/Plater.cpp:979 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, c-format msgid "Auto-repaired (%d errors)" msgstr "自動修復( エラー: %d)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:331 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 +#, c-format msgid "Auto-repaired (%d errors):" msgstr "自動修正(エラー:%d):" -#: src/slic3r/GUI/FirmwareDialog.cpp:771 +#: src/slic3r/GUI/FirmwareDialog.cpp:809 msgid "Autodetected" msgstr "自動検出" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1338 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "サポートポイントの自動生成" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1190 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "自動生成は、マニュアルで編集されたすべてのポイントを消去します。" -#: src/slic3r/GUI/Tab.cpp:3421 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "自動生成" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "自動アップデート" -#: src/slic3r/GUI/MainFrame.cpp:406 +#: src/slic3r/GUI/MainFrame.cpp:536 msgid "Automatically repair an STL file" msgstr "STLファイルの自動修復" -#: src/slic3r/GUI/Tab.cpp:1110 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "オートスピード(上級者向け)" -#: src/libslic3r/PrintConfig.cpp:111 +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "外周をまたがないようにする" -#: src/slic3r/GUI/Tab.cpp:3081 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "戻る矢印" -#: src/slic3r/GUI/Tab.cpp:3113 -msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." -msgstr "戻る矢印アイコンは、現在の設定グループが最後に保存されたプリセットとは異なる設定に変更されたことを示します。\nクリックすると、現在の設定グループのすべての設定が最後に保存されたプリセットに戻されます。" +#: src/slic3r/GUI/Tab.cpp:3290 +msgid "" +"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click to reset all settings for the current option group to the last saved preset." +msgstr "" +"戻る矢印アイコンは、現在の設定グループが最後に保存されたプリセットとは異なる設定に変更されたことを示します。\n" +"クリックすると、現在の設定グループのすべての設定が最後に保存されたプリセットに戻されます。" -#: src/slic3r/GUI/Tab.cpp:3127 -msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." -msgstr "戻る矢印アイコンは、値が変更され、最後に保存されたプリセットと等しくないことを示します。\nクリックすると、現在の値が最後に保存されたプリセットにリセットされます。" +#: src/slic3r/GUI/Tab.cpp:3304 +msgid "" +"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" +"Click to reset current value to the last saved preset." +msgstr "" +"戻る矢印アイコンは、値が変更され、最後に保存されたプリセットと等しくないことを示します。\n" +"クリックすると、現在の値が最後に保存されたプリセットにリセットされます。" -#: src/slic3r/GUI/Preferences.cpp:52 +#: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "バックグラウンドで実行中" -#: src/slic3r/GUI/GUI_ObjectList.cpp:242 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "後方エッジ" -#: src/slic3r/GUI/MainFrame.cpp:152 +#: src/slic3r/GUI/MainFrame.cpp:174 msgid "based on Slic3r" msgstr "Slic3rをベースに" -#: src/slic3r/GUI/Tab.cpp:1484 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "ベッド" @@ -795,31 +900,31 @@ msgstr "カスタムベッドモデル" msgid "Bed custom texture" msgstr "ベッドのカスタムイメージ" -#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "ベッドの形状" -#: src/libslic3r/PrintConfig.cpp:50 +#: src/libslic3r/PrintConfig.cpp:51 msgid "Bed shape" msgstr "ベッドの形状" -#: src/slic3r/GUI/ConfigWizard.cpp:524 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "ベッドの形状とサイズ" -#: src/libslic3r/PrintConfig.cpp:122 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "ベッドの温度" -#: src/libslic3r/PrintConfig.cpp:120 +#: src/libslic3r/PrintConfig.cpp:145 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "最初のレイヤー以降のレイヤーのベッド温度。 ベッド温度制御コマンドを無効にするには、これをゼロに設定します。" -#: src/slic3r/GUI/ConfigWizard.cpp:626 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "ベッド温度:" -#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "レイヤー変更前のGコード" @@ -827,98 +932,110 @@ msgstr "レイヤー変更前のGコード" msgid "Before roll back" msgstr "元に戻す前に" -#: src/slic3r/GUI/Plater.cpp:608 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "下のオブジェクト" -#: src/libslic3r/PrintConfig.cpp:1508 +#: src/libslic3r/PrintConfig.cpp:1578 msgid "Below Z" msgstr "Zの下" -#: src/libslic3r/PrintConfig.cpp:139 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "オブジェクト間のGコード" -#: src/slic3r/GUI/Tab.cpp:1979 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "オブジェクト間のGコード(シーケンシャルプリントの場合)" -#: src/libslic3r/PrintConfig.cpp:2457 src/libslic3r/PrintConfig.cpp:2458 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "ボトル容量" -#: src/libslic3r/PrintConfig.cpp:2464 src/libslic3r/PrintConfig.cpp:2465 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "ボトル重量" #. TRN To be shown in the main menu View->Bottom -#: src/slic3r/GUI/MainFrame.cpp:524 +#. TRN To be shown in Print Settings "Bottom solid layers" +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "ボトム" -#: src/libslic3r/PrintConfig.cpp:409 +#: src/libslic3r/PrintConfig.cpp:435 msgid "Bottom fill pattern" msgstr "ボトム塗りつぶしパターン" -#: src/libslic3r/PrintConfig.cpp:152 +#: src/slic3r/GUI/PresetHints.cpp:342 +msgid "Bottom is open." +msgstr "底部が開いています。" + +#: src/slic3r/GUI/PresetHints.cpp:336 +msgid "Bottom shell is %1% mm thick for layer height %2% mm." +msgstr "最下層のシェルの厚さは%1%mmで、層の高さは%2%mmです。" + +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "底部ソリッドレイヤー" -#: src/slic3r/GUI/MainFrame.cpp:524 +#: src/slic3r/GUI/MainFrame.cpp:665 msgid "Bottom View" msgstr "下面表示" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1087 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1090 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "ボックス" -#: src/libslic3r/PrintConfig.cpp:157 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "ブリッジ" -#: src/libslic3r/PrintConfig.cpp:186 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "ブリッジ部吐出率" -#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "ブリッジインフィル" -#: src/libslic3r/PrintConfig.cpp:198 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "ブリッジ" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "ブリッジファン速度" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "ブリッジ形成角" -#: src/libslic3r/PrintConfig.cpp:168 +#: src/libslic3r/PrintConfig.cpp:204 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "ブリッジ作成時の角度設定を上書きします。 値を0に設定すると角度が自動的に計算されます。 角度を入力すると、入力した角度がすべてのブリッジに適用されます。 強制的に角度を0に指定したい場合は、180°を入力してください。" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Bridging volumetric" msgstr "ブリッジの体積値" -#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "ブリム" -#: src/libslic3r/PrintConfig.cpp:208 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "ブリム幅" -#: src/slic3r/GUI/Tab.cpp:1681 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "ブラウズ" -#: src/libslic3r/Zipper.cpp:85 +#: src/libslic3r/Zipper.cpp:82 msgid "buffer too small" msgstr "バッファーが少なすぎます" @@ -926,911 +1043,1004 @@ msgstr "バッファーが少なすぎます" msgid "Buttons And Text Colors Description" msgstr "ボタンとテキストカラーの種類" -#: src/slic3r/GUI/PresetHints.cpp:220 +#: src/slic3r/GUI/PresetHints.cpp:223 msgid "by the print profile maximum" msgstr "プリントプロファイルの最大値" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:113 +msgid "Camera" +msgstr "カメラ" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "カメラビュー" -#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37 -#: src/slic3r/GUI/ProgressStatusBar.cpp:28 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "中止" -#: src/slic3r/GUI/PrintHostDialogs.cpp:156 +#: src/slic3r/GUI/PrintHostDialogs.cpp:157 msgid "Cancel selected" msgstr "選択取り消し" -#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "中止" -#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "中止中" -#: src/slic3r/GUI/FirmwareDialog.cpp:866 +#: src/slic3r/GUI/FirmwareDialog.cpp:906 msgid "Cancelling..." msgstr "取り消し中..." -#: src/slic3r/GUI/Tab.cpp:2905 +#: src/libslic3r/Flow.cpp:61 +msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." +msgstr "%1%の押出し幅を計算できません:変数 \"%2%\"にアクセスできません。" + +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "システムプロファイルを上書きできません。" -#: src/slic3r/GUI/Tab.cpp:2909 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "外部プロファイルを上書きできません。" -#: src/libslic3r/SLAPrint.cpp:612 +#: src/libslic3r/SLAPrint.cpp:613 msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "サポートポイントなしでは続行できません! サポートポイントを追加するか、サポート生成を無効にします。" -#: src/slic3r/GUI/Tab.cpp:1840 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "オプション" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Capture a configuration snapshot" msgstr "構成スナップショットをキャプチャーする" -#: src/libslic3r/PrintConfig.cpp:3035 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "中心" -#: src/libslic3r/PrintConfig.cpp:3036 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "指定されたポイントを中心にプリントを配置します。" -#: src/slic3r/GUI/Tab.cpp:1744 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "証明書ファイル (*.crt, *.pem)|*.crt;*.pem|全て|*.*" -#: src/slic3r/GUI/GUI_App.cpp:683 -msgid "Change Application &Language" -msgstr "アプリケーション言語の変更(&L)" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 msgid "Change camera type (perspective, orthographic)" msgstr "カメラタイプの変更(パース/アイソメ)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1226 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 +msgid "Change drainage hole diameter" +msgstr "ドレインホール(抜き穴)の径を変更" + +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "エクストルーダー切替え" -#: src/slic3r/GUI/GUI_ObjectList.cpp:528 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "エクストルーダーの変更" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3852 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 +msgid "Change extruder (N/A)" +msgstr "エクストルーダーの変更(N/A)" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "エクストルーダーの変更" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:144 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 +#, c-format msgid "Change Option %s" msgstr "オプション%s変更" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3134 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "パーツタイプの変更" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:925 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "ポイントヘッド径の変更" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "選択したオブジェクトのインスタンス数を変更します" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1185 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "タイプを変更" -#: src/slic3r/GUI/UpdateDialogs.cpp:56 +#: src/slic3r/GUI/UpdateDialogs.cpp:53 msgid "Changelog && Download" msgstr "変更ログ && ダウンロード" -#: src/slic3r/GUI/GUI_App.cpp:378 +#: src/slic3r/GUI/GUI_App.cpp:442 msgid "Changing of an application language" msgstr "アプリケーション言語の変更" -#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "最新バージョンをチェック" -#: src/slic3r/GUI/BedShapeDialog.cpp:509 +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for configuration updates" +msgstr "構成の更新を確認する" + +#: src/slic3r/GUI/GUI_App.cpp:802 +msgid "Check for updates" +msgstr "アップデートのチェック" + +#: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "ベッドのイメージファイルを選択(PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:621 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "スライスするファイルを選択(STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/BedShapeDialog.cpp:532 +#: src/slic3r/GUI/BedShapeDialog.cpp:555 msgid "Choose an STL file to import bed model from:" msgstr "ベッドモデルをインポートするSTLファイルを選択します:" -#: src/slic3r/GUI/BedShapeDialog.cpp:464 +#: src/slic3r/GUI/BedShapeDialog.cpp:487 msgid "Choose an STL file to import bed shape from:" msgstr "ベッド形状をインポートするためのSTLファイルを選択:" -#: src/slic3r/GUI/GUI_App.cpp:510 +#: src/slic3r/GUI/GUI_App.cpp:555 msgid "Choose one file (3MF/AMF):" msgstr "1つのファイルを選択します(3MF/AMF):" -#: src/slic3r/GUI/GUI_App.cpp:501 +#: src/slic3r/GUI/GUI_App.cpp:567 msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "1つ以上のファイルの選択(STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:490 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "プリンタのファームウェアタイプを選択します。" -#: src/slic3r/GUI/BedShapeDialog.cpp:84 +#: src/slic3r/GUI/BedShapeDialog.cpp:89 msgid "Circular" msgstr "円形" -#: src/slic3r/GUI/GLCanvas3D.cpp:3701 src/slic3r/GUI/GLCanvas3D.cpp:3734 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "マウスの右クリックでヒストリーが表示されます" -#: src/slic3r/GUI/GUI_ObjectList.cpp:383 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "アイコンをクリックして、オブジェクトのプリント可能なプロパティを変更します" -#: src/slic3r/GUI/GUI_ObjectList.cpp:377 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "アイコンをクリックして、オブジェクトの設定を変更します" -#: src/slic3r/GUI/Plater.cpp:292 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "クリックしてプリセットを編集" -#: src/libslic3r/PrintConfig.cpp:216 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "マルチパートオブジェクトをクリップする" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:58 msgid "Clipping of view" msgstr "ビューのクリッピング" -#: src/slic3r/GUI/FirmwareDialog.cpp:814 -#: src/slic3r/GUI/PrintHostDialogs.cpp:160 +#: src/slic3r/GUI/FirmwareDialog.cpp:852 +#: src/slic3r/GUI/Mouse3DController.cpp:364 +#: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "閉じる" -#: src/libslic3r/PrintConfig.cpp:550 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 +msgid "Closing distance" +msgstr "閉鎖距離" + +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "色" -#: src/slic3r/GUI/GLCanvas3D.cpp:1099 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1005 +msgid "Color change (\"%1%\")" +msgstr "色の変更(\"%1%\")" + +#: src/slic3r/GUI/DoubleSlider.cpp:1006 +msgid "Color change (\"%1%\") for Extruder %2%" +msgstr "エクストルーダー%2%の色の変更( \"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:995 +#, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "エクストルーダー %d の色のチェンジを %.2f mmで行う。" -#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535 -#: src/libslic3r/GCode/PreviewData.cpp:406 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 +#: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "カラープリント" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "カラープリント高" -#: src/libslic3r/PrintConfig.cpp:942 +#: src/libslic3r/PrintConfig.cpp:990 msgid "Combine infill every" msgstr "インフィルをこれ毎に結合する" -#: src/libslic3r/PrintConfig.cpp:947 +#: src/libslic3r/PrintConfig.cpp:995 msgid "Combine infill every n layers" msgstr "インフィルをnレイヤー組合わせる" -#: src/slic3r/GUI/UpdateDialogs.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +msgid "Commands" +msgstr "コマンド" + +#: src/slic3r/GUI/UpdateDialogs.cpp:113 src/slic3r/GUI/UpdateDialogs.cpp:173 msgid "Comment:" msgstr "コメント:" -#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "互換性のあるプリントプロファイル" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "互換性のあるプリントプロファイル条件" -#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "互換プリンター" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "互換性のあるプリンターのコンディション" -#: src/libslic3r/PrintConfig.cpp:268 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "個々のオブジェクトを完成させる" -#: src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/PrintHostDialogs.cpp:234 msgid "Completed" msgstr "完了" -#: src/libslic3r/Zipper.cpp:57 +#: src/libslic3r/Zipper.cpp:54 msgid "compression failed" msgstr "圧縮失敗" -#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802 +#: src/libslic3r/PrintConfig.cpp:426 src/libslic3r/PrintConfig.cpp:849 msgid "Concentric" msgstr "同心円" -#: src/slic3r/GUI/ConfigWizard.cpp:1185 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "セットアップガイド(&A)" -#: src/slic3r/GUI/ConfigWizard.cpp:1182 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" msgstr "設定ウィザード(&W)" -#: src/slic3r/GUI/ConfigWizard.cpp:1184 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "設定アシスタント" -#: src/libslic3r/PrintConfig.cpp:1251 +#: src/libslic3r/PrintConfig.cpp:1316 msgid "Configuration notes" msgstr "設定上の注意" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:104 msgid "Configuration Snapshots" msgstr "設定のスナップショット" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 src/slic3r/GUI/UpdateDialogs.cpp:266 msgid "Configuration update" msgstr "構成の更新" -#: src/slic3r/GUI/UpdateDialogs.cpp:73 +#: src/slic3r/GUI/UpdateDialogs.cpp:89 msgid "Configuration update is available" msgstr "環境をアップデートできます" -#: src/slic3r/GUI/ConfigWizard.cpp:1181 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "Configuration updates" +msgstr "構成の更新" + +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "設定ウィザード" -#: src/slic3r/GUI/FirmwareDialog.cpp:863 +#: src/slic3r/GUI/FirmwareDialog.cpp:903 msgid "Confirmation" msgstr "確認" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "接続失敗。" -#: src/slic3r/GUI/Tab.cpp:3416 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "サポートスティックとジャンクションの接続" -#: src/slic3r/Utils/Duet.cpp:51 +#: src/slic3r/Utils/AstroBox.cpp:83 +msgid "Connection to AstroBox works correctly." +msgstr "AstroBoxへの接続は正常です。" + +#: src/slic3r/Utils/Duet.cpp:49 msgid "Connection to Duet works correctly." msgstr "Duetへの接続は機能しています。" -#: src/slic3r/Utils/FlashAir.cpp:70 +#: src/slic3r/Utils/FlashAir.cpp:68 msgid "Connection to FlashAir works correctly and upload is enabled." msgstr "FlashAir接続が正常に機能し、アップロードが有効になっています。" -#: src/slic3r/Utils/OctoPrint.cpp:84 +#: src/slic3r/Utils/OctoPrint.cpp:83 msgid "Connection to OctoPrint works correctly." msgstr "OctPrintとの接続成功。" -#: src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "プリンターとの接続成功。" -#: src/slic3r/Utils/OctoPrint.cpp:195 +#: src/slic3r/Utils/OctoPrint.cpp:176 msgid "Connection to Prusa SL1 works correctly." msgstr "Prusa SL1と正しく接続しました。" -#: src/libslic3r/PrintConfig.cpp:1823 +#: src/libslic3r/PrintConfig.cpp:1909 msgid "Contact Z distance" msgstr "Z軸上のサポートーオブジェクト間距離" -#: src/slic3r/GUI/AboutDialog.cpp:96 +#: src/slic3r/GUI/AboutDialog.cpp:261 msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Henrik Brix Andersen、 Nicolas Dandrimont、 Mark Hindess、 Petr Ledvina、 Joseph Lenox、 Y. Sapir、 Mike Sheldrake、 Vojtech Bubnik 、その他多くの方々の貢献。" -#: src/libslic3r/PrintConfig.cpp:2433 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "2つの隣接する柱のブリッジタイプを設定します。 2本の柱の距離に応じて、最初の2つを自動的に切り替えるジグザグ、クロス(ダブルジグザグ)、またはダイナミックにすることができます。" -#: src/slic3r/GUI/Tab.cpp:1489 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "クーリング" -#: src/libslic3r/PrintConfig.cpp:629 +#: src/libslic3r/PrintConfig.cpp:660 msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "クーリング動作はこのスピードから徐々に加速します。" -#: src/libslic3r/PrintConfig.cpp:648 +#: src/libslic3r/PrintConfig.cpp:679 msgid "Cooling moves are gradually accelerating towards this speed." msgstr "冷却動作は、この速度に向かって徐々に加速しています。" -#: src/slic3r/GUI/Tab.cpp:1510 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "クーリングしきい値" -#: src/libslic3r/PrintConfig.cpp:291 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "冷却チューブの長さ" -#: src/libslic3r/PrintConfig.cpp:283 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "冷却チューブ位置" -#: src/slic3r/GUI/Tab.cpp:2878 +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "選択したオブジェクトのコピー" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "コピー" -#: src/slic3r/GUI/MainFrame.cpp:454 +#: src/slic3r/GUI/MainFrame.cpp:589 msgid "Copy selection to clipboard" msgstr "選択をクリップボードにコピー" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 msgid "Copy to clipboard" msgstr "クリップボードにコピー" -#: src/slic3r/GUI/SysInfoDialog.cpp:120 +#: src/slic3r/GUI/SysInfoDialog.cpp:154 msgid "Copy to Clipboard" msgstr "クリップボードにコピー" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "一時的なGコードのコピーは完了しましたが、コピーチェック中にエクスポートされたGコードを開くことができませんでした。 出力Gコードは、%1%.tmpです。" + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "一時的なGコードのコピーは完了しましたが、コピーチェック中に元のGコードの%1%を開くことができませんでした。 出力Gコードは、%2%.tmpです。" + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "一時Gコードから出力Gコードへのコピーに失敗しました" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "一時Gコードの出力Gコードへのコピーに失敗しました。 SDカードが書き込みロックされていませんか?" -#: src/slic3r/GUI/AboutDialog.cpp:92 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "一時Gコードの出力Gコードへのコピーに失敗しました。 ターゲットデバイスに問題がある可能性があります。もう一度エクスポートするか、別のデバイスを使用してみてください。 破損した出力Gコードは%1%.tmpにあります。" + +#: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "コピーライト" -#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "膨張補正" -#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "補正" -#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056 -#: src/libslic3r/PrintConfig.cpp:717 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "費用" -#: src/slic3r/GUI/Plater.cpp:233 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "コスト(金額)" -#: src/slic3r/GUI/Plater.cpp:2140 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "モデルオブジェクトを配置できませんでした! 一部のジオメトリが無効のようです。" -#: src/slic3r/Utils/Duet.cpp:56 +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Could not connect to AstroBox" +msgstr "AstroBoxに接続できません" + +#: src/slic3r/Utils/Duet.cpp:54 msgid "Could not connect to Duet" msgstr "Duetに接続できませんでした" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Could not connect to FlashAir" msgstr "FlashAirに接続できませんでした" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Could not connect to OctoPrint" msgstr "OctoPrintに接続できません" -#: src/slic3r/Utils/OctoPrint.cpp:200 +#: src/slic3r/Utils/OctoPrint.cpp:181 msgid "Could not connect to Prusa SLA" msgstr "Prusa SLAに接続できませんでした" -#: src/slic3r/GUI/Tab.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "有効なプリントサーバー参照を取得できません" -#: src/slic3r/Utils/Duet.cpp:151 +#: src/slic3r/Utils/Duet.cpp:134 msgid "Could not get resources to create a new connection" msgstr "新しい接続を作成するためのリソースを取得できません" -#: src/libslic3r/PrintConfig.cpp:1872 +#: src/libslic3r/PrintConfig.cpp:1959 msgid "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "ループでサポート上部の接触層を覆います。 デフォルトでは無効になっています。" -#: src/libslic3r/PrintConfig.cpp:73 +#: src/libslic3r/PrintConfig.cpp:89 msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." msgstr "ポリゴンメッシュのスライス中に、ギャップを閉じる半径の2倍より小さいクラックが埋められます。 ギャップを閉じることで、最終的なプリント解像度が低下する可能性があるため、この値は適度に小さくすることをお勧めします。" -#: src/libslic3r/Zipper.cpp:61 +#: src/libslic3r/Zipper.cpp:58 msgid "CRC-32 check failed" msgstr "CRC-32チェックに失敗しました" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "オブジェクトの周りにパッドを作成し、サポートでオブジェクトを上げることを無視します" -#: src/libslic3r/PrintConfig.cpp:2460 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "限界角" -#: src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "クロス" -#: src/libslic3r/PrintConfig.cpp:800 +#: src/libslic3r/PrintConfig.cpp:847 msgid "Cubic" msgstr "立方" -#: src/slic3r/GUI/wxExtensions.cpp:2413 -#, possible-c-format +#: src/slic3r/GUI/wxExtensions.cpp:704 +#, c-format msgid "Current mode is %s" msgstr "現在のモードは%sです" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "現在の設定はデフォルト設定から継承されます。" -#: src/slic3r/GUI/Tab.cpp:928 -#, possible-c-format -msgid "Current preset is inherited from:\n\t%s" +#: src/slic3r/GUI/Tab.cpp:960 +#, c-format +msgid "" +"Current preset is inherited from:\n" +"\t%s" msgstr "現在のプリセット継承元:%s" -#: src/slic3r/GUI/UpdateDialogs.cpp:45 +#: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "現在のバージョン:" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "カスプ(先端)(mm)" - -#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239 -#: src/libslic3r/GCode/PreviewData.cpp:175 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 +#: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "カスタム" -#: src/libslic3r/PrintConfig.cpp:96 +#: src/libslic3r/PrintConfig.cpp:112 msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "HTTPS OctoPrint接続用にカスタムCA証明書ファイルをcrt/pem形式で指定できます。 空白のままにすると、デフォルトのOS CA証明書リポジトリが使用されます。" -#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "カスタムGコード" -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "現在のレイヤー(%1% mm)のカスタムG-コード。" +#: src/slic3r/GUI/DoubleSlider.cpp:1619 +msgid "Custom G-code on current layer (%1% mm)." +msgstr "現在のレイヤーのカスタムGコード(%1%mm)。" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "カスタムプリンター" -#: src/slic3r/GUI/ConfigWizard.cpp:373 +#: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer Setup" msgstr "カスタムプリンター設定" -#: src/slic3r/GUI/ConfigWizard.cpp:377 +#: src/slic3r/GUI/ConfigWizard.cpp:736 msgid "Custom profile name:" msgstr "カスタムプロファイル名:" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "カット" -#: src/slic3r/GUI/Plater.cpp:4193 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "面でカット" -#: src/libslic3r/PrintConfig.cpp:3014 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "指定されたZでモデルをカットします。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "シリンダー" -#: src/slic3r/GUI/MainFrame.cpp:491 +#: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" msgstr "全てを非選択状態に(&e)" -#: src/libslic3r/PrintConfig.cpp:3115 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "データディレクトリー" -#: src/slic3r/GUI/Mouse3DController.cpp:279 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "デッドゾーン:" -#: src/libslic3r/Zipper.cpp:55 +#: src/libslic3r/Zipper.cpp:52 msgid "decompression failed or archive is corrupted" msgstr "解凍に失敗したか、アーカイブが破損しています" -#: src/slic3r/GUI/Plater.cpp:4127 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" msgstr "インスタンスを減らす" -#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245 -#: src/libslic3r/PrintConfig.cpp:299 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "デフォルト" -#: xs/src/slic3r/GUI/Field.cpp:98 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:200 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:257 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:282 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:490 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "デフォルト" -#: src/libslic3r/PrintConfig.cpp:730 +#: src/libslic3r/PrintConfig.cpp:777 msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them." msgstr "インフィル(塗りつぶし)方向のデフォルトの角度。レイヤー毎に90°切替るクロスハッチングされます。 ブリッジはSlic3rが最適な方向を自動設定するため、この設定はブリッジ部分には影響しません。" -#: src/libslic3r/PrintConfig.cpp:522 +#: src/libslic3r/PrintConfig.cpp:554 msgid "Default extrusion width" msgstr "デフォルト射出幅" -#: src/slic3r/GUI/Tab.cpp:937 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "デフォルトフィラメントプロファイル" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "デフォルトフィラメントプロファイル" -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:346 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "現在のプリンタープロファイルに関連付けられているデフォルトのフィラメントプロファイル。 現在のプリンタープロファイルを選択すると、このフィラメントプロファイルがアクティブになります。" -#: src/slic3r/GUI/Tab.cpp:2757 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2919 +#, c-format msgid "Default preset (%s)" msgstr "デフォルトプリセット(%s)" -#: src/libslic3r/GCode/PreviewData.cpp:491 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "デフォルトプリントカラー" -#: src/slic3r/GUI/Tab.cpp:934 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "デフォルトプリントプロファイル" -#: src/libslic3r/PrintConfig.cpp:316 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "デフォルトプリントプロファイル" -#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341 -#: src/libslic3r/PrintConfig.cpp:2352 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "現在のプリンタープロファイルに関連付けられているデフォルトのプリントプロファイル。 現在のプリンタープロファイルを選択すると、このプリントプロファイルがアクティブになります。" -#: src/slic3r/GUI/Tab.cpp:951 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "デフォルトのSLA材料プロファイル" -#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "デフォルトのSLA材料プロファイル" -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "デフォルトのSLAプリントプロファイル" -#: src/slic3r/GUI/Field.cpp:105 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "デフォルト値" -#: src/slic3r/GUI/ConfigWizard.cpp:375 +#: src/slic3r/GUI/ConfigWizard.cpp:734 msgid "Define a custom printer profile" msgstr "カスタムプリンタープロファイルを定義する" -#: src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "キャビティの深さを定義します。 キャビティをオフにするにはゼロに設定します。 この機能を有効にするときは注意してください。一部の樹脂はキャビティ内で極端な吸引効果がでてしまい、バットフィルムからプリント物の剥離が困難になる場合があります。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:237 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "縮退したファセット" -#: src/libslic3r/PrintConfig.cpp:608 +#: src/libslic3r/PrintConfig.cpp:640 msgid "Delay after unloading" msgstr "アンロードした後の待ち時間" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "削除" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891 -#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "削除" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/MainFrame.cpp:575 msgid "Delete &all" msgstr "全て削除(&a)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 -msgid "Delete All" -msgstr "全て削除" - -#: src/slic3r/GUI/Plater.cpp:3298 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "全て削除" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "オブジェクトのすべてのインスタンスを削除" -#: src/slic3r/GUI/wxExtensions.cpp:3465 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "色変更を削除" -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "エクストルーダー%1%の色の変更を削除" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "現在のレイヤーの色変更マーカーを削除" -#: src/slic3r/GUI/wxExtensions.cpp:3467 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "カスタムG-コードを削除" -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "\"%1%\"へのエクストルーダーの変更を削除" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 +msgid "Delete drainage hole" +msgstr "ドレインホール(抜き穴)の除去" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1898 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "高さ範囲を削除" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1876 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" msgstr "インスタンス削除" -#: src/slic3r/GUI/Plater.cpp:2592 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "オブジェクト削除" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:100 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 +#, c-format msgid "Delete Option %s" msgstr "オプション%s削除" -#: src/slic3r/GUI/wxExtensions.cpp:3466 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "プリント一時停止を削除" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Delete selected" msgstr "選択を削除します" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "選択を削除" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2303 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "選択したアイテムを削除" -#: src/slic3r/GUI/Plater.cpp:4083 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "選択オブジェクトの削除" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1782 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "設定削除" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1857 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "サブオブジェクト削除" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:720 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "サポートポイントの削除" -#: src/slic3r/GUI/Tab.cpp:131 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "このプリセットを削除" -#: src/slic3r/GUI/MainFrame.cpp:449 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 +msgid "Delete tick mark - Left click or press \"-\" key" +msgstr "マーカーの削除-マウスの左ボタンまたは「-」キー" + +#: src/slic3r/GUI/DoubleSlider.cpp:1517 +msgid "Delete tool change" +msgstr "ツールチェンジを削除" + +#: src/slic3r/GUI/MainFrame.cpp:576 msgid "Deletes all objects" msgstr "全てのオブジェクトを削除" -#: src/slic3r/GUI/MainFrame.cpp:447 +#: src/slic3r/GUI/MainFrame.cpp:573 msgid "Deletes the current selection" msgstr "現在の選択を削除します" -#: src/libslic3r/PrintConfig.cpp:685 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "密度" -#: src/libslic3r/PrintConfig.cpp:744 +#: src/libslic3r/PrintConfig.cpp:791 msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "0%-100%の範囲で表される内部インフィルの密度。" -#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584 -#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086 -#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "依存関係" -#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543 +#: src/libslic3r/PrintConfig.cpp:1612 src/libslic3r/PrintConfig.cpp:1613 msgid "Deretraction Speed" msgstr "待避からの復帰速度" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +msgid "Deselect all" +msgstr "全ての選択解除" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "方形で選択解除" -#: src/slic3r/GUI/MainFrame.cpp:492 +#: src/slic3r/GUI/MainFrame.cpp:569 msgid "Deselects all objects" msgstr "全てのオブジェクトの選択解除" -#: src/libslic3r/PrintConfig.cpp:1304 +#: src/libslic3r/PrintConfig.cpp:1373 msgid "Detect bridging perimeters" msgstr "ブリッジ外周の検出" -#: src/libslic3r/PrintConfig.cpp:1988 +#: src/libslic3r/PrintConfig.cpp:2075 msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)." msgstr "単一の線の太さ(2本の線が入れられず、1本の線で射出する必要がある部分)の壁を検出します。" -#: src/libslic3r/PrintConfig.cpp:1986 +#: src/libslic3r/PrintConfig.cpp:2073 msgid "Detect thin walls" msgstr "薄壁を検知" -#: src/libslic3r/PrintConfig.cpp:3083 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "指定されたモデルで接続されていないパーツを検出し、それらを個別のオブジェクトに分割します。" -#: src/slic3r/GUI/Plater.cpp:1713 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "検出された高度なデータ" -#: src/slic3r/GUI/Mouse3DController.cpp:259 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "デバイス:" -#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677 +#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/libslic3r/PrintConfig.cpp:709 msgid "Diameter" msgstr "直径" -#: src/libslic3r/PrintConfig.cpp:2443 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "支柱ベースの直径(mm)" -#: src/libslic3r/PrintConfig.cpp:2399 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "サポート支柱の直径(mm)" -#: src/libslic3r/PrintConfig.cpp:2371 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "サポート先端の直径" -#: src/slic3r/GUI/BedShapeDialog.cpp:89 +#: src/slic3r/GUI/BedShapeDialog.cpp:94 msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." msgstr "プリントベッドの直径。 原点(0,0)は中央にあるとみなされます。" -#: src/libslic3r/PrintConfig.cpp:1569 +#: src/libslic3r/PrintConfig.cpp:1639 msgid "Direction" msgstr "方向" -#: src/libslic3r/PrintConfig.cpp:323 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "ファンをオフにする最初のレイヤー" -#: src/libslic3r/PrintConfig.cpp:1280 +#: src/libslic3r/PrintConfig.cpp:1349 msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "移動経路が上層の外周をまたがない場合、吸い込みを無効にします(したがって、垂れ出てもおそらく見えません)。" -#: src/slic3r/GUI/wxExtensions.cpp:3078 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "すべてのカスタム変更を破棄" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "変更取りやめ" -#: src/slic3r/GUI/Tab.cpp:2784 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "変更を破棄して続行しますか?" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "変位(mm)" - -#: src/slic3r/GUI/Tab.cpp:2041 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "ディスプレイ" -#: src/libslic3r/PrintConfig.cpp:2208 +#: src/libslic3r/PrintConfig.cpp:2359 msgid "Display height" msgstr "ディスプレイの高さ" -#: src/libslic3r/PrintConfig.cpp:2319 +#: src/libslic3r/PrintConfig.cpp:2378 msgid "Display horizontal mirroring" msgstr "水平ディスプレイミラーリング" -#: src/libslic3r/PrintConfig.cpp:2227 +#: src/libslic3r/PrintConfig.cpp:2392 msgid "Display orientation" msgstr "ディスプレイの向き" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" msgstr "プリントサーバーのアップロードキュー画面を表示する" -#: src/libslic3r/PrintConfig.cpp:2326 +#: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" msgstr "垂直ミラーリングを表示する" -#: src/libslic3r/PrintConfig.cpp:2202 +#: src/libslic3r/PrintConfig.cpp:2353 msgid "Display width" msgstr "画面の幅" -#: src/libslic3r/PrintConfig.cpp:341 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "コピー間の距離" -#: src/libslic3r/PrintConfig.cpp:1610 +#: src/libslic3r/PrintConfig.cpp:1680 msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "スカート(パーツを囲むアウトライン)とオブジェクト間の距離。 これをゼロに設定すると、スカートがオブジェクトの最外周に密着し、ブリム(縁)となります。" -#: src/libslic3r/PrintConfig.cpp:2752 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "オブジェクトと生成されたパッドを接続する2つのコネクタスティック間の距離。" -#: src/libslic3r/PrintConfig.cpp:1609 +#: src/libslic3r/PrintConfig.cpp:1679 msgid "Distance from object" msgstr "オブジェクトからの距離" -#: src/slic3r/GUI/BedShapeDialog.cpp:80 +#: src/slic3r/GUI/BedShapeDialog.cpp:85 msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "四角形の左前隅からの0,0 Gコード座標の距離。" -#: src/libslic3r/PrintConfig.cpp:285 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "ノズル先端から冷却チューブの中心までの距離。" -#: src/libslic3r/PrintConfig.cpp:1338 +#: src/libslic3r/PrintConfig.cpp:1382 msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "アンロード時にフィラメントが止まっている位置からエクストルーダー先端までの距離。 これは、プリンターファームウェアの値と一致させる必要があります。" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "プレートの自動配置機能で使用される距離。" -#: src/libslic3r/PrintConfig.cpp:3097 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "存在しない読込みが行われても提供されたファイルは失敗させない。" -#: src/libslic3r/PrintConfig.cpp:3041 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "元のXY座標を残して、マージする前にモデルを再配置しないでください。" -#: src/slic3r/GUI/Field.cpp:206 -#, possible-c-format -msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." +#: src/slic3r/GUI/Field.cpp:240 +#, c-format +msgid "" +"Do you mean %s%% instead of %s %s?\n" +"Select YES if you want to change this value to %s%%, \n" +"or NO if you are sure that %s %s is a correct value." msgstr "%s%sではなく%s%%ですか?この値を%s %%に変更するなら「はい」を、%s%sでよろしいなら「いいえ」を選択してください。" -#: src/slic3r/GUI/GUI_App.cpp:754 +#: src/slic3r/GUI/ConfigWizard.cpp:1761 +msgid "Do you want to automatic select default filaments?" +msgstr "デフォルトのフィラメントを自動的に選択しますか?" + +#: src/slic3r/GUI/ConfigWizard.cpp:1772 +msgid "Do you want to automatic select default materials?" +msgstr "デフォルトの材料を自動的に選択しますか?" + +#: src/slic3r/GUI/DoubleSlider.cpp:1920 +msgid "Do you want to delete all saved tool changes?" +msgstr "保存したツールの変更をすべて削除しますか?" + +#: src/slic3r/GUI/GUI_App.cpp:884 msgid "Do you want to proceed?" msgstr "続行しますか?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Plater.cpp:3321 +msgid "Do you want to retry" +msgstr "リトライしますか" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "マニュアル編集したサポートポイントを保存しますか?" -#: src/libslic3r/PrintConfig.cpp:3040 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "整列させない" -#: src/slic3r/GUI/UpdateDialogs.cpp:55 +#: src/slic3r/GUI/UpdateDialogs.cpp:71 msgid "Don't notify about new releases any more" msgstr "新しいリリースについて通知しない" -#: src/libslic3r/PrintConfig.cpp:333 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "ブリッジ部のサポート禁止" @@ -1838,348 +2048,397 @@ msgstr "ブリッジ部のサポート禁止" msgid "Downgrade" msgstr "ダウングレード" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "ドラッグ" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:340 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:355 +#: src/libslic3r/SLAPrintSteps.cpp:44 +msgid "Drilling holes into model." +msgstr "モデルに穴を開けます。" + +#: src/libslic3r/SLAPrintSteps.cpp:199 +msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." +msgstr "メッシュの穴あけに失敗しました。 これは通常、モデルの破損が原因です。 最初に修正してください。" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:337 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:349 msgid "Drop to bed" msgstr "ベッドに落とす" -#: src/libslic3r/PrintConfig.cpp:3044 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "複製" -#: src/libslic3r/PrintConfig.cpp:3049 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "グリッドで複製" -#: src/slic3r/GUI/PresetHints.cpp:39 +#: src/slic3r/GUI/PresetHints.cpp:40 msgid "During the other layers, fan" msgstr "他のレイヤーの間、ファン" -#: src/libslic3r/PrintConfig.cpp:2418 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "動的" -#: src/slic3r/GUI/MainFrame.cpp:708 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "エクスポート(&x)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:238 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "エッジ修正" -#: src/slic3r/GUI/wxExtensions.cpp:3460 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "色を編集" -#: src/slic3r/GUI/wxExtensions.cpp:3462 +#: src/slic3r/GUI/DoubleSlider.cpp:960 +msgid "Edit current color - Right click the colored slider segment" +msgstr "現在の色を編集-色付きのスライダーセグメントを右クリック" + +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "カスタムG-コードの編集" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2690 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "高さ範囲の編集" -#: src/slic3r/GUI/wxExtensions.cpp:3461 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "一時停止メッセージを編集" -#: src/slic3r/GUI/GUI_ObjectList.cpp:373 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 +msgid "Edit tick mark - Ctrl + Left click" +msgstr "マーカーの編集-Ctrl +マウスの左ボタン" + +#: src/slic3r/GUI/DoubleSlider.cpp:1038 +msgid "Edit tick mark - Right click" +msgstr "マーカーの編集-マウスの右ボタン" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "編集中" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:118 msgid "Elephant foot compensation" msgstr "最初の層の広がり補正" -#: src/libslic3r/SLAPrint.cpp:678 +#: src/libslic3r/PrintConfig.cpp:2447 +msgid "Elephant foot minimum width" +msgstr "エレファントフット(最下層がちょっと太る)の最小幅" + +#: src/libslic3r/SLAPrint.cpp:625 msgid "Elevation is too low for object. Use the \"Pad around object\" feature to print the object without elevation." msgstr "オブジェクトに対して持上げ高さが低すぎます。 「オブジェクトの周囲のパッド」機能を使用して、オブジェクトを持上げ高さなしでプリントします。" -#: src/libslic3r/PrintConfig.cpp:1044 +#: src/libslic3r/PrintConfig.cpp:1093 msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode." msgstr "正確な残り時間を表示させるために、Gコードに1分間隔でM73 P [プリント率(%)] R [残り時間(分)]を埋め込みます。 現在のところ、M73を認識するのはPrusa i3 MK3ファームウェアのみです。 また、Prusa i3 MK3ファームウェアは、サイレントモードのM73 Qxx Sxxもサポートしています。" -#: src/libslic3r/GCode.cpp:628 +#: src/libslic3r/GCode.cpp:637 msgid "Empty layers detected, the output would not be printable." msgstr "空のレイヤーが検出されたため、モデルをプリントできませんでした。" -#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286 -#: src/libslic3r/PrintConfig.cpp:2099 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 +#: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "有効" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "自動クーリングを有効化する" -#: src/libslic3r/PrintConfig.cpp:539 +#: src/libslic3r/PrintConfig.cpp:572 msgid "Enable fan if layer print time is below" msgstr "レイヤーのプリント時間がこれ以下の場合にファンをオンにします" -#: src/libslic3r/PrintConfig.cpp:2321 +#: src/libslic3r/PrintConfig.cpp:2908 +msgid "Enable hollowing" +msgstr "くり抜きを有効にする" + +#: src/libslic3r/PrintConfig.cpp:2380 msgid "Enable horizontal mirroring of output images" msgstr "出力画像の水平ミラーリングを有効にします" -#: src/libslic3r/PrintConfig.cpp:1781 +#: src/libslic3r/PrintConfig.cpp:1867 msgid "Enable support material generation." msgstr "サポート材生成の有効化。" -#: src/libslic3r/PrintConfig.cpp:918 +#: src/libslic3r/PrintConfig.cpp:966 msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." msgstr "このオプションを有効にすると、Gコードのプリント移動コマンドに、どのオブジェクトに属するものかがわかるようにラベルコメントが追加されます。これはOctoprintのCancelObjectプラグインに役立ちます。 この設定は、単一エクストルーダーのマルチマテリアル構成およびオブジェクト内ワイプのノズルクリーニング機能と互換性がありません。" -#: src/libslic3r/PrintConfig.cpp:881 +#: src/libslic3r/PrintConfig.cpp:929 msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." msgstr "これを有効にすると、コメント化されたGコードファイルが生成され、各行に説明テキストが追加されます。 ただし、SDカードからプリントする場合、ファイルサイズ増大が原因で処理が間に合わずプリント速度が低下する可能性があります。" -#: src/libslic3r/PrintConfig.cpp:2085 +#: src/libslic3r/PrintConfig.cpp:2186 msgid "Enable variable layer height feature" msgstr "可変レイヤー高さ機能を有効にする" -#: src/libslic3r/PrintConfig.cpp:2328 +#: src/libslic3r/PrintConfig.cpp:2387 msgid "Enable vertical mirroring of output images" msgstr "出力イメージの垂直ミラーリングをオンにします" -#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955 -#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 +#: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" msgstr "終了Gコード" -#: src/libslic3r/PrintConfig.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" msgstr "最初のサポートを強制" -#: src/libslic3r/PrintConfig.cpp:1845 +#: src/libslic3r/PrintConfig.cpp:1931 msgid "Enforce support for the first n layers" msgstr "最初のnレイヤーのサポートを強制します" -#: src/slic3r/GUI/PrintHostDialogs.cpp:197 -#: src/slic3r/GUI/PrintHostDialogs.cpp:228 +#: src/slic3r/GUI/PrintHostDialogs.cpp:198 +#: src/slic3r/GUI/PrintHostDialogs.cpp:229 msgid "Enqueued" msgstr "キュー追加済み" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:407 msgid "Ensure vertical shell thickness" msgstr "垂直壁の厚さを確認する" -#: src/slic3r/GUI/wxExtensions.cpp:3499 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "クリーニングタワーは、すべてのオブジェクトのレイヤー高さが同じである場合にのみサポートされます" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "新しい名前を入力" -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "プリントを一時停止したときにプリンターディスプレイに表示するショートメッセージを入力" +#: src/slic3r/GUI/DoubleSlider.cpp:1634 +msgid "Enter short message shown on Printer display when a print is paused" +msgstr "プリントが一時停止されたときにプリンターディスプレイに表示される短いメッセージを入力します" -#: src/slic3r/GUI/ConfigWizard.cpp:622 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "フィラメントをベッドに確実に付着させるために必要なベッド温度を入力します。" -#: src/slic3r/GUI/ConfigWizard.cpp:570 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "フィラメント径を入力します。" -#: src/slic3r/GUI/ConfigWizard.cpp:557 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "プリンターのホットエンドノズルの直径を入力します。" -#: src/slic3r/GUI/ConfigWizard.cpp:608 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 +msgid "Enter the height you want to jump to" +msgstr "ジャンプしたい高さを入力" + +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "コピー数を入力:" + +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "フィラメントを押し出すのに必要な温度を入力します。" -#: src/libslic3r/PrintConfig.cpp:718 +#: src/libslic3r/PrintConfig.cpp:761 msgid "Enter your filament cost per kg here. This is only for statistical information." msgstr "ここに1kgあたりのフィラメント価格を入力します。 プリント情報表示に使われます。" -#: src/libslic3r/PrintConfig.cpp:686 +#: src/libslic3r/PrintConfig.cpp:718 msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement." msgstr "ここにフィラメント密度を入力します。 これは統計情報に使われます。 適切な方法は、フィラメントの既知の長さを量り、長さと体積の比率を計算することです。 より良いのは、変位によって直接体積を計算することです。" -#: src/libslic3r/PrintConfig.cpp:678 +#: src/libslic3r/PrintConfig.cpp:710 msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "ここにフィラメントの直径を入力します。 精度が必要な場合、ノギスでフィラメントの複数箇所を測定し、平均値を求めてください。" -#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 +#: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "エラー" -#: src/slic3r/GUI/FirmwareDialog.cpp:608 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:645 +#, c-format msgid "Error accessing port at %s: %s" msgstr "%sポートへのアクセスエラー:%s" -#: src/slic3r/GUI/Plater.cpp:3593 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:3433 +msgid "Error during reload" +msgstr "リロード中にエラー発生" + +#: src/slic3r/GUI/Plater.cpp:5043 +#, c-format msgid "Error exporting 3MF file %s" msgstr "3MFファイル%sのエクスポートエラー" -#: src/slic3r/GUI/Plater.cpp:3564 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5005 +#, c-format msgid "Error exporting AMF file %s" msgstr "AMFファイル%sのエクスポートエラー" -#: src/slic3r/GUI/PrintHostDialogs.cpp:153 +#: src/slic3r/GUI/PrintHostDialogs.cpp:154 msgid "Error Message" msgstr "エラーメッセージ" -#: src/slic3r/GUI/AppConfig.cpp:105 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "PrusaSlicer構成ファイルの読み込みエラー。 ファイルが破損している可能性があります。 ファイルを手動で削除してください。 ユーザープロファイルは影響を受けません。" -#: src/slic3r/GUI/PrintHostDialogs.cpp:271 +#: src/slic3r/GUI/PrintHostDialogs.cpp:272 msgid "Error uploading to print host:" msgstr "プリントサーバーへのアップロードエラー:" -#: src/libslic3r/Zipper.cpp:105 +#: src/libslic3r/Zipper.cpp:102 msgid "Error with zip archive" msgstr "zipアーカイブのエラー" -#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1443 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "エラー!" -#: src/slic3r/GUI/BedShapeDialog.cpp:482 +#: src/slic3r/GUI/BedShapeDialog.cpp:505 msgid "Error! Invalid model" msgstr "エラー!無効なモデル" -#: src/slic3r/GUI/FirmwareDialog.cpp:610 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:647 +#, c-format msgid "Error: %s" msgstr "エラー: %s" -#: src/slic3r/GUI/Plater.cpp:1503 +#: src/slic3r/GUI/Job.hpp:123 msgid "ERROR: not enough resources to execute a new job." msgstr "エラー:新しいジョブを実行するのに十分なリソースがありません。" -#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028 -#: src/slic3r/GUI/Plater.cpp:1070 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "予測プリント時間" -#: src/slic3r/GUI/Plater.cpp:424 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "どこでも" -#: src/slic3r/GUI/PresetHints.cpp:50 +#: src/slic3r/GUI/PresetHints.cpp:51 msgid "except for the first %1% layers." msgstr "最初の%1%レイヤーを除きます。" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:53 msgid "except for the first layer." msgstr "最初のレイヤーを除きます。" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "ノズル径%3% mmで過剰な%1%=%2% mmをプリント可能" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 +#, c-format msgid "Exit %s" msgstr "%s終了" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:371 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "ブリッジエリアでサポート材の生成をしない試用的オプション。" -#: src/libslic3r/PrintConfig.cpp:1306 +#: src/libslic3r/PrintConfig.cpp:1375 msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan." msgstr "オーバーハング時の流量を調整する試用的なオプション(ブリッジ流量が使用されます)、ブリッジ速度を適用してファンを有効にします。" -#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461 +#: src/slic3r/GUI/GUI_App.cpp:815 src/slic3r/GUI/wxExtensions.cpp:755 msgid "Expert" msgstr "高度" -#: src/slic3r/GUI/ConfigWizard.cpp:787 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "エキスパートモード" -#: src/slic3r/GUI/GUI_App.cpp:676 +#: src/slic3r/GUI/GUI_App.cpp:815 msgid "Expert View Mode" msgstr "エキスパートビューモード" -#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821 +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "エクスポート" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export &Config" msgstr "設定のエクスポート(&C)" -#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" -msgstr "&Gコードのエクスポート" +msgstr "Gコードのエクスポート(&G)" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export &toolpaths as OBJ" msgstr "ツールパスをOBJとしてエクスポート(&t)" -#: src/libslic3r/PrintConfig.cpp:2949 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "3MFのエクスポート" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export all presets to file" msgstr "すべてのプリセットをファイルにエクスポートします" -#: src/libslic3r/PrintConfig.cpp:2954 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "AMFのエクスポート" -#: src/slic3r/GUI/Plater.cpp:1932 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "AMFファイルのエクスポート:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "STLとしてエクスポート" -#: src/slic3r/GUI/MainFrame.cpp:375 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +msgid "Export config" +msgstr "構成のエクスポート" + +#: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" msgstr "設定とバンドルのエクスポート(&B)" -#: src/slic3r/GUI/MainFrame.cpp:373 +#: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" msgstr "現在の構成をファイルにエクスポート" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export current plate as AMF" msgstr "現在のプレートをAMFとしてエクスポート" -#: src/slic3r/GUI/MainFrame.cpp:362 +#: src/slic3r/GUI/MainFrame.cpp:477 msgid "Export current plate as G-code" msgstr "現在のプレートをGコードとしてエクスポート" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export current plate as STL" msgstr "現在のプレートをSTLとしてエクスポート" -#: src/slic3r/GUI/MainFrame.cpp:368 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export current plate as STL including supports" msgstr "サポートを含むSTLとして現在のプレートをエクスポート" -#: src/slic3r/GUI/Plater.cpp:2722 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "エクスポート失敗" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733 -#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964 +#: src/slic3r/GUI/ConfigWizard.cpp:801 +msgid "Export full pathnames of models and parts sources into 3mf and amf files" +msgstr "モデルのフルパス名とパーツソースを3mfおよびamfファイルにエクスポートする" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "Gコードのエクスポート" -#: src/libslic3r/PrintConfig.cpp:2931 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "OBJのエクスポート" -#: src/slic3r/GUI/Plater.cpp:2531 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "OBJファイルのエクスポート :" @@ -2187,55 +2446,63 @@ msgstr "OBJファイルのエクスポート :" msgid "Export of a temporary 3mf file failed" msgstr "3MFの一時ファイルのエクスポートに失敗しました" -#: src/slic3r/GUI/MainFrame.cpp:370 +#: src/slic3r/GUI/MainFrame.cpp:492 msgid "Export plate as &AMF" -msgstr "プレートを&AMFとしてエクスポート" +msgstr "プレートをAMFとしてエクスポート(&A)" -#: src/slic3r/GUI/MainFrame.cpp:366 +#: src/slic3r/GUI/MainFrame.cpp:486 msgid "Export plate as &STL" -msgstr "プレートを&STLとしてエクスポート" +msgstr "プレートをSTLとしてエクスポート(&S)" -#: src/slic3r/GUI/MainFrame.cpp:481 +#: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" msgstr "サポートを含むSTLとしてプレートをエクスポート(&i)" -#: src/libslic3r/PrintConfig.cpp:2943 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "SLAのエクスポート" -#: src/libslic3r/PrintConfig.cpp:2959 +#: src/slic3r/GUI/Preferences.cpp:72 +msgid "Export sources full pathnames to 3mf and amf" +msgstr "ソースのフルパス名を3mfおよびamfにエクスポートする" + +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "STLのエクスポート" -#: src/slic3r/GUI/Plater.cpp:1925 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "STLファイルのエクスポート :" -#: src/libslic3r/PrintConfig.cpp:2950 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "モデルを3MFとしてエクスポートします。" -#: src/libslic3r/PrintConfig.cpp:2955 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "モデルをAMF形式でエクスポート。" -#: src/libslic3r/PrintConfig.cpp:2932 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "モデルをOBJとしてエクスポート。" -#: src/libslic3r/PrintConfig.cpp:2960 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "STLとしてモデルをエクスポート。" -#: src/slic3r/GUI/Plater.cpp:2927 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "選択したオブジェクトをSTL形式でエクスポートします" -#: src/slic3r/GUI/MainFrame.cpp:488 +#: src/slic3r/GUI/Plater.cpp:880 +msgid "Export to SD card / Flash drive" +msgstr "SDカード/Flashドライブにエクスポート" + +#: src/slic3r/GUI/MainFrame.cpp:496 msgid "Export toolpaths as OBJ" msgstr "ツールパスをOBJとしてエクスポート" -#: src/libslic3r/Print.cpp:1517 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "Gコードのエクスポート" @@ -2248,139 +2515,143 @@ msgstr "モデルのエクスポート中..." msgid "Exporting source model" msgstr "ソースモデルのエクスポート" -#: src/libslic3r/SLAPrint.cpp:700 +#: src/libslic3r/SLAPrint.cpp:646 msgid "Exposition time is out of printer profile bounds." msgstr "露光時間がプリンタープロファイルの範囲外です。" -#: src/slic3r/GUI/Tab.cpp:3306 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "露光" -#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "露光時間" -#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "最外周" -#: src/slic3r/GUI/PresetHints.cpp:153 +#: src/slic3r/GUI/PresetHints.cpp:156 msgid "external perimeters" msgstr "最外周" -#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425 +#: src/libslic3r/PrintConfig.cpp:446 src/libslic3r/PrintConfig.cpp:457 msgid "External perimeters" msgstr "最外周" -#: src/libslic3r/PrintConfig.cpp:437 +#: src/libslic3r/PrintConfig.cpp:469 msgid "External perimeters first" msgstr "最外周を先にプリント" -#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526 +#: src/libslic3r/PrintConfig.cpp:1588 src/libslic3r/PrintConfig.cpp:1596 msgid "Extra length on restart" msgstr "追加の戻り距離" -#: src/libslic3r/PrintConfig.cpp:1321 +#: src/libslic3r/PrintConfig.cpp:1390 msgid "Extra loading distance" msgstr "追加ローディング長さ" -#: src/libslic3r/PrintConfig.cpp:445 +#: src/libslic3r/PrintConfig.cpp:477 msgid "Extra perimeters if needed" msgstr "必要に応じて外周を追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479 -#: src/libslic3r/PrintConfig.cpp:455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 +#: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "エクストルーダー" -#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format msgid "Extruder %d" msgstr "エクストルーダー %d" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 +msgid "Extruder (tool) is changed to Extruder \"%1%\"" +msgstr "エクストルーダー(ツール)がエクストルーダー\"%1%\"に変更されます" + +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "エクストルーダーとベッド温度" -#: src/slic3r/GUI/WipeTowerDialog.cpp:226 +#: src/slic3r/GUI/WipeTowerDialog.cpp:255 msgid "Extruder changed to" msgstr "エクストルーダーを変更" -#: src/slic3r/GUI/Tab.cpp:1171 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "エクストルーダーのクリアランス(mm)" -#: src/libslic3r/PrintConfig.cpp:490 +#: src/libslic3r/PrintConfig.cpp:522 msgid "Extruder Color" msgstr "エクストルーダーカラー" -#: src/libslic3r/PrintConfig.cpp:497 +#: src/libslic3r/PrintConfig.cpp:529 msgid "Extruder offset" msgstr "エクストルーダーのオフセット" -#: src/libslic3r/PrintConfig.cpp:863 +#: src/libslic3r/PrintConfig.cpp:911 msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file." msgstr "最初のレイヤーのエクストルーダー温度。 プリント中に温度をマニュアル制御する場合は、これをゼロに設定して、出力ファイルの温度制御コマンドを無効にします。" -#: src/libslic3r/PrintConfig.cpp:1978 +#: src/libslic3r/PrintConfig.cpp:2065 msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "最初のレイヤー以降のレイヤーのエクストルーダー温度。 出力の温度制御コマンドを無効にするには、これをゼロに設定します。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72 -#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119 -#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456 -#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340 -#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852 -#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151 -#: src/libslic3r/PrintConfig.cpp:2159 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 +#: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 +#: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 +#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 msgid "Extruders" msgstr "エクストルーダー" -#: src/libslic3r/PrintConfig.cpp:507 +#: src/libslic3r/PrintConfig.cpp:539 msgid "Extrusion axis" msgstr "射出軸" -#: src/libslic3r/PrintConfig.cpp:513 +#: src/libslic3r/PrintConfig.cpp:545 msgid "Extrusion multiplier" msgstr "射出率" -#: src/slic3r/GUI/ConfigWizard.cpp:612 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "射出温度:" -#: src/slic3r/GUI/Tab.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "射出幅" -#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514 -#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523 -#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962 -#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688 -#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 +#: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 +#: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 +#: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 +#: src/libslic3r/PrintConfig.cpp:1947 src/libslic3r/PrintConfig.cpp:2106 msgid "Extrusion Width" msgstr "射出幅" -#: src/slic3r/GUI/Plater.cpp:139 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "面" -#: src/slic3r/GUI/GUI_ObjectList.cpp:240 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "追加されたファセット" -#: src/slic3r/GUI/GUI_ObjectList.cpp:239 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "削除されたファセット" -#: src/slic3r/GUI/GUI_ObjectList.cpp:241 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "ファセットが反転しました" -#: src/libslic3r/PrintConfig.cpp:2302 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "初期露出レイヤー" -#: src/libslic3r/Zipper.cpp:47 +#: src/libslic3r/Zipper.cpp:44 msgid "failed finding central directory" msgstr "基準ディレクトリの検索に失敗しました" @@ -2388,181 +2659,181 @@ msgstr "基準ディレクトリの検索に失敗しました" msgid "Failed loading the input model." msgstr "入力モデルの読み込みに失敗しました。" -#: src/libslic3r/PrintBase.cpp:65 +#: src/libslic3r/PrintBase.cpp:71 msgid "Failed processing of the output_filename_format template." msgstr "output_filename_formatの処理に失敗しました。" -#: src/slic3r/GUI/PresetHints.cpp:41 +#: src/slic3r/GUI/PresetHints.cpp:42 msgid "Fan" msgstr "ファン" -#: src/slic3r/GUI/Tab.cpp:1501 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "ファン設定" -#: src/slic3r/GUI/Tab.cpp:1502 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "ファンスピード" -#: src/libslic3r/GCode/PreviewData.cpp:368 +#: src/libslic3r/GCode/PreviewData.cpp:353 msgid "Fan Speed (%)" msgstr "ファンスピード(%)" -#: src/libslic3r/PrintConfig.cpp:2240 +#: src/libslic3r/PrintConfig.cpp:2405 msgid "Fast" msgstr "早い" -#: src/libslic3r/PrintConfig.cpp:2241 +#: src/libslic3r/PrintConfig.cpp:2406 msgid "Fast tilt" msgstr "早いチルト" -#: src/slic3r/GUI/GUI_App.cpp:135 +#: src/slic3r/GUI/GUI_App.cpp:141 msgid "Fatal error" msgstr "致命的なエラー" -#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/libslic3r/GCode/PreviewData.cpp:394 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 +#: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "機能タイプ" -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "射出の種類" -#: src/slic3r/GUI/ConfigWizard.cpp:1488 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "FFF型プリンター" -#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470 -#: src/slic3r/GUI/Tab.cpp:1471 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "フィラメント" -#: src/slic3r/GUI/Preset.cpp:1275 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "フィラメント" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "フィラメントとノズル径" -#: src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "フィラメント径:" -#: src/libslic3r/PrintConfig.cpp:620 +#: src/libslic3r/PrintConfig.cpp:651 msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." msgstr "フィラメントは、冷却チューブ内で上下に移動することにより冷却されます。 これらの上下移動の必要な回数を指定します。" -#: src/libslic3r/PrintConfig.cpp:654 +#: src/libslic3r/PrintConfig.cpp:686 msgid "Filament load time" msgstr "フィラメントのローディング時間" -#: src/libslic3r/PrintConfig.cpp:556 +#: src/libslic3r/PrintConfig.cpp:588 msgid "Filament notes" msgstr "フィラメントメモ" -#: src/slic3r/GUI/Tab.cpp:1502 src/slic3r/GUI/Tab.cpp:1557 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "フィラメント上書き" -#: src/libslic3r/PrintConfig.cpp:1312 +#: src/libslic3r/PrintConfig.cpp:1381 msgid "Filament parking position" msgstr "フィラメント待避ポジション" -#: src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "フィラメントプロファイルの選択" -#: src/slic3r/GUI/Tab.cpp:1516 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "フィラメント特性" -#: src/slic3r/GUI/Tab.hpp:335 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "フィラメント設定" -#: src/libslic3r/PrintConfig.cpp:694 +#: src/libslic3r/PrintConfig.cpp:726 msgid "Filament type" msgstr "フィラメントの種類" -#: src/libslic3r/PrintConfig.cpp:669 +#: src/libslic3r/PrintConfig.cpp:701 msgid "Filament unload time" msgstr "フィラメントアンロード時間" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 msgid "filaments" msgstr "フィラメント" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1883 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "フィラメント" -#: src/libslic3r/Zipper.cpp:75 +#: src/libslic3r/Zipper.cpp:72 msgid "file close failed" msgstr "ファイルのクローズに失敗しました" -#: src/libslic3r/Zipper.cpp:69 +#: src/libslic3r/Zipper.cpp:66 msgid "file create failed" msgstr "ファイルの作成に失敗しました" -#: src/slic3r/GUI/MainFrame.cpp:642 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "ファイルが見つかりません" -#: src/libslic3r/Zipper.cpp:89 +#: src/libslic3r/Zipper.cpp:86 msgid "file not found" msgstr "ファイルがありません" -#: src/libslic3r/Zipper.cpp:67 +#: src/libslic3r/Zipper.cpp:64 msgid "file open failed" msgstr "ファイルオープンエラー" -#: src/libslic3r/Zipper.cpp:73 +#: src/libslic3r/Zipper.cpp:70 msgid "file read failed" msgstr "ファイルの読込に失敗しました" -#: src/libslic3r/Zipper.cpp:77 +#: src/libslic3r/Zipper.cpp:74 msgid "file seek failed" msgstr "ファイル検索に失敗" -#: src/libslic3r/Zipper.cpp:79 +#: src/libslic3r/Zipper.cpp:76 msgid "file stat failed" msgstr "ファイル情報失敗" -#: src/libslic3r/Zipper.cpp:39 +#: src/libslic3r/Zipper.cpp:36 msgid "file too large" msgstr "ファイルが大きすぎます" -#: src/libslic3r/Zipper.cpp:71 +#: src/libslic3r/Zipper.cpp:68 msgid "file write failed" msgstr "ファイルの書き込みに失敗しました" -#: src/slic3r/GUI/PrintHostDialogs.cpp:152 +#: src/slic3r/GUI/PrintHostDialogs.cpp:153 msgid "Filename" msgstr "ファイル名" -#: src/libslic3r/PrintConfig.cpp:728 +#: src/libslic3r/PrintConfig.cpp:775 msgid "Fill angle" msgstr "塗りつぶし角" -#: src/libslic3r/PrintConfig.cpp:742 +#: src/libslic3r/PrintConfig.cpp:789 msgid "Fill density" msgstr "充填密度" -#: src/libslic3r/PrintConfig.cpp:779 +#: src/libslic3r/PrintConfig.cpp:826 msgid "Fill pattern" msgstr "インフィルパターン" -#: src/libslic3r/PrintConfig.cpp:410 +#: src/libslic3r/PrintConfig.cpp:437 msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells." msgstr "底部のインフィル(中塗り)パターン。 これは、最下部のレイヤーのみで、それより上のレイヤーのインフィルパターンには影響しません。" -#: src/libslic3r/PrintConfig.cpp:781 +#: src/libslic3r/PrintConfig.cpp:828 msgid "Fill pattern for general low-density infill." msgstr "一般的な低密度インフィルのパターン。" -#: src/libslic3r/PrintConfig.cpp:390 +#: src/libslic3r/PrintConfig.cpp:417 msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells." msgstr "トップレイヤーのインフィル(塗りつぶし)パターン。 これは最上層レイヤーにのみに適用され、それ以外のソリッドシェル(塗りつぶし)には影響しません。" @@ -2570,404 +2841,473 @@ msgstr "トップレイヤーのインフィル(塗りつぶし)パターン。 msgid "Finished" msgstr "完了" -#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "ファームウェア" -#: src/slic3r/GUI/FirmwareDialog.cpp:740 +#: src/slic3r/GUI/FirmwareDialog.cpp:777 msgid "Firmware flasher" msgstr "ファームウェア更新" -#: src/slic3r/GUI/FirmwareDialog.cpp:765 +#: src/slic3r/GUI/FirmwareDialog.cpp:802 msgid "Firmware image:" msgstr "ファームウェアイメージ:" -#: src/slic3r/GUI/Tab.cpp:2431 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "ファームウェア引き込み" -#: src/slic3r/GUI/ConfigWizard.cpp:486 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "ファームウェアタイプ" -#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821 -#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862 +#: src/libslic3r/PrintConfig.cpp:859 src/libslic3r/PrintConfig.cpp:868 +#: src/libslic3r/PrintConfig.cpp:876 src/libslic3r/PrintConfig.cpp:910 msgid "First layer" msgstr "1番目のレイヤー" -#: src/libslic3r/PrintConfig.cpp:841 +#: src/slic3r/GUI/ConfigManipulation.cpp:61 src/libslic3r/PrintConfig.cpp:889 msgid "First layer height" msgstr "最初のレイヤー高さ" -#: src/libslic3r/Print.cpp:1328 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "最初のレイヤー高は、ノズルの直径より大きくすることはできません" -#: src/libslic3r/PrintConfig.cpp:852 +#: src/libslic3r/PrintConfig.cpp:900 msgid "First layer speed" msgstr "最初のレイヤーの速度" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "First layer volumetric" msgstr "最初のレイヤーの体積押出し" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "Netfabbで修正" -#: src/slic3r/GUI/Plater.cpp:3072 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "NetFabbで修正" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Flash printer &firmware" -msgstr "&firmwareをプリンタに書込む" +msgstr "firmwareをプリンタに書込む(&f)" -#: src/slic3r/GUI/FirmwareDialog.cpp:146 +#: src/slic3r/GUI/FirmwareDialog.cpp:150 msgid "Flash!" msgstr "書込み!" -#: src/slic3r/GUI/FirmwareDialog.cpp:275 +#: src/slic3r/GUI/FirmwareDialog.cpp:284 msgid "Flashing cancelled." msgstr "書込み中止。" -#: src/slic3r/GUI/FirmwareDialog.cpp:192 +#: src/slic3r/GUI/FirmwareDialog.cpp:199 msgid "Flashing failed" msgstr "アップロード失敗" -#: src/slic3r/GUI/FirmwareDialog.cpp:274 +#: src/slic3r/GUI/FirmwareDialog.cpp:283 msgid "Flashing failed. Please see the avrdude log below." msgstr "更新に失敗しました。 以下のavrdudeログを参照してください。" -#: src/slic3r/GUI/FirmwareDialog.cpp:148 +#: src/slic3r/GUI/FirmwareDialog.cpp:152 msgid "Flashing in progress. Please do not disconnect the printer!" msgstr "更新中。 プリンターの接続を切らないでください!" -#: src/slic3r/GUI/FirmwareDialog.cpp:273 +#: src/slic3r/GUI/FirmwareDialog.cpp:282 msgid "Flashing succeeded!" msgstr "更新完了!" -#: src/slic3r/GUI/Tab.cpp:1156 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "移動" -#: src/slic3r/GUI/PresetHints.cpp:219 +#: src/slic3r/GUI/PresetHints.cpp:220 msgid "flow rate is maximized" msgstr "最大送り量になります" -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "右クリックしてコードを追加します" - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "マウスの左ボタンを押してエクストルーダーの変更を追加します" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "色を変更するには、マウスの左ボタンをクリックしてください" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" -msgstr "\"%1%\"コードを削除するには、マウスの左ボタンを押します\n\"%1%\"コードを編集するには、マウスの右ボタンを押します" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" -msgstr "色の変更を削除するには、マウスの左ボタンをクリックします\n右クリックして色を選択します" - -#: src/slic3r/GUI/UpdateDialogs.cpp:188 +#: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "詳細については、Wikiページをご覧ください:" -#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "強制サポートのみ" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3345 -msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." +#: src/slic3r/GUI/Tab.cpp:3265 +msgid "" +"for the left button: \tindicates a non-system (or non-default) preset,\n" +"for the right button: \tindicates that the settings hasn't been modified." msgstr "左ボタンの場合:システム(デフォルト)プリセットでないことを示し、右側ボタンの場合:設定が変更されていないことを示します。" -#: src/slic3r/GUI/ConfigManipulation.cpp:128 -msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." -msgstr "ワイプタワーを可溶性のサポートと連携させるには、\nサポートレイヤーをオブジェクトレイヤーと同期させる必要があります。" +#: src/slic3r/GUI/ConfigManipulation.cpp:136 +msgid "" +"For the Wipe Tower to work with the soluble supports, the support layers\n" +"need to be synchronized with the object layers." +msgstr "" +"ワイプタワーを可溶性のサポートと連携させるには、\n" +"サポートレイヤーをオブジェクトレイヤーと同期させる必要があります。" -#: src/libslic3r/Print.cpp:1302 +#: src/libslic3r/Print.cpp:1396 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "ワイプタワーを可溶性のサポートと連携させるには、サポートレイヤーをオブジェクトレイヤーと同期させる必要があります。" -#: src/libslic3r/PrintConfig.cpp:2832 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "オブジェクト全体にパッドを強制" -#: src/libslic3r/PrintConfig.cpp:1660 +#: src/libslic3r/PrintConfig.cpp:1729 msgid "Force solid infill for regions having a smaller area than the specified threshold." msgstr "指定されたしきい値よりも小さい領域を、ソリッドインフィル(塗りつぶし)にします。" -#: src/libslic3r/PrintConfig.cpp:1023 +#: src/libslic3r/PrintConfig.cpp:1072 msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." msgstr "隣接するマテリアル/ボリューム間に強制的にソリッド(塗りつぶし)シェルを生成します。 半透明材料または可溶性サポート材を使用したマルチエクストルーダーのプリントに役立ちます。" -#: src/slic3r/GUI/WipeTowerDialog.cpp:262 +#: src/slic3r/GUI/WipeTowerDialog.cpp:300 msgid "From" msgstr "前のエクストルーダー" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "オブジェクトリストからオブジェクトの最後のパートを削除することはできません。" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front" msgstr "正面" -#: src/slic3r/GUI/MainFrame.cpp:525 +#: src/slic3r/GUI/MainFrame.cpp:667 msgid "Front View" msgstr "正面" -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "完全なプロファイル名" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "Gコード" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87 +#: src/slic3r/GUI/DoubleSlider.cpp:1021 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"このチェックマークに関連付けられているGコードは、プリントモードと競合しています。\n" +"編集すると、スライダーデータが変更されます。" + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "Gコードファイルを%1%にエクスポートしました" -#: src/libslic3r/PrintConfig.cpp:888 +#: src/libslic3r/PrintConfig.cpp:936 msgid "G-code flavor" msgstr "Gコード型" -#: src/libslic3r/PrintConfig.cpp:689 +#: src/libslic3r/PrintConfig.cpp:721 msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2473 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870 -#: src/libslic3r/GCode/PreviewData.cpp:170 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "ギャップフィル" -#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812 -#: src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "全般" -#: src/libslic3r/PrintConfig.cpp:1242 +#: src/libslic3r/PrintConfig.cpp:1307 msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder." msgstr "1番目のレイヤーで指定された量のフィラメントを射出するためにスカート(パーツを囲むアウトライン)周回数を設定を超えて生成します。 マルチエクストルーダーの場合、この最小値は各エクストルーダーに適用されます。" -#: src/libslic3r/PrintConfig.cpp:1779 +#: src/libslic3r/PrintConfig.cpp:1865 msgid "Generate support material" msgstr "サポート材の生成" -#: src/libslic3r/PrintConfig.cpp:1840 +#: src/libslic3r/PrintConfig.cpp:1926 msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "通常のサポート材が有効/無効、およびオーバハング角度に関係なく、下から数えて指定された数のレイヤーまでのサポートを強制的に生成します。 これは、ビルドプレート(ベッド)上のプリント領域(フットプリント)が非常に薄い/不十分なオブジェクトの密着力を高めるのに役立ちます。" -#: src/libslic3r/PrintConfig.cpp:2362 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "サポート生成" -#: src/libslic3r/PrintConfig.cpp:2364 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "モデルのサポートを生成する" -#: src/libslic3r/Print.cpp:1492 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "ブリム生成" -#: src/libslic3r/Print.cpp:1524 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "Gコード作成中" -#: src/libslic3r/SLAPrint.cpp:58 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "パッド生成" -#: src/libslic3r/PrintObject.cpp:141 +#: src/libslic3r/PrintObject.cpp:152 msgid "Generating perimeters" msgstr "境界線の生成中" -#: src/libslic3r/Print.cpp:1484 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "スカート生成" -#: src/libslic3r/PrintObject.cpp:391 +#: src/libslic3r/PrintObject.cpp:395 msgid "Generating support material" msgstr "サポート材の生成" -#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "サポートポイントの生成" -#: src/libslic3r/SLAPrint.cpp:57 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "サポートツリーの生成" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1551 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "一般" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 msgid "Gizmo cut" msgstr "ギズモカット" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 msgid "Gizmo move" msgstr "ギズモ移動" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 msgid "Gizmo Place face on bed" msgstr "ベッド面にギズモ配置" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 msgid "Gizmo rotate" msgstr "ギズモ回転" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 msgid "Gizmo scale" msgstr "ギズモ縮尺" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:177 +msgid "Gizmo SLA hollow" +msgstr "ギズモSLAくり抜き" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 msgid "Gizmo SLA support points" msgstr "ギズモ-SLAサポートポイント" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:641 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "ギズモ移動" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:569 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "ギズモ-面に配置" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:651 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "ギズモ-回転" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:646 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "ギズモ-縮尺" -#: src/slic3r/GUI/AboutDialog.cpp:95 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +msgid "Gizmos" +msgstr "ギズモ" + +#: src/slic3r/GUI/AboutDialog.cpp:259 msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, version 3 (AGPL v3)" -#: src/slic3r/GUI/ConfigWizard.cpp:571 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "高い精度が必要なため、ノギスを使用して何カ所かフィラメントの測定を行い、直径を計算します。" -#: src/libslic3r/PrintConfig.cpp:797 +#: src/libslic3r/PrintConfig.cpp:844 msgid "Grid" msgstr "グリッド" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1846 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "グループ操作" -#: src/libslic3r/PrintConfig.cpp:805 +#: src/slic3r/GUI/Preferences.cpp:133 +msgid "GUI" +msgstr "GUI" + +#: src/libslic3r/PrintConfig.cpp:852 msgid "Gyroid" msgstr "ジャイロイド" -#: src/slic3r/GUI/Tab.cpp:2775 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "次の未保存の変更があります:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:48 msgid "Head diameter" msgstr "先端径" -#: src/slic3r/GUI/ConfigManipulation.cpp:304 +#: src/slic3r/GUI/ConfigManipulation.cpp:317 msgid "Head penetration should not be greater than the head width." msgstr "サポートチップの貫通は、サポートチップの厚さを超えないようにしてください。" -#: src/libslic3r/PrintConfig.cpp:822 +#: src/libslic3r/PrintConfig.cpp:869 msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "最初のレイヤーのビルドプレート(ベッド)の加熱温度。ベッド温度制御コマンドを無効にするには、これをゼロにします。" -#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "高さ" -#: src/libslic3r/GCode/PreviewData.cpp:396 +#: src/libslic3r/GCode/PreviewData.cpp:347 msgid "Height (mm)" msgstr "高さ(mm)" -#: src/libslic3r/PrintConfig.cpp:1618 +#: src/libslic3r/PrintConfig.cpp:1688 msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts." msgstr "スカート(パーツを囲むアウトライン)の高さをレイヤーで指定します。 この値を大きくすると周囲環境からのシールドになります。" -#: src/libslic3r/PrintConfig.cpp:2209 +#: src/libslic3r/PrintConfig.cpp:2360 msgid "Height of the display" msgstr "ディスプレイの高さ" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1350 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "個別条件領域の高さ範囲" -#: src/slic3r/GUI/GLCanvas3D.cpp:3650 src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "高さ範囲" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "フィラメントを切り替える高さ。" -#: src/slic3r/GUI/ConfigWizard.cpp:300 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:433 +#, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "こんにちは、%sへようこそ! この%sは初期設定に役立ちます。 いくつかの設定を行うだけで、プリントの準備ができます。" -#: src/libslic3r/PrintConfig.cpp:2976 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "ヘルプ" -#: src/libslic3r/PrintConfig.cpp:2982 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "ヘルプ(FFFオプション)" -#: src/libslic3r/PrintConfig.cpp:2987 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "ヘルプ(SLAオプション)" -#: src/slic3r/GUI/WipeTowerDialog.cpp:225 +#: src/slic3r/GUI/WipeTowerDialog.cpp:254 msgid "Here you can adjust required purging volume (mm³) for any given pair of tools." msgstr "ここで、ツールの任意のペアで必要なパージ量(mm³)を調整できます。" -#: src/libslic3r/PrintConfig.cpp:925 +#: src/libslic3r/PrintConfig.cpp:973 msgid "High extruder current on filament swap" msgstr "フィラメント交換時の高いエクストルーダー電流" -#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 +msgid "Higher print quality versus higher print speed." +msgstr "高いプリント品質vs.高いプリント速度。" + +#: src/libslic3r/PrintConfig.cpp:427 src/libslic3r/PrintConfig.cpp:853 msgid "Hilbert Curve" msgstr "ヒルベルト曲線" -#: src/slic3r/GUI/Plater.cpp:873 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "シフトキーを押しながらで、スライス&Gコードエクスポート" -#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:47 +msgid "Hole depth" +msgstr "穴の深さ" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:46 +msgid "Hole diameter" +msgstr "穴径" + +#: src/slic3r/GUI/Plater.cpp:2760 +msgid "Hollow" +msgstr "くり抜き" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 +msgid "Hollow and drill" +msgstr "くり抜きと穴開け" + +#: src/libslic3r/PrintConfig.cpp:2910 +msgid "Hollow out a model to have an empty interior" +msgstr "内部を空にするためにモデルをくり抜く" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 +msgid "Hollow this object" +msgstr "このオブジェクトのくり抜き" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 +msgid "Hollowing" +msgstr "くり抜き" + +#: src/slic3r/GUI/Plater.cpp:2926 +msgid "Hollowing cancelled." +msgstr "くり抜きをキャンセルしました。" + +#: src/slic3r/GUI/Plater.cpp:2927 +msgid "Hollowing done." +msgstr "くり抜き完了。" + +#: src/slic3r/GUI/Plater.cpp:2929 +msgid "Hollowing failed." +msgstr "くり抜き失敗。" + +#: src/libslic3r/PrintConfig.cpp:2937 +msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." +msgstr "くり抜きは2ステップで形成されます。最初に、オブジェクトの仮想の内壁がより深く計算され(オフセット+閉鎖距離)、次に指定されたオフセットまで膨張します。 閉鎖距離が大きいと、モデルの内部は丸みを帯びます。 ゼロでは、モデルの内部はモデルの外部シェイプに最も似ます。" + +#: src/libslic3r/SLAPrintSteps.cpp:43 +msgid "Hollowing model" +msgstr "くり抜きモデル" + +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 +msgid "Hollowing parameter change" +msgstr "くり抜きパラメータの変更" + +#: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "ハニカム" -#: src/slic3r/GUI/Tab.cpp:1013 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "水平構造設定" -#: src/libslic3r/PrintConfig.cpp:209 +#: src/libslic3r/PrintConfig.cpp:245 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "各オブジェクトの最初のレイヤーにプリントされるブリム(縁)の幅。" -#: src/slic3r/GUI/PrintHostDialogs.cpp:151 +#: src/slic3r/GUI/PrintHostDialogs.cpp:152 msgid "Host" msgstr "サーバー" -#: src/libslic3r/PrintConfig.cpp:1267 +#: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" msgstr "サーバータイプ" @@ -2975,174 +3315,202 @@ msgstr "サーバータイプ" msgid "Hostname" msgstr "ホスト名" -#: src/libslic3r/PrintConfig.cpp:81 +#: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" msgstr "ホスト名、IPアドレス、もしくはURL" -#: src/slic3r/GUI/Tab.cpp:136 -msgid "Hover the cursor over buttons to find more information \nor click this button." +#: src/slic3r/GUI/Tab.cpp:139 +msgid "" +"Hover the cursor over buttons to find more information \n" +"or click this button." msgstr "カーソルをボタンの上に置くと、詳細情報が表示されます。またはこのボタンをクリックします。" -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "パッドの形状の周りの幅" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "小さなコネクターをモデルにどの程度深く入れるか。" -#: src/libslic3r/PrintConfig.cpp:2380 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "サポートの先端がモデルの表面をどの程度貫通しているか" -#: src/libslic3r/PrintConfig.cpp:2642 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "サポートでオブジェクトを支持して持ち上げる高さ。 「オブジェクト周囲のパッド」が有効な場合、この値は無視されます。" -#: src/libslic3r/PrintConfig.cpp:95 +#: src/libslic3r/PrintConfig.cpp:111 msgid "HTTPS CA File" msgstr "HTTPS CAファイル" -#: src/slic3r/GUI/Tab.cpp:1731 +#: src/slic3r/GUI/Tab.cpp:1713 msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "HTTPS CAファイルはオプションです。 HTTPSを自己署名証明書で使用する場合にのみ必要です。" -#: src/slic3r/GUI/Tab.cpp:1773 -#, possible-c-format -msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "HTTPS CAファイル:\n     このシステムでは、%sはシステムの証明書ストアまたはキーチェーンからのHTTPS証明書を使用します。\n     カスタムCAファイルを使用するには、CAファイルを証明書ストア/キーチェーンにインポートしてください。" +#: src/slic3r/GUI/Tab.cpp:1757 +#, c-format +msgid "" +"HTTPS CA File:\n" +" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" +" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "" +"HTTPS CAファイル:\n" +"     このシステムでは、%sはシステムの証明書ストアまたはキーチェーンからのHTTPS証明書を使用します。\n" +"     カスタムCAファイルを使用するには、CAファイルを証明書ストア/キーチェーンにインポートしてください。" -#: src/slic3r/GUI/Preferences.cpp:192 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "デフォルトのサイズと相対的なアイコンのサイズ" -#: src/slic3r/GUI/PrintHostDialogs.cpp:148 +#: src/slic3r/GUI/PrintHostDialogs.cpp:149 msgid "ID" msgstr "ID" -#: src/libslic3r/PrintConfig.cpp:1787 +#: src/libslic3r/PrintConfig.cpp:1873 msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "オンにすると、オーバーハングのしきい値に基づいてサポートが自動的に生成されます。 チェックしない場合、サポートは「強制サポート」ボリューム内でのみ生成されます。" -#: src/slic3r/GUI/ConfigWizard.cpp:413 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:773 +#, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "有効にすると、%sはプログラムの新バージョンをオンラインでチェックします。 新しいバージョンが利用可能になると、次のアプリケーションの起動時にメッセージが表示されます(プログラムの使用中は表示されません)。 これは単なる通知であり、自動インストールは行われません。" -#: src/slic3r/GUI/ConfigWizard.cpp:423 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:783 +#, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "有効にすると、%sはバックグラウンドでビルトインシステムプリセットアップデートをダウンロードします。 これらの更新は一時的な場所にダウンロードされます。 新しいプリセットが利用可能な場合、プログラムの起動時に警告が表示されます。" -#: src/libslic3r/PrintConfig.cpp:1774 +#: src/libslic3r/PrintConfig.cpp:1852 msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." msgstr "有効にすると、すべてのプリントエクストルーダーは、プリント開始時にプリントベッドの前端で準備されます。" -#: src/slic3r/GUI/Preferences.cpp:63 +#: src/slic3r/GUI/ConfigWizard.cpp:805 +msgid "" +"If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "" +"有効にした場合、「ディスクからリロード」コマンドを使用して、起動時にファイルを自動的に検索してロードできます。\n" +"有効になっていない場合、「ディスクからリロード」コマンドは、ファイルを開くダイアログを使用して各ファイルの選択を要求します。" + +#: src/slic3r/GUI/Preferences.cpp:74 +msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." +msgstr "有効にした場合、「ディスクからリロード」コマンドを使用して、起動時にファイルを自動的に検索してロードできます。" + +#: src/slic3r/GUI/Preferences.cpp:66 msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "有効にすると、PrusaSlicerはプログラムの新しく利用可能なバージョンをチェックします。 新しいバージョンが利用可能な場合、プログラムの次回起動時に通知が表示されます(アプリケーションの使用中は表示されません)。これは単なる通知メカニズムであり、自動インストールは行われません。" -#: src/slic3r/GUI/Preferences.cpp:71 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "有効にすると、Slic3rはビルトインシステムプリセットの更新をバックグラウンドでダウンロードします。 更新ファイルは、一時的な場所にダウンロードされます。 新しいプリセットバージョンが利用可能になると、アプリケーションの起動時に通知されます。" -#: src/slic3r/GUI/Preferences.cpp:105 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "有効にすると、3DシーンはRetina解像度でレンダリングされます。 3Dパフォーマンスに問題がある場合は、このオプションを無効にしてください。" -#: src/libslic3r/PrintConfig.cpp:1847 +#: src/libslic3r/PrintConfig.cpp:1858 msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "有効にすると、ツール変更がない場合にワイプタワーをプリントしなくなります。 ワイプタワーの高さが同期しなくなりますので、ツールチェンジのあるレイヤーでは、エクストルーダーがプリント面より下方に移動してワイプタワーをプリントするケースもあります。 この場合、プリントした部分との衝突がないことをご自身で確認しておく必要があります。" -#: src/slic3r/GUI/Preferences.cpp:112 +#: src/slic3r/GUI/Preferences.cpp:128 +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "チェックすると、フリーカメラが使用されます。 そうでない場合は、拘束カメラを使用します。" + +#: src/slic3r/GUI/Preferences.cpp:121 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "有効にした場合、パース(遠近)ビューカメラを使用します。 有効になっていない場合は、アイソメ(等角)ビューカメラを使用します。" -#: src/slic3r/GUI/Preferences.cpp:119 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "有効にすると、ツールバーアイコンのサイズをマニュアル変更できます。" -#: src/slic3r/GUI/PresetHints.cpp:28 +#: src/slic3r/GUI/PresetHints.cpp:29 msgid "If estimated layer time is below ~%1%s, fan will run at %2%%% and print speed will be reduced so that no less than %3%s are spent on that layer (however, speed will never be reduced below %4%mm/s)." msgstr "レイヤーの推定時間が〜%1%s未満の場合、ファンは%2%%%で動作し、プリント速度が低下して、そのレイヤーで%3%s以上が費やされます(ただし、速度が%4%mm/s以下になることはありません)。" -#: src/slic3r/GUI/PresetHints.cpp:35 +#: src/slic3r/GUI/PresetHints.cpp:36 msgid "If estimated layer time is greater, but still below ~%1%s, fan will run at a proportionally decreasing speed between %2%%% and %3%%%." msgstr "レイヤーのプリント予測時間が長くなったものの、まだおよそ%1%sより短い場合、冷却ファンは%2%%%から%3%%%の間で時間に比例した回転数になります。" -#: src/libslic3r/PrintConfig.cpp:853 +#: src/libslic3r/PrintConfig.cpp:901 msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds." msgstr "値がmm/s単位の絶対値として入力された場合、この速度はタイプに関係なく、最初のレイヤーのすべてのプリント移動に適用されます。 パーセンテージ(例:40%)で入力された場合、デフォルトの速度をスケーリングします。" -#: src/libslic3r/PrintConfig.cpp:540 +#: src/libslic3r/PrintConfig.cpp:573 msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds." msgstr "レイヤーのプリント時間がこの秒数を下回ると予想される場合、ファンが有効になり、その速度は最小速度と最大速度から計算で補間します。" -#: src/libslic3r/PrintConfig.cpp:1636 +#: src/libslic3r/PrintConfig.cpp:1706 msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value." msgstr "レイヤーのプリント時間がこの秒数未満であると予想された場合、プリントはこの値まで時間を延長するように移動速度を遅くします。" -#: src/libslic3r/PrintConfig.cpp:534 +#: src/libslic3r/PrintConfig.cpp:567 msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS." msgstr "この機能がオンの場合、ファンはオフにならず、少なくとも最低速度として設定された値で回転し続けます。 PLAに有用ですが、ABSには不向きです。" -#: src/slic3r/GUI/Preferences.cpp:46 +#: src/slic3r/GUI/Preferences.cpp:49 msgid "If this is enabled, Slic3r will auto-center objects around the print bed center." msgstr "有効にすると、Slic3rは自動的にオブジェクトをプリント領域の中央に配置します。" -#: src/slic3r/GUI/Preferences.cpp:54 +#: src/slic3r/GUI/Preferences.cpp:57 msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code." msgstr "これが有効になっている場合、Slic3rは、Gコードをエクスポートまでの時間を短縮するために、オブジェクトがロードされるとすぐに前処理を行います。" -#: src/slic3r/GUI/Preferences.cpp:38 +#: src/slic3r/GUI/Preferences.cpp:41 msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files." msgstr "これを有効にすると、Slic3rは入力ファイルを含むディレクトリではなく、最後の出力ディレクトリを取得します。" -#: src/libslic3r/PrintConfig.cpp:1492 +#: src/libslic3r/PrintConfig.cpp:1562 msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered." msgstr "これに正の値を入力すると、引き込みされるたびにZが瞬間持ち上げられます。 マルチエクストルーダーを使用する場合、最初のエクストルーダーの設定が優先されます。" -#: src/libslic3r/PrintConfig.cpp:1501 +#: src/libslic3r/PrintConfig.cpp:1571 msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers." msgstr "Zリフトが設定された絶対値の高さZ以上に制限されます。これを使って1レイヤー目のZリフトをスキップさせることが出来ます。" -#: src/libslic3r/PrintConfig.cpp:1510 +#: src/libslic3r/PrintConfig.cpp:1580 msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers." msgstr "正の値を入力すると、Zリフトは指定された絶対Z未満でのみ発生します。この設定を調整して、リフトを最初のレイヤーに制限できます。" -#: src/libslic3r/PrintConfig.cpp:1384 +#: src/libslic3r/PrintConfig.cpp:1454 msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables." msgstr "独自のスクリプトを使用して出力Gコードを制御する場合は、ここで絶対パスを指定します。 複数のスクリプトをセミコロンで区切ってください。 スクリプトは最初の引数としてGコードファイルへの絶対パスを渡し、環境変数を読み取ることでSlic3r構成設定にアクセスできます。" -#: src/libslic3r/PrintConfig.cpp:498 +#: src/libslic3r/PrintConfig.cpp:530 msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)." msgstr "ファームウェアがエクストルーダーの変位を処理しない場合は、それを考慮するためのGコードが必要です。 このオプションでは、最初のエクストルーダーに対する各エクストルーダーのオフセットを指定できます。 正の座標が必要です(XY座標から減算されます)。" -#: src/libslic3r/PrintConfig.cpp:2068 +#: src/libslic3r/PrintConfig.cpp:2169 msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "ファームウェアに相対的なE値が必要な場合にチェックします。そうでない場合はオフのままにします。 ほとんどのファームウェアは絶対値を使用します。" -#: src/libslic3r/PrintConfig.cpp:3096 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "存在しない設定ファイルを無視する" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Import &Config" msgstr "設定インポート(&C)" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Import Config &Bundle" msgstr "構成バンドルのインポート(&B)" -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Import Config from &project" msgstr "プロジェクトから構成をインポート(&p)" -#: src/slic3r/GUI/Plater.cpp:4016 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +msgid "Import Config from ini/amf/3mf/gcode" +msgstr "ini/amf/3mf/gcodeファイルから設定を読み込む" + +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "オブジェクトをインポート" -#: src/slic3r/GUI/Plater.cpp:4020 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "オブジェクトのインポート" @@ -3150,463 +3518,494 @@ msgstr "オブジェクトのインポート" msgid "Import of the repaired 3mf file failed" msgstr "修正した3mfファイルのインポートに失敗しました" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Import STL/OBJ/AM&F/3MF" -msgstr "STL/OBJ/AM&F/3MFのインポート" +msgstr "STL/OBJ/AMF/3MFのインポート(&F)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:106 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "設定なしでSTL/OBJ/AMF/3MFをインポートします(プリント領域を維持します)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +msgid "Import STL/OBJ/AMF/3MF without config, keep plater" +msgstr "既存のプレートを保持しながらSTL/OBJ/AMF/3MFを設定なしでインポート" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2416 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 +#, c-format msgid "In this mode you can select only other %s Items%s" msgstr "このモードでは、他の%sアイテム%sのみを選択できます" -#: src/slic3r/GUI/UpdateDialogs.cpp:132 +#: src/slic3r/GUI/UpdateDialogs.cpp:230 msgid "Incompatible bundles:" msgstr "互換性のないパッケージ:" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70 -#, possible-c-format +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 +#, c-format msgid "Incompatible with this %s" msgstr "この%sと互換性がありません" -#: src/slic3r/GUI/Plater.cpp:4091 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" msgstr "インスタンスを増やす" -#: src/slic3r/GUI/GLCanvas3D.cpp:270 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "編集エリアを拡大/縮小する" +#: src/slic3r/GUI/Plater.cpp:2922 +msgid "Indexing hollowed object" +msgstr "中空オブジェクトのインデックス作成" + #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3338 -msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "一部の設定が変更され、現在のオプショングループのシステム(またはデフォルト)値と等しくないことを示します。\n開いたカギアイコンをクリックして、現在のオプショングループのすべての設定をシステム(またはデフォルト)値にリセットします。" +#: src/slic3r/GUI/Tab.cpp:3258 +msgid "" +"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "" +"一部の設定が変更され、現在のオプショングループのシステム(またはデフォルト)値と等しくないことを示します。\n" +"開いたカギアイコンをクリックして、現在のオプショングループのすべての設定をシステム(またはデフォルト)値にリセットします。" #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3334 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "設定が現在の設定グループのシステム(デフォルト)値と同じであることを示します" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3083 -msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +#: src/slic3r/GUI/Tab.cpp:3270 +msgid "" +"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." msgstr "設定が変更され、現在のオプショングループに最後に保存されたプリセットと等しくないことを示します。戻る矢印アイコンをクリックして、現在のオプショングループのすべての設定を最後に保存されたプリセットに戻します。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69 -#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439 -#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031 -#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167 -#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729 -#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780 -#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943 -#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979 -#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659 -#: src/libslic3r/PrintConfig.cpp:1676 +#: src/slic3r/GUI/ConfigManipulation.cpp:211 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 +#: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 +#: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 +#: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 +#: src/libslic3r/PrintConfig.cpp:1009 src/libslic3r/PrintConfig.cpp:1028 +#: src/libslic3r/PrintConfig.cpp:1047 src/libslic3r/PrintConfig.cpp:1728 +#: src/libslic3r/PrintConfig.cpp:1745 msgid "Infill" msgstr "インフィル" -#: src/slic3r/GUI/PresetHints.cpp:171 +#: src/slic3r/GUI/PresetHints.cpp:174 msgid "infill" msgstr "インフィル" -#: src/libslic3r/PrintConfig.cpp:972 +#: src/libslic3r/PrintConfig.cpp:1021 msgid "Infill before perimeters" msgstr "外周よりも先にインフィルを実施" -#: src/libslic3r/PrintConfig.cpp:953 +#: src/libslic3r/PrintConfig.cpp:1001 msgid "Infill extruder" msgstr "インフィルエクストルーダー" -#: src/libslic3r/PrintConfig.cpp:987 +#: src/libslic3r/PrintConfig.cpp:1036 msgid "Infill/perimeters overlap" msgstr "外周とインフィルの重なり幅" -#: src/libslic3r/Print.cpp:1476 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "レイヤーのインフィル" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2424 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "情報" -#: src/libslic3r/PrintConfig.cpp:1008 +#: src/libslic3r/PrintConfig.cpp:1057 msgid "Inherits profile" msgstr "プロファイルを継承" -#: src/libslic3r/SLAPrint.cpp:707 +#: src/libslic3r/SLAPrint.cpp:653 msgid "Initial exposition time is out of printer profile bounds." msgstr "初期露出時間は、プリンタプロファイルの範囲外です。" -#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "初期露出時間" -#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "初期レイヤー高さ" -#: src/slic3r/GUI/Field.cpp:155 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "入力値が範囲を超えています" -#: src/slic3r/GUI/GUI_App.cpp:661 +#: src/slic3r/GUI/GUI_App.cpp:800 msgid "Inspect / activate configuration snapshots" msgstr "構成スナップショットの点検/有効化" -#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474 -#, possible-c-format +#: src/slic3r/GUI/ObjectDataViewModel.cpp:60 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:216 +#, c-format msgid "Instance %d" msgstr "インスタンス%d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1887 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "オブジェクトのインスタンスを操作する" -#: src/slic3r/GUI/wxExtensions.cpp:358 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:56 msgid "Instances" msgstr "インスタンス" -#: src/slic3r/GUI/GUI_ObjectList.cpp:934 src/slic3r/GUI/GUI_ObjectList.cpp:3346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "分離されたオブジェクトのインスタンス" -#: src/libslic3r/PrintConfig.cpp:1886 +#: src/libslic3r/PrintConfig.cpp:1973 msgid "Interface layers" msgstr "インターフェースレイヤー" -#: src/libslic3r/PrintConfig.cpp:1870 +#: src/libslic3r/PrintConfig.cpp:1957 msgid "Interface loops" msgstr "インターフェースのループ" -#: src/libslic3r/PrintConfig.cpp:1895 +#: src/libslic3r/PrintConfig.cpp:1982 msgid "Interface pattern spacing" msgstr "コンタクトレイヤーのピッチ" -#: src/libslic3r/PrintConfig.cpp:1022 +#: src/libslic3r/PrintConfig.cpp:1071 msgid "Interface shells" msgstr "中間壁" -#: src/libslic3r/Zipper.cpp:87 +#: src/libslic3r/Zipper.cpp:84 msgid "internal error" msgstr "内部エラー" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "内部のインフィル" -#: src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "無効なデータ" -#: src/slic3r/GUI/BedShapeDialog.cpp:471 src/slic3r/GUI/BedShapeDialog.cpp:520 -#: src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:494 src/slic3r/GUI/BedShapeDialog.cpp:543 +#: src/slic3r/GUI/BedShapeDialog.cpp:566 msgid "Invalid file format." msgstr "無効なファイル形式。" -#: src/libslic3r/Zipper.cpp:83 +#: src/libslic3r/Zipper.cpp:80 msgid "invalid filename" msgstr "無効なファイル名" -#: src/slic3r/GUI/ConfigManipulation.cpp:306 +#: src/slic3r/GUI/ConfigManipulation.cpp:319 msgid "Invalid Head penetration" msgstr "モデルへの無効なサポートの貫通" -#: src/libslic3r/Zipper.cpp:51 +#: src/libslic3r/Zipper.cpp:48 msgid "invalid header or archive is corrupted" msgstr "無効なヘッダーまたはアーカイブが破損しています" -#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "無効な数値入力。" -#: src/libslic3r/Zipper.cpp:81 +#: src/libslic3r/Zipper.cpp:78 msgid "invalid parameter" msgstr "無効なパラメーター" -#: src/slic3r/GUI/ConfigManipulation.cpp:319 +#: src/slic3r/GUI/ConfigManipulation.cpp:332 msgid "Invalid pinhead diameter" msgstr "無効なピンヘッド径" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:94 +#: src/slic3r/GUI/AboutDialog.cpp:258 msgid "is licensed under the" msgstr "の下でライセンスされています" -#: src/slic3r/GUI/Tab.cpp:2779 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "プリントプロファイルと互換性がない" -#: src/slic3r/GUI/Tab.cpp:2778 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "プリンターと互換性がありません" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso" msgstr "アイソメ" -#: src/slic3r/GUI/MainFrame.cpp:519 +#: src/slic3r/GUI/MainFrame.cpp:658 msgid "Iso View" msgstr "アイソメ表示" -#: src/slic3r/GUI/Tab.cpp:925 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "削除もしくは変更ができません。" -#: src/libslic3r/PrintConfig.cpp:926 +#: src/slic3r/GUI/Plater.cpp:3321 +msgid "It is not allowed to change the file to reload" +msgstr "リロードするファイルを変更することはできません" + +#: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "フィラメント交換シーケンス中にエクストルーダーモーター電流を増やして、高いフィラメント押出力を可能にし、フィラメントの先端形状によりロード時の負荷抵抗が増加してしまう場合に有効な機能です。" -#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "SLAではマルチパートオブジェクトのプリントはできません。" -#: src/slic3r/GUI/Tab.cpp:2177 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "ジャーク(加加速度)限界" -#: src/libslic3r/PrintConfig.cpp:1579 +#: src/libslic3r/PrintConfig.cpp:1649 msgid "Jitter" msgstr "ジッター" -#: src/libslic3r/PrintConfig.cpp:533 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 +msgid "Jump to height" +msgstr "高さにジャンプ" + +#: src/slic3r/GUI/DoubleSlider.cpp:955 +#, c-format +msgid "Jump to height %s or Set extruder sequence for the entire print" +msgstr "高さ%sにジャンプするか、プリント全体のエクストルーダーシーケンスを設定します" + +#: src/libslic3r/PrintConfig.cpp:566 msgid "Keep fan always on" msgstr "ファンを常時オン" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:169 msgid "Keep lower part" msgstr "下側パーツをキープ" -#: src/slic3r/GUI/GLCanvas3D.cpp:300 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "最小に保つ" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:168 msgid "Keep upper part" msgstr "上側パーツを保持" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "キーボードショートカット" -#: src/libslic3r/PrintConfig.cpp:2466 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:245 +msgid "Keyboard shortcuts" +msgstr "キーボードショートカット" + +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" -#: src/libslic3r/PrintConfig.cpp:917 +#: src/libslic3r/PrintConfig.cpp:965 msgid "Label objects" msgstr "オブジェクトにラベルを付ける" -#: src/libslic3r/PrintConfig.cpp:2234 +#: src/libslic3r/PrintConfig.cpp:2399 msgid "Landscape" msgstr "横方向" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Language" msgstr "言語" -#: src/slic3r/GUI/GUI_App.cpp:755 +#: src/slic3r/GUI/GUI_App.cpp:885 msgid "Language selection" msgstr "言語選択" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1770 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "オブジェクトの最後のインスタンスは削除できません。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2994 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "レイヤー" -#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55 +#: src/slic3r/GUI/ConfigManipulation.cpp:49 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 +#: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "積層ピッチ" -#: src/libslic3r/Print.cpp:1332 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "ノズル径を超えるレイヤー高さには設定できません" -#: src/slic3r/GUI/Tab.cpp:2260 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "レイヤー高さ限度" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "レイヤー高さ:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2109 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "修正するレイヤー範囲の設定" -#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946 -#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620 -#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844 -#: src/libslic3r/PrintConfig.cpp:1889 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 +#: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 +#: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "レイヤー" -#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "レイヤー" -#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "レイヤーと外周" -#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68 -#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56 -#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381 -#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446 -#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026 -#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371 -#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987 -#: src/libslic3r/PrintConfig.cpp:2044 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 +#: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 +#: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 +#: src/libslic3r/PrintConfig.cpp:1441 src/libslic3r/PrintConfig.cpp:1622 +#: src/libslic3r/PrintConfig.cpp:2074 src/libslic3r/PrintConfig.cpp:2133 +#: src/libslic3r/PrintConfig.cpp:2142 msgid "Layers and Perimeters" msgstr "積層ピッチと外壁の設定" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Layers Slider Shortcuts" -msgstr "レイヤースライダーのショートカット" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:222 +msgid "Layers Slider" +msgstr "レイヤースライダー" -#. TRN To be shown in Print Settings "Bottom solid layers" -#: rc/libslic3r/PrintConfig.cpp:149 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" -msgstr "最下層" +msgstr "レイヤー||最下層" -#. TRN To be shown in Print Settings "Top solid layers" -#: src/libslic3r/PrintConfig.cpp:2043 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" -msgstr "トップ" +msgstr "レイヤー||トップ" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left" msgstr "左" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "左クリック" -#: src/slic3r/GUI/GLCanvas3D.cpp:243 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "左マウスボタン:" -#: src/slic3r/GUI/MainFrame.cpp:527 +#: src/slic3r/GUI/MainFrame.cpp:671 msgid "Left View" msgstr "左面" -#: src/slic3r/GUI/GUI_Preview.cpp:255 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "凡例" -#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481 +#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551 msgid "Length" msgstr "長さ" -#: src/libslic3r/PrintConfig.cpp:293 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "ノズルからの溶融樹脂を引抜いた後にフィラメントを凝固させるための冷却用チューブの長さ。" #. TRN "Slic3r _is licensed under the_ License" -#: src/slic3r/GUI/AboutDialog.cpp:124 +#: src/slic3r/GUI/AboutDialog.cpp:129 msgid "License agreements of all following programs (libraries) are part of application license agreement" msgstr "以下のすべてのプログラム(ライブラリ)のライセンス契約は、アプリケーションライセンス契約の一部です" -#: src/libslic3r/PrintConfig.cpp:1491 +#: src/libslic3r/PrintConfig.cpp:1561 msgid "Lift Z" msgstr "リフトZ" -#: src/libslic3r/PrintConfig.cpp:801 +#: src/libslic3r/PrintConfig.cpp:848 msgid "Line" msgstr "線" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1050 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "ロード" -#: src/slic3r/GUI/MainFrame.cpp:349 +#: src/slic3r/GUI/MainFrame.cpp:460 msgid "Load a model" msgstr "モデルを読込む" -#: src/libslic3r/PrintConfig.cpp:3116 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "指定されたディレクトリで設定を読込み/保存します。 これは、異なるプロファイルを維持したり、ネットワークストレージからの構成を含めたりするのに役立ちます。" -#: src/libslic3r/PrintConfig.cpp:3100 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "設定ファイルの読込み" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "構成を.ini/amf/3mf/gcodeから読み込む" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +msgid "Load Config from ini/amf/3mf/gcode and merge" +msgstr "ini/amf/3mf/gcodeから構成を読み込み、マージします" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "構成を.ini/amf/3mf/gcodeから読み込んでマージ" - -#: src/slic3r/GUI/MainFrame.cpp:354 +#: src/slic3r/GUI/MainFrame.cpp:467 msgid "Load configuration from project file" msgstr "プロジェクトファイルから設定を読み込む" -#: src/libslic3r/PrintConfig.cpp:3101 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "指定されたファイルから構成をロードします。 複数のファイルからオプションをロードするために複数回使用できます。" -#: src/slic3r/GUI/MainFrame.cpp:352 +#: src/slic3r/GUI/MainFrame.cpp:464 msgid "Load exported configuration file" msgstr "エクスポートされた構成ファイルを読込む" -#: src/slic3r/GUI/Plater.cpp:1271 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "ファイルのロード" -#: src/slic3r/GUI/Plater.cpp:1275 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "複数ファイルのロード" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1585 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "パーツの読込み" -#: src/slic3r/GUI/MainFrame.cpp:357 +#: src/slic3r/GUI/MainFrame.cpp:471 msgid "Load presets from a bundle" msgstr "プリセットをバンドルから読込む" -#: src/slic3r/GUI/Plater.cpp:3992 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "プロジェクト読込み" -#: src/slic3r/GUI/BedShapeDialog.cpp:97 +#: src/slic3r/GUI/BedShapeDialog.cpp:102 msgid "Load shape from STL..." msgstr "STLから形状を読込み..." -#: src/slic3r/GUI/BedShapeDialog.cpp:181 src/slic3r/GUI/BedShapeDialog.cpp:249 +#: src/slic3r/GUI/BedShapeDialog.cpp:182 src/slic3r/GUI/BedShapeDialog.cpp:261 msgid "Load..." msgstr "ロード..." -#: src/slic3r/GUI/WipeTowerDialog.cpp:235 +#: src/slic3r/GUI/WipeTowerDialog.cpp:264 msgid "loaded" msgstr "ロード完了" -#: src/slic3r/GUI/Plater.cpp:1782 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "読み込みました" -#: src/slic3r/GUI/Plater.cpp:1590 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "ローディング" -#: src/slic3r/GUI/GUI_App.cpp:407 +#: src/slic3r/GUI/GUI_App.cpp:474 msgid "Loading of a mode view" msgstr "ビューモードの読込み" -#: src/slic3r/GUI/GUI_App.cpp:399 +#: src/slic3r/GUI/GUI_App.cpp:466 msgid "Loading of current presets" msgstr "現在のプリセットを取得する" @@ -3615,109 +4014,105 @@ msgstr "現在のプリセットを取得する" msgid "Loading repaired model" msgstr "修復モデルを読込み" -#: src/libslic3r/PrintConfig.cpp:575 +#: src/libslic3r/PrintConfig.cpp:607 msgid "Loading speed" msgstr "ローディング速度" -#: src/libslic3r/PrintConfig.cpp:583 +#: src/libslic3r/PrintConfig.cpp:615 msgid "Loading speed at the start" msgstr "ローディング開始時の速度" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:63 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:106 msgid "Local coordinates" msgstr "ローカル座標" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:49 msgid "Lock supports under new islands" msgstr "新しい台座でのサポートロック" -#: src/slic3r/GUI/Tab.cpp:3065 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "ロックしたカギ" -#: src/slic3r/GUI/Tab.cpp:3360 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "ロックされたカギアイコンは、設定が現在のオプショングループのシステム(またはデフォルト)値と同じであることを示します" -#: src/slic3r/GUI/Tab.cpp:3376 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "カギロック状態のアイコンは、値がシステム(デフォルト)値と同じであることを示します。" -#: src/libslic3r/PrintConfig.cpp:3119 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "ログレベル" -#: src/libslic3r/PrintConfig.cpp:1625 +#: src/libslic3r/PrintConfig.cpp:1695 msgid "Loops (minimum)" msgstr "ループ数(最小)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 msgid "Lower Layer" msgstr "最下層レイヤー" -#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209 -#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087 -#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110 -#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132 -#: src/libslic3r/PrintConfig.cpp:1143 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 +#: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 +#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 +#: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 +#: src/libslic3r/PrintConfig.cpp:1209 msgid "Machine limits" msgstr "機体の限界" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Main Shortcuts" -msgstr "メインショートカット" - -#: src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "モデルOK" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:57 msgid "Manual editing" msgstr "マニュアル編集" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "マスクされたSLAファイルが%1%にエクスポートされました" -#: src/slic3r/GUI/MainFrame.cpp:604 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "材料設定タブ(&r)" -#: src/slic3r/GUI/Tab.cpp:3300 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "材料" -#: src/slic3r/GUI/Tab.hpp:391 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "材料設定" -#: src/slic3r/GUI/Plater.cpp:140 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "材料" -#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161 +#: src/libslic3r/PrintConfig.cpp:1217 src/libslic3r/PrintConfig.cpp:1226 msgid "Max" msgstr "最大" -#: src/libslic3r/PrintConfig.cpp:2470 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "最長ブリッジ長さ" -#: src/libslic3r/PrintConfig.cpp:2546 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "最大結合距離" -#: src/libslic3r/PrintConfig.cpp:2479 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "支柱がリンクする最大距離" -#: src/libslic3r/PrintConfig.cpp:64 +#: src/libslic3r/PrintConfig.cpp:80 msgid "Max print height" msgstr "最大のプリント高さ" -#: src/libslic3r/PrintConfig.cpp:1172 +#: src/libslic3r/PrintConfig.cpp:1237 msgid "Max print speed" msgstr "最大プリント速度" @@ -3725,167 +4120,167 @@ msgstr "最大プリント速度" msgid "max PrusaSlicer version" msgstr "最大PrusaSclierバージョン" -#: src/libslic3r/PrintConfig.cpp:1203 +#: src/libslic3r/PrintConfig.cpp:1268 msgid "Max volumetric slope negative" msgstr "最大体積押出し下り勾配" -#: src/libslic3r/PrintConfig.cpp:1192 +#: src/libslic3r/PrintConfig.cpp:1257 msgid "Max volumetric slope positive" msgstr "最大体積押出し上り勾配" -#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182 +#: src/libslic3r/PrintConfig.cpp:597 src/libslic3r/PrintConfig.cpp:1247 msgid "Max volumetric speed" msgstr "最大体積押出し速度" -#: src/libslic3r/PrintConfig.cpp:2167 +#: src/libslic3r/PrintConfig.cpp:2268 msgid "Maximal bridging distance" msgstr "ブリッジ最大距離" -#: src/libslic3r/PrintConfig.cpp:2193 +#: src/libslic3r/PrintConfig.cpp:2269 msgid "Maximal distance between supports on sparse infill sections." msgstr "中抜きインフィルレイヤーの間隔の最大値。" -#: src/libslic3r/PrintConfig.cpp:1099 +#: src/libslic3r/PrintConfig.cpp:1145 msgid "Maximum acceleration E" msgstr "E最大加速度" -#: src/libslic3r/PrintConfig.cpp:1105 +#: src/libslic3r/PrintConfig.cpp:1151 msgid "Maximum acceleration of the E axis" msgstr "最大E軸加速度" -#: src/libslic3r/PrintConfig.cpp:1102 +#: src/libslic3r/PrintConfig.cpp:1148 msgid "Maximum acceleration of the X axis" msgstr "X軸の最大加速度" -#: src/libslic3r/PrintConfig.cpp:1103 +#: src/libslic3r/PrintConfig.cpp:1149 msgid "Maximum acceleration of the Y axis" msgstr "最大Y軸加速度" -#: src/libslic3r/PrintConfig.cpp:1104 +#: src/libslic3r/PrintConfig.cpp:1150 msgid "Maximum acceleration of the Z axis" msgstr "Z軸の最大加速度" -#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133 +#: src/libslic3r/PrintConfig.cpp:1198 msgid "Maximum acceleration when extruding" msgstr "射出時の最大加速度" -#: src/libslic3r/PrintConfig.cpp:1158 +#: src/libslic3r/PrintConfig.cpp:1200 msgid "Maximum acceleration when extruding (M204 S)" msgstr "射出時の最大加速度 (M204 S)" -#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144 +#: src/libslic3r/PrintConfig.cpp:1208 msgid "Maximum acceleration when retracting" msgstr "吸込み中の最大加速度" -#: src/libslic3r/PrintConfig.cpp:1169 +#: src/libslic3r/PrintConfig.cpp:1210 msgid "Maximum acceleration when retracting (M204 T)" msgstr "吸込み時の最大加速度(M204 T)" -#: src/libslic3r/PrintConfig.cpp:1096 +#: src/libslic3r/PrintConfig.cpp:1142 msgid "Maximum acceleration X" msgstr "X軸の最大加速度" -#: src/libslic3r/PrintConfig.cpp:1097 +#: src/libslic3r/PrintConfig.cpp:1143 msgid "Maximum acceleration Y" msgstr "Y最大加速度" -#: src/libslic3r/PrintConfig.cpp:1098 +#: src/libslic3r/PrintConfig.cpp:1144 msgid "Maximum acceleration Z" msgstr "Zの最大加速度" -#: src/slic3r/GUI/Tab.cpp:2170 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "最大加速度" -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "最長露光時間" -#: src/libslic3r/PrintConfig.cpp:1081 +#: src/libslic3r/PrintConfig.cpp:1128 msgid "Maximum feedrate E" msgstr "E最大送り量" -#: src/libslic3r/PrintConfig.cpp:1087 +#: src/libslic3r/PrintConfig.cpp:1134 msgid "Maximum feedrate of the E axis" msgstr "E軸の最大送り速度" -#: src/libslic3r/PrintConfig.cpp:1084 +#: src/libslic3r/PrintConfig.cpp:1131 msgid "Maximum feedrate of the X axis" msgstr "最大X軸送り速度" -#: src/libslic3r/PrintConfig.cpp:1085 +#: src/libslic3r/PrintConfig.cpp:1132 msgid "Maximum feedrate of the Y axis" msgstr "Y軸の最大送り速度" -#: src/libslic3r/PrintConfig.cpp:1086 +#: src/libslic3r/PrintConfig.cpp:1133 msgid "Maximum feedrate of the Z axis" msgstr "Z軸最大送り量" -#: src/libslic3r/PrintConfig.cpp:1078 +#: src/libslic3r/PrintConfig.cpp:1125 msgid "Maximum feedrate X" msgstr "最大送り速度X" -#: src/libslic3r/PrintConfig.cpp:1079 +#: src/libslic3r/PrintConfig.cpp:1126 msgid "Maximum feedrate Y" msgstr "Yの最大送り量" -#: src/libslic3r/PrintConfig.cpp:1080 +#: src/libslic3r/PrintConfig.cpp:1127 msgid "Maximum feedrate Z" msgstr "Zの最大送り量" -#: src/slic3r/GUI/Tab.cpp:2165 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "最大送り速度" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "最大初期露光時間" -#: src/libslic3r/PrintConfig.cpp:1117 +#: src/libslic3r/PrintConfig.cpp:1162 msgid "Maximum jerk E" msgstr "Eの最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:1123 +#: src/libslic3r/PrintConfig.cpp:1168 msgid "Maximum jerk of the E axis" msgstr "E軸最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:1120 +#: src/libslic3r/PrintConfig.cpp:1165 msgid "Maximum jerk of the X axis" msgstr "X軸の最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:1121 +#: src/libslic3r/PrintConfig.cpp:1166 msgid "Maximum jerk of the Y axis" msgstr "Y軸の最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1167 msgid "Maximum jerk of the Z axis" msgstr "Z軸最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:1114 +#: src/libslic3r/PrintConfig.cpp:1159 msgid "Maximum jerk X" msgstr "Xの最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:1115 +#: src/libslic3r/PrintConfig.cpp:1160 msgid "Maximum jerk Y" msgstr "Yの最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:1116 +#: src/libslic3r/PrintConfig.cpp:1161 msgid "Maximum jerk Z" msgstr "Zの最大ジャーク" -#: src/libslic3r/PrintConfig.cpp:566 +#: src/libslic3r/PrintConfig.cpp:598 msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "このフィラメントに許容される最大体積押出し速度。プリントの最大体積押出し速度を、プリントとフィラメントの体積押出し速度の最小値にに制限します。 制限なしに設定するにはゼロを入力します。" -#: src/libslic3r/PrintConfig.cpp:3053 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "マージ" -#: src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "ブリッジまたはピラーを別のピラーに結合すると、半径が大きくなる可能性があります。 値0は増加なし、値1は最大増加を意味します。" -#: src/libslic3r/SLAPrint.cpp:71 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "スライスの合成と見積もりの計算" @@ -3893,19 +4288,15 @@ msgstr "スライスの合成と見積もりの計算" msgid "Mesh repair failed." msgstr "メッシュ修復失敗。" -#: src/slic3r/GUI/wxExtensions.cpp:3514 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "現在のレイヤーで印刷を一時停止するためのメッセージ(%1% mm)。" -#: src/libslic3r/PrintConfig.cpp:3120 -msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -msgstr "ログレベル以下の重大度のメッセージが出力されます。 0:トレース、1:デバッグ、2:情報、3:警告、4:エラー、5:致命的" - -#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224 +#: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "最小" -#: src/libslic3r/PrintConfig.cpp:1233 +#: src/libslic3r/PrintConfig.cpp:1298 msgid "Min print speed" msgstr "最低プリント速度" @@ -3913,178 +4304,223 @@ msgstr "最低プリント速度" msgid "min PrusaSlicer version" msgstr "最小PrusaSlicerバージョン" -#: src/libslic3r/PrintConfig.cpp:2507 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "サポートポイントの最小距離" -#: src/libslic3r/PrintConfig.cpp:1241 +#: src/libslic3r/PrintConfig.cpp:1306 msgid "Minimal filament extrusion length" msgstr "フィラメント射出の最小値" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:54 msgid "Minimal points distance" msgstr "最小ポイント距離" -#: src/libslic3r/PrintConfig.cpp:635 +#: src/libslic3r/PrintConfig.cpp:667 msgid "Minimal purge on wipe tower" msgstr "ワイプタワーの最小パージ量" -#: src/libslic3r/PrintConfig.cpp:1442 +#: src/libslic3r/PrintConfig.cpp:187 +msgid "Minimum bottom shell thickness" +msgstr "最小ボトムシェル厚さ" + +#: src/slic3r/GUI/PresetHints.cpp:339 +msgid "Minimum bottom shell thickness is %1% mm." +msgstr "ボトムシェルの最小厚さは%1%mmです。" + +#: src/libslic3r/PrintConfig.cpp:1512 msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "スライス処理を高速化しメモリ使用量を低減する目的で、入力ファイルを簡素化するために使用される最小の解像度。 高解像度のモデルで多くの場合は、プリンターの能力以上の情報があります。 単純化しないでファイルの完全な解像度で処理するには、ゼロに設定します。" -#: src/libslic3r/PrintConfig.cpp:2416 src/libslic3r/PrintConfig.cpp:2417 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "最短露光時間" -#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111 +#: src/libslic3r/PrintConfig.cpp:1178 msgid "Minimum feedrate when extruding" msgstr "射出中の最小速度" -#: src/libslic3r/PrintConfig.cpp:1136 +#: src/libslic3r/PrintConfig.cpp:1180 msgid "Minimum feedrate when extruding (M205 S)" msgstr "射出時の最小送り速度(M205 S)" -#: src/slic3r/GUI/Tab.cpp:2182 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "最小送り速度" -#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "最小初期露光時間" -#: src/libslic3r/PrintConfig.cpp:1452 +#: src/slic3r/GUI/Tab.cpp:1069 +msgid "Minimum shell thickness" +msgstr "最小セル厚さ" + +#: src/libslic3r/PrintConfig.cpp:1787 src/libslic3r/PrintConfig.cpp:1788 +msgid "Minimum thickness of a top / bottom shell" +msgstr "上部/下部シェルの最小厚" + +#: src/libslic3r/PrintConfig.cpp:2146 +msgid "Minimum top shell thickness" +msgstr "最小トップシェル厚" + +#: src/slic3r/GUI/PresetHints.cpp:320 +msgid "Minimum top shell thickness is %1% mm." +msgstr "上部シェルの最小厚さは%1%mmです。" + +#: src/libslic3r/PrintConfig.cpp:1522 msgid "Minimum travel after retraction" msgstr "吸込み後の最小移動量" -#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122 +#: src/libslic3r/PrintConfig.cpp:1188 msgid "Minimum travel feedrate" msgstr "最小移動速度" -#: src/libslic3r/PrintConfig.cpp:1147 +#: src/libslic3r/PrintConfig.cpp:1190 msgid "Minimum travel feedrate (M205 T)" msgstr "最小移動速度 (M205 T)" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/libslic3r/PrintConfig.cpp:2917 +msgid "Minimum wall thickness of a hollowed model." +msgstr "くり抜きモデルの最小壁厚" + +#: src/libslic3r/PrintConfig.cpp:2449 +msgid "Minimum width of features to maintain when doing elephant foot compensation." +msgstr "エレファントフットの補正を行うときに維持する外観の最小幅。" + +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "ミラー" -#: src/libslic3r/PrintConfig.cpp:2320 +#: src/libslic3r/PrintConfig.cpp:2379 msgid "Mirror horizontally" msgstr "水平にミラーリング" -#: src/slic3r/GUI/GLCanvas3D.cpp:1711 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "オブジェクトのミラーリング" -#: src/slic3r/GUI/Plater.cpp:2946 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "選択オブジェクトのミラーリング" -#: src/slic3r/GUI/Plater.cpp:2939 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "選択したオブジェクトをX軸でミラーリングします" -#: src/slic3r/GUI/Plater.cpp:2941 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "選択オブジェクトをY軸に沿ってミラーリング" -#: src/slic3r/GUI/Plater.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "選択したオブジェクトをZ軸に沿ってミラーリングします" -#: src/libslic3r/PrintConfig.cpp:2327 +#: src/libslic3r/PrintConfig.cpp:2386 msgid "Mirror vertically" msgstr "垂直にミラーリング" -#: src/slic3r/Utils/OctoPrint.cpp:69 -#, possible-c-format +#: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 +#, c-format msgid "Mismatched type of print host: %s" msgstr "プリントホストのタイプの不一致:%s" -#: src/libslic3r/GCode/PreviewData.cpp:176 +#: src/libslic3r/ExtrusionEntity.cpp:323 msgid "Mixed" msgstr "ミックス" -#: src/libslic3r/PrintConfig.cpp:2459 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" -#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118 -#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84 -#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66 -#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210 -#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293 -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353 -#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484 -#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680 -#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227 -#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263 -#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325 -#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454 -#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503 -#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521 -#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612 -#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898 -#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125 -#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139 -#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179 -#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297 -#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381 -#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400 -#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454 -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483 -#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510 -#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539 -#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562 +#: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 +#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 +#: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 +#: src/libslic3r/PrintConfig.cpp:1310 src/libslic3r/PrintConfig.cpp:1328 +#: src/libslic3r/PrintConfig.cpp:1384 src/libslic3r/PrintConfig.cpp:1394 +#: src/libslic3r/PrintConfig.cpp:1516 src/libslic3r/PrintConfig.cpp:1524 +#: src/libslic3r/PrintConfig.cpp:1565 src/libslic3r/PrintConfig.cpp:1573 +#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1591 +#: src/libslic3r/PrintConfig.cpp:1599 src/libslic3r/PrintConfig.cpp:1682 +#: src/libslic3r/PrintConfig.cpp:1914 src/libslic3r/PrintConfig.cpp:1985 +#: src/libslic3r/PrintConfig.cpp:2019 src/libslic3r/PrintConfig.cpp:2147 +#: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 +#: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 +#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 +#: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" -#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486 +#: src/libslic3r/PrintConfig.cpp:1547 src/libslic3r/PrintConfig.cpp:1556 msgid "mm (zero to disable)" msgstr "mm (0で無効化)" -#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992 -#: src/libslic3r/PrintConfig.cpp:1797 +#: src/libslic3r/PrintConfig.cpp:451 src/libslic3r/PrintConfig.cpp:560 +#: src/libslic3r/PrintConfig.cpp:882 src/libslic3r/PrintConfig.cpp:895 +#: src/libslic3r/PrintConfig.cpp:1015 src/libslic3r/PrintConfig.cpp:1041 +#: src/libslic3r/PrintConfig.cpp:1423 src/libslic3r/PrintConfig.cpp:1761 +#: src/libslic3r/PrintConfig.cpp:1883 src/libslic3r/PrintConfig.cpp:1951 +#: src/libslic3r/PrintConfig.cpp:2111 msgid "mm or %" msgstr "mmまたは%" -#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856 -#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702 -#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:462 src/libslic3r/PrintConfig.cpp:904 +#: src/libslic3r/PrintConfig.cpp:1720 src/libslic3r/PrintConfig.cpp:1772 +#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2124 msgid "mm/s or %" msgstr "mm/s または %" -#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303 -#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936 -#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134 -#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 +#: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 +#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 +#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 msgid "mm/s²" msgstr "mm/s²" -#: src/libslic3r/PrintConfig.cpp:640 +#: src/libslic3r/PrintConfig.cpp:672 msgid "mm³" msgstr "mm³" -#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185 +#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:601 +#: src/libslic3r/PrintConfig.cpp:1250 msgid "mm³/s" msgstr "mm³/s" -#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208 +#: src/libslic3r/PrintConfig.cpp:1262 src/libslic3r/PrintConfig.cpp:1273 msgid "mm³/s²" msgstr "mm³/s²" -#: src/slic3r/GUI/GUI_App.cpp:681 +#: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" -msgstr "モード" +msgstr "モード (&M)" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" msgstr "モデル" -#: src/slic3r/GUI/BedShapeDialog.cpp:239 +#: src/slic3r/GUI/BedShapeDialog.cpp:251 msgid "Model" msgstr "モデル" @@ -4113,112 +4549,147 @@ msgstr "モデル修正完了" msgid "Model repaired successfully" msgstr "モデルの修復完了" -#: src/slic3r/GUI/Preset.cpp:207 +#: src/slic3r/GUI/Preset.cpp:247 msgid "modified" msgstr "変更あり" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "個別条件領域" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "個別条件領域" -#: src/libslic3r/PrintConfig.cpp:2480 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "金額/ボトル" -#: src/libslic3r/PrintConfig.cpp:719 +#: src/libslic3r/PrintConfig.cpp:762 msgid "money/kg" msgstr "コスト/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "マウスホイール" -#: src/slic3r/GUI/GLCanvas3D.cpp:267 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "マウスホイール:" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:48 msgid "Move" msgstr "移動" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "クリッピングプレーンを移動する" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Move current slider thumb Down" msgstr "現在のスライダーのつまみを下に移動" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Move current slider thumb Up" msgstr "現在のスライダーのつまみを上に移動" -#: src/slic3r/GUI/GLCanvas3D.cpp:2872 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 +msgid "Move drainage hole" +msgstr "抜き穴の移動" + +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "オブジェクト移動" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "移動ポイント" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1183 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +msgid "Move selection 10 mm in negative X direction" +msgstr "選択範囲をX方向に-10mm(逆方向)移動します" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +msgid "Move selection 10 mm in negative Y direction" +msgstr "選択範囲をY方向に-10 mm(逆方向)移動" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +msgid "Move selection 10 mm in positive X direction" +msgstr "選択範囲を正のX方向に10 mm移動します" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +msgid "Move selection 10 mm in positive Y direction" +msgstr "選択範囲を正のY方向に10 mm移動" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "サポートポイントの移動" -#: src/libslic3r/PrintConfig.cpp:2100 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:169 +msgid "Movement in camera space" +msgstr "カメラ空間の動き" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:168 +msgid "Movement step set to 1 mm" +msgstr "移動ステップを1 mmに設定" + +#: src/libslic3r/PrintConfig.cpp:2201 msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "マルチマテリアルプリンターでは、ツール変更時にエクストルーダーの試し出しまたはパージが必要になる場合があります。 余分な材料をワイプタワーに射出します。" -#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "マルチパートオブジェクトを検出" -#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 +#, c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "複数の%sデバイスが見つかりました。 更新するには一度に1つずつ接続してください。" -#: src/slic3r/GUI/Tab.cpp:1118 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "複数のエクストルーダー" -#: src/slic3r/GUI/Plater.cpp:2414 -msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" -msgstr "マルチマテリアルプリンター用に複数のオブジェクトがロードされました。\nこれらは複数のオブジェクトではなく、\n複数のパーツからなる単一のオブジェクトとしますか?" +#: src/slic3r/GUI/Plater.cpp:2410 +msgid "" +"Multiple objects were loaded for a multi-material printer.\n" +"Instead of considering them as multiple objects, should I consider\n" +"these files to represent a single object having multiple parts?" +msgstr "" +"マルチマテリアルプリンター用に複数のオブジェクトがロードされました。\n" +"これらは複数のオブジェクトではなく、\n" +"複数のパーツからなる単一のオブジェクトとしますか?" -#: src/libslic3r/PrintConfig.cpp:3050 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "グリッドを作成して複数コピーします。" -#: src/libslic3r/PrintConfig.cpp:3045 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "この係数で複数コピーします。" -#: src/slic3r/GUI/Field.cpp:139 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "N/A" -#: src/slic3r/GUI/GUI_ObjectList.cpp:176 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "名前" -#: src/libslic3r/PrintConfig.cpp:1418 +#: src/libslic3r/PrintConfig.cpp:1488 msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter." msgstr "プリンターバリエーションの名前。 たとえば、プリンターのバリエーションは、ノズル径によって区別されます。" -#: src/libslic3r/PrintConfig.cpp:1412 +#: src/libslic3r/PrintConfig.cpp:1482 msgid "Name of the printer vendor." msgstr "プリンターメーカーの名前。" -#: src/libslic3r/PrintConfig.cpp:1009 +#: src/libslic3r/PrintConfig.cpp:1058 msgid "Name of the profile, from which this profile inherits." msgstr "このプロファイルが継承するプロファイルの名前。" -#: src/libslic3r/PrintConfig.cpp:1560 +#: src/libslic3r/PrintConfig.cpp:1630 msgid "Nearest" msgstr "近傍" @@ -4226,36 +4697,40 @@ msgstr "近傍" msgid "Network lookup" msgstr "ネットワーク調査" -#: src/slic3r/GUI/Plater.cpp:2056 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "新プロジェクト" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 -#, possible-c-format +#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 +msgid "New project, clear plater" +msgstr "新しいプロジェクト、プレート上のモデルの削除" + +#: src/slic3r/GUI/UpdateDialogs.cpp:38 +#, c-format msgid "New version of %s is available" msgstr "新バージョン%sがあります" -#: src/slic3r/GUI/UpdateDialogs.cpp:47 +#: src/slic3r/GUI/UpdateDialogs.cpp:45 msgid "New version:" msgstr "新バージョン:" -#: src/slic3r/GUI/GLCanvas3D.cpp:3750 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "次のやり直し:%1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:3718 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "次の取り消しアクション:%1%" -#: src/libslic3r/PrintConfig.cpp:912 +#: src/libslic3r/PrintConfig.cpp:960 msgid "No extrusion" msgstr "射出なし" -#: src/libslic3r/SLAPrint.cpp:1009 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" msgstr "現在の構成では、このモデルのパッドを生成できません" -#: src/slic3r/GUI/MainFrame.cpp:635 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "以前にスライスされたファイルはありません。" @@ -4263,160 +4738,175 @@ msgstr "以前にスライスされたファイルはありません。" msgid "NO RAMMING AT ALL" msgstr "ラミングなし" -#: src/libslic3r/PrintConfig.cpp:1846 +#: src/libslic3r/PrintConfig.cpp:1857 msgid "No sparse layers (EXPERIMENTAL)" msgstr "スパースレイヤーなし(試用的)" -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "このしきい値よりも近くにサポートポイントは配置されません。" -#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422 -#: src/libslic3r/GCode/PreviewData.cpp:162 +#: src/slic3r/GUI/UpdateDialogs.cpp:303 +msgid "No updates available" +msgstr "利用可能なアップデートはありません" + +#: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 +#: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "なし" -#: src/slic3r/GUI/Tab.cpp:2152 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "ノーマル" -#: src/slic3r/GUI/Plater.cpp:1073 +#: src/slic3r/GUI/Plater.cpp:1286 msgid "normal mode" msgstr "通常モード" -#: src/libslic3r/Zipper.cpp:49 +#: src/libslic3r/Zipper.cpp:46 msgid "not a ZIP archive" msgstr "ZIPアーカイブではありません" -#: src/slic3r/GUI/BedShapeDialog.cpp:225 src/slic3r/GUI/BedShapeDialog.cpp:304 -msgid "Not found: " +#: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 +msgid "Not found:" msgstr "見つかりません:" -#: src/slic3r/Utils/FlashAir.cpp:75 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 +msgid "Note" +msgstr "注意" + +#: src/slic3r/Utils/AstroBox.cpp:89 +msgid "Note: AstroBox version at least 1.1.0 is required." +msgstr "注:AstroBoxバージョン1.1.0以降が必要です。" + +#: src/slic3r/Utils/FlashAir.cpp:73 msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." msgstr "注:ファームウェア2.00.02以降のFlashAirおよびアップロード機能を有効にする必要があります。" -#: src/slic3r/Utils/OctoPrint.cpp:90 +#: src/slic3r/Utils/OctoPrint.cpp:89 msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "注:OctoPrintのバージョンは1.1.0以上が必要です。" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "注:一部のショートカットは編集モードでは使えません。" -#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194 -#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577 -#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986 -#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080 -#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "メモ" -#: src/slic3r/GUI/GUI.cpp:277 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "通知" -#: src/slic3r/GUI/ConfigWizard.cpp:118 +#: src/slic3r/GUI/ConfigWizard.cpp:218 msgid "nozzle" msgstr "ノズル" -#: src/libslic3r/PrintConfig.cpp:1261 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 +#: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "ノズル径" -#: src/slic3r/GUI/ConfigWizard.cpp:560 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "ノズル径:" -#: src/libslic3r/PrintConfig.cpp:618 +#: src/libslic3r/PrintConfig.cpp:650 msgid "Number of cooling moves" msgstr "冷却移動回数" -#: src/slic3r/GUI/Tab.cpp:1845 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "プリンターのエクストルーダー数。" -#: src/libslic3r/PrintConfig.cpp:1888 +#: src/libslic3r/PrintConfig.cpp:1975 msgid "Number of interface layers to insert between the object(s) and support material." msgstr "オブジェクトとサポート材の間に挿入するインターフェイスレイヤーの数。" -#: src/libslic3r/PrintConfig.cpp:1627 +#: src/libslic3r/PrintConfig.cpp:1697 msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely." msgstr "スカート(パーツを囲むアウトライン)の周回数。 [最小の射出長さ]オプションが設定されている場合、ループ数はここで設定された値よりも大きくなる場合があります。 スカートを完全に無効にするには、これをゼロに設定します。" -#: src/libslic3r/PrintConfig.cpp:2214 +#: src/libslic3r/PrintConfig.cpp:2365 msgid "Number of pixels in" msgstr "ピクセル数" -#: src/libslic3r/PrintConfig.cpp:2216 +#: src/libslic3r/PrintConfig.cpp:2367 msgid "Number of pixels in X" msgstr "Xのピクセル数" -#: src/libslic3r/PrintConfig.cpp:2222 +#: src/libslic3r/PrintConfig.cpp:2373 msgid "Number of pixels in Y" msgstr "Yのピクセル数" -#: src/libslic3r/PrintConfig.cpp:151 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "底部のソリッドレイヤー(塗りつぶし)数。" -#: src/libslic3r/PrintConfig.cpp:1711 +#: src/libslic3r/PrintConfig.cpp:1781 msgid "Number of solid layers to generate on top and bottom surfaces." msgstr "上部と底部のソリッドレイヤー(塗りつぶし)数。" -#: src/libslic3r/PrintConfig.cpp:2045 +#: src/libslic3r/PrintConfig.cpp:2134 msgid "Number of solid layers to generate on top surfaces." msgstr "上部に生成するソリッドレイヤー(塗りつぶし)数。" -#: src/libslic3r/PrintConfig.cpp:2303 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "初期露光時間から露光時間に移行するために必要なレイヤーの数" -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "ツールチェンジ回数" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "オブジェクトの持ち上げ高" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1858 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "オブジェクト操作" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:155 src/libslic3r/GCode.cpp:638 msgid "Object name" msgstr "オブジェクト名" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "オブジェクトまたはインスタンス" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "オブジェクト順序変更" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1868 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "オブジェクト設定を変更" -#: src/slic3r/GUI/Plater.cpp:1875 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "オブジェクトが大きすぎませんか?" -#: src/libslic3r/PrintConfig.cpp:2161 +#: src/libslic3r/PrintConfig.cpp:2262 msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "これらのオブジェクトは、エクストルーダーを変更した後、ノズル内のフィラメントの色をきれいにするために使用されます。 結果は、ランダムに混合された色のオブジェクトになります。" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "オブジェクト" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "オブジェクト" -#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808 +#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855 msgid "Octagram Spiral" msgstr "オクタグラムスパイラル" @@ -4424,300 +4914,333 @@ msgstr "オクタグラムスパイラル" msgid "OctoPrint version" msgstr "OctoPrintバージョン" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2419 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "現在のオブジェクトの" -#: src/slic3r/GUI/wxExtensions.cpp:2570 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:43 +msgid "Offset" +msgstr "オフセット" + +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "1レイヤーモード" -#: src/libslic3r/Print.cpp:1285 +#: src/libslic3r/Print.cpp:1365 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "1つ以上のオブジェクトに、プリンターにないエクストルーダーが割り当てられました。" -#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "ビルドプレート(ベッド)上からのみサポートを作成します。プリントしたモデル上からはサポートを生成しません。" -#: src/libslic3r/PrintConfig.cpp:978 +#: src/libslic3r/PrintConfig.cpp:1027 msgid "Only infill where needed" msgstr "必要な場合のみインフィルを付ける" -#: src/slic3r/GUI/Tab.cpp:2271 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "Zをリフト" -#: src/libslic3r/PrintConfig.cpp:1500 +#: src/libslic3r/PrintConfig.cpp:1570 msgid "Only lift Z above" msgstr "これ以上でリフトZ" -#: src/libslic3r/PrintConfig.cpp:1509 +#: src/libslic3r/PrintConfig.cpp:1579 msgid "Only lift Z below" msgstr "Zリフト以下" -#: src/libslic3r/PrintConfig.cpp:1279 +#: src/libslic3r/PrintConfig.cpp:1348 msgid "Only retract when crossing perimeters" msgstr "外周をまたぐときだけ吸込み" -#: src/slic3r/GUI/Tab.cpp:1126 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "垂れ出し抑止" -#: src/libslic3r/Print.cpp:1193 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "垂れ防止機能は、現在のところ、ワイプタワーを有効にした状態では使えません。" -#: src/slic3r/GUI/MainFrame.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:408 msgid "Open a project file" msgstr "プロジェクトファイルを開く" -#: src/slic3r/GUI/Tab.cpp:1745 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "CA証明書ファイルを開く" -#: src/slic3r/GUI/UpdateDialogs.cpp:63 src/slic3r/GUI/UpdateDialogs.cpp:126 +#: src/slic3r/GUI/UpdateDialogs.cpp:60 src/slic3r/GUI/UpdateDialogs.cpp:125 +#: src/slic3r/GUI/UpdateDialogs.cpp:183 msgid "Open changelog page" msgstr "変更ログページを開く" -#: src/slic3r/GUI/UpdateDialogs.cpp:68 +#: src/slic3r/GUI/UpdateDialogs.cpp:65 msgid "Open download page" msgstr "ダウンロードページを開きます" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:105 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "設定とSTL/OBJ/AMF/3MFを開きます(プリント領域を削除します)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" +msgstr "プロジェクトSTL/OBJ/AMF/3MFを設定を含めて開き、プレートをクリアします" -#: src/slic3r/GUI/MainFrame.cpp:551 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:693 +#, c-format msgid "Open the %s website in your browser" msgstr "ブラウザで%sウェブサイトを開きます" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "ブラウザーでPrusa3Dドライバのダウンロードページを開きます" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "ブラウザでソフトウェアリリースページを開きます" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "向きを最適化する" -#: src/slic3r/GUI/Plater.cpp:2643 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "回転の最適化" -#: src/slic3r/GUI/Plater.cpp:2994 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "プリント結果をよくするために、オブジェクトの回転を最適化します。" -#: src/libslic3r/PrintConfig.cpp:112 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "外周壁との交差が最小限になるように、射出していないときのノズルの移動を最適化します。これは特に垂れやすいボーデン型エクストルーダーで効果があります。ただし、この機能はプリントとGコード生成が遅くなります。" -#: src/slic3r/GUI/Tab.cpp:1070 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "サポート材とラフトのオプション" -#: src/slic3r/GUI/Plater.cpp:2251 +#: src/slic3r/GUI/DoubleSlider.cpp:989 +msgid "or press \"+\" key" +msgstr "もしくは\"+\"キーを押す" + +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "オリエンテーションが見つかりました。" -#: src/slic3r/GUI/Plater.cpp:2768 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "オリエンテーション検索がキャンセルされました。" -#: src/slic3r/GUI/BedShapeDialog.cpp:79 +#: src/slic3r/GUI/BedShapeDialog.cpp:84 msgid "Origin" msgstr "原点" -#: src/slic3r/GUI/Tab.cpp:1165 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "その他" -#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "他のレイヤー" -#: src/slic3r/GUI/ConfigWizard.cpp:438 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "他のベンダー" -#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "出力ファイル" -#: src/libslic3r/PrintConfig.cpp:3104 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "ファイル出力" -#: src/libslic3r/PrintConfig.cpp:1294 +#: src/libslic3r/PrintConfig.cpp:1363 msgid "Output filename format" msgstr "出力ファイル名の形式" -#: src/libslic3r/PrintConfig.cpp:2992 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "モデル情報のアウトプット" -#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "出力オプション" -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "オーバーハング外周" -#: src/libslic3r/PrintConfig.cpp:1955 +#: src/libslic3r/PrintConfig.cpp:2042 msgid "Overhang threshold" msgstr "オーバハングのしきい値" -#: src/slic3r/GUI/Tab.cpp:1153 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "オーバーラップ" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "P&rint Settings Tab" msgstr "プリント設定タブ(&r)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520 -#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426 -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523 -#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547 -#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "パッド" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 +#: src/slic3r/GUI/GUI_ObjectList.cpp:45 msgid "Pad and Support" msgstr "パッドとサポート" -#: src/libslic3r/PrintConfig.cpp:2732 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "オブジェクト周りにパッド" -#: src/libslic3r/PrintConfig.cpp:2830 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "オブジェクト周り全体にパッドを配置" -#: src/libslic3r/PrintConfig.cpp:2779 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "パッドブリムサイズ" -#: src/libslic3r/SLA/SLAPad.cpp:690 +#: src/libslic3r/SLA/Pad.cpp:691 msgid "Pad brim size is too small for the current configuration." msgstr "パッドのブリム(縁)サイズは、現在の構成には小さすぎます。" -#: src/libslic3r/PrintConfig.cpp:2731 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "パッドオブジェクトコネクタの貫通" -#: src/libslic3r/PrintConfig.cpp:2711 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "パッドオブジェクトコネクタのピッチ" -#: src/libslic3r/PrintConfig.cpp:2721 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "パッドオブジェクトの接続幅" -#: src/libslic3r/PrintConfig.cpp:2700 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "パッドオブジェクトのギャップ" -#: src/libslic3r/PrintConfig.cpp:2532 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "パッド壁の高さ" -#: src/libslic3r/PrintConfig.cpp:2568 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "側壁の傾斜" -#: src/libslic3r/PrintConfig.cpp:2522 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "台座の壁の厚さ" -#: src/slic3r/GUI/Field.cpp:108 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Page Down" +msgstr "ページダウン" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Page Up" +msgstr "ページアップ" + +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "パラメータ名" -#: src/slic3r/GUI/Field.cpp:184 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "パラメータ検証" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2412 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "パート" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1881 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "部品操作" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1872 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "変更するパーツ設定" -#: src/slic3r/GUI/GLCanvas3D.cpp:3449 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "ペースト" -#: src/slic3r/GUI/MainFrame.cpp:456 +#: src/slic3r/GUI/MainFrame.cpp:592 msgid "Paste clipboard" msgstr "クリップボードからペースト" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 msgid "Paste from clipboard" msgstr "クリップボードからペースト" -#: src/slic3r/GUI/Plater.cpp:4772 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "クリップボードからの貼り付け" -#: src/libslic3r/PrintConfig.cpp:1915 +#: src/libslic3r/PrintConfig.cpp:2002 msgid "Pattern" msgstr "パターン" -#: src/libslic3r/PrintConfig.cpp:1805 +#: src/libslic3r/PrintConfig.cpp:1891 msgid "Pattern angle" msgstr "パターン角" -#: src/libslic3r/PrintConfig.cpp:1929 +#: src/libslic3r/PrintConfig.cpp:2016 msgid "Pattern spacing" msgstr "パターンの間隔" -#: src/libslic3r/PrintConfig.cpp:1917 +#: src/libslic3r/PrintConfig.cpp:2004 msgid "Pattern used to generate support material." msgstr "サポートの生成用のパターン。" -#: src/slic3r/GUI/GLCanvas3D.cpp:1043 src/slic3r/GUI/GLCanvas3D.cpp:1052 -#: src/slic3r/GUI/GLCanvas3D.cpp:1091 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "停止" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 +msgid "Pause print (\"%1%\")" +msgstr "プリント停止(\"%1%\")" + +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "プリントを一時停止するか、カスタムGコードを挿入します" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:175 msgid "Perform cut" msgstr "カットする" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163 +#: src/libslic3r/PrintConfig.cpp:2927 +msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." +msgstr "パフォーマンスvs.計算の精度。 値を低くすると、不自然な結果が生成される場合があります。" + +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "外周" -#: src/libslic3r/PrintConfig.cpp:1339 +#: src/libslic3r/PrintConfig.cpp:1408 msgid "Perimeter extruder" msgstr "外周エクストルーダー" -#: src/slic3r/GUI/PresetHints.cpp:162 +#: src/slic3r/GUI/PresetHints.cpp:165 msgid "perimeters" msgstr "外周" -#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348 -#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370 +#: src/libslic3r/PrintConfig.cpp:1399 src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1430 src/libslic3r/PrintConfig.cpp:1440 msgid "Perimeters" msgstr "外周" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:860 +#, c-format msgid "Pick another vendor supported by %s" msgstr "%sがサポートする別のベンダーを選択してください" @@ -4725,510 +5248,584 @@ msgstr "%sがサポートする別のベンダーを選択してください" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr ".gcodeおよび.sl1ファイルに保存される画像サイズ" -#: src/libslic3r/PrintConfig.cpp:2430 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "柱の太さ係数" -#: src/slic3r/GUI/ConfigManipulation.cpp:317 +#: src/slic3r/GUI/ConfigManipulation.cpp:330 msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "サポートチップの直径は、支柱の直径より小さくする必要があります。" -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "ベアリングを穴に挿入して続行します" +#: src/slic3r/GUI/DoubleSlider.cpp:79 +msgid "Place bearings in slots and resume printing" +msgstr "ベアリングを穴に挿入し、プリントを再開します" -#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32 +#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "ベッド上に配置" -#: src/slic3r/GUI/MainFrame.cpp:161 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "プレート" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Plater Shortcuts" -msgstr "プレートショートカット" - -#: src/slic3r/GUI/GUI.cpp:143 +#: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "オブジェクトリストを確認して修正してください。" -#: src/slic3r/GUI/Tab.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "プリセットを変更する前にオブジェクトリストを確認してください。" -#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:286 +#: src/slic3r/GUI/Plater.cpp:3286 +msgid "Please select the file to reload" +msgstr "リロードするファイルを選択してください" + +#: src/slic3r/GUI/AboutDialog.cpp:39 src/slic3r/GUI/AboutDialog.cpp:291 msgid "Portions copyright" msgstr "一部の著作権" -#: src/libslic3r/PrintConfig.cpp:2235 +#: src/libslic3r/PrintConfig.cpp:2400 msgid "Portrait" msgstr "ポートレート" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:215 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:457 msgid "Position" msgstr "位置" -#: src/slic3r/GUI/Tab.cpp:2265 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "ポジション(マルチエクストルーダーの場合)" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "位置(mm)" - -#: src/libslic3r/PrintConfig.cpp:1553 +#: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "外周プリントの開始点。" -#: src/libslic3r/PrintConfig.cpp:2123 +#: src/libslic3r/PrintConfig.cpp:2224 msgid "Position X" msgstr "X位置" -#: src/libslic3r/PrintConfig.cpp:2130 +#: src/libslic3r/PrintConfig.cpp:2231 msgid "Position Y" msgstr "Yポジション" -#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "ポストプロセス・スクリプト" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Pre&view" msgstr "プレビュー(&v)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "環境設定" -#: src/libslic3r/PrintConfig.cpp:1571 +#: src/libslic3r/PrintConfig.cpp:1641 msgid "Preferred direction of the seam" msgstr "シームの優先方向" -#: src/libslic3r/PrintConfig.cpp:1582 +#: src/libslic3r/PrintConfig.cpp:1652 msgid "Preferred direction of the seam - jitter" msgstr "シームの優先方向ージッター" -#: src/libslic3r/PrintObject.cpp:251 +#: src/libslic3r/PrintObject.cpp:255 msgid "Preparing infill" msgstr "インフィルの準備" -#: src/slic3r/GUI/Tab.cpp:2758 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2920 +#, c-format msgid "Preset (%s)" msgstr "プリセット(%s)" -#: src/slic3r/GUI/Tab.cpp:3031 -msgid "Preset with name \"%1%\" already exist." +#: src/slic3r/GUI/Tab.cpp:3082 +msgid "Preset with name \"%1%\" already exists." msgstr "\"%1%\"というプリセット名は既に存在します。" -#: src/slic3r/GUI/Tab.cpp:2994 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - コピー" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" -msgstr "クリックして四角形選択解除をアクティブにするか、選択したオブジェクトをその中心基点で縮尺または回転します" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +msgid "Press to activate deselection rectangle" +msgstr "押すと選択解除長方形をアクティブにします" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "クリックして一方向だけギズモサイズを変更します" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:162 +msgid "Press to activate selection rectangle" +msgstr "押すと選択範囲がアクティブになります" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"押して、選択したオブジェクトの中心でスケーリング\n" +"(ギズモスケール)または回転(ギズモ回転)" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"マウスを押して複数のオブジェクトを選択します\n" +"または複数のオブジェクトを移動します" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format -msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "クリックして四角形の選択を有効にします\nまたは、5%サイズ変更ステップする\nまたは1mm刻みにする" +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"ギズモスケールで5%スナップする\n" +"またはギズモ移動で1mmずつスナップする" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 -msgid "Press to scale selection to fit print volume\nin Gizmo scale" -msgstr "押すと、選択を拡大縮小し、プリントボリュームをギズモサイズに合わせます" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "マウスで複数のオブジェクトを選択するか移動します" - -#: src/slic3r/GUI/Tab.cpp:2288 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "プレビュー" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 -msgid "Preview Shortcuts" -msgstr "プレビューのショートカット" +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:42 +msgid "Preview hollowed and drilled model" +msgstr "くり抜き穴開けモデルのプレビュー" -#: src/slic3r/GUI/MainFrame.cpp:641 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "以前のスライスファイル(" -#: src/libslic3r/PrintConfig.cpp:1773 +#: src/libslic3r/PrintConfig.cpp:1851 msgid "Prime all printing extruders" msgstr "全てのエクストルーダーでプライムを実施" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "プリント" -#: src/slic3r/GUI/MainFrame.cpp:510 +#: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" msgstr "プリントサーバーアップロードキュー(&H)" -#: src/libslic3r/PrintConfig.cpp:439 +#: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "デフォルトの順ではなく、外周から始めて内周へとプリントします。" -#: src/slic3r/GUI/ConfigWizard.cpp:541 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "各種直径" -#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" msgstr "プリントサーバーアップロード" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 -#: src/slic3r/GUI/PrintHostDialogs.cpp:135 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "プリントサーバーのアップロードキュー" -#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405 +#: src/slic3r/GUI/DoubleSlider.cpp:970 +msgid "Print mode" +msgstr "プリントモード" + +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "プリント設定" -#: src/slic3r/GUI/Plater.cpp:681 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "プリント設定" -#: src/slic3r/GUI/Tab.cpp:1520 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "プリント速度上書き" -#: src/libslic3r/GCode.cpp:634 +#: src/libslic3r/GCode.cpp:638 msgid "Print z" msgstr "Z高さでプリント" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Print&er Settings Tab" msgstr "プリンター設定タブ(&e)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1438 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "プリント可" -#: src/slic3r/GUI/Plater.cpp:685 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "プリンター" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "プリンター" -#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275 +#: src/libslic3r/PrintConfig.cpp:2439 src/libslic3r/PrintConfig.cpp:2440 msgid "Printer absolute correction" msgstr "絶対的なプリンター補正" -#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283 +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "プリンタガンマ補正" -#: src/slic3r/GUI/Tab.cpp:926 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "プリンターモデル" -#: src/libslic3r/PrintConfig.cpp:1402 +#: src/libslic3r/PrintConfig.cpp:1472 msgid "Printer notes" msgstr "プリンターメモ" -#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267 -#: src/libslic3r/PrintConfig.cpp:2268 +#: src/libslic3r/PrintConfig.cpp:2431 src/libslic3r/PrintConfig.cpp:2432 +#: src/libslic3r/PrintConfig.cpp:2433 msgid "Printer scaling correction" msgstr "プリンタースケーリング補正" -#: src/slic3r/GUI/Tab.hpp:368 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "プリンター設定" -#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43 +#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44 msgid "Printer technology" msgstr "プリント方式" -#: src/libslic3r/PrintConfig.cpp:1396 +#: src/libslic3r/PrintConfig.cpp:1466 msgid "Printer type" msgstr "プリンタータイプ" -#: src/libslic3r/PrintConfig.cpp:1417 +#: src/libslic3r/PrintConfig.cpp:1487 msgid "Printer variant" msgstr "プリンターバリエーション" -#: src/libslic3r/PrintConfig.cpp:1411 +#: src/libslic3r/PrintConfig.cpp:1481 msgid "Printer vendor" msgstr "プリンターメーカー" -#: src/libslic3r/Print.cpp:1294 +#: src/libslic3r/Print.cpp:1388 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "異なるノズル直径の複数のエクストルーダーでのプリント。 現在のエクストルーダーでサポートをプリントする場合(support_material_extruder == 0またはsupport_material_interface_extruder == 0)、すべてのノズル径を同じにする必要があります。" #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:715 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:849 +#, c-format msgid "Processing %s" msgstr "%s実行中" -#: src/slic3r/GUI/Plater.cpp:2287 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2283 +#, c-format msgid "Processing input file %s" msgstr "入力ファイル%sを処理中" -#: src/libslic3r/PrintObject.cpp:110 +#: src/libslic3r/PrintObject.cpp:108 msgid "Processing triangulated mesh" msgstr "ポリゴンメッシュ処理" -#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585 -#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087 -#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "プロファイルの依存関係" -#: src/slic3r/GUI/ConfigWizard.cpp:537 +#: src/slic3r/GUI/ConfigWizard.cpp:566 msgid "Profile:" msgstr "プロファイル:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:149 +#: src/slic3r/GUI/PrintHostDialogs.cpp:150 msgid "Progress" msgstr "進捗" -#: src/slic3r/GUI/FirmwareDialog.cpp:779 +#: src/slic3r/GUI/FirmwareDialog.cpp:817 msgid "Progress:" msgstr "進度:" -#: src/slic3r/GUI/MainFrame.cpp:542 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" -msgstr "Prusa 3D &ドライバー(&D)" +msgstr "Prusa 3&D &ドライバー" -#: src/slic3r/GUI/ConfigWizard.cpp:1109 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "Prusa FFF方式プリンター" -#: src/slic3r/GUI/ConfigWizard.cpp:1112 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Prusa MSLA方式プリンター" -#: src/slic3r/GUI/AboutDialog.cpp:255 +#: src/slic3r/GUI/AboutDialog.cpp:260 msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap community." msgstr "PrusaSlicerは、Alessandro RanellucciとRepRapコミュニティによるSlic3rをベースにしています。" -#: src/slic3r/GUI/GUI_App.cpp:297 -#, possible-c-format -msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." +#: src/slic3r/GUI/GLCanvas3DManager.cpp:284 +#, c-format +msgid "" +"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" +"while OpenGL version %s, render %s, vendor %s was detected." msgstr "OpenGLバージョン%s、レンダー%s、ベンダー%sが検出されました。PrusaSlicerには、OpenGL 2.0が機能するグラフィックドライバーが必要です。" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "PrusaSlicerバージョン" -#: src/slic3r/GUI/ConfigWizard.cpp:771 -msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "PrusaSlicerのユーザーインターフェイスには、次の3つのバリエーションがあります。\nシンプル、高度、エキスパート。\nシンプルモードでは、通常の3Dプリントするときに最も一般的に使用される設定のみが表示されます。 他の2つは上級ユーザーやエキスパートユーザー向けに微調整できる項目を提供します。" +#: src/slic3r/GUI/ConfigWizard.cpp:815 +msgid "" +"PrusaSlicer's user interfaces comes in three variants:\n" +"Simple, Advanced, and Expert.\n" +"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "" +"PrusaSlicerのユーザーインターフェイスには、次の3つのバリエーションがあります。\n" +"シンプル、高度、エキスパート。\n" +"シンプルモードでは、通常の3Dプリントするときに最も一般的に使用される設定のみが表示されます。 他の2つは上級ユーザーやエキスパートユーザー向けに微調整できる項目を提供します。" -#: src/libslic3r/PrintConfig.cpp:2153 +#: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "ツール変更後のパージを、このオブジェクトのインフィル内で行います。 これにより材料の無駄が減りますが、ツールの移動量が増えてプリント時間が長くなることがあります。" -#: src/slic3r/GUI/Plater.cpp:456 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "パージ体積" -#: src/libslic3r/PrintConfig.cpp:2106 +#: src/libslic3r/PrintConfig.cpp:2207 msgid "Purging volumes - load/unload volumes" msgstr "パージ量-ロード/アンロード時" -#: src/libslic3r/PrintConfig.cpp:2113 +#: src/libslic3r/PrintConfig.cpp:2214 msgid "Purging volumes - matrix" msgstr "パージする量−行列" -#: src/slic3r/GUI/Tab.cpp:1019 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:44 +msgid "Quality" +msgstr "品質" + +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "高品質(スライスが遅くなります)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1145 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1377 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:273 +msgid "Quality / Speed" +msgstr "品質/スピード" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 +#, c-format msgid "Quick Add Settings (%s)" msgstr "クイック追加設定(%s)" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Quick Slice" msgstr "高速スライス" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Quick Slice and Save As" msgstr "クイックスライスと名前を付けて保存" -#: src/slic3r/GUI/MainFrame.cpp:409 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:540 +#, c-format msgid "Quit %s" msgstr "%sを終了" -#: src/libslic3r/PrintConfig.cpp:479 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "半径" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "ラフト" -#: src/libslic3r/PrintConfig.cpp:1431 +#: src/libslic3r/PrintConfig.cpp:1501 msgid "Raft layers" msgstr "ラフトレイヤー" -#: src/slic3r/GUI/WipeTowerDialog.cpp:14 +#: src/slic3r/GUI/WipeTowerDialog.cpp:15 msgid "Ramming customization" msgstr "ラミングのカスタマイズ" -#: src/slic3r/GUI/WipeTowerDialog.cpp:40 -msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "ラミングとは、単一エクストルーダーMMプリンターでツールを交換する直前の急速吐出動作を指します。 その目的は、フィラメントを抜く時に新しいフィラメントの挿入を妨げないようにすることと、再挿入のときにエラーにならないよう、フィラメントの先端部を適切な形にすることです。 この処理は重要であり、材料が変わると、良好な先端形状が得られるラミング条件の変更が必要となったりします。 このため、ラミング中の吐出速度は調整できるようになっています。\n\nこれはエキスパートレベルの設定です。不適切な調整は、ジャムや、ドライブギアがフィラメントを削ったりする可能性があります。" +#: src/slic3r/GUI/WipeTowerDialog.cpp:41 +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "" +"ラミングとは、単一エクストルーダーMMプリンターでツールを交換する直前の急速吐出動作を指します。 その目的は、フィラメントを抜く時に新しいフィラメントの挿入を妨げないようにすることと、再挿入のときにエラーにならないよう、フィラメントの先端部を適切な形にすることです。 この処理は重要であり、材料が変わると、良好な先端形状が得られるラミング条件の変更が必要となったりします。 このため、ラミング中の吐出速度は調整できるようになっています。\n" +"\n" +"これはエキスパートレベルの設定です。不適切な調整は、ジャムや、ドライブギアがフィラメントを削ったりする可能性があります。" -#: src/slic3r/GUI/WipeTowerDialog.cpp:90 +#: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" msgstr "ラミング線間距離" -#: src/slic3r/GUI/WipeTowerDialog.cpp:88 +#: src/slic3r/GUI/WipeTowerDialog.cpp:89 msgid "Ramming line width" msgstr "ラミング線幅" -#: src/libslic3r/PrintConfig.cpp:662 +#: src/libslic3r/PrintConfig.cpp:694 msgid "Ramming parameters" msgstr "ラミングパラメーター" -#: src/slic3r/GUI/Tab.cpp:1545 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "ラミング設定" -#: src/libslic3r/PrintConfig.cpp:1559 +#: src/libslic3r/PrintConfig.cpp:1629 msgid "Random" msgstr "ランダム" -#: src/slic3r/GUI/wxExtensions.cpp:486 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:94 msgid "Range" msgstr "範囲" -#: src/libslic3r/SLAPrint.cpp:72 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "レイヤーのラスタライズ" -#: src/slic3r/GUI/UpdateDialogs.cpp:151 +#: src/slic3r/GUI/MainFrame.cpp:596 +msgid "Re&load from disk" +msgstr "ディスクからリロード(&l)" + +#: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" msgstr "再構成" -#: src/slic3r/GUI/FirmwareDialog.cpp:783 +#: src/slic3r/GUI/FirmwareDialog.cpp:821 msgid "Ready" msgstr "準備完了" -#: src/slic3r/GUI/Plater.cpp:2406 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "スライス可能" -#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562 +#: src/slic3r/GUI/MainFrame.cpp:669 src/libslic3r/PrintConfig.cpp:1632 msgid "Rear" msgstr "背面" -#: src/slic3r/GUI/MainFrame.cpp:526 +#: src/slic3r/GUI/MainFrame.cpp:669 msgid "Rear View" msgstr "背面" -#: src/slic3r/GUI/MainFrame.cpp:401 +#: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" msgstr "最近のプロジェクト" -#: src/slic3r/GUI/PresetHints.cpp:262 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:263 +#, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "レイヤー高さ%.2fでの推奨オブジェクトの薄壁厚と" +#: src/slic3r/GUI/PresetHints.cpp:274 +msgid "Recommended object thin wall thickness: Not available due to excessively small extrusion width." +msgstr "推奨されるオブジェクトの薄壁の厚さ:押出し幅が小さくなりすぎるため利用できません。" + #: src/slic3r/GUI/PresetHints.cpp:247 msgid "Recommended object thin wall thickness: Not available due to invalid layer height." msgstr "推奨されるオブジェクトの薄壁の厚さ:レイヤーの高さが無効なため利用できません。" -#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395 +#: src/slic3r/GUI/GUI_App.cpp:450 src/slic3r/GUI/GUI_App.cpp:459 msgid "Recreating" msgstr "更新" -#: src/slic3r/GUI/BedShapeDialog.cpp:68 +#: src/slic3r/GUI/BedShapeDialog.cpp:73 msgid "Rectangular" msgstr "四角形" -#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796 -#: src/libslic3r/PrintConfig.cpp:1922 +#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:2009 msgid "Rectilinear" msgstr "直線的" -#: src/libslic3r/PrintConfig.cpp:1923 +#: src/libslic3r/PrintConfig.cpp:2010 msgid "Rectilinear grid" msgstr "直線グリッド" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3639 -#: src/slic3r/GUI/MainFrame.cpp:562 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "再実行" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "やり直し履歴" -#: src/slic3r/GUI/Tab.cpp:1037 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "造形時間短縮" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3161 -#: src/slic3r/GUI/Plater.cpp:3715 src/slic3r/GUI/Plater.cpp:3744 -msgid "Reload from disk" -msgstr "ディスクから再読込み" +#: src/slic3r/GUI/Plater.cpp:3452 +msgid "Reload all from disk" +msgstr "全てをディスクからリロード" -#: src/slic3r/GUI/Plater.cpp:3744 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 +msgid "Reload from disk" +msgstr "ディスクからリロード" + +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" +msgstr "リロード元:" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:134 +msgid "Reload plater from disk" +msgstr "ディスクからプレートをリロードします" + +#: src/slic3r/GUI/MainFrame.cpp:597 +msgid "Reload the plater from disk" +msgstr "プレートをリロードします" + +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "選択したオブジェクトをディスクからリロードします" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1553 src/slic3r/GUI/Plater.cpp:3715 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" -msgstr "選択したオブジェクトをディスクから再読込みする" +msgstr "選択したオブジェクトをディスクからリロードする" -#: src/slic3r/GUI/Preferences.cpp:36 +#: src/slic3r/GUI/Preferences.cpp:39 msgid "Remember output directory" msgstr "出力ディレクトリを記憶する" -#: src/slic3r/GUI/Tab.cpp:2935 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "外す" -#: src/slic3r/GUI/Tab.cpp:2937 +#: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "除去" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:49 +msgid "Remove all holes" +msgstr "全ての穴の削除" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:51 msgid "Remove all points" msgstr "全てのポイントを削除" -#: src/slic3r/GUI/GLCanvas3D.cpp:252 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "詳細を削除" +#: src/slic3r/GUI/Plater.cpp:879 +msgid "Remove device" +msgstr "デバイスを削除する" + #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:182 msgid "Remove extruder from sequence" msgstr "リストからエクストルーダーを削除する" -#: src/slic3r/GUI/GLCanvas3D.cpp:3475 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" msgstr "インスタンス削除" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Remove Instance of the selected object" msgstr "選択したオブジェクトのインスタンスを削除" @@ -5236,60 +5833,68 @@ msgstr "選択したオブジェクトのインスタンスを削除" msgid "Remove layer range" msgstr "レイヤーの範囲を削除します" -#: src/slic3r/GUI/Plater.cpp:3518 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" msgstr "選択したオブジェクトのインスタンスを1つ削除します" -#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83 +#: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "パラメータを削除" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "ポイント削除" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "選択からポイントを削除" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:48 +msgid "Remove selected holes" +msgstr "選択した穴の削除" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "選択したポイントを削除" -#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "選択オブジェクトを削除" -#: src/slic3r/GUI/ConfigWizard.cpp:305 +#: src/slic3r/GUI/ConfigWizard.cpp:438 msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "ユーザープロファイルの削除-最初からインストールします(スナップショットは事前に作成されます)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1200 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "名前の変更" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "オブジェクト名を変更" -#: src/slic3r/GUI/GUI_ObjectList.cpp:493 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "サブオブジェクトの名前変更" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2709 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "名前の変更" -#: src/libslic3r/PrintConfig.cpp:3125 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "選択した宛先フォルダーにコピーした後、Gコードの名前を変更できませんでした。 現在のパスは%1%.tmpです。 もう一度やり直してください。" + +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "ソフトウェアでレンダリングする" -#: src/libslic3r/PrintConfig.cpp:3126 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "ソフトウェアレンダラーでレンダリングします。 デフォルトのOpenGLドライバーの代わりに、バンドルされたMESAソフトウェアレンダラーがロードされます。" -#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "修復" @@ -5313,295 +5918,310 @@ msgstr "修正された3MFファイルにはソリッドボディがありませ msgid "Repairing model by the Netfabb service" msgstr "Netfabbでモデルを修復中" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat last quick slice" msgstr "最後のクイックスライスを繰り返す" -#: src/slic3r/GUI/MainFrame.cpp:395 +#: src/slic3r/GUI/MainFrame.cpp:524 msgid "Repeat Last Quick Slice" msgstr "最後のクイックスライスを繰り返す" -#: src/slic3r/GUI/Tab.cpp:3032 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "置き換えますか?" -#: src/slic3r/GUI/MainFrame.cpp:561 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" msgstr "問題を報告する(&s)" -#: src/slic3r/GUI/MainFrame.cpp:561 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:703 +#, c-format msgid "Report an issue on %s" msgstr "%sに関する問題を報告する" -#: src/slic3r/Utils/PresetUpdater.cpp:590 -#, possible-c-format +#: src/slic3r/Utils/PresetUpdater.cpp:713 +#, c-format msgid "requires max. %s" msgstr "最大%sが必要" -#: src/slic3r/Utils/PresetUpdater.cpp:588 -#, possible-c-format +#: src/slic3r/Utils/PresetUpdater.cpp:710 +#, c-format msgid "requires min. %s" msgstr "最小%sが必要" -#: src/slic3r/Utils/PresetUpdater.cpp:583 -#, possible-c-format +#: src/slic3r/Utils/PresetUpdater.cpp:705 +#, c-format msgid "requires min. %s and max. %s" msgstr "最小%sと最大%sが必要です" -#: src/slic3r/GUI/FirmwareDialog.cpp:772 +#: src/slic3r/GUI/FirmwareDialog.cpp:810 msgid "Rescan" msgstr "再走査" -#: src/slic3r/GUI/Tab.cpp:1879 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "シリアルポートの再捜査" -#: src/slic3r/GUI/GLCanvas3D.cpp:307 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "リセット" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "切断面をリセットする" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:51 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:59 msgid "Reset direction" msgstr "方向のリセット" -#: src/slic3r/GUI/Plater.cpp:2603 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "プロジェクトのリセット" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:303 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:363 msgid "Reset rotation" msgstr "回転をリセット" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:328 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:385 msgid "Reset Rotation" msgstr "回転をリセット" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:285 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:290 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:397 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:399 msgid "Reset scale" msgstr "縮尺をリセット" -#: src/slic3r/GUI/GLCanvas3D.cpp:258 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" msgstr "ベースにリセット" -#: src/slic3r/GUI/Tab.cpp:2584 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "フィラメントの色をリセット" -#: src/libslic3r/PrintConfig.cpp:1441 +#: src/libslic3r/PrintConfig.cpp:1511 msgid "Resolution" msgstr "解像度" -#: src/libslic3r/PrintConfig.cpp:1459 +#: src/libslic3r/PrintConfig.cpp:1529 msgid "Retract amount before wipe" msgstr "ワイプ前に引き込む" -#: src/libslic3r/PrintConfig.cpp:1467 +#: src/libslic3r/PrintConfig.cpp:1537 msgid "Retract on layer change" msgstr "レイヤーチェンジ時の待避" -#: src/slic3r/GUI/Tab.cpp:2268 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "リトラクション" -#: src/libslic3r/PrintConfig.cpp:1453 +#: src/libslic3r/PrintConfig.cpp:1523 msgid "Retraction is not triggered when travel moves are shorter than this length." msgstr "移動がこの長さより短い場合、吸込み動作を行いません。" -#: src/libslic3r/PrintConfig.cpp:1474 +#: src/libslic3r/PrintConfig.cpp:1544 msgid "Retraction Length" msgstr "材料待避長さ" -#: src/libslic3r/PrintConfig.cpp:1482 +#: src/libslic3r/PrintConfig.cpp:1552 msgid "Retraction Length (Toolchange)" msgstr "引込み長(ツールチェンジ)" -#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535 +#: src/libslic3r/PrintConfig.cpp:1604 src/libslic3r/PrintConfig.cpp:1605 msgid "Retraction Speed" msgstr "引き込み速度" -#: src/slic3r/GUI/Tab.cpp:2284 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "非アクティブなツールのフィラメントを待避する(マルチエクストルーダーの高度な設定)" -#: src/slic3r/GUI/GUI_Preview.cpp:244 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "待避" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right" msgstr "右" -#: src/slic3r/GUI/GUI_ObjectList.cpp:381 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "アイコンを右クリックして、オブジェクトのプリント可プロパティを変更します" -#: src/slic3r/GUI/GUI_ObjectList.cpp:279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "アイコンを右クリックして、オブジェクトの設定を変更します" -#: src/slic3r/GUI/GUI_ObjectList.cpp:250 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "NetfabbでSTLを修正するには、アイコンを右クリックします" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "右クリック" -#: src/slic3r/GUI/GLCanvas3D.cpp:249 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "右マウスボタン:" -#: src/slic3r/GUI/MainFrame.cpp:528 +#: src/slic3r/GUI/MainFrame.cpp:673 msgid "Right View" msgstr "右側" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253 -#: src/libslic3r/PrintConfig.cpp:3062 +#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:449 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "回転" -#: src/libslic3r/PrintConfig.cpp:3067 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "X軸周りで回転" -#: src/libslic3r/PrintConfig.cpp:3072 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Y軸周りの回転" -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:170 msgid "Rotate lower part upwards" msgstr "回転させて上下をひっくり返します" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 +msgid "Rotate selection 45 degrees CCW" +msgstr "選択を反時計回りに45°回転" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 +msgid "Rotate selection 45 degrees CW" +msgstr "選択範囲を時計回りに45度回転" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 +#: src/slic3r/GUI/Mouse3DController.cpp:321 msgid "Rotation" msgstr "回転" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491 -msgid "Rotation (deg)" -msgstr "回転(度)" - -#: src/libslic3r/PrintConfig.cpp:3068 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "X軸の周りの回転角度(度)。" -#: src/libslic3r/PrintConfig.cpp:3073 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Y軸を中心とした回転角(度単位)。" -#: src/libslic3r/PrintConfig.cpp:3063 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Z軸周りの回転角度(度)。" -#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658 -#, possible-c-format +#: src/slic3r/GUI/GUI_App.cpp:797 +#, c-format msgid "Run %s" msgstr "%s実行" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "ポストプロセス スクリプト実行中" -#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81 -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612 -#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671 -#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252 -#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319 +#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 +#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 +#: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "s" -#: src/slic3r/GUI/MainFrame.cpp:466 src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" msgstr "Gコードを送信(&e)" -#: src/slic3r/GUI/MainFrame.cpp:709 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "プリントする(&e)" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3264 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:3417 +#, c-format msgid "Save %s as:" msgstr "形式を変更して%sを保存:" -#: src/slic3r/GUI/MainFrame.cpp:686 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:826 +#, c-format msgid "Save %s file as:" msgstr "%sファイルを別の名前で保存:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "変更を保存しますか?" -#: src/libslic3r/PrintConfig.cpp:2997 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "設定ファイルを保存" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "構成ファイルを別名で保存:" -#: src/libslic3r/PrintConfig.cpp:2998 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "指定したファイルに構成を保存します。" #. TRN "Save current Settings" #: src/slic3r/GUI/Tab.cpp:133 -#, possible-c-format +#, c-format msgid "Save current %s" msgstr "現在の%sを保存" -#: src/slic3r/GUI/MainFrame.cpp:341 +#: src/slic3r/GUI/MainFrame.cpp:446 msgid "Save current project file" msgstr "現在のプロジェクトファイルの保存" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save current project file as" msgstr "現在のプロジェクトに名前を付けて保存" -#: src/slic3r/GUI/Plater.cpp:1938 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "別名で保存 :" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "Gコードを別名で保存:" -#: src/slic3r/GUI/MainFrame.cpp:757 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "OBJファイルを保存します(STLよりも調整エラーが少ない):" -#: src/slic3r/GUI/Tab.hpp:417 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "プリセット保存" -#: src/slic3r/GUI/MainFrame.cpp:843 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "プリセットパッケージを別の名前で保存:" -#: src/slic3r/GUI/MainFrame.cpp:343 +#: src/slic3r/GUI/MainFrame.cpp:450 src/slic3r/GUI/MainFrame.cpp:452 msgid "Save Project &as" msgstr "プロジェクトを別名で保存(&a)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Save project (3MF)" -msgstr "プロジェクトの保存(3MF)" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +msgid "Save project (3mf)" +msgstr "プロジェクトの保存(3mf)" -#: src/slic3r/GUI/Plater.cpp:3433 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:115 +msgid "Save project as (3mf)" +msgstr "別名でプロジェクトを保存(3mf)" + +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "SL1ファイルを別名で保存 :" -#: src/slic3r/GUI/MainFrame.cpp:692 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "ZIPファイルを保存:" @@ -5611,58 +6231,61 @@ msgstr "ZIPファイルを保存:" msgid "Saving mesh into the 3MF container failed." msgstr "3MFコンテナへのメッシュの保存に失敗しました。" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254 -#: src/libslic3r/PrintConfig.cpp:3077 +#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:47 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "スケール" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276 -msgid "Scale (%)" -msgstr "スケール(%)" - -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "寸法係数" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:196 +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "ギズモスケールでプリントボリュームに合わせて選択範囲を拡大/縮小します" + +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "選択したオブジェクトをプリントボリュームに合わせて拡大縮小します" -#: src/libslic3r/PrintConfig.cpp:3086 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "フィットするように縮尺" -#: src/slic3r/GUI/Selection.cpp:947 +#: src/slic3r/GUI/Selection.cpp:939 msgid "Scale To Fit" msgstr "フィットするように縮尺" -#: src/libslic3r/PrintConfig.cpp:3087 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "指定したプリントスペースに合わせてサイズを変更します。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1440 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "プリントエリアに合わせて縮尺する" -#: src/libslic3r/PrintConfig.cpp:3078 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "スケーリング係数または割合。" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "`%1%`へのアップロードスケジュール。 ウィンドウ->プリントホストアップロードキューを参照してください" -#: src/libslic3r/PrintConfig.cpp:1551 +#: src/libslic3r/PrintConfig.cpp:1621 msgid "Seam position" msgstr "シーム位置" -#: src/libslic3r/PrintConfig.cpp:1572 +#: src/libslic3r/PrintConfig.cpp:1642 msgid "Seam preferred direction" msgstr "シーム優先方向" -#: src/libslic3r/PrintConfig.cpp:1581 +#: src/libslic3r/PrintConfig.cpp:1651 msgid "Seam preferred direction jitter" msgstr "シーム優先方向ジッター" @@ -5670,71 +6293,63 @@ msgstr "シーム優先方向ジッター" msgid "Searching for devices" msgstr "デバイス検索中" -#: src/slic3r/GUI/Plater.cpp:2190 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "最適方向を探す" -#: src/slic3r/GUI/GUI_App.cpp:1100 +#: src/slic3r/GUI/GUI_App.cpp:1103 msgid "Select a gcode file:" msgstr "Gコードファイルの選択:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 -msgid "Select All objects" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +msgid "Select all objects" msgstr "全てのオブジェクトを選択" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "全てのポイントを選択" -#: src/slic3r/GUI/ConfigWizard.cpp:1089 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "すべての標準プリンターを選択" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "四角形で選択" -#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "読み込む構成を選択します:" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:82 msgid "Select coordinate space, in which the transformation will be performed." msgstr "変換する座標空間を選択します。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2834 -msgid "Select extruder number for selected objects and/or parts" -msgstr "選択したオブジェクトおよび/またはパーツのエクストルーダー番号を選択します" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:2847 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "エクストルーダー番号の選択:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "フィラメント設定タブを選択" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1251 -msgid "Select new extruder for the object/part" -msgstr "オブジェクト/パーツに新しいエクストルーダーを選択します" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:114 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 msgid "Select Plater Tab" msgstr "プレートタブを選択" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "プリント設定タブを選択" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "プリンタ設定タブを選択" -#: src/slic3r/GUI/GUI_ObjectList.cpp:917 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "表示設定を選択" -#: src/slic3r/GUI/GUI_App.cpp:524 +#: src/slic3r/GUI/GUI_App.cpp:629 msgid "Select the language" msgstr "言語を選択" @@ -5746,39 +6361,49 @@ msgstr "このプロファイルと互換性のあるプリントプロファイ msgid "Select the printers this profile is compatible with." msgstr "このプロファイルと互換性のあるプリンターを選択します。" -#: src/slic3r/GUI/MainFrame.cpp:744 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "修復するSTLファイルを選択 :" -#: src/slic3r/GUI/Preferences.cpp:207 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "デフォルトのツールバーアイコンのサイズを選択します。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2545 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "パーツのタイプを選択" -#: src/slic3r/GUI/Plater.cpp:606 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "必要なパッドの種類を選択してください" -#: src/slic3r/GUI/Plater.cpp:421 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "必要なサポートの種類を選択してください" +#: src/slic3r/GUI/DoubleSlider.cpp:1917 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged." +msgstr "" +"保存したツールの変更をすべて削除する場合は、「はい」を選択します。\n" +"すべてのツールの変更を色の変更に切り替えたい場合は「いいえ」、\n" +"または「キャンセル」で変更せずにそのままにします" + #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" msgstr "選択-追加" -#: src/slic3r/GUI/Selection.cpp:384 +#: src/slic3r/GUI/Selection.cpp:376 msgid "Selection-Add All" msgstr "選択-すべて追加" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2875 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "選択-リストから追加" -#: src/slic3r/GUI/GLCanvas3D.cpp:5623 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "選択-長方形から追加" @@ -5794,15 +6419,15 @@ msgstr "選択-オブジェクト追加" msgid "Selection-Remove" msgstr "選択-除去" -#: src/slic3r/GUI/Selection.cpp:410 +#: src/slic3r/GUI/Selection.cpp:402 msgid "Selection-Remove All" msgstr "選択-全て除去" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2867 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "リストの選択-削除" -#: src/slic3r/GUI/GLCanvas3D.cpp:5642 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "選択-四角形から削除" @@ -5814,11 +6439,11 @@ msgstr "選択-インスタンス削除" msgid "Selection-Remove Object" msgstr "選択-オブジェクト削除" -#: src/slic3r/GUI/MainFrame.cpp:444 +#: src/slic3r/GUI/MainFrame.cpp:566 msgid "Selects all objects" msgstr "全てのオブジェクトを選択" -#: src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "Gコード送信" @@ -5826,27 +6451,31 @@ msgstr "Gコード送信" msgid "Send G-Code to printer host" msgstr "プリンターサーバーにGコードを送信" -#: src/slic3r/GUI/MainFrame.cpp:466 +#: src/slic3r/GUI/MainFrame.cpp:481 msgid "Send to print current plate as G-code" msgstr "現在のプレートをプリントするためにGコードとして送信" -#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "プリンターに送信" -#: src/slic3r/GUI/Tab.cpp:1169 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 +msgid "Seq." +msgstr "シーケンス" + +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "順次プリンティング" -#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "シリアルポート" -#: src/libslic3r/PrintConfig.cpp:1599 +#: src/libslic3r/PrintConfig.cpp:1669 msgid "Serial port speed" msgstr "シリアルポートスピード" -#: src/slic3r/GUI/FirmwareDialog.cpp:769 +#: src/slic3r/GUI/FirmwareDialog.cpp:807 msgid "Serial port:" msgstr "シリアルポート:" @@ -5854,17 +6483,17 @@ msgstr "シリアルポート:" msgid "Service name" msgstr "サービス名" -#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025 -#: src/slic3r/GUI/Tab.cpp:3008 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "設定" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1192 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "分離オブジェクトとして設定" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1331 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "分離オブジェクトとして設定" @@ -5872,7 +6501,7 @@ msgstr "分離オブジェクトとして設定" msgid "Set extruder change for every" msgstr "エクストルーダー変更のサイクルを設定する" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2833 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "選択アイテムのエクストルーダーを設定" @@ -5880,675 +6509,702 @@ msgstr "選択アイテムのエクストルーダーを設定" msgid "Set extruder sequence" msgstr "エクストルーダーの順序を設定する" -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "プリント全体のエクストルーダーの順序を設定する" +#: src/slic3r/GUI/DoubleSlider.cpp:1532 +msgid "Set extruder sequence for the entire print" +msgstr "プリント全体のエクストルーダーシーケンスを設定する" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 msgid "Set extruder(tool) sequence" msgstr "エクストルーダー(ツール)の順序を設定する" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "下のつまみを現在のスライダーのつまみに設定します" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:245 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:297 msgid "Set Mirror" msgstr "ミラーリング設定" -#: src/slic3r/GUI/Plater.cpp:3520 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "インスタンス数の設定" -#: src/slic3r/GUI/Plater.cpp:4163 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4756 +#, c-format msgid "Set numbers of copies to %d" msgstr "コピーの数を%dに設定" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:746 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" msgstr "方向を設定" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:715 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:750 msgid "Set Position" msgstr "位置設定" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "プリント可にする" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Printable Instance" msgstr "プリント可なインスタンスを設定" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:811 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:846 msgid "Set Scale" msgstr "縮尺をセット" -#: src/libslic3r/PrintConfig.cpp:2228 +#: src/libslic3r/PrintConfig.cpp:2393 msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "SLAプリンター内の実際のLCDディスプレイの向きを設定します。 ポートレートモードでは、ディスプレイの幅と高さのパラメーターの意味が変わり、出力画像が90度回転します。" -#: src/slic3r/GUI/ConfigWizard.cpp:527 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "プリントベッドの形状とサイズを設定します。" -#: src/libslic3r/PrintConfig.cpp:524 +#: src/libslic3r/PrintConfig.cpp:556 msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height." msgstr "正の値を設定すると、射出幅のマニュアル設定が有効になります。 値がゼロに設定されている場合、Slic3rはノズル径から射出幅を計算します(外周射出幅、インフィル射出幅などのヘルプを参照)。 値がパーセンテージで入力された場合(例:230%)、レイヤーの高さから計算されます。" -#: src/libslic3r/PrintConfig.cpp:417 +#: src/libslic3r/PrintConfig.cpp:448 msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height." msgstr "ゼロ以外の値を入力すると、最外周の射出幅をマニュアル設定できます。 ゼロの場合、設定されていればデフォルトの射出幅が使用され、設定されていない場合はノズル径の1.125倍になります。 パーセンテージ(200%など)で入力された場合、レイヤーの高さに対して計算されます。" -#: src/libslic3r/PrintConfig.cpp:831 +#: src/libslic3r/PrintConfig.cpp:878 msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width." msgstr "これをゼロ以外の値にすると、最初のレイヤーの射出幅をマニュアル設定できます。 これを使用して、ベッドとの密着を上げるために、より太い射出幅にできます。 パーセンテージ(例:120%)で入力した場合、最初のレイヤーの高さに対して計算されます。 ゼロに設定すると、デフォルトの射出幅になります。" -#: src/libslic3r/PrintConfig.cpp:1689 +#: src/libslic3r/PrintConfig.cpp:1758 msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "正の値を入力して、射出幅をマニュアル設定し、ソリッドサーフェスを塗りつぶします。 ゼロのにすると、設定されていればデフォルトの射出幅が使用され、設定されていなければノズル径の1.125倍が適用されます。 パーセンテージ(たとえば、90%)で入力すると、レイヤーの高さから計算されます。" -#: src/libslic3r/PrintConfig.cpp:2019 +#: src/libslic3r/PrintConfig.cpp:2107 msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "ゼロ以外の値を入力すると、上面インフィル(塗りつぶし)の射出幅をマニュアル設定できます。 細い射出幅に設定して、隙間なく、より滑らかに仕上げることができます。 ゼロのままにすると、設定されていればデフォルトの射出幅となり、設定されていなければノズル径が使用されます。 パーセンテージ(90%など)で入力された場合、レイヤーの高さに対して計算されます。" -#: src/libslic3r/PrintConfig.cpp:963 +#: src/libslic3r/PrintConfig.cpp:1011 msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "正の値を設定して、インフィル(中塗り)の射出幅をマニュアル調整します。 値がゼロの場合、設定されている場合は標準の射出幅が使用され、設定されていない場合はノズル径の1.125倍になります。 より太い射出幅を使用して、塗りつぶしを高速化し、プリント強度を強化することができます。 パーセンテージ(たとえば、90%)で表される場合、レイヤーの高さから計算されます。" -#: src/libslic3r/PrintConfig.cpp:1350 +#: src/libslic3r/PrintConfig.cpp:1419 msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height." msgstr "外周の射出幅をマニュアル設定するには、正の値を入力します。 より正確な表面を得るために、より細い射出幅を設定できます。 ゼロが入力されている場合、設定されている場合は標準の射出幅が使用され、設定されていない場合はノズル径の1.125倍が適用されます。 パーセンテージ(200%など)で入力された場合は、レイヤーの高さから計算されます。" -#: src/libslic3r/PrintConfig.cpp:1862 +#: src/libslic3r/PrintConfig.cpp:1948 msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height." msgstr "これをゼロ以外の値にすると、サポート材の射出幅を設定できます。 ゼロのままですと、デフォルトの射出幅が設定されていればその値が設定され、設定されていない場合はノズル径が設定されます。 パーセンテージ(90%など)で設定された場合は、レイヤーの高さから自動計算されます。" -#: src/libslic3r/PrintConfig.cpp:480 +#: src/libslic3r/PrintConfig.cpp:512 msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater." msgstr "これをエクストルーダーの周囲のクリアランス半径に設定します。 エクストルーダーが中央に配置されていない場合は、安全のために最大値を設定してください。 この設定は、衝突をチェックし、プレートにグラフィカルプレビューを表示するために使用されます。" -#: src/libslic3r/PrintConfig.cpp:65 +#: src/libslic3r/PrintConfig.cpp:81 msgid "Set this to the maximum height that can be reached by your extruder while printing." msgstr "プリント中にエクストルーダーが到達できる最大の高さを設定します。" -#: src/libslic3r/PrintConfig.cpp:469 +#: src/libslic3r/PrintConfig.cpp:501 msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "ノズルチップと(通常)Xキャリッジロッド間の垂直距離を入力します。 つまり、これはエクストルーダーの高さクリアランスで、順次プリントの時にエクストルーダーが他のプリント済みオブジェクトと衝突しないでプリントできる深さの最大値を表します。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3759 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "プリント不可にする" -#: src/slic3r/GUI/Selection.cpp:1482 +#: src/slic3r/GUI/Selection.cpp:1475 msgid "Set Unprintable Instance" msgstr "プリントしないインスタンスを設定する" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Set upper thumb to current slider thumb" msgstr "上部のつまみを現在のスライダーのつまみに設定します" -#: src/slic3r/GUI/BedShapeDialog.cpp:143 +#: src/libslic3r/PrintConfig.cpp:3509 +msgid "" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." +msgstr "" +"ログレベルの選択:0:致命的なエラー、1:エラー、2:警告、3:情報、4:デバッグ、5:トレース\n" +"たとえば。 loglevel = 2は、致命的なエラー、エラー、および警告メッセージを記録します。" + +#: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "設定" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2206 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "高さ範囲の設定" -#: src/slic3r/GUI/ConfigManipulation.cpp:154 +#: src/slic3r/GUI/ConfigManipulation.cpp:162 msgid "Shall I adjust those settings for supports?" msgstr "サポート用にこれらの設定を調整しますか?" -#: src/slic3r/GUI/ConfigManipulation.cpp:82 +#: src/slic3r/GUI/ConfigManipulation.cpp:89 msgid "Shall I adjust those settings in order to enable Spiral Vase?" msgstr "これらの設定を調整して、スパイラル花瓶(ベイス)モードを有効にしますか?" -#: src/slic3r/GUI/ConfigManipulation.cpp:111 +#: src/slic3r/GUI/ConfigManipulation.cpp:119 msgid "Shall I adjust those settings in order to enable the Wipe Tower?" msgstr "ワイプタワーを有効にするために、これらの設定を調整しますか?" -#: src/slic3r/GUI/ConfigManipulation.cpp:202 +#: src/slic3r/GUI/ConfigManipulation.cpp:210 msgid "Shall I switch to rectilinear fill pattern?" msgstr "線形塗りつぶしパターンに切り替えてもよろしいですか?" -#: src/slic3r/GUI/ConfigManipulation.cpp:131 +#: src/slic3r/GUI/ConfigManipulation.cpp:139 msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "クリーニングタワーを有効にするには、サポートレイヤーを同期する必要がありますが変更してよろしいですか?" -#: src/slic3r/GUI/BedShapeDialog.cpp:60 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "形状" -#: src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "シェル" -#: src/slic3r/GUI/GLCanvas3D.cpp:255 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "シフト+左マウスボタン:" -#: src/slic3r/GUI/GLCanvas3D.cpp:261 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "シフト+右マウスボタン:" -#: src/slic3r/GUI/GUI_Preview.cpp:221 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "表示" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" msgstr "設定フォルダーの表示(&C)" -#: src/slic3r/GUI/MainFrame.cpp:563 +#: src/slic3r/GUI/MainFrame.cpp:676 +msgid "Show &labels" +msgstr "ラベル表示(&l)" + +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "アバウトダイヤログを表示" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show advanced settings" msgstr "高度な設定を表示" -#: src/slic3r/GUI/PrintHostDialogs.cpp:158 +#: src/slic3r/GUI/PrintHostDialogs.cpp:159 msgid "Show error message" msgstr "エラーメッセージの表示" -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "互換性のないプリントとフィラメントのプリセットを表示する" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "キーボードショートカット一覧を表示" -#: src/slic3r/GUI/WipeTowerDialog.cpp:339 +#: src/slic3r/GUI/MainFrame.cpp:676 +msgid "Show object/instance labels in 3D scene" +msgstr "3Dシーンにオブジェクト/インスタンスラベルを表示する" + +#: src/slic3r/GUI/WipeTowerDialog.cpp:377 msgid "Show simplified settings" msgstr "簡易設定を表示" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:52 +msgid "Show supports" +msgstr "サポート表示" + +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "システム情報を表示" -#: src/slic3r/GUI/MainFrame.cpp:487 +#: src/slic3r/GUI/MainFrame.cpp:626 msgid "Show the 3D editing view" msgstr "3D編集画面の表示" -#: src/slic3r/GUI/MainFrame.cpp:489 +#: src/slic3r/GUI/MainFrame.cpp:629 msgid "Show the 3D slices preview" msgstr "3Dスライスのプレビューを表示" -#: src/slic3r/GUI/MainFrame.cpp:480 +#: src/slic3r/GUI/MainFrame.cpp:617 msgid "Show the filament settings" msgstr "フィラメントの設定を表示" -#: src/libslic3r/PrintConfig.cpp:2983 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "プリント/ Gコード構成オプションの完全なリストを表示します。" -#: src/libslic3r/PrintConfig.cpp:2988 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "SLAプリント構成オプションの完全なリストを表示します。" -#: src/slic3r/GUI/MainFrame.cpp:566 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "キーボードショートカットのリストを表示する" -#: src/slic3r/GUI/MainFrame.cpp:471 +#: src/slic3r/GUI/MainFrame.cpp:606 msgid "Show the plater" msgstr "プレート表示" -#: src/slic3r/GUI/MainFrame.cpp:478 +#: src/slic3r/GUI/MainFrame.cpp:614 msgid "Show the print settings" msgstr "プリント設定を表示する" -#: src/slic3r/GUI/MainFrame.cpp:483 +#: src/slic3r/GUI/MainFrame.cpp:621 msgid "Show the printer settings" msgstr "プリンター設定を表示する" -#: src/libslic3r/PrintConfig.cpp:2977 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "このヘルプを表示します。" -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "ユーザー設定フォルダーの表示(datadir)" #: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -msgid "Show/Hide (L)egend" -msgstr "表示/非表示(L)凡例" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "3Dconnexion設定ダイアログボックスの表示/非表示" -#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:208 +msgid "Show/Hide Legend" +msgstr "凡例の表示/非表示" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +msgid "Show/Hide object/instance labels" +msgstr "オブジェクト/インスタンスラベルの表示/非表示" + +#: src/slic3r/GUI/GUI_App.cpp:813 src/slic3r/GUI/wxExtensions.cpp:753 msgid "Simple" msgstr "簡易" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "シンプルモード" -#: src/slic3r/GUI/GUI_App.cpp:674 +#: src/slic3r/GUI/GUI_App.cpp:813 msgid "Simple View Mode" msgstr "簡易ビューモード" -#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "シングルエクストルーダーのMM設定" -#: src/libslic3r/PrintConfig.cpp:1767 +#: src/libslic3r/PrintConfig.cpp:1845 msgid "Single Extruder Multi Material" msgstr "シングルエクストルーダー・マルチマテリアル" -#: src/slic3r/GUI/Tab.cpp:2023 -msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" +#: src/slic3r/GUI/Tab.cpp:1867 +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" msgstr "1つのエクストルーダーのマルチマテリアルプリンターが選択されているため、すべてのエクストルーダーの直径が同じでなければなりません。最初のエクストルーダーの直径で、すべてのエクストルーダーノズルの直径を設定しますか?" -#: src/slic3r/GUI/Tab.cpp:2240 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "単一エクストルーダーのマルチマテリアルパラメーター" -#: src/slic3r/GUI/BedShapeDialog.cpp:72 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137 -#: src/slic3r/GUI/Tab.cpp:2257 +#: src/slic3r/GUI/BedShapeDialog.cpp:77 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "サイズ" -#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "サイズと座標" -#: src/slic3r/GUI/BedShapeDialog.cpp:73 +#: src/slic3r/GUI/BedShapeDialog.cpp:78 msgid "Size in X and Y of the rectangular plate." msgstr "四角形プレートのX、Yサイズ。" -#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050 -#: src/libslic3r/GCode/PreviewData.cpp:171 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 +#: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "スカート" -#: src/slic3r/GUI/Tab.cpp:1049 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "スカートとブリム" -#: src/libslic3r/PrintConfig.cpp:1617 +#: src/libslic3r/PrintConfig.cpp:1687 msgid "Skirt height" msgstr "スカート高さ" -#: src/libslic3r/PrintConfig.cpp:1626 +#: src/libslic3r/PrintConfig.cpp:1696 msgid "Skirt Loops" msgstr "スカートのループ数" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "SLAギズモのキーボードショートカット" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1150 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "SLAギズモ非表示" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1115 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "SLAギズモ表示" -#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "SLA材料" -#: src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "SLA材料プロファイルの選択" -#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "SLA材料のタイプ" -#: src/slic3r/GUI/ConfigWizard.cpp:1435 src/slic3r/GUI/ConfigWizard.cpp:1885 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "SLA材料" -#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "SLAプリント" -#: src/libslic3r/PrintConfig.cpp:2331 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "SLAプリント材料メモ" -#: src/slic3r/GUI/Plater.cpp:690 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "SLAプリント設定" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "SLAサポートポイント" -#: src/slic3r/GUI/GLCanvas3D.cpp:722 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "プリント範囲外のSLAサポートが検出されました" -#: src/slic3r/GUI/ConfigWizard.cpp:1493 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "SLA型プリンター" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "平板" -#: src/libslic3r/PrintConfig.cpp:1268 +#: src/libslic3r/PrintConfig.cpp:1333 msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host." msgstr "Slic3rはGコードファイルをプリンターサーバーにアップロードできます。 このフィールドには、サーバーの種類を記入する必要があります。" -#: src/libslic3r/PrintConfig.cpp:89 +#: src/libslic3r/PrintConfig.cpp:105 msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." msgstr "Slic3rはGコードファイルをプリンターサーバーにアップロードできます。 このフィールドには、認証に必要なAPIキーまたはパスワードが含まれている必要があります。" -#: src/libslic3r/PrintConfig.cpp:82 +#: src/libslic3r/PrintConfig.cpp:98 msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance." msgstr "Slic3rはGコードファイルをプリントサーバーにアップロードできます。 このフィールドには、プリントサーバーのホスト名、IPアドレス、またはURLが含まれている必要があります。" -#: src/libslic3r/PrintConfig.cpp:1234 +#: src/libslic3r/PrintConfig.cpp:1299 msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3rはこの速度以下にしません。" -#: src/libslic3r/PrintConfig.cpp:2970 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "スライス" -#: src/slic3r/GUI/MainFrame.cpp:383 +#: src/slic3r/GUI/MainFrame.cpp:512 msgid "Slice a file into a G-code" msgstr "ファイルをスライスしてGコードに入れる" -#: src/slic3r/GUI/MainFrame.cpp:389 +#: src/slic3r/GUI/MainFrame.cpp:518 msgid "Slice a file into a G-code, save as" msgstr "ファイルをスライスしGコードにして、名前を付けて保存" -#: src/libslic3r/PrintConfig.cpp:71 +#: src/libslic3r/PrintConfig.cpp:87 msgid "Slice gap closing radius" msgstr "スライスギャップを閉じる半径" -#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3618 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "スライス実行" -#: src/libslic3r/PrintConfig.cpp:2944 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "モデルをスライスし、SLAプリントレイヤーをPNGとしてエクスポートします。" -#: src/libslic3r/PrintConfig.cpp:2965 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "モデルをスライスし、ツールパスをGコードでエクスポートします。" -#: src/libslic3r/PrintConfig.cpp:2971 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "printer_technology構成値に基づいて、モデルをFFFまたはSLAとしてスライスします。" -#: src/slic3r/GUI/Plater.cpp:193 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "スライス情報" -#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412 -#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159 -#: src/slic3r/GUI/Tab.cpp:3436 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "スライス中" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "スライス完了" -#: src/libslic3r/SLAPrint.cpp:1459 +#: src/libslic3r/SLAPrint.cpp:760 msgid "Slicing done" msgstr "スライス完了" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "スライス完了!" -#: src/libslic3r/SLAPrint.cpp:759 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "内部エラーのため、スライスを停止しました:一貫性のないスライスインデックス。" -#: src/libslic3r/SLAPrint.cpp:55 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "モデルをスライス" -#: src/libslic3r/SLAPrint.cpp:59 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "サポートのスライス" -#: src/libslic3r/PrintConfig.cpp:2249 +#: src/libslic3r/PrintConfig.cpp:2414 msgid "Slow" msgstr "スロー" -#: src/libslic3r/PrintConfig.cpp:1635 +#: src/libslic3r/PrintConfig.cpp:1705 msgid "Slow down if layer print time is below" msgstr "スローダウンさせるレイヤーのプリント時間" -#: src/libslic3r/PrintConfig.cpp:2250 +#: src/libslic3r/PrintConfig.cpp:2415 msgid "Slow tilt" msgstr "スローチルト" -#: src/libslic3r/PrintConfig.cpp:1646 +#: src/libslic3r/PrintConfig.cpp:1715 msgid "Small perimeters" msgstr "短い外周" -#: src/slic3r/GUI/GLCanvas3D.cpp:286 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "スムーズ" -#: src/slic3r/GUI/GLCanvas3D.cpp:264 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "スムージング" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Snapshot name" msgstr "スナップショット名" -#: src/slic3r/GUI/MainFrame.cpp:549 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" -msgstr "ソフトウェアリリース(&R)" +msgstr "ソフトウェアリリース" -#: src/slic3r/GUI/PresetHints.cpp:181 +#: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "ソリッドインフィル" -#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687 -#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "ソリッドインフィル" -#: src/libslic3r/PrintConfig.cpp:1675 +#: src/libslic3r/PrintConfig.cpp:1744 msgid "Solid infill every" msgstr "ソリッドインフィルを各" -#: src/libslic3r/PrintConfig.cpp:1667 +#: src/libslic3r/PrintConfig.cpp:1736 msgid "Solid infill extruder" msgstr "ソリッドインフィルエクストルーダー" -#: src/libslic3r/PrintConfig.cpp:1658 +#: src/libslic3r/PrintConfig.cpp:1727 msgid "Solid infill threshold area" msgstr "ソリッドインフィル領域のしきい値" -#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "ソリッドレイヤー" -#: src/libslic3r/PrintConfig.cpp:711 +#: src/libslic3r/PrintConfig.cpp:754 msgid "Soluble material" msgstr "溶解性材料" -#: src/libslic3r/PrintConfig.cpp:712 +#: src/libslic3r/PrintConfig.cpp:755 msgid "Soluble material is most likely used for a soluble support." msgstr "水溶性フィラメントが溶解性サポート材としてもっとも使用される。" -#: src/libslic3r/PrintConfig.cpp:914 +#: src/libslic3r/PrintConfig.cpp:937 msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "温度制御などを含む一部のG/Mコードコマンドは普遍的ではありません。互換性のある出力を実現するためにプリンターが使用するファームウェアのタイプを選択します。 「押出しなし」コマンドにより、PrusaSlicerは押出しコマンドをエクスポートしなくなります。" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 -msgid "Some objects are not visible when editing supports" -msgstr "サポート編集時に一部のオブジェクトが表示されない" +#: src/slic3r/GUI/GLCanvas3D.cpp:688 +msgid "Some objects are not visible" +msgstr "一部のオブジェクトは表示されません" -#: src/libslic3r/Print.cpp:1162 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "一部のオブジェクトが接近しすぎています。エクストルーダが接触します。" -#: src/libslic3r/Print.cpp:1177 +#: src/libslic3r/Print.cpp:1228 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "一部のオブジェクトが高すぎて、エクストルーダーの衝突なしでプリントできません。" -#: src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "ある種のオブジェクトでは、単一の大きなパッドではなく、いくつかの小さなパッドの方がうまくいきます。 このパラメーターは、2つの小さなパッドの中心の距離を定義します。 それらが近い場合、それらは1つのパッドにマージされます。" -#: src/libslic3r/PrintConfig.cpp:2086 +#: src/libslic3r/PrintConfig.cpp:2187 msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default." msgstr "一部のプリンターまたはプリンターのセットアップでは、レイヤー高さ可変のプリントが困難な場合があります。 デフォルトで有効になっています。" -#: src/libslic3r/PrintConfig.cpp:1897 +#: src/libslic3r/PrintConfig.cpp:1984 msgid "Spacing between interface lines. Set zero to get a solid interface." msgstr "インターフェイスの塗りの隙間。 ゼロを設定すると、密なインターフェースになります。" -#: src/libslic3r/PrintConfig.cpp:1931 +#: src/libslic3r/PrintConfig.cpp:2018 msgid "Spacing between support material lines." msgstr "サポートパターンの線間距離。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512 -#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084 -#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426 -#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999 -#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598 -#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698 -#: src/libslic3r/PrintConfig.cpp:2029 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 +#: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 +#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 +#: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:2118 msgid "Speed" msgstr "速度" -#: src/libslic3r/PrintConfig.cpp:1600 +#: src/libslic3r/PrintConfig.cpp:1670 msgid "Speed (baud) of USB/serial port for printer connection." msgstr "プリンター接続用のUSB /シリアルポートのスピード(ボーレート)。" -#: src/libslic3r/GCode/PreviewData.cpp:400 +#: src/libslic3r/GCode/PreviewData.cpp:351 msgid "Speed (mm/s)" msgstr "速度(mm/s)" -#: src/libslic3r/PrintConfig.cpp:872 +#: src/libslic3r/PrintConfig.cpp:920 msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "細かくジグザグ移動して小さなギャップを埋めるときの速度。 揺れや共振の問題を避けるために、これを適度に低くしてください。 ギャップ充填を無効にするには、ゼロを設定します。" -#: src/slic3r/GUI/Tab.cpp:1097 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "移動速度" -#: src/libslic3r/PrintConfig.cpp:1362 +#: src/libslic3r/PrintConfig.cpp:1432 msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "外周(輪郭、別名:垂直シェル)の速度。 自動の場合はゼロに設定します。" -#: src/slic3r/GUI/Tab.cpp:1085 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "造形速度設定" -#: src/libslic3r/PrintConfig.cpp:200 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "ブリッジ形成速度。" -#: src/libslic3r/PrintConfig.cpp:1699 +#: src/libslic3r/PrintConfig.cpp:1769 msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto." msgstr "ソリッド(塗りつぶし)領域(上部/下部/内部水平シェル)のプリント速度。 これは、上記のデフォルトインフィル速度に対する割合(例:80%)で表すことができます。 自動の場合はゼロに設定します。" -#: src/libslic3r/PrintConfig.cpp:1906 +#: src/libslic3r/PrintConfig.cpp:1993 msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed." msgstr "サポートとモデルのインターフェイスレイヤーのプリントスピード。 パーセンテージ(たとえば、50%)を入力すると、サポートのプリントスピードから計算されます。" -#: src/libslic3r/PrintConfig.cpp:1940 +#: src/libslic3r/PrintConfig.cpp:2027 msgid "Speed for printing support material." msgstr "サポート材造形速度。" -#: src/libslic3r/PrintConfig.cpp:1000 +#: src/libslic3r/PrintConfig.cpp:1049 msgid "Speed for printing the internal fill. Set to zero for auto." msgstr "内部塗りつぶしのプリント速度。 自動の場合はゼロにします。" -#: src/libslic3r/PrintConfig.cpp:2030 +#: src/libslic3r/PrintConfig.cpp:2119 msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto." msgstr "上部のソリッドレイヤー(塗りつぶし)のプリント速度(最上部のレイヤーにのみ適用されるもので、内部のソリッドレイヤーには適用されません)。 この速度を遅くすることで、より良い表面に仕上げることができます。 これは、内部のソリッドレイヤー速度に対する割合(例:80%)で入力することができます。 自動の場合はゼロに設定します。" -#: src/libslic3r/PrintConfig.cpp:2052 +#: src/libslic3r/PrintConfig.cpp:2153 msgid "Speed for travel moves (jumps between distant extrusion points)." msgstr "移動速度(射出ポイント間のジャンピング)。" -#: src/libslic3r/PrintConfig.cpp:627 +#: src/libslic3r/PrintConfig.cpp:659 msgid "Speed of the first cooling move" msgstr "冷却移動の最初の速度" -#: src/libslic3r/PrintConfig.cpp:646 +#: src/libslic3r/PrintConfig.cpp:678 msgid "Speed of the last cooling move" msgstr "最後の冷却移動の速度" -#: src/libslic3r/PrintConfig.cpp:585 +#: src/libslic3r/PrintConfig.cpp:616 msgid "Speed used at the very beginning of loading phase." msgstr "ロードし始めの最初のスピード。" -#: src/libslic3r/PrintConfig.cpp:577 +#: src/libslic3r/PrintConfig.cpp:608 msgid "Speed used for loading the filament on the wipe tower." msgstr "フィラメントをワイプタワー上でロードする際のスピード。" -#: src/libslic3r/PrintConfig.cpp:593 +#: src/libslic3r/PrintConfig.cpp:624 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "ワイプタワー上でアンロードするときのスピード(ラミング直後のアンロードスピードには影響しません)" -#: src/libslic3r/PrintConfig.cpp:602 +#: src/libslic3r/PrintConfig.cpp:633 msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "ラミング直後にフィラメントの先端を引き抜く速度。" -#: src/slic3r/GUI/Mouse3DController.cpp:266 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "スピード:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1055 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "球体" -#: src/libslic3r/PrintConfig.cpp:1717 +#: src/libslic3r/PrintConfig.cpp:1794 msgid "Spiral vase" msgstr "スパイラル花瓶" -#: src/slic3r/GUI/ConfigManipulation.cpp:83 +#: src/slic3r/GUI/ConfigManipulation.cpp:90 msgid "Spiral Vase" msgstr "スパイラル花瓶" -#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988 -#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "分割" -#: src/slic3r/GUI/Plater.cpp:2971 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "選択したオブジェクトを分割します" -#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "選択したオブジェクトを個々のオブジェクトに分割します" -#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "選択したオブジェクトを個々のサブパーツに分割します" -#: src/slic3r/GUI/GLCanvas3D.cpp:3490 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "オブジェクトの分割" -#: src/slic3r/GUI/Plater.cpp:2796 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "オブジェクトに分割" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1110 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "パーツの分割" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1904 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "パーツに分割" @@ -6556,11 +7212,11 @@ msgstr "パーツに分割" msgid "Standard" msgstr "標準" -#: src/libslic3r/PrintConfig.cpp:799 +#: src/libslic3r/PrintConfig.cpp:846 msgid "Stars" msgstr "スター型" -#: src/slic3r/GUI/MainFrame.cpp:376 +#: src/slic3r/GUI/MainFrame.cpp:405 msgid "Start a new project" msgstr "新しいプロジェクトを開始" @@ -6568,12 +7224,12 @@ msgstr "新しいプロジェクトを開始" msgid "Start at height" msgstr "開始高さ" -#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949 -#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 +#: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "Gコードの最初" -#: src/slic3r/GUI/MainFrame.cpp:403 +#: src/slic3r/GUI/MainFrame.cpp:532 msgid "Start new slicing process" msgstr "新しいスライスプロセスを開始する" @@ -6581,24 +7237,24 @@ msgstr "新しいスライスプロセスを開始する" msgid "Start printing after upload" msgstr "アップロード後にプリント開始" -#: src/slic3r/GUI/PrintHostDialogs.cpp:150 +#: src/slic3r/GUI/PrintHostDialogs.cpp:151 msgid "Status" msgstr "ステータス" -#: src/slic3r/GUI/FirmwareDialog.cpp:782 +#: src/slic3r/GUI/FirmwareDialog.cpp:820 msgid "Status:" msgstr "状況:" -#: src/slic3r/GUI/Tab.cpp:2158 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "静音" -#: src/slic3r/GUI/Plater.cpp:1084 +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "静音モード" -#: src/slic3r/GUI/Plater.cpp:3545 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4985 +#, c-format msgid "STL file exported to %s" msgstr "%sにエクスポートされたSTLファイル" @@ -6606,736 +7262,885 @@ msgstr "%sにエクスポートされたSTLファイル" msgid "Stop at height" msgstr "高さで停止" -#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "成功!" -#: src/slic3r/GUI/PresetHints.cpp:200 +#: src/slic3r/GUI/PresetHints.cpp:203 msgid "support" msgstr "サポート" -#: src/libslic3r/PrintConfig.cpp:2441 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "サポートベースの直径" -#: src/libslic3r/PrintConfig.cpp:2451 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "サポートベースの高さ" -#: src/libslic3r/PrintConfig.cpp:2566 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "サポートベースの安全距離" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "サポート禁止" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2547 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "サポート強制" -#: src/slic3r/GUI/ConfigManipulation.cpp:155 +#: src/slic3r/GUI/ConfigManipulation.cpp:163 msgid "Support Generator" msgstr "サポートジェネレーター" -#: src/slic3r/GUI/Tab.cpp:3401 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "サポート先端" -#: src/libslic3r/PrintConfig.cpp:2369 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "サポートチップ径" -#: src/libslic3r/PrintConfig.cpp:2378 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "頭部貫通をサポート" -#: src/libslic3r/PrintConfig.cpp:2387 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "サポートの先端幅" -#: src/slic3r/GUI/PresetHints.cpp:210 +#: src/slic3r/GUI/PresetHints.cpp:213 msgid "support interface" msgstr "サポートの接触部" -#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70 -#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236 -#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060 -#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432 -#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786 -#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806 -#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824 -#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860 -#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887 -#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905 -#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930 -#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939 -#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956 -#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 +#: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 +#: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 +#: src/libslic3r/PrintConfig.cpp:1910 src/libslic3r/PrintConfig.cpp:1925 +#: src/libslic3r/PrintConfig.cpp:1946 src/libslic3r/PrintConfig.cpp:1958 +#: src/libslic3r/PrintConfig.cpp:1974 src/libslic3r/PrintConfig.cpp:1983 +#: src/libslic3r/PrintConfig.cpp:1992 src/libslic3r/PrintConfig.cpp:2003 +#: src/libslic3r/PrintConfig.cpp:2017 src/libslic3r/PrintConfig.cpp:2025 +#: src/libslic3r/PrintConfig.cpp:2026 src/libslic3r/PrintConfig.cpp:2035 +#: src/libslic3r/PrintConfig.cpp:2043 src/libslic3r/PrintConfig.cpp:2057 msgid "Support material" msgstr "サポート材" -#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904 -#: src/libslic3r/GCode/PreviewData.cpp:173 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "サポートのオブジェクトとの接触レイヤー" -#: src/libslic3r/PrintConfig.cpp:1957 +#: src/libslic3r/PrintConfig.cpp:2044 msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)." msgstr "傾斜角(90°=垂直)がこのしきい値以上のオーバーハングに対しては、サポート材は生成されません。 言いかえるとこの値は、サポート材なしでプリントできる最もキツいオーバーハングのことです。 自動検出の場合はゼロに設定します(ゼロを推奨)。" -#: src/libslic3r/PrintConfig.cpp:1877 +#: src/libslic3r/PrintConfig.cpp:1964 msgid "Support material/raft interface extruder" msgstr "コンタクトサポート/ラフトインターフェース用のエクストルーダー" -#: src/libslic3r/PrintConfig.cpp:1851 +#: src/libslic3r/PrintConfig.cpp:1937 msgid "Support material/raft/skirt extruder" msgstr "サポート材/ラフト/スカート用エクストルーダー" -#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815 -#: src/libslic3r/PrintConfig.cpp:2423 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "サポートをビルドプレート(ベッド)のみに限定する" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:991 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "サポートパラメータの変更" -#: src/slic3r/GUI/Tab.cpp:3406 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "支柱" -#: src/libslic3r/PrintConfig.cpp:2407 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "サポート支柱の接続モード" -#: src/libslic3r/PrintConfig.cpp:2397 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "サポート支柱の直径" -#: src/libslic3r/PrintConfig.cpp:2499 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "サポートポイント密度" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1282 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "サポートポイントの編集" -#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519 -#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397 -#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363 -#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379 -#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398 -#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431 -#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452 -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471 -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490 -#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "サポート" -#: src/slic3r/GUI/Plater.cpp:1018 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "サポートとパッド" -#: src/libslic3r/PrintConfig.cpp:1043 +#: src/libslic3r/PrintConfig.cpp:1092 msgid "Supports remaining times" msgstr "残り時間をサポート" -#: src/libslic3r/PrintConfig.cpp:1053 +#: src/libslic3r/PrintConfig.cpp:1101 msgid "Supports stealth mode" msgstr "静音モードサポート" -#: src/slic3r/GUI/ConfigManipulation.cpp:151 -msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" -msgstr "以下の機能が有効になっている場合、サポートはより良く機能します。\n-ブリッジング境界の検出" +#: src/slic3r/GUI/ConfigManipulation.cpp:159 +msgid "" +"Supports work better, if the following feature is enabled:\n" +"- Detect bridging perimeters" +msgstr "" +"以下の機能が有効になっている場合、サポートはより良く機能します。\n" +"-ブリッジング境界の検出" -#: src/slic3r/GUI/Preferences.cpp:76 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "「-デフォルト-」プリセットを非表示" -#: src/slic3r/GUI/Preferences.cpp:78 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "他の有効なプリセットが利用可能になったら、プリント/フィラメント/プリンターの選択で「−デフォルト−」プリセットを非表示にします。" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 +msgid "Switch code to Change extruder" +msgstr "コードを切り替えてエクストルーダーを変更する" + +#: src/slic3r/GUI/DoubleSlider.cpp:1179 +msgid "Switch code to Color change (%1%) for:" +msgstr "以下の色変更コマンドのスワップ(%1%):" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "3Dモードに" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "編集モードに切替え" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" msgstr "プレビューに切替え" -#: src/slic3r/GUI/wxExtensions.cpp:2412 -#, possible-c-format +#: src/slic3r/GUI/wxExtensions.cpp:703 +#, c-format msgid "Switch to the %s mode" msgstr "%sモードに切替え" -#: src/slic3r/GUI/GUI_App.cpp:752 -msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." +#: src/slic3r/GUI/GUI_App.cpp:882 +msgid "" +"Switching the language will trigger application restart.\n" +"You will lose content of the plater." msgstr "言語を切り替えると、アプリケーションが再起動します。プレートの内容が失われます。" -#: src/slic3r/GUI/WipeTowerDialog.cpp:327 -msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" -msgstr "簡易な設定に切り替えると、上級モードで行われた変更が破棄されます!\n\n続行しますか?" +#: src/slic3r/GUI/WipeTowerDialog.cpp:365 +msgid "" +"Switching to simple settings will discard changes done in the advanced mode!\n" +"\n" +"Do you want to proceed?" +msgstr "" +"簡易な設定に切り替えると、上級モードで行われた変更が破棄されます!\n" +"\n" +"続行しますか?" -#: src/slic3r/GUI/Tab.cpp:1004 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "シンボリック・プロファイル名" -#: src/libslic3r/PrintConfig.cpp:1949 +#: src/libslic3r/PrintConfig.cpp:2036 msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive." msgstr "サポートとオブジェクトのレイヤーを同期します。これはツールチェンジが容易でないマルチマテリアルプリンターで有効な機能です。" -#: src/libslic3r/PrintConfig.cpp:1947 +#: src/libslic3r/PrintConfig.cpp:2034 msgid "Synchronize with object layers" msgstr "オブジェクトレイヤーと同期する" -#: src/slic3r/GUI/MainFrame.cpp:557 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "システム情報(&I)" -#: src/slic3r/GUI/SysInfoDialog.cpp:44 +#: src/slic3r/GUI/SysInfoDialog.cpp:78 msgid "System Information" msgstr "システム情報" -#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970 -#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067 -#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "システムプリセット" -#: src/slic3r/GUI/GUI_App.cpp:662 +#: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" msgstr "構成スナップショットを撮る(&S)" -#: src/slic3r/GUI/GUI_App.cpp:697 +#: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "設定ファイルのスナップショット保存" -#: src/libslic3r/PrintConfig.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "温度" -#: src/libslic3r/PrintConfig.cpp:1727 +#: src/libslic3r/PrintConfig.cpp:1804 msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped." msgstr "エクストルーダーがアクティブでないときの温度差を適用します。ノズルが定期的にワイプされるフルハイトの\"犠牲\"スカートが有効になります。" -#: src/libslic3r/PrintConfig.cpp:1726 +#: src/libslic3r/PrintConfig.cpp:1803 msgid "Temperature variation" msgstr "温度変化" -#: src/slic3r/GUI/ConfigWizard.cpp:592 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "温度" -#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "テスト" -#: src/slic3r/GUI/BedShapeDialog.cpp:171 +#: src/slic3r/GUI/BedShapeDialog.cpp:172 msgid "Texture" msgstr "テクスチャー" -#: src/slic3r/GUI/ConfigManipulation.cpp:200 +#: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "インフィル(中塗り)パターン%1%は、塗りつぶし密度100%%では機能しません。" -#: src/slic3r/GUI/FirmwareDialog.cpp:530 -#, possible-c-format +#: src/slic3r/GUI/FirmwareDialog.cpp:548 +#, c-format msgid "The %s device could not have been found" msgstr "%sデバイスが見つかりませんでした" -#: src/slic3r/GUI/FirmwareDialog.cpp:417 -#, possible-c-format -msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." -msgstr "%sデバイスが見つかりませんでした。\nデバイスが接続されている場合は、USBコネクタの横にあるリセットボタンを押してください..." +#: src/slic3r/GUI/FirmwareDialog.cpp:436 +#, c-format +msgid "" +"The %s device was not found.\n" +"If the device is connected, please press the Reset button next to the USB connector ..." +msgstr "" +"%sデバイスが見つかりませんでした。\n" +"デバイスが接続されている場合は、USBコネクタの横にあるリセットボタンを押してください..." -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640 -msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." -msgstr "現在操作されているオブジェクトは傾斜しています(回転角度が90°の倍数ではありません)。\n回転がオブジェクト座標に埋め込まれると、傾斜オブジェクトの不均一なスケーリングはワールド座標系でのみ可能になります。" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 +msgid "" +"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" +"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" +"once the rotation is embedded into the object coordinates." +msgstr "" +"現在操作されているオブジェクトは傾斜しています(回転角度が90°の倍数ではありません)。\n" +"回転がオブジェクト座標に埋め込まれると、傾斜オブジェクトの不均一なスケーリングはワールド座標系でのみ可能になります。" -#: src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "サポートスティックとジャンクションを接続するためのデフォルトの角度。" -#: src/libslic3r/SLAPrint.cpp:670 +#: src/libslic3r/SLAPrint.cpp:631 msgid "The endings of the support pillars will be deployed on the gap between the object and the pad. 'Support base safety distance' has to be greater than the 'Pad object gap' parameter to avoid this." msgstr "支柱の終端は、オブジェクトーパッド間の隙間に配置されます。 これを回避するには、「サポートベースの安全距離」を「パッドオブジェクトのギャップ」パラメーターよりも大きくする必要があります。" -#: src/libslic3r/PrintConfig.cpp:457 +#: src/libslic3r/PrintConfig.cpp:489 msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders." msgstr "使用するエクストルーダー(より具体的なエクストルーダー設定がされていない場合)。 この値は、外周とインフィル(中塗り)の設定を上書きしますが、サポート用エクストルーダーの設定は上書きされません。" -#: src/libslic3r/PrintConfig.cpp:955 +#: src/libslic3r/PrintConfig.cpp:1003 msgid "The extruder to use when printing infill." msgstr "インフィルに使用するエクストルーダー。" -#: src/libslic3r/PrintConfig.cpp:1341 +#: src/libslic3r/PrintConfig.cpp:1410 msgid "The extruder to use when printing perimeters and brim. First extruder is 1." msgstr "外周とブリム(縁)をプリントするときに使用するエクストルーダー。 1番目のエクストルーダーは1です。" -#: src/libslic3r/PrintConfig.cpp:1669 +#: src/libslic3r/PrintConfig.cpp:1738 msgid "The extruder to use when printing solid infill." msgstr "ソリッドインフィルで使用するエクストルーダー。" -#: src/libslic3r/PrintConfig.cpp:1879 +#: src/libslic3r/PrintConfig.cpp:1966 msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too." msgstr "サポートとのインターフェースをプリントするときに使用するエクストルーダー(1 +、0は現在のエクストルーダーを使用してツールの変更を最小限に抑える)。 これはラフトにも影響します。" -#: src/libslic3r/PrintConfig.cpp:1853 +#: src/libslic3r/PrintConfig.cpp:1939 msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)." msgstr "サポート材料、ラフト(土台)、およびスカート(パーツを囲むアウトライン)をプリントするときに使用するエクストルーダー(1+、0は現在のエクストルーダーを使用してツールの変更を最小限に抑えます)。" -#: src/libslic3r/PrintConfig.cpp:695 +#: src/libslic3r/PrintConfig.cpp:727 msgid "The filament material type for use in custom G-codes." msgstr "カスタムGコードで使用するフィラメント材料タイプ。" -#: src/libslic3r/PrintConfig.cpp:3105 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "出力が書き込まれるファイル(指定されていない場合、入力ファイルにしたがいます)。" -#: src/libslic3r/PrintConfig.cpp:1054 +#: src/libslic3r/PrintConfig.cpp:1102 msgid "The firmware supports stealth mode" msgstr "ファームウェアはサイレントモードをサポートします" -#: src/libslic3r/PrintConfig.cpp:351 +#: src/libslic3r/PrintConfig.cpp:120 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "最初のレイヤーは、設定された値によってXY平面で縮小され、1番目のレイヤーのダボつき、つまりエレファントフット効果を補正します。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2726 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "次の文字は使用できません:" -#: src/slic3r/GUI/Tab.cpp:3311 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "以下のサフィックスは許可されていません :" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "ゼロリフトモードでのオブジェクトの底面と生成されたパッド間のギャップ。" -#: src/libslic3r/PrintConfig.cpp:2453 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "柱のベースコーンの高さ" -#: src/libslic3r/PrintConfig.cpp:2481 +#: src/slic3r/GUI/DoubleSlider.cpp:1922 +msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." +msgstr "最後の色変更データは、プリント全体のツール変更を伴うマルチエクストルーダープリント用に保存されました。" + +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 +msgid "The last color change data was saved for a multi extruder printing." +msgstr "最後の色の変更が、マルチエクストルーダーのプリンターに対して保存されました。" + +#: src/slic3r/GUI/DoubleSlider.cpp:1899 +msgid "The last color change data was saved for a single extruder printing." +msgstr "最後の色変更データは、シングルエクストルーダーでのプリント用に保存されました。" + +#: src/libslic3r/PrintConfig.cpp:2745 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "相互接続のための2つの支柱間の最大距離。 値がゼロの場合、柱のカスケードが無効になります。" -#: src/libslic3r/PrintConfig.cpp:2472 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "最長ブリッジ長さ" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "モデルからのサポートベースの最小距離(mm)。 パッドの上のゼロリフトモードでは、このパラメーターに応じたギャップがモデルとパッドの間に挿入されます。" -#: src/libslic3r/PrintConfig.cpp:2176 +#: src/libslic3r/PrintConfig.cpp:185 +msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." +msgstr "ボトムシェルの最小厚さを確保するために、必要に応じてボトムソリッドレイヤーの数をbottom_solid_layersよりも増やします。" + +#: src/libslic3r/PrintConfig.cpp:2143 +msgid "The number of top solid layers is increased above top_solid_layers if necessary to satisfy minimum thickness of top shell. This is useful to prevent pillowing effect when printing with variable layer height." +msgstr "必要に応じて、トップシェルの最小厚さを達成するために、トップソリッドレイヤーの数が、指定されたtop_solid_layersの数を超えて増加します。 これにより、可変レイヤーの高さでプリントする場合の、いわゆる「ピロー」効果が回避されます。" + +#: src/libslic3r/PrintConfig.cpp:2277 msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes." msgstr "オブジェクトは、設定された値(負=内側、正=外側)だけXY平面で拡大/縮小されます。 これは、穴のサイズを微調整する場合に便利です。" -#: src/libslic3r/PrintConfig.cpp:1433 +#: src/libslic3r/PrintConfig.cpp:1503 msgid "The object will be raised by this number of layers, and support material will be generated under it." msgstr "オブジェクトは、このレイヤー数だけ持ち上げられ、その下にサポート材が生成されます。" -#: src/libslic3r/PrintConfig.cpp:2259 -msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "ベッド領域の占有率。\nプリント領域が指定された値を超える場合、ティルト動作を遅くします。それ以外では-速いティルトとなります" +#: src/libslic3r/PrintConfig.cpp:2424 +msgid "" +"The percentage of the bed area. \n" +"If the print area exceeds the specified value, \n" +"then a slow tilt will be used, otherwise - a fast tilt" +msgstr "" +"ベッド領域の占有率。\n" +"プリント領域が指定された値を超える場合、ティルト動作を遅くします。それ以外では-速いティルトとなります" -#: src/slic3r/GUI/GUI_App.cpp:831 +#: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" msgstr "次のタブのプリセットが変更されました" -#: src/libslic3r/PrintConfig.cpp:1768 +#: src/libslic3r/PrintConfig.cpp:1846 msgid "The printer multiplexes filaments into a single hot end." msgstr "プリンタは、1つのホットエンドで複数のフィラメントを切り替えます。" -#: src/libslic3r/Format/3mf.cpp:1519 +#: src/libslic3r/Format/3mf.cpp:1630 msgid "The selected 3mf file has been saved with a newer version of %1% and is not compatible." msgstr "選択した3mfファイルは新しいバージョン%1%で保存されており、互換性がありません。" -#: src/libslic3r/Format/AMF.cpp:917 +#: src/libslic3r/Format/AMF.cpp:934 msgid "The selected amf file has been saved with a newer version of %1% and is not compatible." msgstr "選択したamfファイルは新しいバージョン%1%で保存され、互換性がありません。" -#: src/slic3r/GUI/BedShapeDialog.cpp:342 +#: src/slic3r/GUI/BedShapeDialog.cpp:513 msgid "The selected file contains no geometry." msgstr "選択したファイルにはジオメトリが含まれていません。" -#: src/slic3r/GUI/BedShapeDialog.cpp:346 +#: src/slic3r/GUI/BedShapeDialog.cpp:517 msgid "The selected file contains several disjoint areas. This is not supported." msgstr "選択したファイルには、接続していない面がいくつか含まれています。 これはサポートされていません。" -#: src/slic3r/GUI/Plater.cpp:2271 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "選択したオブジェクトには複数のボリューム/マテリアルが含まれているため、分割できません。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "The selected object couldn't be split because it contains only one part." msgstr "選択したオブジェクトには、1つのパーツしか含まれていないため、分割できませんでした。" -#: src/slic3r/GUI/MainFrame.cpp:410 +#: src/slic3r/GUI/MainFrame.cpp:422 msgid "The selected project is no more available" msgstr "選択したプロジェクトはもう利用できません" -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/slic3r/GUI/DoubleSlider.cpp:998 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"シーケンシャルプリントがオンになっています。\n" +"連続してプリントするオブジェクトにカスタムGコードを適用することはできません。\n" +"このコードは、Gコード生成中に処理されません。" + +#: src/libslic3r/PrintConfig.cpp:2846 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "ベッド平面に対するパッド壁の傾斜。 90度は真っ直ぐな壁を意味します。" -#: src/libslic3r/PrintConfig.cpp:1544 +#: src/libslic3r/PrintConfig.cpp:1614 msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used." msgstr "引込み後のフィラメントのエクストルーダーへの再ロード速度(エクストルーダーモーターにのみ適用)。 ゼロのままにすると、引込み速度が使用されます。" -#: src/libslic3r/PrintConfig.cpp:1536 +#: src/libslic3r/PrintConfig.cpp:1606 msgid "The speed for retractions (it only applies to the extruder motor)." msgstr "吸込み速度(エクストルーダーモーターにのみ適用)。" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 +#: src/slic3r/GUI/ConfigManipulation.cpp:81 #, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "スパイラル花瓶モードにするには以下が必要です。\n-1つの外周\n-上部の塗りつぶしレイヤーなし\n-充填密度0%\n-サポートなし\n-垂直壁の厚さオプションがチェックされていないことを確認" +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"スパイラル花瓶(ベイス)モードには以下が必要です。\n" +"-1つの外周\n" +"-上部ソリッドレイヤーなし\n" +"-充填密度0%\n" +"-サポート材設定なし\n" +"-垂直シェルの厚さを有効にしてください\n" +"-薄い壁を無効にする" -#: src/libslic3r/Print.cpp:1187 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "スパイラル花瓶オプションはオブジェクト一つのプリントに限られます。" -#: src/libslic3r/Print.cpp:1189 +#: src/libslic3r/Print.cpp:1244 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "スパイラル花瓶オプションは、単一の素材オブジェクトをプリントする場合にのみ使用できます。" -#: src/slic3r/GUI/Tab.cpp:2900 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "指定された名前が空白です。 保存できません。" -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "指定された名前は使用できません。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2725 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278 -#: src/slic3r/GUI/Tab.cpp:3282 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "指定された名前は無効です;" -#: src/libslic3r/Print.cpp:1268 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "指定された設定では、何もプリントされません。" -#: src/libslic3r/PrintConfig.cpp:2524 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "パッドとそのオプションのキャビティ壁の厚さ。" -#: src/libslic3r/PrintConfig.cpp:1825 +#: src/libslic3r/PrintConfig.cpp:1911 msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "オブジェクトとサポートマテリアルインターフェース間の垂直距離。 これを0に設定すると、Slic3rは最初のオブジェクトレイヤーのブリッジフローと速度を使用しなくなります。" -#: src/slic3r/GUI/Tab.cpp:2429 -msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" +#: src/slic3r/GUI/Tab.cpp:2575 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" msgstr "ファームウェア引き込みモードを使用している場合、ワイプオプションは使用できません。ファームウェア引き込みを有効にするために無効にしますか?" -#: src/libslic3r/Print.cpp:1254 +#: src/libslic3r/Print.cpp:1268 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "ワイプタワーは現在のところ体積出力E(use_volumetric_e = 0)をサポートしていません。" -#: src/slic3r/GUI/ConfigManipulation.cpp:107 -msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." -msgstr "現在のところ、非溶解性サポートのワイプタワーは、ツールの変更をトリガーせずに現在のエクストルーダーでプリントされる場合のみサポートします。\n(support_material_extruderとsupport_material_interface_extruderの両方を0に設定する必要があります)。" +#: src/slic3r/GUI/ConfigManipulation.cpp:115 +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool change.\n" +"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgstr "" +"現在のところ、非溶解性サポートのワイプタワーは、ツールの変更をトリガーせずに現在のエクストルーダーでプリントされる場合のみサポートします。\n" +"(support_material_extruderとsupport_material_interface_extruderの両方を0に設定する必要があります)。" -#: src/libslic3r/Print.cpp:1306 +#: src/libslic3r/Print.cpp:1400 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "ツールの変更を行わずに現在のエクストルーダーでプリントする場合、ワイプタワーは今のところ、非溶解性サポートのみをサポートします。 (support_material_extruderとsupport_material_interface_extruderの両方を0に設定する必要があります)。" -#: src/libslic3r/Print.cpp:1200 +#: src/libslic3r/Print.cpp:1270 +msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." +msgstr "今のところ、ワイプタワーはマルチマテリアル・シーケンシャルプリントではサポートされていません。" + +#: src/libslic3r/Print.cpp:1262 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "ワイプタワーは現在、Marlin、RepRap/Sprinter、およびRepetierで生成されたGコードで使用できます。" -#: src/libslic3r/Print.cpp:1202 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "ワイプタワーは現在、相対アドレス指定のエクストルーダー(use_relative_e_distances = 1)で利用できます。" -#: src/libslic3r/Print.cpp:1225 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "ワイプタワーは、複数のオブジェクトが同じラフトレイヤー数でプリントされる場合に利用できます" -#: src/libslic3r/Print.cpp:1227 +#: src/libslic3r/Print.cpp:1295 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "ワイプタワーは、複数のオブジェクトが同じsupport_material_contact_distanceでプリントする場合に利用できます" -#: src/libslic3r/Print.cpp:1229 +#: src/libslic3r/Print.cpp:1297 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "ワイプタワーは、複数のオブジェクトが均等にスライスされている場合に利用できます。" -#: src/libslic3r/Print.cpp:1223 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "ワイプタワーは、複数のオブジェクトのレイヤーの高さが等しい場合に利用できます" -#: src/libslic3r/Print.cpp:1155 +#: src/libslic3r/Print.cpp:1257 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "ワイプタワーは、すべての押出機のノズル径が同じで、同じ直径のフィラメントを使用している場合にのみサポートされます。" -#: src/libslic3r/Print.cpp:1323 +#: src/libslic3r/Print.cpp:1339 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "クリーニングタワーは、すべてのオブジェクトのレイヤーの高さが同じである場合にのみサポートされます" -#: src/slic3r/GUI/UpdateDialogs.cpp:127 -#, possible-c-format +#: src/libslic3r/SLAPrintSteps.cpp:621 +msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." +msgstr "プリントがうまくいかないオブジェクトがあります。 サポート設定を調整して、オブジェクトがプリント可能な状態にしてください。" + +#: src/slic3r/GUI/DoubleSlider.cpp:1030 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"まだ使用されていないエクストルーダーの色に変化があります。\n" +"冗長な色の変更を避けるために設定を確認してください。" + +#: src/slic3r/GUI/DoubleSlider.cpp:1024 +msgid "" +"There is a color change for extruder that won't be used till the end of print job.\n" +"This code won't be processed during G-code generation." +msgstr "" +"エクストルーダーの色が変更され、プリントジョブが終了するまで使用されません。\n" +"このコードは、Gコード生成中に処理されません。" + +#: src/slic3r/GUI/DoubleSlider.cpp:1027 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"同じエクストルーダーに設定されたエクストルーダーの変更があります。\n" +"このコードは、Gコード生成中に処理されません。" + +#: src/slic3r/GUI/UpdateDialogs.cpp:225 +#, c-format msgid "This %s version: %s" msgstr "この%sのバージョン: %s" -#: src/libslic3r/PrintConfig.cpp:140 +#: src/libslic3r/PrintConfig.cpp:165 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "このコードは、オブジェクト別の順次プリンティングを使用するとき、オブジェクト間に挿入されます。 デフォルトでは、エクストルーダーとベッドの温度は非待機コマンドを使用します(M104/M140)。 ただし、このカスタムコードでM104、M109、M140またはM190が記述された場合、Slic3rは温度コマンドを追加しません。 すべてのSlic3r代替変数を使用できるため、「M109 S [first_layer_temperature]」コマンドを必要な場所に記述できます。" -#: src/libslic3r/PrintConfig.cpp:1032 +#: src/libslic3r/PrintConfig.cpp:1081 msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "このカスタムコードは、レイヤーが変わるたびに、Z移動の直後、エクストルーダがレイヤーの最初のポイントに移動する前に挿入されます。 [layer_num]および[layer_z]と同様に、すべてのSlic3r設定にワイルドカード変数を追加できます。" -#: src/libslic3r/PrintConfig.cpp:129 +#: src/libslic3r/PrintConfig.cpp:154 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "このカスタムコードは、レイヤーが変更されるたびにZ移動の直前に挿入されます。 [layer_num]および[layer_z]と同様に、すべてのSlic3r代替変数が使用できます。" -#: src/libslic3r/PrintConfig.cpp:2057 +#: src/libslic3r/PrintConfig.cpp:2094 msgid "This custom code is inserted before every toolchange. Placeholder variables for all PrusaSlicer settings as well as {previous_extruder} and {next_extruder} can be used. When a tool-changing command which changes to the correct extruder is included (such as T{next_extruder}), PrusaSlicer will emit no other such command. It is therefore possible to script custom behaviour both before and after the toolchange." msgstr "このカスタムコードは、すべてのツール変更の前に挿入されます。 すべてのPrusaSlicer設定と{previous_extruder}および{next_extruder}の代替変数が使用できます。 希望するエクストルーダーに変更するツール変更コマンド(T {next_extruder}など)が含まれている場合、PrusaSlicerが同じコマンドを追加することはありません。 したがって、ツール変更の前後にカスタム動作をスクリプト化することが可能です。" -#: src/libslic3r/PrintConfig.cpp:380 +#: src/libslic3r/PrintConfig.cpp:396 msgid "This end procedure is inserted at the end of the output file, before the printer end gcode (and before any toolchange from this filament in case of multimaterial printers). Note that you can use placeholder variables for all PrusaSlicer settings. If you have multiple extruders, the gcode is processed in extruder order." msgstr "この終了手順は、出力ファイルの最後のプリント完了Gコードの前(マルチマテリアルプリンタの場合は現在のフィラメントからのツール変更の前)に挿入されます。 すべてのPrusaSlicer設定に代替変数を使用できます。 複数のエクストルーダーがある場合、Gコードはエクストルーダー順に処理されます。" -#: src/libslic3r/PrintConfig.cpp:370 +#: src/libslic3r/PrintConfig.cpp:386 msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all PrusaSlicer settings." msgstr "この終了プロシージャは、出力ファイルの最後に挿入されます。 すべてのPrusaSlicer変数を使用できます。" -#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204 +#: src/libslic3r/PrintConfig.cpp:1258 src/libslic3r/PrintConfig.cpp:1269 msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds." msgstr "この試用的な設定は、押出し速度の変化を制限するために使用します。 1.8mm³/s²の値は、1.8mm³/ s(射出幅0.45mm、レイヤー高さ0.2mm、送り速度20mm/s)の押出し速度から5.4mm³/s( 送り速度60 mm/s)への変化に少なくとも2秒かかることを意味します。" -#: src/libslic3r/PrintConfig.cpp:1183 +#: src/libslic3r/PrintConfig.cpp:1248 msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports." msgstr "この試用的な設定で、エクストルーダーがサポートする最大の体積押出し速度を設定できます。" -#: src/libslic3r/PrintConfig.cpp:2061 +#: src/libslic3r/PrintConfig.cpp:2162 msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." msgstr "この試用的な設定で、G10およびG11コマンドを使用して、ファームウェア吸込み(リトラクション)を行うことができます。 これは最近のMarlinでのみサポートされています。" -#: src/libslic3r/PrintConfig.cpp:2075 +#: src/libslic3r/PrintConfig.cpp:2176 msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "この試用的な設定で、線形ミリメートルではなく立方ミリメートルでE値を定義できます。 ファームウェアでフィラメント径が未定義の場合、開始Gコードに「M200 D [filament_diameter_0] T0」のようなコマンドを入力して、体積押出しモードをオンにし、Slic3rで選択したフィラメントに関連付けられたフィラメント径を使用できます。 これは最近のMarlinのみサポートされています。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2848 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "このエクストルーダーを選択されたアイテムに設定します" -#: src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:224 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "この値は、ブリッジが形成されるときに押出すプラスチックの量に影響します。この値をわずかに下げることで、押し出したものを引き戻しブリッジのたるみを減らすことができますが、通常はプリセット値が適切であり、この値よりも冷却(ファンを使用)を試す方をお勧めします。" -#: src/libslic3r/PrintConfig.cpp:514 +#: src/libslic3r/PrintConfig.cpp:546 msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "この係数は、流量を比率で変化させます。 この設定を微調整することで、表面をきれいに仕上げ、単一壁の幅を調整できる場合があります。 通常の値は0.9〜1.1です。 さらなるチューニングが必要な場合は、フィラメントの直径とファームウェアのEステップをチェックしてください。" -#: src/libslic3r/PrintConfig.cpp:178 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "設定されたファン速度は、ブリッジとオーバーハングを作成するときに常に使用されます。" -#: src/libslic3r/PrintConfig.cpp:944 +#: src/libslic3r/PrintConfig.cpp:992 msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy." msgstr "この機能により、細い外周と厚いインフィル層を射出することで、精度を維持しながら、インフィルと組合わせてプリントを高速化できます。" -#: src/libslic3r/PrintConfig.cpp:1677 +#: src/libslic3r/PrintConfig.cpp:1746 msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height." msgstr "この機能により、強制的に指定されたレイヤーごとにソリッドレイヤー(塗りつぶし)を生成します。 無効にする場合はゼロ。 任意の値(たとえば、9999)が設定できます。 Slic3rは、ノズル径とレイヤー高さに応じて、組合わせ可能なレイヤーの最大数を自動的に計算します。" -#: src/libslic3r/PrintConfig.cpp:1718 +#: src/libslic3r/PrintConfig.cpp:1795 msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "この機能は、レイヤーごとにプリントするのではなく、Zを徐々に上げながらオブジェクトの最外周だけを一筆書きで連続してプリントします。 このオプションを使うには、外周は1周で、インフィル(中塗り)なし、上部ソリッドレイヤー(塗りつぶし)なし、サポートなしに設定しなければなりません。 底部ソリッドレイヤーとスカート(パーツを囲むアウトライン)/ブリム(縁)ループの設定はできます。 2つ以上のオブジェクトをプリントする場合は使えません。" -#: src/slic3r/GUI/Plater.cpp:2371 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "このファイルは簡易モードでは読込めません。 上級モードに切り替えますか?" -#: src/slic3r/GUI/Plater.cpp:2361 -msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" -msgstr "このファイルには、複数の高さに配置されたいくつかのオブジェクトが含まれています。\nそれらを複数のオブジェクトと見なすのではなく、\n複数のパーツから構成される単一のオブジェクトと見なすべきですか?" +#: src/slic3r/GUI/Plater.cpp:2357 +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should I consider\n" +"this file as a single object having multiple parts?" +msgstr "" +"このファイルには、複数の高さに配置されたいくつかのオブジェクトが含まれています。\n" +"それらを複数のオブジェクトと見なすのではなく、\n" +"複数のパーツから構成される単一のオブジェクトと見なすべきですか?" -#: src/slic3r/GUI/FirmwareDialog.cpp:313 -#, possible-c-format -msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." -msgstr "このファームウェアhexファイルは、プリンターモデルと一致しません。\n16進ファイルの対象:%s\n報告されたプリンター:%s\n\nともかくこのhexファイルでファームウェアの書換えを続けますか?\n絶対に間違いないと確信している場合にのみ続行してください。" +#: src/slic3r/GUI/FirmwareDialog.cpp:332 +#, c-format +msgid "" +"This firmware hex file does not match the printer model.\n" +"The hex file is intended for: %s\n" +"Printer reported: %s\n" +"\n" +"Do you want to continue and flash this hex file anyway?\n" +"Please only continue if you are sure this is the right thing to do." +msgstr "" +"このファームウェアhexファイルは、プリンターモデルと一致しません。\n" +"16進ファイルの対象:%s\n" +"報告されたプリンター:%s\n" +"\n" +"ともかくこのhexファイルでファームウェアの書換えを続けますか?\n" +"絶対に間違いないと確信している場合にのみ続行してください。" -#: src/libslic3r/PrintConfig.cpp:278 +#: src/libslic3r/PrintConfig.cpp:314 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "このフラグは、レイヤーのプリント時間に応じてプリント速度とファン速度を調整する自動冷却プログラムを有効にします。" -#: src/slic3r/GUI/Plater.cpp:448 +#: src/slic3r/GUI/Plater.cpp:536 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "このフラグは、1番目のレイヤーの各オブジェクトの外周を拡張してプリントされるブリム(縁)を有効にします。" -#: src/libslic3r/PrintConfig.cpp:1468 +#: src/libslic3r/PrintConfig.cpp:1538 msgid "This flag enforces a retraction whenever a Z move is done." msgstr "このオプションは、Z移動が実行されるたびに樹脂の吸引を行います。" -#: src/libslic3r/PrintConfig.cpp:2093 +#: src/libslic3r/PrintConfig.cpp:2194 msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "このフラグは、待避中にノズルを動かして、垂れやすいエクストルーダーで起こりうるブロブの発生を最小限に抑えます。" -#: src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "これはデフォルトのプリセットです。" -#: src/libslic3r/PrintConfig.cpp:2501 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "サポートポイント密度の相対値です。" -#: src/slic3r/GUI/Tab.cpp:2528 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "これは単一エクストルーダーのマルチマテリアルプリンターであり、すべてのエクストルーダーの直径が新しい値に設定されます。 続行しますか?" -#: src/slic3r/GUI/Tab.cpp:923 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "これはシステムプリセットです。" -#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551 +#: src/libslic3r/PrintConfig.cpp:523 src/libslic3r/PrintConfig.cpp:583 msgid "This is only used in the Slic3r interface as a visual help." msgstr "これはSlic3rのみで使用されるイラストです。" -#: src/libslic3r/PrintConfig.cpp:300 +#: src/libslic3r/PrintConfig.cpp:336 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "これは、個別の加速度設定値(外周/インフィル)の後にプリンターに再設定される加速度です。 ゼロを設定すると、加速が再設定されなくなります。" -#: src/libslic3r/PrintConfig.cpp:158 +#: src/libslic3r/PrintConfig.cpp:194 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "ブリッジを作成するときのプリンターアクセラレーションを設定します。 ブリッジの加速制御を無効にするには、ゼロを入力します。" -#: src/libslic3r/PrintConfig.cpp:813 +#: src/libslic3r/PrintConfig.cpp:860 msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer." msgstr "これは、プリンターが最初のレイヤーに使用する加速度です。 最初のレイヤー用の加速制御を無効にするには、ゼロを設定します。" -#: src/libslic3r/PrintConfig.cpp:934 +#: src/libslic3r/PrintConfig.cpp:982 msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill." msgstr "これはインフィル生成時のプリンタの加速度です。 インフィルの加速制御をオフにするには、ゼロに設定します。" -#: src/libslic3r/PrintConfig.cpp:1331 +#: src/libslic3r/PrintConfig.cpp:1400 msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters." msgstr "これは、外周プリントに使用する加速度です。 ハードウェアが対応している場合、9000のような高い値で良い結果をもたらします。 外周プリント用の加速制御を無効にするには、ゼロを設定します。" -#: src/libslic3r/PrintConfig.cpp:1262 +#: src/libslic3r/PrintConfig.cpp:1327 msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)" msgstr "エクストルーダーノズルの内径(例:0.5, 0.35など)" -#: src/libslic3r/PrintConfig.cpp:1162 +#: src/libslic3r/PrintConfig.cpp:1227 #, no-c-format msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter." msgstr "これは、このエクストルーダーの最大プリント可能レイヤーの高さ(層間ピッチ)であり、可変レイヤー高さとキャップ層高さの上限に使用されます。 推奨最大レイヤー高さは、適切なレイヤー間接着を実現するため射出幅の75%です。 0に設定すると、レイヤーの高さはノズル径の75%に制限されます。" -#: src/libslic3r/PrintConfig.cpp:1225 +#: src/libslic3r/PrintConfig.cpp:1290 msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm." msgstr "このエクストルーダーの最小プリント可能なレイヤー高さ。 可変レイヤー高の解像度を制限します。一般的な値は0.05mmと0.1mmの間です。" -#: src/libslic3r/GCode.cpp:630 +#: src/libslic3r/GCode.cpp:639 msgid "This is usually caused by negligibly small extrusions or by a faulty model. Try to repair the model or change its orientation on the bed." msgstr "これは通常、無視できるほど少量の押出量またはモデルの欠陥が原因です。 ベッド上のモデルの修復または向きを再配置してみてください。" -#: src/libslic3r/PrintConfig.cpp:2139 +#: src/libslic3r/PrintConfig.cpp:2215 msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools." msgstr "この行列は、任意のツールチェンジ間においてワイプタワーの新しいフィラメントをパージするために必要な体積(立方ミリメートル)を示しています。" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643 -msgid "This operation is irreversible.\nDo you want to proceed?" -msgstr "この操作は元に戻せません。\n続行しますか?" +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 +msgid "" +"This operation is irreversible.\n" +"Do you want to proceed?" +msgstr "" +"この操作は元に戻せません。\n" +"続行しますか?" -#: src/libslic3r/PrintConfig.cpp:1372 +#: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." msgstr "このオプションは、各レイヤーに対して生成する外周数を設定します。 拡張外周オプションが有効になっている場合、Slic3rは、この外周数ではカバーできない傾斜面を検出すると、自動的にこの数よりも多くの外周が生成されます。" -#: src/libslic3r/PrintConfig.cpp:1287 +#: src/libslic3r/PrintConfig.cpp:1356 msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures." msgstr "このオプションは、使っていないエクストルーダーの温度を下げて、樹脂が垂れるのを抑制します。 高いスカート(パーツを囲むアウトライン)を自動的に有効にし、温度を変更するときにエクストルーダーをスカートの外側に移動させます。" -#: src/libslic3r/PrintConfig.cpp:980 +#: src/libslic3r/PrintConfig.cpp:1029 msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved." msgstr "このオプションは、天井形成を可能にするために最低限必要な領域のみインフィル(中塗り)を行います(内部サポート材料として機能します)。 このオプションを有効にすると、複数のチェックによりGコードの生成が遅くなります。" -#: src/libslic3r/PrintConfig.cpp:973 +#: src/libslic3r/PrintConfig.cpp:1022 msgid "This option will switch the print order of perimeters and infill, making the latter first." msgstr "このオプションは、外周とインフィル(中塗り)のプリント順序を切替え、インフィルからプリントします。" -#: src/libslic3r/PrintConfig.cpp:427 +#: src/libslic3r/PrintConfig.cpp:459 msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "この個別の設定は、最外周のプリント速度に影響します(モデルの露出部分)。 パーセンテージで入力された場合(例:80%)、上記で設定された外周プリント速度から計算されます。 0を入力すると自動計算になります。" -#: src/libslic3r/PrintConfig.cpp:1648 +#: src/libslic3r/PrintConfig.cpp:1717 msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto." msgstr "この個別の設定は、半径<= 6.5mm(通常は穴)の外周プリントの速度に影響します。 パーセンテージ(例:80%)で入力された場合、上記の外周速度設定で計算されます。 自動の場合はゼロに設定します。" -#: src/libslic3r/PrintConfig.cpp:989 +#: src/libslic3r/PrintConfig.cpp:1038 msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width." msgstr "この設定は、インフィル(中塗り)と外周の間に追加でオーバーラップ(重なり)させて、接続性を改善します。 理論的にこれは必要ありませんが、機械的な遊びの影響によりギャップが生じる可能性がある場合に有効です。 パーセンテージ(例:15%)で表される場合、外周の射出幅から計算されます。" -#: src/libslic3r/PrintConfig.cpp:57 +#: src/libslic3r/PrintConfig.cpp:73 msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print." msgstr "この設定は、スライス/レイヤーの高さ(および合計数)を制御します。 レイヤーが薄いほど精度は上がりますが、プリントに時間がかかります。" -#: src/libslic3r/PrintConfig.cpp:1153 +#: src/libslic3r/PrintConfig.cpp:1218 msgid "This setting represents the maximum speed of your fan." msgstr "ファンの最大速度を設定します。" -#: src/libslic3r/PrintConfig.cpp:1216 +#: src/libslic3r/PrintConfig.cpp:1281 msgid "This setting represents the minimum PWM your fan needs to work." msgstr "この設定は、ファンが回転するために必要な最小PWMです。" -#: src/libslic3r/PrintConfig.cpp:1801 +#: src/libslic3r/PrintConfig.cpp:1829 msgid "This start procedure is inserted at the beginning, after any printer start gcode (and after any toolchange to this filament in case of multi-material printers). This is used to override settings for a specific filament. If PrusaSlicer detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order." msgstr "この開始プロシージャーは、プリンタがGコードを開始した後(およびマルチマテリアルプリンタの場合はこのフィラメントにツールを変更した後)の最初に挿入されます。 これは、特定のフィラメントの設定をオーバーライドするために使用されます。カスタムコードでM104またはM190が書かれている場合には、同種のコマンドが自動的に追加されることはありませんので、加熱コマンドやその他のカスタムアクションの順序を自由にカスタマイズできます。 全てのPrusaSlicer変数を使用できますので、「M109 S [first_layer_temperature]」コマンドをご希望の場所に配置できます。複数のエクストルーダーがある場合、Gコードはエクストルーダーの順に処理されます。" -#: src/libslic3r/PrintConfig.cpp:1786 +#: src/libslic3r/PrintConfig.cpp:1814 msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If PrusaSlicer detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all PrusaSlicer settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "この開始プロシージャーは、ベッドが目標温度に達し、エクストルーダーが加熱を開始した直後、およびエクストルーダーが加熱を完了する前のところに挿入されます。 カスタムコードでM104またはM190が書かれている場合には、同種のコマンドが自動的に追加されることはありませんので、加熱コマンドやその他のカスタムアクションの順序を自由にカスタマイズできます。 全てのPrusaSlicer変数を使用できますので、「M109 S [first_layer_temperature]」コマンドをご希望の場所に配置できます。" -#: src/libslic3r/PrintConfig.cpp:664 +#: src/libslic3r/PrintConfig.cpp:695 msgid "This string is edited by RammingDialog and contains ramming specific parameters." msgstr "この文字列はラミングダイアログで編集され、ラミング固有のパラメーターが含まれています。" -#: src/libslic3r/PrintConfig.cpp:2185 +#: src/libslic3r/PrintConfig.cpp:2286 msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." msgstr "この値は、出力Gコードの全てのZ座標に対して加算/減算されます。これによって Zエンドストップの位置を補正できます。例えば、エンドストップで0のとき、実際にはノズルがベッド面から0.3mm離れる場合、これを-0.3に設定します(もしくはエンドストップ位置を修正します)。" -#: src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2208 msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." msgstr "このベクトル列には、ワイプタワーで使用される各フィラメント間で変更するために必要なボリュームが保存されます。 これらの値は、以下の完全なパージボリュームの作成を簡素化するために使用されます。" -#: src/slic3r/GUI/UpdateDialogs.cpp:155 -#, possible-c-format -msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "このバージョン%sは、現在インストールされているセットアップパッケージと互換性がありません。\nこれは、新しいバージョンを使用した後に古いバージョンの%sを実行したことが原因である可能性があります。 \n%sを終了して新しいバージョンで再試行するか、再起動してデフォルト構成をロードしてください。 このバージョン%sと互換性のある設定をインストールする前に、現在の構成のバックアップが作成されます。" +#: src/slic3r/GUI/UpdateDialogs.cpp:216 +#, c-format +msgid "" +"This version of %s is not compatible with currently installed configuration bundles.\n" +"This probably happened as a result of running an older %s after using a newer one.\n" +"\n" +"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "" +"このバージョン%sは、現在インストールされているセットアップパッケージと互換性がありません。\n" +"これは、新しいバージョンを使用した後に古いバージョンの%sを実行したことが原因である可能性があります。 \n" +"%sを終了して新しいバージョンで再試行するか、再起動してデフォルト構成をロードしてください。 このバージョン%sと互換性のある設定をインストールする前に、現在の構成のバックアップが作成されます。" -#: src/libslic3r/PrintConfig.cpp:2284 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "ラスター2Dポリゴンにガンマ補正を適用します。 ガンマ値ゼロは、しきい値を中央に設定することを意味します。 この動作により、ポリゴンの穴を損なうことなくアンチエイリアスが除去されます。" -#: src/libslic3r/PrintConfig.cpp:1994 +#: src/libslic3r/PrintConfig.cpp:2081 msgid "Threads" msgstr "スレッド" -#: src/libslic3r/PrintConfig.cpp:1995 +#: src/libslic3r/PrintConfig.cpp:2082 msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "スレッドは、長時間実行されるタスクを並列化するために使用されます。スレッド数は、使用可能なコア/プロセッサーの数をわずかに超えたところが最適となります。" -#: src/slic3r/GUI/Tab.cpp:2052 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "チルト" -#: src/slic3r/GUI/Tab.cpp:2053 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "チルト時間" @@ -7343,156 +8148,174 @@ msgstr "チルト時間" msgid "Time" msgstr "時間" -#: src/libslic3r/PrintConfig.cpp:655 +#: src/libslic3r/PrintConfig.cpp:687 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "ツールの変更中(Tコードの実行時)にプリンターファームウェア(またはMulti Material Unit 2.0)が新しいフィラメントをロードする時間。 この時間は、Gコード時間推定プログラムによって合計プリント時間に追加されます。" -#: src/libslic3r/PrintConfig.cpp:670 +#: src/libslic3r/PrintConfig.cpp:702 msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator." msgstr "ツールチェンジ中(Tコードの実行時)にプリンターファームウェア(またはMulti Material Unit 2.0)がフィラメントをアンロードする時間。 この時間は、Gコード時間予測プログラムによって合計プリント予測時間に追加されます。" -#: src/libslic3r/PrintConfig.cpp:2242 +#: src/libslic3r/PrintConfig.cpp:2407 msgid "Time of the fast tilt" msgstr "高速チルトの時間" -#: src/libslic3r/PrintConfig.cpp:2251 +#: src/libslic3r/PrintConfig.cpp:2416 msgid "Time of the slow tilt" msgstr "スローチルトの時間" -#: src/libslic3r/PrintConfig.cpp:610 +#: src/libslic3r/PrintConfig.cpp:641 msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "フィラメントがアンロードされた後に停止する時間。 軟らかい材料などで元の寸法に縮小するのに時間を必要とすると考えられる場合で、信頼性の高いツール交換を行うのに役立ちます。" -#: src/slic3r/GUI/Tab.cpp:916 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "これを行うには、プリセットの新しい名前を指定してください。" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "冗長なツール操作を除いて、\n未使用のエクストルーダーの色の変更は削除されました" - -#: src/slic3r/GUI/Plater.cpp:2966 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "オブジェクト" -#: src/slic3r/GUI/Plater.cpp:2968 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "パーツへ" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:212 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 +#, c-format msgid "Toggle %c axis mirroring" msgstr "%c軸のミラーリングを切替え" -#: src/libslic3r/Zipper.cpp:37 +#: src/libslic3r/Zipper.cpp:34 msgid "too many files" msgstr "ファイルが多すぎます" -#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315 -#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537 -#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404 +#: src/libslic3r/SLAPrintSteps.cpp:190 +msgid "Too much overlapping holes." +msgstr "重なる穴が多すぎます。" + +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "ツール" -#: src/slic3r/GUI/WipeTowerDialog.cpp:240 +#: src/slic3r/GUI/WipeTowerDialog.cpp:276 msgid "Tool #" msgstr "ツール#" -#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "ツールチェンジ用のGコード" -#: src/slic3r/GUI/Tab.cpp:1530 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "単一エクストルーダーMMプリンターのツールチェンジパラメーター" #. TRN To be shown in the main menu View->Top -#: src/slic3r/GUI/MainFrame.cpp:522 +#. TRN To be shown in Print Settings "Top solid layers" +#: src/slic3r/GUI/MainFrame.cpp:662 src/libslic3r/PrintConfig.cpp:2132 +#: src/libslic3r/PrintConfig.cpp:2141 msgid "Top" msgstr "トップ" -#: src/libslic3r/PrintConfig.cpp:388 +#: src/slic3r/GUI/PresetHints.cpp:304 +msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." +msgstr "上部/下部シェルの厚さのヒント:レイヤーの高さが無効なため使用できません。" + +#: src/libslic3r/PrintConfig.cpp:415 msgid "Top fill pattern" msgstr "トップ塗りつぶしパターン" -#: src/slic3r/GUI/PresetHints.cpp:189 +#: src/slic3r/GUI/PresetHints.cpp:323 +msgid "Top is open." +msgstr "上部が開いています。" + +#: src/slic3r/GUI/PresetHints.cpp:317 +msgid "Top shell is %1% mm thick for layer height %2% mm." +msgstr "レイヤーの高さ%2%mmの場合、上部シェルの厚さは%1%mmです。" + +#: src/slic3r/GUI/PresetHints.cpp:192 msgid "top solid infill" msgstr "最上層のソリッドインフィル" -#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017 -#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "トップソリッドインフィル" -#: src/libslic3r/PrintConfig.cpp:2046 +#: src/libslic3r/PrintConfig.cpp:2135 msgid "Top solid layers" msgstr "上部ソリッドレイヤー" -#: src/slic3r/GUI/MainFrame.cpp:522 +#: src/slic3r/GUI/MainFrame.cpp:662 msgid "Top View" msgstr "上面" -#: src/slic3r/GUI/WipeTowerDialog.cpp:247 +#: src/slic3r/GUI/WipeTowerDialog.cpp:285 msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded." msgstr "総パージ量は、ロード/アンロードされるツールに応じて、以下の2つの値を合計して計算されます。" -#: src/slic3r/GUI/WipeTowerDialog.cpp:84 +#: src/slic3r/GUI/WipeTowerDialog.cpp:85 msgid "Total rammed volume" msgstr "合計ラミング容積" -#: src/slic3r/GUI/WipeTowerDialog.cpp:82 +#: src/slic3r/GUI/WipeTowerDialog.cpp:83 msgid "Total ramming time" msgstr "トータルラミング時間" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:516 msgid "Translate" msgstr "移動" -#: src/slic3r/GUI/Mouse3DController.cpp:270 -#: src/slic3r/GUI/Mouse3DController.cpp:283 +#: src/slic3r/GUI/Mouse3DController.cpp:300 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Translation" msgstr "変形" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "移動" -#: src/libslic3r/PrintConfig.cpp:798 +#: src/libslic3r/PrintConfig.cpp:845 msgid "Triangles" msgstr "三角形" -#: src/libslic3r/PrintConfig.cpp:3059 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "非定型メッシュの修正を試みてください(このオプションは、モデルをカットする必要がある場合にデフォルトで追加されます)。" -#: src/libslic3r/PrintConfig.cpp:1397 +#: src/libslic3r/PrintConfig.cpp:1467 msgid "Type of the printer." msgstr "プリンターのタイプ。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2549 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "タイプ:" -#: src/libslic3r/Zipper.cpp:35 +#: src/slic3r/GUI/Plater.cpp:3428 +msgid "Unable to reload:" +msgstr "リロードできません:" + +#: src/libslic3r/Zipper.cpp:32 msgid "undefined error" msgstr "未定義エラー" -#: src/slic3r/GUI/GLCanvas3D.cpp:3389 src/slic3r/GUI/GLCanvas3D.cpp:3609 -#: src/slic3r/GUI/MainFrame.cpp:559 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "やり直し" -#: src/slic3r/GUI/GLCanvas3D.cpp:3497 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "" -#: src/slic3r/GUI/GLCanvas3D.cpp:3479 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "履歴を元に戻す" -#: src/libslic3r/Zipper.cpp:59 +#: src/libslic3r/Zipper.cpp:56 msgid "unexpected decompressed size" msgstr "予期しない解凍サイズ" @@ -7500,96 +8323,109 @@ msgstr "予期しない解凍サイズ" msgid "Unknown" msgstr "不明" -#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154 +#: src/slic3r/Utils/Duet.cpp:82 src/slic3r/Utils/Duet.cpp:137 +#: src/slic3r/Utils/FlashAir.cpp:119 src/slic3r/Utils/FlashAir.cpp:140 +#: src/slic3r/Utils/FlashAir.cpp:156 msgid "Unknown error occured" msgstr "不明なエラーが発生" -#: src/slic3r/GUI/WipeTowerDialog.cpp:234 +#: src/slic3r/GUI/WipeTowerDialog.cpp:263 msgid "unloaded" msgstr "アンロード済" -#: src/libslic3r/PrintConfig.cpp:591 +#: src/libslic3r/PrintConfig.cpp:623 msgid "Unloading speed" msgstr "アップロードスピード" -#: src/libslic3r/PrintConfig.cpp:600 +#: src/libslic3r/PrintConfig.cpp:632 msgid "Unloading speed at the start" msgstr "最初のアンロードスピード" -#: src/slic3r/GUI/Tab.cpp:3069 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "開いたカギ" -#: src/slic3r/GUI/Tab.cpp:3362 -msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." -msgstr "カギが開いたアイコンは、一部の設定が変更され、現在のオプショングループのシステム(またはデフォルト)値と等しくないことを示します。\nクリックすると、現在のオプショングループのすべての設定がシステム(またはデフォルト)値にリセットされます。" +#: src/slic3r/GUI/Tab.cpp:3282 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or default) values." +msgstr "" +"カギが開いたアイコンは、一部の設定が変更され、現在のオプショングループのシステム(またはデフォルト)値と等しくないことを示します。\n" +"クリックすると、現在のオプショングループのすべての設定がシステム(またはデフォルト)値にリセットされます。" -#: src/slic3r/GUI/Tab.cpp:3377 -msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." +#: src/slic3r/GUI/Tab.cpp:3297 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" +"Click to reset current value to the system (or default) value." msgstr "カギが開いたアイコンは、値が変更され、システム(またはデフォルト)値と等しくないことを示します。クリックすると、現在の値がシステム(またはデフォルト)値にリセットされます。" -#: src/slic3r/GUI/GUI_Preview.cpp:245 +#: src/slic3r/GUI/Plater.cpp:5203 +#, c-format +msgid "Unmounting successful. The device %s(%s) can now be safely removed from the computer." +msgstr "アンマウントに成功しました。 デバイス%s(%s)をコンピューターから安全に取り出せます。" + +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "待避からの復帰" -#: src/slic3r/GUI/Tab.cpp:2785 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "変更の未保存" -#: src/slic3r/GUI/GUI_App.cpp:790 +#: src/slic3r/GUI/GUI_App.cpp:935 msgid "Unsaved Presets" msgstr "未保存のプリセット" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 -msgid "Unselect gizmo / Clear selection" -msgstr "ギズモ選択を解除/選択を解除" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:179 +msgid "Unselect gizmo or clear selection" +msgstr "ギズモのキャンセルまたは選択解除" -#: src/libslic3r/Zipper.cpp:63 +#: src/libslic3r/Zipper.cpp:60 msgid "unsupported central directory size" msgstr "サポートされていない中心ディレクトリのサイズ" -#: src/libslic3r/Zipper.cpp:43 +#: src/libslic3r/Zipper.cpp:40 msgid "unsupported encryption" msgstr "サポートされていない暗号化" -#: src/libslic3r/Zipper.cpp:45 +#: src/libslic3r/Zipper.cpp:42 msgid "unsupported feature" msgstr "サポートされていない機能" -#: src/libslic3r/Zipper.cpp:41 +#: src/libslic3r/Zipper.cpp:38 msgid "unsupported method" msgstr "サポートされていない方法" -#: src/libslic3r/Zipper.cpp:53 +#: src/libslic3r/Zipper.cpp:50 msgid "unsupported multidisk archive" msgstr "サポートされていないマルチディスクアーカイブ" -#: src/slic3r/GUI/GUI_App.cpp:305 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:292 msgid "Unsupported OpenGL version" msgstr "サポートされていないOpenGLバージョン" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2414 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "サポートしないところの選択" -#: src/libslic3r/GCode/PreviewData.cpp:495 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:955 +#, c-format msgid "up to %.2f mm" msgstr "最大%.2f mm" -#: src/slic3r/GUI/UpdateDialogs.cpp:30 +#: src/slic3r/GUI/UpdateDialogs.cpp:38 msgid "Update available" msgstr "アップデート可能" -#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "組込みプリセットを自動的に更新する" -#: src/slic3r/GUI/ConfigWizard.cpp:401 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "アップデート情報" -#: src/slic3r/GUI/ConfigWizard.cpp:426 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "更新プログラムはユーザーの知らないうちにインストールされることはなく、カスタマイズされた設定を上書きすることもありません。" @@ -7597,11 +8433,11 @@ msgstr "更新プログラムはユーザーの知らないうちにインスト msgid "Upgrade" msgstr "アップグレード" -#: src/slic3r/GUI/GUI_App.cpp:685 +#: src/slic3r/GUI/GUI_App.cpp:824 msgid "Upload a firmware image into an Arduino based printer" msgstr "ファームウェアイメージをArduinoベースのプリンターにアップロードする" -#: src/slic3r/Utils/FlashAir.cpp:60 +#: src/slic3r/Utils/FlashAir.cpp:58 msgid "Upload not enabled on FlashAir card." msgstr "FlashAirカードでのアップロードが有効になっていません。" @@ -7609,32 +8445,32 @@ msgstr "FlashAirカードでのアップロードが有効になっていませ msgid "Upload to Printer Host with the following filename:" msgstr "次のファイル名でプリンターサーバーにアップロードします:" -#: src/slic3r/GUI/PrintHostDialogs.cpp:229 +#: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "アップロード" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:171 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 msgid "Upper Layer" msgstr "上のレイヤー" -#: src/slic3r/GUI/Tab.cpp:1873 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "USB/シリアル 接続" -#: src/libslic3r/PrintConfig.cpp:1592 +#: src/libslic3r/PrintConfig.cpp:1662 msgid "USB/serial port for printer connection." msgstr "プリンター接続用USB/シリアルポート。" -#: src/slic3r/GUI/wxExtensions.cpp:3176 src/slic3r/GUI/wxExtensions.cpp:3432 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "別のエクストルーダーを使用する" -#: src/slic3r/GUI/Preferences.cpp:117 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "ツールバーアイコンにカスタムサイズを使用する" -#: src/libslic3r/PrintConfig.cpp:2060 +#: src/libslic3r/PrintConfig.cpp:2161 msgid "Use firmware retraction" msgstr "ファームウェア吸込みを使用" @@ -7642,51 +8478,59 @@ msgstr "ファームウェア吸込みを使用" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "必要に応じて、ディレクトリ区切り文字としてスラッシュ(/)を使用してください。" -#: src/libslic3r/PrintConfig.cpp:2515 +#: src/slic3r/GUI/Preferences.cpp:126 +msgid "Use free camera" +msgstr "フリーカメラを使用" + +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "台座を使用" -#: src/slic3r/GUI/Preferences.cpp:110 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "パースカメラを使用" -#: src/libslic3r/PrintConfig.cpp:2067 +#: src/libslic3r/PrintConfig.cpp:2168 msgid "Use relative E distances" msgstr "E相対距離モードを使用する" -#: src/slic3r/GUI/Preferences.cpp:103 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "3DシーンにRetina解像度を使用する" -#: src/libslic3r/PrintConfig.cpp:508 +#: src/libslic3r/PrintConfig.cpp:540 msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)." msgstr "このオプションを使用して、プリンターのエクストルーダーに関連付けられている軸ラベルを設定します(通常はEですが、一部のプリンターはAを使用します)。" -#: src/libslic3r/PrintConfig.cpp:1807 +#: src/libslic3r/PrintConfig.cpp:1893 msgid "Use this setting to rotate the support material pattern on the horizontal plane." msgstr "この設定を使用して、水平面上でサポート材料パターンを回転します。" -#: src/libslic3r/PrintConfig.cpp:2074 +#: src/libslic3r/PrintConfig.cpp:2175 msgid "Use volumetric E" msgstr "体積押出しEを使用" -#: src/slic3r/GUI/Plater.cpp:214 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 +msgid "used" +msgstr "使用した" + +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "使用フィラメント(g)" -#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "使用フィラメント(m)" -#: src/slic3r/GUI/Plater.cpp:213 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "使用フィラメント (mm³)" -#: src/slic3r/GUI/Plater.cpp:1015 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "使用材料(ml)" -#: src/slic3r/GUI/Plater.cpp:215 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "使用材料(単位)" @@ -7694,117 +8538,117 @@ msgstr "使用材料(単位)" msgid "User" msgstr "ユーザー" -#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071 -#: src/slic3r/GUI/PresetBundle.cpp:1558 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "ユーザープリセット" -#: src/libslic3r/Zipper.cpp:93 +#: src/libslic3r/Zipper.cpp:90 msgid "validation failed" msgstr "検証が失敗しました" -#: src/slic3r/GUI/ButtonsDescription.cpp:41 +#: src/slic3r/GUI/ButtonsDescription.cpp:36 msgid "Value is the same as the system value" msgstr "システム値と同じ値です" -#: src/slic3r/GUI/ButtonsDescription.cpp:58 +#: src/slic3r/GUI/ButtonsDescription.cpp:53 msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "値が変更されており、システム値または最後に保存されたプリセットとは異なっています" -#: src/slic3r/GUI/Tab.cpp:2151 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "この列の値は通常モード用です" -#: src/slic3r/GUI/Tab.cpp:2157 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "この列の値はサイレントモード用です" -#: src/slic3r/GUI/GLCanvas3D.cpp:240 src/slic3r/GUI/GLCanvas3D.cpp:4365 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "可変レイヤー高さ" -#: src/slic3r/GUI/GLCanvas3D.cpp:1681 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "可変レイヤー高-アダプティブ" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" msgstr "可変レイヤー高-マニュアル編集" -#: src/slic3r/GUI/GLCanvas3D.cpp:1673 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "可変レイヤー高さ - リセット" -#: src/slic3r/GUI/GLCanvas3D.cpp:1689 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "可変レイヤー高さ - 全てを滑らかに" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "variants" msgstr "バリアント" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "メーカー" -#: src/slic3r/GUI/ConfigWizard.cpp:536 +#: src/slic3r/GUI/ConfigWizard.cpp:565 msgid "Vendor:" msgstr "ベンダー:" -#: src/libslic3r/PrintConfig.cpp:880 +#: src/libslic3r/PrintConfig.cpp:928 msgid "Verbose G-code" msgstr "コメント付きGコード" -#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53 +#: src/slic3r/GUI/AboutDialog.cpp:231 src/slic3r/GUI/MainFrame.cpp:64 msgid "Version" msgstr "バージョン" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 msgid "version" msgstr "バージョン" -#: src/slic3r/GUI/Tab.cpp:1002 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "外壁設定" -#: src/slic3r/GUI/GUI_Preview.cpp:209 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "ビュー" -#: src/slic3r/GUI/ConfigWizard.cpp:778 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "ビューモード" -#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867 -#: src/libslic3r/SLAPrint.cpp:915 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "サポートの視覚化" -#: src/slic3r/GUI/Plater.cpp:138 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "ボリューム" -#: src/slic3r/GUI/WipeTowerDialog.cpp:248 +#: src/slic3r/GUI/WipeTowerDialog.cpp:286 msgid "Volume to purge (mm³) when the filament is being" msgstr "フィラメントをロード/アンロードするときにパージする量(mm³)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1010 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "オブジェクトのボリュームが並べ替えられました" -#: src/slic3r/GUI/PresetHints.cpp:216 +#: src/slic3r/GUI/PresetHints.cpp:219 msgid "Volumetric" msgstr "体積押出し" -#: src/slic3r/GUI/Tab.cpp:1800 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "体積押出し流量のヒントは利用できません" -#: src/slic3r/GUI/GUI_Preview.cpp:216 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "体積押出し流量" -#: src/libslic3r/GCode/PreviewData.cpp:370 +#: src/libslic3r/GCode/PreviewData.cpp:355 msgid "Volumetric flow rate (mm³/s)" msgstr "体積押出し量 (mm³/s)" @@ -7812,340 +8656,380 @@ msgstr "体積押出し量 (mm³/s)" msgid "Volumetric speed" msgstr "体積押出し速度" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283 -#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328 +#: src/libslic3r/PrintConfig.cpp:2915 +msgid "Wall thickness" +msgstr "壁の厚さ" + +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "注意" -#: src/slic3r/GUI/ConfigWizard.cpp:294 +#: src/slic3r/GUI/ConfigWizard.cpp:431 msgid "Welcome" msgstr "ようこそ" -#: src/slic3r/GUI/ConfigWizard.cpp:296 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:427 +#, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "%s構成アシスタントへようこそ" -#: src/slic3r/GUI/ConfigWizard.cpp:298 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:429 +#, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "%s構成ウィザードへようこそ" -#: src/slic3r/GUI/Preferences.cpp:86 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "チェックすると、アクティブなプリンターと互換性がないとマークされている場合でも、プリントおよびフィラメントのプリセットがプリセットエディターに表示されます" -#: src/slic3r/GUI/PresetHints.cpp:223 +#: src/slic3r/GUI/PresetHints.cpp:224 msgid "when printing" msgstr "プリントするとき" -#: src/libslic3r/PrintConfig.cpp:217 +#: src/libslic3r/PrintConfig.cpp:253 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "マルチマテリアルオブジェクトをプリントする場合、この設定により、Slic3rは重なり合うオブジェクト部分を1つずつカットします(2番目の部分は1番目、3番目の部分は1番目、2番目などでカットされます)。" -#: src/libslic3r/PrintConfig.cpp:269 +#: src/libslic3r/PrintConfig.cpp:305 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "複数のオブジェクトまたは複数のコピーをプリントする場合、この機能は各オブジェクトを完了してから次のオブジェクトに移動します(最下層から開始します)。 この機能は、プリント全体がダメになるリスクを回避するのに役立ちます。 Slic3rは警告を発するとともに、エクストルーダーの衝突を防ごうとしますが、注意が必要です。" -#: src/libslic3r/PrintConfig.cpp:843 +#: src/libslic3r/PrintConfig.cpp:891 msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height." msgstr "非常に薄いレイヤーでプリントする場合、プリントエリア内でのノズルービルドプレート(ベッド)間のバラツキによりベッドとの密着が損なわれないよう1番目のレイヤーは他のレイヤーより厚めにプリントして対策します。 1番目のレイヤーの厚みを、絶対値またはパーセンテージ(例:150%)で入力します。" -#: src/libslic3r/PrintConfig.cpp:1483 +#: src/libslic3r/PrintConfig.cpp:1553 msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "ツールを変更する前に吸込みすると、フィラメントは指定された量だけ引き戻されます(長さは、エクストルーダーに入る前のフィラメントで測定されます)。" -#: src/libslic3r/PrintConfig.cpp:1475 +#: src/libslic3r/PrintConfig.cpp:1545 msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)." msgstr "待避がトリガーされると、フィラメントは指定された量だけ引き戻されます(この長さは、エクストルーダーに入る前のフィラメントを基準にします)。" -#: src/libslic3r/PrintConfig.cpp:1347 +#: src/libslic3r/PrintConfig.cpp:1391 msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." msgstr "ゼロに設定すると、ロード中にフィラメントがパーキング位置から押し出される距離は、アンロード中に戻った距離と同一になります。 正の場合、その分多くロードされ、逆に負の場合は、ロード距離はアンロードよりも短くなります。" -#: src/libslic3r/PrintConfig.cpp:1173 +#: src/libslic3r/PrintConfig.cpp:1238 msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow." msgstr "他の速度設定を0にすると、Slic3rはエクストルーダー押圧を一定に保つために最適な速度を自動計算します。 この試用的な設定は、許容できる最高のプリント速度を設定するために用意されています。" -#: src/libslic3r/PrintConfig.cpp:1527 +#: src/libslic3r/PrintConfig.cpp:1597 msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "ツールの交換後に吸込み分が補正されると、エクストルーダーはこの追加量のフィラメントを押し出します。" -#: src/libslic3r/PrintConfig.cpp:1519 +#: src/libslic3r/PrintConfig.cpp:1589 msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "移動後に引込みが補償されると、エクストルーダーはこの追加量のフィラメントを押し出します。 この設定はほとんど必要ありません。" -#: src/slic3r/GUI/Tab.cpp:3076 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "白丸" -#: src/slic3r/GUI/Tab.cpp:3365 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "白丸アイコンは、システム(またはデフォルト)プリセットでないことを示します。" -#: src/slic3r/GUI/Tab.cpp:3111 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "白丸アイコンは、現在のオプショングループに最後に保存されたプリセットと同じ設定であることを示します。" -#: src/slic3r/GUI/Tab.cpp:3126 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "白丸アイコンは、値が最後に保存されたプリセットと同じであることを示します。" -#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "幅" -#: src/libslic3r/GCode/PreviewData.cpp:398 +#: src/libslic3r/GCode/PreviewData.cpp:349 msgid "Width (mm)" msgstr "幅(mm)" -#: src/libslic3r/PrintConfig.cpp:2389 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "後部ボールの中心から前部ボールの中心までの幅" -#: src/libslic3r/PrintConfig.cpp:2138 +#: src/libslic3r/PrintConfig.cpp:2239 msgid "Width of a wipe tower" msgstr "ワイプタワーの幅" -#: src/libslic3r/PrintConfig.cpp:2761 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "オブジェクトと生成されたパッドを接続するコネクタスティックの幅。" -#: src/libslic3r/PrintConfig.cpp:2203 +#: src/libslic3r/PrintConfig.cpp:2354 msgid "Width of the display" msgstr "ディスプレイの幅" -#: src/slic3r/GUI/PresetHints.cpp:47 +#: src/slic3r/GUI/PresetHints.cpp:48 msgid "will always run at %1%%%" msgstr "常に%1%%%で実行されます" -#: src/slic3r/GUI/PresetHints.cpp:52 +#: src/slic3r/GUI/PresetHints.cpp:55 msgid "will be turned off." msgstr "オフになります。" -#: src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2441 msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction." msgstr "修正の符号に従って、スライスされた2Dポリゴンを膨張または収縮させます。" -#: src/libslic3r/PrintConfig.cpp:2160 +#: src/libslic3r/PrintConfig.cpp:2261 msgid "Wipe into this object" msgstr "このオブジェクトにワイプを含める" -#: src/libslic3r/PrintConfig.cpp:2152 +#: src/libslic3r/PrintConfig.cpp:2253 msgid "Wipe into this object's infill" msgstr "このオブジェクトのインフィルにワイプを含める" -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:90 -#: src/slic3r/GUI/GUI_ObjectList.cpp:564 src/libslic3r/PrintConfig.cpp:2202 -#: src/libslic3r/PrintConfig.cpp:2210 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 +#: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "ワイプオプション" -#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130 -#: src/libslic3r/GCode/PreviewData.cpp:174 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 +#: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "ワイプタワー" -#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "ワイプタワー" -#: src/slic3r/GUI/ConfigManipulation.cpp:112 -#: src/slic3r/GUI/ConfigManipulation.cpp:132 +#: src/slic3r/GUI/ConfigManipulation.cpp:120 +#: src/slic3r/GUI/ConfigManipulation.cpp:140 msgid "Wipe Tower" msgstr "ワイプタワー" -#: src/slic3r/GUI/WipeTowerDialog.cpp:141 +#: src/slic3r/GUI/WipeTowerDialog.cpp:142 msgid "Wipe tower - Purging volume adjustment" msgstr "ワイプタワー-パージ量調整" -#: src/slic3r/GUI/Tab.cpp:1664 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "ワイプタワーのパラメータ" -#: src/libslic3r/PrintConfig.cpp:2144 +#: src/libslic3r/PrintConfig.cpp:2245 msgid "Wipe tower rotation angle" msgstr "ワイプタワーの回転角" -#: src/libslic3r/PrintConfig.cpp:2170 +#: src/libslic3r/PrintConfig.cpp:2246 msgid "Wipe tower rotation angle with respect to x-axis." msgstr "x軸に対するワイプタワーの回転角度。" -#: src/libslic3r/PrintConfig.cpp:2092 +#: src/libslic3r/PrintConfig.cpp:2193 msgid "Wipe while retracting" msgstr "吸込み中にワイプ" -#: src/slic3r/GUI/PresetHints.cpp:224 +#: src/slic3r/GUI/PresetHints.cpp:225 msgid "with a volumetric rate" msgstr "体積押出し率で" -#: src/libslic3r/PrintConfig.cpp:1460 +#: src/libslic3r/PrintConfig.cpp:1530 msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement." msgstr "ボーデンエクストルーダーでは、ワイプ動作を行う前に、ある程度の迅速な射出戻し(リトラクト)を行うと良好な結果が得られる場合があります。" -#: src/libslic3r/PrintConfig.cpp:1969 +#: src/libslic3r/PrintConfig.cpp:2056 msgid "With sheath around the support" msgstr "サポートの周りに覆いを付ける" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:62 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:105 msgid "World coordinates" msgstr "ワールド座標" -#: src/slic3r/GUI/UpdateDialogs.cpp:76 -msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" +#: src/slic3r/GUI/UpdateDialogs.cpp:92 +msgid "" +"Would you like to install it?\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" msgstr "インストールしますか?まず完全な設定スナップショットが作成されます。 新しいバージョンに問題がある場合はいつでも復元できます。アップデートされた設定に含まれるもの:" -#: src/libslic3r/Zipper.cpp:95 +#: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "コールバックの書込に失敗しました" -#: src/libslic3r/PrintConfig.cpp:2993 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "コンソールにモデル情報をリストします。" -#: src/slic3r/Utils/Duet.cpp:148 +#: src/slic3r/Utils/Duet.cpp:131 msgid "Wrong password" msgstr "パスワードが違います" -#: src/libslic3r/PrintConfig.cpp:2124 +#: src/libslic3r/PrintConfig.cpp:2225 msgid "X coordinate of the left front corner of a wipe tower" msgstr "ワイプタワー前面左端のX座標" -#: src/libslic3r/PrintConfig.cpp:1793 +#: src/libslic3r/PrintConfig.cpp:1879 msgid "XY separation between an object and its support" msgstr "XY面でのサポートとモデルの隙間" -#: src/libslic3r/PrintConfig.cpp:1795 +#: src/libslic3r/PrintConfig.cpp:1881 msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width." msgstr "レイヤー内のオブジェクトとサポート間の隙間。 パーセンテージ(たとえば、50%)で表された場合、最外周の射出幅から計算されます。" -#: src/libslic3r/PrintConfig.cpp:2174 +#: src/libslic3r/PrintConfig.cpp:2275 msgid "XY Size Compensation" msgstr "XYサイズ補正" -#: src/libslic3r/PrintConfig.cpp:2131 +#: src/libslic3r/PrintConfig.cpp:2232 msgid "Y coordinate of the left front corner of a wipe tower" msgstr "ワイプタワー前面左端のY座標" -#: src/slic3r/GUI/Plater.cpp:992 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "はい" -#: src/libslic3r/PrintConfig.cpp:1252 +#: src/libslic3r/PrintConfig.cpp:1317 msgid "You can put here your personal notes. This text will be added to the G-code header comments." msgstr "ここにメモを書いておくことができます。 このテキストは、Gコードヘッダーのコメントに追加されます。" -#: src/libslic3r/PrintConfig.cpp:557 +#: src/libslic3r/PrintConfig.cpp:589 msgid "You can put your notes regarding the filament here." msgstr "フィラメントに対してノートをここで書けます。" -#: src/libslic3r/PrintConfig.cpp:1403 +#: src/libslic3r/PrintConfig.cpp:1473 msgid "You can put your notes regarding the printer here." msgstr "プリンタに関するメモをここに入力できます。" -#: src/libslic3r/PrintConfig.cpp:2332 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "SLAプリント材料に関するメモをここに記入できます。" -#: src/libslic3r/PrintConfig.cpp:324 +#: src/libslic3r/PrintConfig.cpp:360 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "ベッドとの密着力を損なわないよう、ファンをオフにする最初のレイヤーの数が設定できます。" -#: src/libslic3r/PrintConfig.cpp:1295 +#: src/libslic3r/PrintConfig.cpp:1364 msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "このテンプレート内では、すべての構成オプションを変数として使用できます。例:[layer_height]、[fill_density]など。[timestamp]、[year]、[month]、[day]、[hour]、[minute]、[second]、[version]、[input_filename]、[input_filename_base]も使用できます。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2538 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "オブジェクトの最後のソリッドパーツのタイプを変更することはできません。" -#: src/slic3r/GUI/Plater.cpp:2243 -msgid "You can't load SLA project if there is at least one multi-part object on the bed" -msgstr "プリント領域にマルチパートオブジェクトがある場合、SLAプロジェクトをロードできません" - -#: src/slic3r/GUI/Plater.cpp:1746 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2390 +#, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "オブジェクトの1つまたはいくつかはマルチパートであるため、%sからオブジェクトを追加できません" -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:565 +#: src/slic3r/GUI/Plater.cpp:2311 +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "複数のパーツで構成されたオブジェクトを使用してSLAプロジェクトをベッドにロードすることはできません。" + +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" msgstr "複数のオブジェクト/パーツの選択で軸別のスケールモードを使用することはできません" -#: src/slic3r/GUI/ConfigWizard.cpp:1637 +#: src/slic3r/GUI/ConfigWizard.cpp:1760 msgid "You have to select at least one filament for selected printers" msgstr "選択したプリンターに対して少なくとも1つのフィラメントを選択する必要があります" -#: src/slic3r/GUI/ConfigWizard.cpp:1643 +#: src/slic3r/GUI/ConfigWizard.cpp:1771 msgid "You have to select at least one material for selected printers" msgstr "選択したプリンターに対して少なくとも1つの材料を選択する必要があります" -#: src/slic3r/GUI/GUI_App.cpp:300 +#: src/slic3r/GUI/GLCanvas3DManager.cpp:287 msgid "You may need to update your graphics card driver." msgstr "グラフィックカードドライバを更新する必要がある場合があります。" -#: src/slic3r/GUI/Preferences.cpp:130 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "You must install a configuration update." +msgstr "構成の更新をインストールする必要があります。" + +#: src/slic3r/GUI/Preferences.cpp:172 +#, c-format msgid "You need to restart %s to make the changes effective." msgstr "変更を有効にするには、%sを再起動する必要があります。" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2415 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 +#, c-format msgid "You started your selection with %s Item." msgstr "%sアイテムで選択を開始しました。" -#: src/slic3r/GUI/MainFrame.cpp:772 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 +msgid "Your current changes will delete all saved color changes." +msgstr "現在の変更により、保存されている全ての色の変更が削除されます。" + +#: src/slic3r/GUI/DoubleSlider.cpp:1923 +msgid "Your current changes will delete all saved extruder (tool) changes." +msgstr "現在の変更により、保存されているすべてのエクストルーダー(ツール)の変更が削除されます。" + +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "ファイルが修復されました。" -#: src/slic3r/GUI/Plater.cpp:1874 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "オブジェクトが大きすぎて、プリントベッドに収まるように自動縮小することができません。" -#: src/libslic3r/PrintConfig.cpp:2184 +#: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" msgstr "Zオフセット" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." -msgstr "最初のレイヤーのゼロの高さは無効です。\n \n最初のレイヤーの高さは0.01にリセットされます。" +msgid "" +"Zero first layer height is not valid.\n" +"\n" +"The first layer height will be reset to 0.01." +msgstr "" +"最初のレイヤーのゼロの高さは無効です。\n" +" \n" +"最初のレイヤーの高さは0.01にリセットされます。" #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." -msgstr "レイヤーの高さゼロは無効です。\n \nレイヤーの高さは0.01にリセットされます。" +msgid "" +"Zero layer height is not valid.\n" +"\n" +"The layer height will be reset to 0.01." +msgstr "" +"レイヤーの高さゼロは無効です。\n" +" \n" +"レイヤーの高さは0.01にリセットされます。" -#: src/libslic3r/PrintConfig.cpp:2416 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "ジグザグ" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 +msgid "Zoom" +msgstr "ズーム" + +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 msgid "Zoom in" msgstr "ズームイン" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 msgid "Zoom out" msgstr "縮小" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -msgid "Zoom to all objects in scene, if none selected" -msgstr "選択されていない場合、シーン内のすべてのオブジェクトがズームします" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 msgid "Zoom to Bed" msgstr "ベッドの大きさにズーム" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "Zoom to selected object" -msgstr "選択したオブジェクトにズーム" +#: src/slic3r/GUI/KBShortcutsDialog.cpp:182 +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"オブジェクトが選択されていない場合、シーン内のすべてのオブジェクト\n" +"もしくは選択されているオブジェクトをズーム表示します" -#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733 -#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580 -#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962 -#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 +#: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" diff --git a/resources/localization/pl/PrusaSlicer.mo b/resources/localization/pl/PrusaSlicer.mo index 0bb524bd9aa02b892ec2a42c9824f99827ddd7f5..6b70e132bdf3fa6a1e62ca448b43de17e860acc3 100644 GIT binary patch delta 48181 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%0AF3f^Q58-`jr2lf&AHA-0;5RSh1%!E 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 delta 50006 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

$3;}nucH?0ThtB1c9{k>LEWG?s$;`Y9hqlc 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 naHNVomPgH=|Dv9oHI=t= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || n%10 == 1 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 12 && n%100 <= 14)) ? 2 : 3);\n" -"X-Generator: PhraseApp (phraseapp.com)\n" +"X-Generator: Poedit 2.2.1\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" #: src/slic3r/GUI/MainFrame.cpp:66 msgid " - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/releases" msgstr " - Pamiętaj, aby sprawdzać aktualizacje na http://github.com/prusa3d/PrusaSlicer/releases" -#: src/slic3r/GUI/MainFrame.cpp:874 +#: src/slic3r/GUI/MainFrame.cpp:872 msgid " was successfully sliced." msgstr " został pomyślnie pocięty." -#: src/libslic3r/PrintConfig.cpp:205 src/libslic3r/PrintConfig.cpp:792 +#: src/libslic3r/PrintConfig.cpp:215 src/libslic3r/PrintConfig.cpp:792 #: src/libslic3r/PrintConfig.cpp:1219 src/libslic3r/PrintConfig.cpp:1282 #: src/libslic3r/PrintConfig.cpp:1532 src/libslic3r/PrintConfig.cpp:2425 -#: src/libslic3r/PrintConfig.cpp:2758 +#: src/libslic3r/PrintConfig.cpp:2767 msgid "%" msgstr "%" -#: src/slic3r/GUI/GLCanvas3D.cpp:968 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:963 +#, c-format msgid "%.2f - %.2f mm" msgstr "%.2f - %.2f mm" #. TRN Remove/Delete -#: src/slic3r/GUI/Tab.cpp:3110 +#: src/slic3r/GUI/Tab.cpp:3126 msgid "%1% Preset" msgstr "%1% Zestaw ustawień" -#: src/slic3r/GUI/Plater.cpp:4413 +#: src/slic3r/GUI/Plater.cpp:4400 msgid "%1% printer was active at the time the target Undo / Redo snapshot was taken. Switching to %1% printer requires reloading of %1% presets." msgstr "Drukarka %1% była aktywna podczas Cofnięcia / Powtórzenia zrzutu. Zmiana drukarki na %1% wymaga załadowania zestawów ustawień %1%." -#: src/libslic3r/Print.cpp:1370 +#: src/libslic3r/Print.cpp:1374 msgid "%1%=%2% mm is too low to be printable at a layer height %3% mm" msgstr "%1%=%2% mm to zbyt mała wartość, żeby była możliwa do wydrukowania na wysokości warstwy %3% mm" #: src/slic3r/GUI/PresetHints.cpp:229 -#, possible-c-format +#, c-format msgid "%3.2f mm³/s at filament speed %3.2f mm/s." msgstr "%3.2f mm³/s z prędkością filamentu %3.2f mm/s." -#: src/slic3r/GUI/Plater.cpp:1149 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1152 +#, c-format msgid "%d (%d shells)" msgstr "%d (%d obrysów)" -#: src/slic3r/GUI/Plater.cpp:1157 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1160 +#, c-format msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges" msgstr "%d nieprawidłowych powierzchni, %d naprawionych krawędzi, %d powierzchni usunięto, %d powierzchni dodano, %d powierzchni odwrócono, %d odwróconych krawędzi" -#: src/slic3r/GUI/PresetHints.cpp:269 -#, possible-c-format +#: src/slic3r/GUI/PresetHints.cpp:270 +#, c-format msgid "%d lines: %.2f mm" msgstr "%d linii: %.2f mm" -#: src/slic3r/GUI/MainFrame.cpp:1029 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:1027 +#, c-format msgid "%d presets successfully imported." msgstr "pomyślnie zaimportowano %d zestawów ustawień." -#: src/slic3r/GUI/MainFrame.cpp:694 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:692 +#, c-format msgid "%s &Website" msgstr "Strona &WWW %s" #: src/slic3r/GUI/UpdateDialogs.cpp:211 -#, possible-c-format +#, c-format msgid "%s configuration is incompatible" msgstr "Konfiguracja niekompatybilna: %s" -#: src/slic3r/GUI/Field.cpp:170 -#, possible-c-format +#: src/slic3r/GUI/Field.cpp:175 +#, c-format msgid "%s doesn't support percentage" msgstr "%s nie może być wartością procentową" #: src/slic3r/GUI/MsgDialog.cpp:73 -#, possible-c-format +#, c-format msgid "%s error" msgstr "błąd %s" #: src/slic3r/GUI/ConfigWizard.cpp:481 -#, possible-c-format +#, c-format msgid "%s Family" msgstr "Rodzina %s" #: src/slic3r/GUI/MsgDialog.cpp:74 -#, possible-c-format +#, c-format msgid "%s has encountered an error" msgstr "%s napotkał błąd" #: src/slic3r/GUI/GUI_App.cpp:138 -#, possible-c-format -msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n\nThe application will now terminate." -msgstr "Błąd %s . Prawdopodobnie wystąpił przez brak pamięci. Jeśli masz pewność, że ilość RAMu jest wystarczająca, to może to być bug, a którego zgłoszenie będziemy wdzięczni.\n\nAplikacja zostanie zamknięta." +#, c-format +msgid "" +"%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it.\n" +"\n" +"The application will now terminate." +msgstr "" +"Błąd %s . Prawdopodobnie wystąpił przez brak pamięci. Jeśli masz pewność, że ilość RAMu jest wystarczająca, to może to być bug, a którego zgłoszenie będziemy wdzięczni.\n" +"\n" +"Aplikacja zostanie zamknięta." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:214 -#, possible-c-format +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:222 +#, c-format msgid "%s has encountered an error. It was likely caused by running out of memory. If you are sure you have enough RAM on your system, this may also be a bug and we would be glad if you reported it." msgstr "Błąd %s . Prawdopodobnie wystąpił przez brak pamięci. Jeśli masz pewność, że ilość RAMu jest wystarczająca, to może to być bug, a którego zgłoszenie będziemy wdzięczni." #: src/slic3r/GUI/UpdateDialogs.cpp:308 -#, possible-c-format -msgid "%s has no configuration updates aviable." -msgstr "Brak dostępnych aktualizacji konfiguracji dla %s" +#, c-format +msgid "%s has no configuration updates available." +msgstr "%s nie ma dostępnych aktualizacji konfiguracji." #: src/slic3r/GUI/UpdateDialogs.cpp:148 src/slic3r/GUI/UpdateDialogs.cpp:210 -#, possible-c-format +#, c-format msgid "%s incompatibility" msgstr "niekompatybilność: %s" #: src/slic3r/GUI/UpdateDialogs.cpp:270 -#, possible-c-format -msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." -msgstr "%s używa teraz zaktualizowanej struktury konfiguracji.\n\nZostały wprowadzone tzw. \"Ustawienia systemowe\", w których zachowane są domyślne ustawienia dla wielu drukarek. Te ustawienia nie mogą być modyfikowane, ale użytkownicy mogą tworzyć własne profile, bazujące na Ustawieniach systemowych.\nZestaw ustawień może dziedziczyć wartości ustawień z profilu źródłowego lub nadpisać je własnymi.\n\nKontynuuj do %s , które pozwoli ustawić nowe Zestawy i wybrać automatyczną aktualizację wbudowanych Zestawów." +#, c-format +msgid "" +"%s now uses an updated configuration structure.\n" +"\n" +"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n" +"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n" +"\n" +"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates." +msgstr "" +"%s używa teraz zaktualizowanej struktury konfiguracji.\n" +"\n" +"Zostały wprowadzone tzw. \"Ustawienia systemowe\", w których zachowane są domyślne ustawienia dla wielu drukarek. Te ustawienia nie mogą być modyfikowane, ale użytkownicy mogą tworzyć własne profile, bazujące na Ustawieniach systemowych.\n" +"Zestaw ustawień może dziedziczyć wartości ustawień z profilu źródłowego lub nadpisać je własnymi.\n" +"\n" +"Kontynuuj do %s , które pozwoli ustawić nowe Zestawy i wybrać automatyczną aktualizację wbudowanych Zestawów." #: src/slic3r/GUI/GUI_App.cpp:820 -#, possible-c-format +#, c-format msgid "%s View Mode" msgstr "Tryb %s" #: src/slic3r/GUI/UpdateDialogs.cpp:151 -#, possible-c-format -msgid "%s will now start updates. Otherwise it won't be able to start.\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "%s rozpocznie aktualizację. W innym przypadku nie będzie możliwe uruchomienie.\n\nWeź pod uwagę, że najpierw zostanie wykonany całkowity zrzut konfiguracji. Może być wczytany w dowolnym momencie, jeśli okazałoby się, że nowa wersja powoduje problemy.\n\nZaktualizowane zestawy ustawień:" +#, c-format +msgid "" +"%s will now start updates. Otherwise it won't be able to start.\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"%s rozpocznie aktualizację. W innym przypadku nie będzie możliwe uruchomienie.\n" +"\n" +"Weź pod uwagę, że najpierw zostanie wykonany całkowity zrzut konfiguracji. Może być wczytany w dowolnym momencie, jeśli okazałoby się, że nowa wersja powoduje problemy.\n" +"\n" +"Zaktualizowane zestawy ustawień:" -#: src/slic3r/GUI/MainFrame.cpp:707 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:705 +#, c-format msgid "&About %s" msgstr "&O %s" @@ -141,7 +174,7 @@ msgstr "&Konfiguracja" #: src/slic3r/GUI/GUI_App.cpp:800 msgid "&Configuration Snapshots" -msgstr "Zrzuty &Konfiguracji" +msgstr "Zrzuty Konfigura&cji" #: src/slic3r/GUI/MainFrame.cpp:588 msgid "&Copy" @@ -149,9 +182,9 @@ msgstr "&Kopiuj" #: src/slic3r/GUI/MainFrame.cpp:572 msgid "&Delete selected" -msgstr "&Usuń zaznaczone" +msgstr "Usuń &zaznaczone" -#: src/slic3r/GUI/MainFrame.cpp:724 +#: src/slic3r/GUI/MainFrame.cpp:722 msgid "&Edit" msgstr "&Edytuj" @@ -159,19 +192,19 @@ msgstr "&Edytuj" msgid "&Export" msgstr "&Eksport" -#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:617 src/slic3r/GUI/MainFrame.cpp:752 msgid "&Filament Settings Tab" msgstr "Ustawienia &Filamentu" -#: src/slic3r/GUI/MainFrame.cpp:723 +#: src/slic3r/GUI/MainFrame.cpp:721 msgid "&File" msgstr "&Plik" -#: src/slic3r/GUI/ConfigWizard.cpp:1984 +#: src/slic3r/GUI/ConfigWizard.cpp:1981 msgid "&Finish" msgstr "&Zakończ" -#: src/slic3r/GUI/MainFrame.cpp:729 +#: src/slic3r/GUI/MainFrame.cpp:727 msgid "&Help" msgstr "Pomo&c" @@ -187,7 +220,7 @@ msgstr "Język ap&likacji" msgid "&New Project" msgstr "&Nowy Projekt" -#: src/slic3r/GUI/ConfigWizard.cpp:1983 +#: src/slic3r/GUI/ConfigWizard.cpp:1980 msgid "&Next >" msgstr "&Dalej>" @@ -201,7 +234,7 @@ msgstr "Wkle&j" #: src/slic3r/GUI/MainFrame.cpp:606 msgid "&Plater Tab" -msgstr "Podgląd Stoł&u" +msgstr "&Podgląd Stołu" #: src/slic3r/GUI/GUI_App.cpp:804 msgid "&Preferences" @@ -209,7 +242,7 @@ msgstr "&Preferencje" #: src/slic3r/GUI/MainFrame.cpp:540 msgid "&Quit" -msgstr "&Wyjście" +msgstr "Wyjś&cie" #: src/slic3r/GUI/MainFrame.cpp:583 msgid "&Redo" @@ -217,25 +250,25 @@ msgstr "Powtó&rz" #: src/slic3r/GUI/MainFrame.cpp:536 msgid "&Repair STL file" -msgstr "&Naprawa pliku STL" +msgstr "Nap&rawa pliku STL" #: src/slic3r/GUI/MainFrame.cpp:446 msgid "&Save Project" -msgstr "&Zapisz projekt" +msgstr "Zapi&sz Projekt" #: src/slic3r/GUI/MainFrame.cpp:565 msgid "&Select all" -msgstr "&Zaznacz wszystko" +msgstr "Zaznacz w&szystko" #: src/slic3r/GUI/MainFrame.cpp:580 msgid "&Undo" msgstr "Co&fnij" -#: src/slic3r/GUI/MainFrame.cpp:726 +#: src/slic3r/GUI/MainFrame.cpp:724 msgid "&View" msgstr "&Widok" -#: src/slic3r/GUI/MainFrame.cpp:725 +#: src/slic3r/GUI/MainFrame.cpp:723 msgid "&Window" msgstr "&Okno" @@ -247,7 +280,7 @@ msgstr "(Wszystko)" msgid "(minimum)" msgstr "(minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 msgid "(Re)slice" msgstr "(Ponowne) Cięcie" @@ -255,11 +288,11 @@ msgstr "(Ponowne) Cięcie" msgid "(Re)Slice No&w" msgstr "(Pono&wne) Cięcie" -#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2578 +#: src/libslic3r/PrintConfig.cpp:771 src/libslic3r/PrintConfig.cpp:2587 msgid "(Unknown)" msgstr "(Nieznane)" -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid ") not found." msgstr ") nie znaleziono." @@ -275,7 +308,7 @@ msgstr "0.2 (odłączane)" msgid "3&D" msgstr "3&D" -#: src/slic3r/GUI/Plater.cpp:4108 +#: src/slic3r/GUI/Plater.cpp:4097 msgid "3D editor view" msgstr "Edytowanie 3D" @@ -283,46 +316,46 @@ msgstr "Edytowanie 3D" msgid "3D Honeycomb" msgstr "Plaster miodu 3D" -#: src/slic3r/GUI/Mouse3DController.cpp:291 +#: src/slic3r/GUI/Mouse3DController.cpp:274 msgid "3Dconnexion settings" msgstr "Ustawienia 3Dconnexion" -#: src/slic3r/GUI/Plater.cpp:5068 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5038 +#, c-format msgid "3MF file exported to %s" msgstr "Plik 3MF wyeksportowany do %s" -#: src/slic3r/GUI/ConfigWizard.cpp:1982 +#: src/slic3r/GUI/ConfigWizard.cpp:1979 msgid "< &Back" msgstr "<&Wstecz" -#: src/libslic3r/PrintConfig.cpp:277 +#: src/libslic3r/PrintConfig.cpp:287 msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." msgstr "Wyrażenie logiczne (Boole'owskie) używające wartości konfiguracji aktywnego profilu druku. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny profil jest kompatybilny z aktywnym profilem druku." -#: src/libslic3r/PrintConfig.cpp:262 +#: src/libslic3r/PrintConfig.cpp:272 msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." msgstr "Wyrażenie logiczne (Boole'owskie) używające wartości konfiguracji aktywnego profilu drukarki. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny profil jest kompatybilny z drukarką." -#: src/slic3r/GUI/ConfigWizard.cpp:1035 +#: src/slic3r/GUI/ConfigWizard.cpp:1034 msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS." msgstr "Generalną zasadą jest 160 do 230 °C dla PLA i 215 do 250 °C dla ABS." -#: src/slic3r/GUI/ConfigWizard.cpp:1049 +#: src/slic3r/GUI/ConfigWizard.cpp:1048 msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed." msgstr "Generalną zasadą jest 60 °C dla PLA i 110 °C dla ABS. Ustaw zero jeśli nie masz podgrzewanego stołu." -#: src/slic3r/GUI/GLCanvas3D.cpp:691 +#: src/slic3r/GUI/GLCanvas3D.cpp:686 msgid "A toolpath outside the print area was detected" msgstr "Wykryto ścieżkę narzędzia poza obszarem roboczym" #: src/slic3r/GUI/AboutDialog.cpp:199 -#, possible-c-format +#, c-format msgid "About %s" msgstr "O %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:964 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:959 +#, c-format msgid "above %.2f mm" msgstr "powyżej %.2f mm" @@ -330,11 +363,11 @@ msgstr "powyżej %.2f mm" msgid "Above Z" msgstr "Powyżej Z" -#: src/slic3r/GUI/Tab.cpp:1166 +#: src/slic3r/GUI/Tab.cpp:1164 msgid "Acceleration control (advanced)" msgstr "Ustawienia przyspieszeń (zaawansowane)" -#: src/libslic3r/PrintConfig.cpp:2916 +#: src/libslic3r/PrintConfig.cpp:2925 msgid "Accuracy" msgstr "Dokładność" @@ -346,19 +379,19 @@ msgstr "Aktywacja" msgid "Active" msgstr "Aktywny" -#: src/slic3r/GUI/DoubleSlider.cpp:1103 +#: src/slic3r/GUI/DoubleSlider.cpp:1135 src/slic3r/GUI/GUI_ObjectList.cpp:1705 msgid "active" msgstr "aktywny" -#: src/slic3r/GUI/GLCanvas3D.cpp:272 +#: src/slic3r/GUI/GLCanvas3D.cpp:267 msgid "Adaptive" msgstr "Adaptacyjny" -#: src/slic3r/GUI/Tab.cpp:243 +#: src/slic3r/GUI/Tab.cpp:241 msgid "Add a new printer" msgstr "Dodaj nową drukarkę" -#: src/libslic3r/PrintConfig.cpp:2773 +#: src/libslic3r/PrintConfig.cpp:2782 msgid "Add a pad underneath the supported model" msgstr "Dodaj podkładkę pod podporami modelu" @@ -366,47 +399,47 @@ msgstr "Dodaj podkładkę pod podporami modelu" msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove." msgstr "Dodaj osłonę (pojedynczą linię) wokół podpory bazowej. Sprawi to, że podpory będą stabilniejsze, ale też trudniejsze do usunięcia." -#: src/slic3r/GUI/DoubleSlider.cpp:989 +#: src/slic3r/GUI/DoubleSlider.cpp:991 msgid "Add another code - Ctrl + Left click" msgstr "Dodaj kolejny kod - Ctrl + kliknij lewym przyciskiem" -#: src/slic3r/GUI/DoubleSlider.cpp:990 +#: src/slic3r/GUI/DoubleSlider.cpp:992 msgid "Add another code - Right click" msgstr "Dodaj kolejny kod - kliknij prawym przyciskiem" -#: src/slic3r/GUI/DoubleSlider.cpp:1449 +#: src/slic3r/GUI/DoubleSlider.cpp:1477 msgid "Add color change" msgstr "Dodaj zmianę koloru" -#: src/slic3r/GUI/DoubleSlider.cpp:1148 +#: src/slic3r/GUI/DoubleSlider.cpp:1180 msgid "Add color change (%1%) for:" msgstr "Dodaj zmianę koloru (%1%) dla:" -#: src/slic3r/GUI/DoubleSlider.cpp:959 +#: src/slic3r/GUI/DoubleSlider.cpp:988 msgid "Add color change - Left click" msgstr "Dodaj zmianę koloru - kliknij lewym przyciskiem" -#: src/slic3r/GUI/DoubleSlider.cpp:957 +#: src/slic3r/GUI/DoubleSlider.cpp:986 msgid "Add color change - Left click for predefined color or Shift + Left click for custom color selection" -msgstr "Dodaj zmianę koloru - kliknij lewym przyciskiem dla predefiniowanego koloru lub wciśnij Shift + lewy przycisk dla wyboru własnego koloru." +msgstr "Dodaj zmianę koloru - kliknij lewym przyciskiem dla predefiniowanego koloru lub wciśnij Shift + lewy przycisk dla wyboru własnego koloru" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:201 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:218 msgid "Add color change marker for current layer" msgstr "Dodaj punkt zmiany filamentu na obecnej warstwie" -#: src/slic3r/GUI/DoubleSlider.cpp:1462 +#: src/slic3r/GUI/DoubleSlider.cpp:1490 msgid "Add custom G-code" msgstr "Dodaj własny G-code" -#: src/slic3r/GUI/GLCanvas3D.cpp:245 +#: src/slic3r/GUI/GLCanvas3D.cpp:240 msgid "Add detail" msgstr "Wyższa szczegółowość" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:413 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:421 msgid "Add drainage hole" msgstr "Dodaj otwór odpływowy" -#: src/slic3r/GUI/DoubleSlider.cpp:955 +#: src/slic3r/GUI/DoubleSlider.cpp:984 msgid "Add extruder change - Left click" msgstr "Dodaj zmianę ekstrudera - kliknij lewym przyciskiem" @@ -414,30 +447,30 @@ msgstr "Dodaj zmianę ekstrudera - kliknij lewym przyciskiem" msgid "Add extruder to sequence" msgstr "Dodaj ekstruder do sekwencji" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1993 msgid "Add Generic Subobject" msgstr "Dodaj Standardowy Model Podrzędny" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2872 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2901 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2919 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2896 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2925 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2943 msgid "Add Height Range" msgstr "Dodaj zakres wysokości" -#: src/slic3r/GUI/GLCanvas3D.cpp:4575 src/slic3r/GUI/Plater.cpp:3797 -#: src/slic3r/GUI/Plater.cpp:3809 src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/GLCanvas3D.cpp:4526 src/slic3r/GUI/Plater.cpp:3788 +#: src/slic3r/GUI/Plater.cpp:3800 src/slic3r/GUI/Plater.cpp:3940 msgid "Add instance" -msgstr "Dodaj kopię" +msgstr "Dodaj instancję" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:126 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 msgid "Add Instance of the selected object" -msgstr "Dodaj kopię wybranego modelu" +msgstr "Dodaj instancję wybranego modelu" #: src/slic3r/GUI/GUI_ObjectLayers.cpp:162 msgid "Add layer range" msgstr "Dodaj zakres warstw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2304 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2328 msgid "Add Layers" msgstr "Dodaj Warstwy" @@ -450,56 +483,56 @@ msgstr "Dodaj modyfikator" msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported." msgstr "Dodaj więcej obrysów, aby uniknąć przerw przy pochyłych ścianach. Slic3r będzie dodawał tyle obrysów, ile jest potrzebne aby podeprzeć co najmniej 70% grubości ściany kolejnej warstwy." -#: src/slic3r/GUI/Plater.cpp:3949 +#: src/slic3r/GUI/Plater.cpp:3940 msgid "Add one more instance of the selected object" -msgstr "Dodaj kolejną kopię wybranego modelu" +msgstr "Dodaj kolejną instancję wybranego modelu" #: src/slic3r/GUI/GUI_ObjectList.cpp:51 msgid "Add part" msgstr "Dodaj część" -#: src/slic3r/GUI/DoubleSlider.cpp:1459 +#: src/slic3r/GUI/DoubleSlider.cpp:1487 msgid "Add pause print" msgstr "Dodaj pauzę podczas druku" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 msgid "Add point" msgstr "Dodaj punkt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 msgid "Add point to selection" msgstr "Dodaj punkt do zaznaczenia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1507 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1509 msgid "Add settings" msgstr "Dodaj ustawienia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1384 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 msgid "Add Settings Bundle for Height range" msgstr "Dodaj Paczkę Ustawień dla Zakresu Wysokości" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1386 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1388 msgid "Add Settings Bundle for Object" msgstr "Dodaj Paczkę Ustawień dla Modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1385 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1387 msgid "Add Settings Bundle for Sub-object" msgstr "Dodaj Paczkę Ustawień dla Modelu Podrzędnego" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1312 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 msgid "Add Settings for Layers" msgstr "Dodaj Ustawienia dla Warstw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1314 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1316 msgid "Add Settings for Object" msgstr "Dodaj Ustawienia dla Modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1313 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1315 msgid "Add Settings for Sub-object" msgstr "Dodaj Ustawienia dla Modelu Podrzędnego" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1767 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2025 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1793 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2051 msgid "Add Shape" msgstr "Dodaj kształt" @@ -515,27 +548,27 @@ msgstr "Dodaj blokadę podpór" msgid "Add support enforcer" msgstr "Dodaj wymuszenie podpór" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:479 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:494 msgid "Add support point" msgstr "Dodaj punkt podpory" -#: src/slic3r/GUI/GLCanvas3D.cpp:4516 +#: src/slic3r/GUI/GLCanvas3D.cpp:4467 msgid "Add..." msgstr "Dodaj..." -#: src/slic3r/GUI/PresetBundle.cpp:1697 +#: src/slic3r/GUI/PresetBundle.cpp:1704 msgid "Add/Remove filaments" msgstr "Dodaj/usuń filamenty" -#: src/slic3r/GUI/Preset.cpp:1151 +#: src/slic3r/GUI/Preset.cpp:1201 msgid "Add/Remove materials" msgstr "Dodaj/usuń materiały" -#: src/slic3r/GUI/Preset.cpp:1153 +#: src/slic3r/GUI/Preset.cpp:1203 msgid "Add/Remove printers" msgstr "Dodaj/usuń drukarki" -#: src/slic3r/GUI/Tab.cpp:972 +#: src/slic3r/GUI/Tab.cpp:970 msgid "Additional information:" msgstr "Dodatkowe informacje:" @@ -543,7 +576,7 @@ msgstr "Dodatkowe informacje:" msgid "Additional Settings" msgstr "Ustawienia Dodatkowe" -#: src/slic3r/GUI/ConfigWizard.cpp:790 +#: src/slic3r/GUI/ConfigWizard.cpp:791 msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied." msgstr "Dodatkowa kopia zrzutu całej konfiguracji jest tworzona przed zainstalowaniem aktualizacji." @@ -551,18 +584,19 @@ msgstr "Dodatkowa kopia zrzutu całej konfiguracji jest tworzona przed zainstalo msgid "Address" msgstr "Adres" -#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:102 -#: src/slic3r/GUI/GUI_ObjectList.cpp:620 src/slic3r/GUI/Tab.cpp:1089 -#: src/slic3r/GUI/Tab.cpp:1104 src/slic3r/GUI/Tab.cpp:1203 -#: src/slic3r/GUI/Tab.cpp:1206 src/slic3r/GUI/Tab.cpp:1472 -#: src/slic3r/GUI/Tab.cpp:1965 src/slic3r/GUI/Tab.cpp:3646 +#: src/slic3r/GUI/GUI_App.cpp:814 src/slic3r/GUI/GUI_ObjectList.cpp:104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:622 src/slic3r/GUI/Tab.cpp:1087 +#: src/slic3r/GUI/Tab.cpp:1102 src/slic3r/GUI/Tab.cpp:1201 +#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1470 +#: src/slic3r/GUI/Tab.cpp:1967 src/slic3r/GUI/Tab.cpp:3661 #: src/slic3r/GUI/wxExtensions.cpp:754 src/libslic3r/PrintConfig.cpp:88 -#: src/libslic3r/PrintConfig.cpp:213 src/libslic3r/PrintConfig.cpp:376 +#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:223 #: src/libslic3r/PrintConfig.cpp:1037 src/libslic3r/PrintConfig.cpp:2276 +#: src/libslic3r/PrintConfig.cpp:2448 msgid "Advanced" msgstr "Zaawansowany" -#: src/slic3r/GUI/ConfigWizard.cpp:822 +#: src/slic3r/GUI/ConfigWizard.cpp:821 msgid "Advanced mode" msgstr "Tryb Zaawansowany" @@ -578,15 +612,15 @@ msgstr "Zaawansowane: log wyjściowy" msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." msgstr "Po zmianie narzędzia (filamentu), dokładna pozycja końcówki nowo załadowanego filamentu nie jest znana i najprawdopodobniej ciśnienie w ekstruderze nie jest jeszcze ustabilizowane. Przed czyszczeniem dyszy na wypełnieniu lub zbędnym modelu, Slic3r spowoduje wytłoczenie tej ilości filamentu na wieży czyszczącej, aby wydrukować dobre wypełnienie lub zbędny model." -#: src/slic3r/GUI/Tab.cpp:1992 src/libslic3r/PrintConfig.cpp:1080 +#: src/slic3r/GUI/Tab.cpp:1994 src/libslic3r/PrintConfig.cpp:1080 msgid "After layer change G-code" msgstr "G-code wykonywany po zmianie warstwy" -#: src/libslic3r/PrintConfig.cpp:3383 +#: src/libslic3r/PrintConfig.cpp:3398 msgid "Align the model to the given point." msgstr "Wyrównaj model z danym punktem." -#: src/libslic3r/PrintConfig.cpp:3382 +#: src/libslic3r/PrintConfig.cpp:3397 msgid "Align XY" msgstr "Wyrównaj XY" @@ -595,19 +629,15 @@ msgid "Aligned" msgstr "Wyrównany" #: src/slic3r/GUI/ConfigWizard.cpp:290 src/slic3r/GUI/ConfigWizard.cpp:573 -#: src/slic3r/GUI/Tab.cpp:3158 +#: src/slic3r/GUI/Tab.cpp:3174 msgid "All" msgstr "Wszystko" -#: src/libslic3r/Print.cpp:1215 +#: src/libslic3r/Print.cpp:1219 msgid "All objects are outside of the print volume." msgstr "Wszystkie modele znajdują się poza obszarem roboczym." -#: src/slic3r/GUI/Plater.cpp:3298 -msgid "All objects will be removed, continue ?" -msgstr "Wszystkie modele zostaną usunięte. Kontynuować?" - -#: src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "All objects will be removed, continue?" msgstr "Wszystkie modele zostaną usunięte. Kontynuować?" @@ -619,15 +649,15 @@ msgstr "Wszystkie podstawowe" msgid "allocation failed" msgstr "niepowodzenie alokacji" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Along X axis" msgstr "Wzdłuż osi X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Along Y axis" msgstr "Wzdłuż osi Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Along Z axis" msgstr "Wzdłuż osi Z" @@ -635,24 +665,28 @@ msgstr "Wzdłuż osi Z" msgid "Alternate nozzles:" msgstr "Inne rozmiary dysz:" -#: src/slic3r/GUI/Plater.cpp:5022 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5002 +#, c-format msgid "AMF file exported to %s" msgstr "Plik AMF wyeksportowany do %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:695 -msgid "An object outside the print area was detected\nResolve the current problem to continue slicing" -msgstr "Wykryto model poza obszarem roboczym\nUsuń problem, aby kontynuować cięcie" - #: src/slic3r/GUI/GLCanvas3D.cpp:690 +msgid "" +"An object outside the print area was detected\n" +"Resolve the current problem to continue slicing" +msgstr "" +"Wykryto model poza obszarem roboczym\n" +"Usuń problem, aby kontynuować cięcie" + +#: src/slic3r/GUI/GLCanvas3D.cpp:685 msgid "An object outside the print area was detected" msgstr "Wykryto model poza obszarem roboczym" -#: src/slic3r/GUI/Tab.cpp:2927 +#: src/slic3r/GUI/Tab.cpp:2943 msgid "and it has the following unsaved changes:" msgstr "i ma następujące niezapisane zmiany:" -#: src/slic3r/GUI/Plater.cpp:3154 +#: src/slic3r/GUI/Plater.cpp:3170 msgid "Another export job is currently running." msgstr "W tej chwili trwa inny proces eksportu." @@ -661,20 +695,20 @@ msgstr "W tej chwili trwa inny proces eksportu." msgid "Any arrow" msgstr "Jakakolwiek strzałka" -#: src/slic3r/GUI/Tab.cpp:967 +#: src/slic3r/GUI/Tab.cpp:965 msgid "Any modifications should be saved as a new preset inherited from this one." msgstr "Każda modyfikacja powinna zostać zapisana jako nowy zestaw ustawień dziedziczony z obecnego." #: src/libslic3r/PrintConfig.cpp:104 msgid "API Key / Password" -msgstr "Klucz API / Hasło" +msgstr "Klucz API / hasło" #: src/slic3r/GUI/GUI_App.cpp:810 msgid "Application preferences" msgstr "Preferencje aplikacji" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:52 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1353 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1374 msgid "Apply changes" msgstr "Zastosuj zmiany" @@ -691,19 +725,23 @@ msgid "archive is too large" msgstr "archiwum jest zbyt duże" #. TRN remove/delete -#: src/slic3r/GUI/Tab.cpp:3107 +#: src/slic3r/GUI/Tab.cpp:3123 msgid "Are you sure you want to %1% the selected preset?" msgstr "Czy na pewno chcesz %1% ten zestaw ustawień?" #: src/slic3r/GUI/FirmwareDialog.cpp:902 -msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!" -msgstr "Czy na pewno chcesz przerwać flashowanie firmware?\nMoże to spowodować nieprzewidziane problemy z drukarką!" +msgid "" +"Are you sure you want to cancel firmware flashing?\n" +"This could leave your printer in an unusable state!" +msgstr "" +"Czy na pewno chcesz przerwać flashowanie firmware?\n" +"Może to spowodować nieprzewidziane problemy z drukarką!" -#: src/slic3r/GUI/DoubleSlider.cpp:1876 src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1903 src/slic3r/GUI/DoubleSlider.cpp:1924 msgid "Are you sure you want to continue?" msgstr "Czy na pewno chcesz kontynuować?" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1248 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1269 msgid "Are you sure you want to do it?" msgstr "Czy na pewno chcesz to zrobić?" @@ -711,50 +749,54 @@ msgstr "Czy na pewno chcesz to zrobić?" msgid "Area fill" msgstr "Wypełnienie obszaru" -#: src/slic3r/GUI/Plater.cpp:638 +#: src/slic3r/GUI/Plater.cpp:641 msgid "Around object" msgstr "Wokół modelu" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:137 -#: src/slic3r/GUI/Plater.cpp:2738 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:157 +#: src/slic3r/GUI/Plater.cpp:2754 msgid "Arrange" msgstr "Rozmieść" -#: src/slic3r/GUI/GLCanvas3D.cpp:4542 src/slic3r/GUI/KBShortcutsDialog.cpp:138 +#: src/slic3r/GUI/GLCanvas3D.cpp:4493 src/slic3r/GUI/KBShortcutsDialog.cpp:158 msgid "Arrange selection" msgstr "Rozmieść zaznaczone" -#: src/libslic3r/PrintConfig.cpp:3428 +#: src/libslic3r/PrintConfig.cpp:3443 msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." msgstr "Ułóż modele na stole i połącz je w jedną grupę, aby zastosować ustawienia do wszystkich na raz." -#: src/slic3r/GUI/Plater.cpp:2797 +#: src/slic3r/GUI/Plater.cpp:2813 msgid "Arranging" msgstr "Układanie" -#: src/slic3r/GUI/Plater.cpp:2825 +#: src/slic3r/GUI/Plater.cpp:2841 msgid "Arranging canceled." msgstr "Układanie anulowane." -#: src/slic3r/GUI/Plater.cpp:2826 +#: src/slic3r/GUI/Plater.cpp:2842 msgid "Arranging done." msgstr "Układanie zakończone." -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:165 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Arrow Down" msgstr "Strzałka w dół" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:166 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Arrow Left" msgstr "Strzałka w lewo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:167 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Arrow Right" msgstr "Strzałka w prawo" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Arrow Up" msgstr "Strzałka w górę" @@ -762,8 +804,8 @@ msgstr "Strzałka w górę" msgid "As a workaround, you may run PrusaSlicer with a software rendered 3D graphics by running prusa-slicer.exe with the --sw_renderer parameter." msgstr "Jako obejście, możesz uruchomić PrusaSlicer z grafiką 3D renderowaną przez oprogramowanie, dodając parametr --sw_renderer do prusa-slicer.exe." -#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2297 -#: src/slic3r/GUI/Tab.cpp:2944 +#: src/slic3r/GUI/GUI_App.cpp:1086 src/slic3r/GUI/Plater.cpp:2313 +#: src/slic3r/GUI/Tab.cpp:2960 msgid "Attention!" msgstr "Uwaga!" @@ -776,17 +818,17 @@ msgid "Auto-center parts" msgstr "Rozmieść modele automatycznie" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:56 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1356 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1377 msgid "Auto-generate points" msgstr "Generuj punkty automatycznie" -#: src/slic3r/GUI/Plater.cpp:1154 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:1157 +#, c-format msgid "Auto-repaired (%d errors)" msgstr "Naprawiono automatycznie (%d błędów)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:337 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:339 +#, c-format msgid "Auto-repaired (%d errors):" msgstr "Naprawiono automatycznie (%d błędów):" @@ -794,19 +836,19 @@ msgstr "Naprawiono automatycznie (%d błędów):" msgid "Autodetected" msgstr "Wykryto automatycznie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1252 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1273 msgid "Autogenerate support points" msgstr "Automatycznie generuj punkty podpór" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1247 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1268 msgid "Autogeneration will erase all manually edited points." msgstr "Generowanie automatyczne usunie wszystkie ręcznie ustawione punkty." -#: src/slic3r/GUI/Tab.cpp:3617 +#: src/slic3r/GUI/Tab.cpp:3632 msgid "Automatic generation" msgstr "Generowanie automatyczne" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Automatic updates" msgstr "Automatyczne aktualizacje" @@ -814,31 +856,39 @@ msgstr "Automatyczne aktualizacje" msgid "Automatically repair an STL file" msgstr "Automatyczna naprawa pliku STL" -#: src/slic3r/GUI/Tab.cpp:1173 +#: src/slic3r/GUI/Tab.cpp:1171 msgid "Autospeed (advanced)" msgstr "Automatyczne dostosowanie prędkości (zaawansowane)" -#: src/libslic3r/PrintConfig.cpp:126 +#: src/libslic3r/PrintConfig.cpp:136 msgid "Avoid crossing perimeters" msgstr "Unikaj ruchów nad obrysami" -#: src/slic3r/GUI/Tab.cpp:3252 +#: src/slic3r/GUI/Tab.cpp:3268 msgid "BACK ARROW" msgstr "STRZAŁKA W TYŁ" -#: src/slic3r/GUI/Tab.cpp:3274 -msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset." -msgstr "STRZAŁKA W TYŁ oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy opcji.\nKliknij aby zresetować wszystkie ustawienia w obecnej grupie opcji do tych z ostatnio zapisanego zestawu ustawień." +#: src/slic3r/GUI/Tab.cpp:3290 +msgid "" +"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click to reset all settings for the current option group to the last saved preset." +msgstr "" +"STRZAŁKA W TYŁ oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy opcji.\n" +"Kliknij aby zresetować wszystkie ustawienia w obecnej grupie opcji do tych z ostatnio zapisanego zestawu ustawień." -#: src/slic3r/GUI/Tab.cpp:3288 -msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset." -msgstr "STRZAŁKA W TYŁ oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień.\nKliknij aby zresetować wszystkie ustawienia do tych z ostatnio zapisanego zestawu ustawień." +#: src/slic3r/GUI/Tab.cpp:3304 +msgid "" +"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n" +"Click to reset current value to the last saved preset." +msgstr "" +"STRZAŁKA W TYŁ oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień.\n" +"Kliknij aby zresetować wszystkie ustawienia do tych z ostatnio zapisanego zestawu ustawień." #: src/slic3r/GUI/Preferences.cpp:55 msgid "Background processing" msgstr "Przetwarzanie w tle" -#: src/slic3r/GUI/GUI_ObjectList.cpp:349 +#: src/slic3r/GUI/GUI_ObjectList.cpp:351 msgid "backwards edges" msgstr "odwrócone krawędzie" @@ -846,7 +896,7 @@ msgstr "odwrócone krawędzie" msgid "based on Slic3r" msgstr "bazuje na projekcie Slic3r" -#: src/slic3r/GUI/Tab.cpp:1441 +#: src/slic3r/GUI/Tab.cpp:1439 msgid "Bed" msgstr "Stół" @@ -858,7 +908,7 @@ msgstr "Własny model stołu" msgid "Bed custom texture" msgstr "Własna tekstura stołu" -#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/BedShapeDialog.hpp:59 src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape" msgstr "Kształt stołu" @@ -866,23 +916,23 @@ msgstr "Kształt stołu" msgid "Bed shape" msgstr "Kształt stołu" -#: src/slic3r/GUI/ConfigWizard.cpp:930 +#: src/slic3r/GUI/ConfigWizard.cpp:929 msgid "Bed Shape and Size" msgstr "Kształt i rozmiar stołu roboczego" -#: src/libslic3r/PrintConfig.cpp:137 +#: src/libslic3r/PrintConfig.cpp:147 msgid "Bed temperature" msgstr "Temperatura stołu" -#: src/libslic3r/PrintConfig.cpp:135 +#: src/libslic3r/PrintConfig.cpp:145 msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura stołu dla warstw powyżej pierwszej. Ustaw 0 aby wyłączyć kontrolowanie temperatury w pliku wyjściowym." -#: src/slic3r/GUI/ConfigWizard.cpp:1052 +#: src/slic3r/GUI/ConfigWizard.cpp:1051 msgid "Bed Temperature:" msgstr "Temperatura stołu:" -#: src/slic3r/GUI/Tab.cpp:1986 src/libslic3r/PrintConfig.cpp:143 +#: src/slic3r/GUI/Tab.cpp:1988 src/libslic3r/PrintConfig.cpp:153 msgid "Before layer change G-code" msgstr "G-code wykonywany przed zmianą warstwy" @@ -890,7 +940,7 @@ msgstr "G-code wykonywany przed zmianą warstwy" msgid "Before roll back" msgstr "Przez zmianą" -#: src/slic3r/GUI/Plater.cpp:637 +#: src/slic3r/GUI/Plater.cpp:640 msgid "Below object" msgstr "Pod modelem" @@ -898,27 +948,27 @@ msgstr "Pod modelem" msgid "Below Z" msgstr "Poniżej Z" -#: src/libslic3r/PrintConfig.cpp:154 +#: src/libslic3r/PrintConfig.cpp:164 msgid "Between objects G-code" msgstr "G-code wykonywany przy przejściach pomiędzy modelami" -#: src/slic3r/GUI/Tab.cpp:2004 +#: src/slic3r/GUI/Tab.cpp:2006 msgid "Between objects G-code (for sequential printing)" msgstr "G-code wykonywany przy przejściach pomiędzy modelami (druk sekwencyjny)" -#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2481 +#: src/libslic3r/PrintConfig.cpp:2489 src/libslic3r/PrintConfig.cpp:2490 msgid "Bottle volume" msgstr "Objętość butelki" -#: src/libslic3r/PrintConfig.cpp:2487 src/libslic3r/PrintConfig.cpp:2488 +#: src/libslic3r/PrintConfig.cpp:2496 src/libslic3r/PrintConfig.cpp:2497 msgid "Bottle weight" msgstr "Waga butelki" #. TRN To be shown in the main menu View->Bottom #. TRN To be shown in Print Settings "Bottom solid layers" #. TRN To be shown in Print Settings "Top solid layers" -#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:164 -#: src/libslic3r/PrintConfig.cpp:173 +#: src/slic3r/GUI/MainFrame.cpp:665 src/libslic3r/PrintConfig.cpp:174 +#: src/libslic3r/PrintConfig.cpp:183 msgid "Bottom" msgstr "Dolne" @@ -926,15 +976,15 @@ msgstr "Dolne" msgid "Bottom fill pattern" msgstr "Wzór wypełnienia dolnej warstwy" -#: src/slic3r/GUI/PresetHints.cpp:338 +#: src/slic3r/GUI/PresetHints.cpp:342 msgid "Bottom is open." msgstr "Dół jest otwarty." -#: src/slic3r/GUI/PresetHints.cpp:332 +#: src/slic3r/GUI/PresetHints.cpp:336 msgid "Bottom shell is %1% mm thick for layer height %2% mm." msgstr "Dolna powłoka ma %1% mm grubości dla warstwy o wysokości %2% mm." -#: src/libslic3r/PrintConfig.cpp:167 +#: src/libslic3r/PrintConfig.cpp:177 msgid "Bottom solid layers" msgstr "Zwarte warstwy dolne" @@ -942,37 +992,37 @@ msgstr "Zwarte warstwy dolne" msgid "Bottom View" msgstr "Widok od dołu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1462 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1466 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1468 msgid "Box" msgstr "Sześcian" -#: src/libslic3r/PrintConfig.cpp:183 +#: src/libslic3r/PrintConfig.cpp:193 msgid "Bridge" msgstr "Most" -#: src/libslic3r/PrintConfig.cpp:212 +#: src/libslic3r/PrintConfig.cpp:222 msgid "Bridge flow ratio" msgstr "Współczynnik przepływu przy mostach" -#: src/slic3r/GUI/GUI_Preview.cpp:245 src/libslic3r/ExtrusionEntity.cpp:316 +#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:316 msgid "Bridge infill" msgstr "Wypełnienie mostu" -#: src/libslic3r/PrintConfig.cpp:224 +#: src/libslic3r/PrintConfig.cpp:234 msgid "Bridges" msgstr "Mosty" -#: src/libslic3r/PrintConfig.cpp:203 +#: src/libslic3r/PrintConfig.cpp:213 msgid "Bridges fan speed" msgstr "Prędkość wentylatora przy mostach" -#: src/libslic3r/PrintConfig.cpp:192 +#: src/libslic3r/PrintConfig.cpp:202 msgid "Bridging angle" msgstr "Kąt linii mostów" -#: src/libslic3r/PrintConfig.cpp:194 +#: src/libslic3r/PrintConfig.cpp:204 msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle." msgstr "Nadpisanie kąta linii mostów. Jeśli zostanie 0 to kąt zostanie obliczony automatycznie. W innym przypadku ustawiony kąt będzie dotyczył wszystkich mostów. Ustaw 180° dla kąta zerowego." @@ -980,16 +1030,16 @@ msgstr "Nadpisanie kąta linii mostów. Jeśli zostanie 0 to kąt zostanie oblic msgid "Bridging volumetric" msgstr "Mosty objętościowe" -#: src/slic3r/GUI/Plater.cpp:531 src/slic3r/GUI/Tab.cpp:1119 +#: src/slic3r/GUI/Plater.cpp:534 src/slic3r/GUI/Tab.cpp:1117 msgid "Brim" msgstr "Brim (obramowanie)" -#: src/libslic3r/PrintConfig.cpp:234 +#: src/libslic3r/PrintConfig.cpp:244 msgid "Brim width" msgstr "Szerokość brim" -#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1660 -#: src/slic3r/GUI/Tab.cpp:1719 +#: src/slic3r/GUI/FirmwareDialog.cpp:805 src/slic3r/GUI/Tab.cpp:1658 +#: src/slic3r/GUI/Tab.cpp:1721 msgid "Browse" msgstr "Przeglądaj" @@ -1005,15 +1055,15 @@ msgstr "Opis Przycisków i Kolorów Tekstu" msgid "by the print profile maximum" msgstr "maksimum zależny od profilu wydruku" -#: src/slic3r/GUI/Preferences.cpp:115 +#: src/slic3r/GUI/Preferences.cpp:113 msgid "Camera" msgstr "Widok" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:125 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 msgid "Camera view" msgstr "Widok kamery" -#: src/slic3r/GUI/ConfigWizard.cpp:1985 src/slic3r/GUI/FirmwareDialog.cpp:151 +#: src/slic3r/GUI/ConfigWizard.cpp:1982 src/slic3r/GUI/FirmwareDialog.cpp:151 #: src/slic3r/GUI/ProgressStatusBar.cpp:26 msgid "Cancel" msgstr "Anuluj" @@ -1022,11 +1072,11 @@ msgstr "Anuluj" msgid "Cancel selected" msgstr "Anuluj wybrane" -#: src/slic3r/GUI/Plater.cpp:3678 src/slic3r/GUI/PrintHostDialogs.cpp:233 +#: src/slic3r/GUI/Plater.cpp:3669 src/slic3r/GUI/PrintHostDialogs.cpp:233 msgid "Cancelled" msgstr "Anulowano" -#: src/slic3r/GUI/Plater.cpp:3137 src/slic3r/GUI/PrintHostDialogs.cpp:232 +#: src/slic3r/GUI/Plater.cpp:3153 src/slic3r/GUI/PrintHostDialogs.cpp:232 msgid "Cancelling" msgstr "Anulowanie" @@ -1034,15 +1084,15 @@ msgstr "Anulowanie" msgid "Cancelling..." msgstr "Anulowanie..." -#: src/libslic3r/Flow.cpp:55 +#: src/libslic3r/Flow.cpp:61 msgid "Cannot calculate extrusion width for %1%: Variable \"%2%\" not accessible." msgstr "Nie można przeliczyć szerokości ekstruzji dla %1%: zmienna \"%2%\" jest niedostępna." -#: src/slic3r/GUI/Tab.cpp:3057 +#: src/slic3r/GUI/Tab.cpp:3073 msgid "Cannot overwrite a system profile." msgstr "Nie można nadpisać profilu systemowego." -#: src/slic3r/GUI/Tab.cpp:3061 +#: src/slic3r/GUI/Tab.cpp:3077 msgid "Cannot overwrite an external profile." msgstr "Nie można nadpisać profilu zewnętrznego." @@ -1050,7 +1100,7 @@ msgstr "Nie można nadpisać profilu zewnętrznego." msgid "Cannot proceed without support points! Add support points or disable support generation." msgstr "Nie można kontynuować bez punktów podpór! Dodaj punkty podpór lub wyłącz ich generowanie." -#: src/slic3r/GUI/Tab.cpp:1832 +#: src/slic3r/GUI/Tab.cpp:1834 msgid "Capabilities" msgstr "Możliwości" @@ -1058,60 +1108,60 @@ msgstr "Możliwości" msgid "Capture a configuration snapshot" msgstr "Zapisz zrzut konfiguracji" -#: src/libslic3r/PrintConfig.cpp:3409 +#: src/libslic3r/PrintConfig.cpp:3424 msgid "Center" msgstr "Punkt centralny" -#: src/libslic3r/PrintConfig.cpp:3410 +#: src/libslic3r/PrintConfig.cpp:3425 msgid "Center the print around the given center." msgstr "Wyśrodkuj model wokół podanego punktu centralnego." -#: src/slic3r/GUI/Tab.cpp:1726 +#: src/slic3r/GUI/Tab.cpp:1728 msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Pliki certyfikatów (*.crt, *.pem)|*.crt;*.pem|Wszystkie pliki|*.*" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:154 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:180 msgid "Change camera type (perspective, orthographic)" msgstr "Zmień rodzaj widoku (perspektywiczny/ortograficzny)" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:863 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:885 msgid "Change drainage hole diameter" msgstr "Zmień średnicę otworu odpływowego" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 src/slic3r/GUI/GUI_ObjectList.cpp:1661 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Change extruder" msgstr "Zmiana ekstrudera" -#: src/slic3r/GUI/GUI_ObjectList.cpp:534 +#: src/slic3r/GUI/GUI_ObjectList.cpp:536 msgid "Change Extruder" msgstr "Zmień Ekstruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1113 +#: src/slic3r/GUI/DoubleSlider.cpp:1145 msgid "Change extruder (N/A)" msgstr "Zmień ekstruder (N/A)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3997 msgid "Change Extruders" msgstr "Zmień Ekstrudery" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:152 -#, possible-c-format +#, c-format msgid "Change Option %s" msgstr "Zmień Opcję %s" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3532 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3558 msgid "Change Part Type" msgstr "Zmień Rodzaj Elementu" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:804 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:820 msgid "Change point head diameter" msgstr "Zmień średnicę łącznika" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Change the number of instances of the selected object" msgstr "Zmień liczbę kopii wybranego modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1582 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 msgid "Change type" msgstr "Zmiana rodzaju" @@ -1123,7 +1173,7 @@ msgstr "Pobierz && Listę Zmian" msgid "Changing of an application language" msgstr "Zmiana języka aplikacji" -#: src/slic3r/GUI/ConfigWizard.cpp:768 src/slic3r/GUI/Preferences.cpp:64 +#: src/slic3r/GUI/ConfigWizard.cpp:769 src/slic3r/GUI/Preferences.cpp:64 msgid "Check for application updates" msgstr "Sprawdź aktualizacje aplikacji" @@ -1133,13 +1183,13 @@ msgstr "Sprawdzaj aktualizacje konfiguracji" #: src/slic3r/GUI/GUI_App.cpp:802 msgid "Check for updates" -msgstr "Sprawdź aktualizacje" +msgstr "Sprawdź akt&ualizacje" #: src/slic3r/GUI/BedShapeDialog.cpp:532 msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Wybierz plik, z którego ma być zaimportowana tekstura stołu (PNG/SVG):" -#: src/slic3r/GUI/MainFrame.cpp:775 +#: src/slic3r/GUI/MainFrame.cpp:773 msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wybierz plik do pocięcia (STL/OBJ/AMF/3MF/PRUSA):" @@ -1159,7 +1209,7 @@ msgstr "Wybierz jeden plik (3MF/AMF):" msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):" msgstr "Wybierz jeden lub więcej plików (STL/OBJ/AMF/3MF/PRUSA):" -#: src/slic3r/GUI/ConfigWizard.cpp:896 +#: src/slic3r/GUI/ConfigWizard.cpp:895 msgid "Choose the type of firmware used by your printer." msgstr "Wybierz rodzaj firmware używanego przez Twoją drukarkę." @@ -1167,23 +1217,23 @@ msgstr "Wybierz rodzaj firmware używanego przez Twoją drukarkę." msgid "Circular" msgstr "Okrągły" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/GLCanvas3D.cpp:4706 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/GLCanvas3D.cpp:4657 msgid "Click right mouse button to open History" msgstr "Kliknij prawym przyciskiem myszy, aby otworzyć Historię" -#: src/slic3r/GUI/GUI_ObjectList.cpp:402 +#: src/slic3r/GUI/GUI_ObjectList.cpp:404 msgid "Click the icon to change the object printable property" msgstr "Kliknij na ikonę, aby włączyć/wyłączyć drukowanie modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:396 +#: src/slic3r/GUI/GUI_ObjectList.cpp:398 msgid "Click the icon to change the object settings" msgstr "Kliknij na ikonę, aby zmienić ustawienia modelu" -#: src/slic3r/GUI/Plater.cpp:340 +#: src/slic3r/GUI/Plater.cpp:343 msgid "Click to edit preset" msgstr "Kliknij aby edytować zestaw ustawień" -#: src/libslic3r/PrintConfig.cpp:242 +#: src/libslic3r/PrintConfig.cpp:252 msgid "Clip multi-part objects" msgstr "Przycinaj modele kilkuczęściowe" @@ -1193,39 +1243,39 @@ msgid "Clipping of view" msgstr "Widok przecinania" #: src/slic3r/GUI/FirmwareDialog.cpp:852 -#: src/slic3r/GUI/Mouse3DController.cpp:387 +#: src/slic3r/GUI/Mouse3DController.cpp:364 #: src/slic3r/GUI/PrintHostDialogs.cpp:161 msgid "Close" msgstr "Zamknij" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:45 +#: src/libslic3r/PrintConfig.cpp:2934 msgid "Closing distance" msgstr "Dystans domykania" -#: src/slic3r/GUI/Plater.cpp:1262 src/slic3r/GUI/Plater.cpp:1271 -#: src/libslic3r/PrintConfig.cpp:582 +#: src/slic3r/GUI/Plater.cpp:1260 src/libslic3r/PrintConfig.cpp:582 msgid "Color" msgstr "Kolor" -#: src/slic3r/GUI/DoubleSlider.cpp:972 +#: src/slic3r/GUI/DoubleSlider.cpp:1005 msgid "Color change (\"%1%\")" msgstr "Zmiana koloru (\"%1%\")" -#: src/slic3r/GUI/DoubleSlider.cpp:973 +#: src/slic3r/GUI/DoubleSlider.cpp:1006 msgid "Color change (\"%1%\") for Extruder %2%" msgstr "Zmiana koloru (\"%1%\") dla ekstrudera %2%" #: src/slic3r/GUI/GLCanvas3D.cpp:995 -#, possible-c-format +#, c-format msgid "Color change for Extruder %d at %.2f mm" msgstr "Zmiana koloru dla ekstrudera %d na wysokości %.2f mm" -#: src/slic3r/GUI/GUI_Preview.cpp:230 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:228 src/slic3r/GUI/GUI_Preview.cpp:572 #: src/libslic3r/GCode/PreviewData.cpp:359 msgid "Color Print" msgstr "Zmiana Koloru" -#: src/libslic3r/PrintConfig.cpp:250 +#: src/libslic3r/PrintConfig.cpp:260 msgid "Colorprint height" msgstr "Wysokość (warstwa) zmiany koloru" @@ -1245,23 +1295,23 @@ msgstr "Komendy" msgid "Comment:" msgstr "Komentarz:" -#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:270 +#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:280 msgid "Compatible print profiles" msgstr "Kompatybilne profile druku" -#: src/libslic3r/PrintConfig.cpp:276 +#: src/libslic3r/PrintConfig.cpp:286 msgid "Compatible print profiles condition" msgstr "Warunki kompatybilności profili druku" -#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:255 +#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:265 msgid "Compatible printers" msgstr "Kompatybilne drukarki" -#: src/libslic3r/PrintConfig.cpp:261 +#: src/libslic3r/PrintConfig.cpp:271 msgid "Compatible printers condition" msgstr "Warunki kompatybilności z drukarką" -#: src/libslic3r/PrintConfig.cpp:294 +#: src/libslic3r/PrintConfig.cpp:304 msgid "Complete individual objects" msgstr "Druk sekwencyjny (model po modelu)" @@ -1277,15 +1327,15 @@ msgstr "niepowodzenie kompresji" msgid "Concentric" msgstr "Koncentryczny" -#: src/slic3r/GUI/ConfigWizard.cpp:2113 +#: src/slic3r/GUI/ConfigWizard.cpp:2110 msgid "Configuration &Assistant" msgstr "&Asystent Konfiguracji" -#: src/slic3r/GUI/ConfigWizard.cpp:2116 +#: src/slic3r/GUI/ConfigWizard.cpp:2113 msgid "Configuration &Wizard" -msgstr "&Asystent Konfiguracji" +msgstr "Asystent Ko&nfiguracji" -#: src/slic3r/GUI/ConfigWizard.cpp:2112 +#: src/slic3r/GUI/ConfigWizard.cpp:2109 msgid "Configuration Assistant" msgstr "Asystent konfiguracji" @@ -1305,15 +1355,11 @@ msgstr "Aktualizacja konfiguracji" msgid "Configuration update is available" msgstr "Dostępna jest aktualizacja konfiguracji" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Configuration update is necessary to install" -msgstr "Do instalacji jest wymagana aktualizacja konfiguracji." - #: src/slic3r/GUI/UpdateDialogs.cpp:303 msgid "Configuration updates" msgstr "Aktualizacje konfiguracji" -#: src/slic3r/GUI/ConfigWizard.cpp:2115 +#: src/slic3r/GUI/ConfigWizard.cpp:2112 msgid "Configuration Wizard" msgstr "Asystent Konfiguracji" @@ -1321,11 +1367,11 @@ msgstr "Asystent Konfiguracji" msgid "Confirmation" msgstr "Potwierdzenie" -#: src/slic3r/GUI/Tab.cpp:1929 +#: src/slic3r/GUI/Tab.cpp:1931 msgid "Connection failed." msgstr "Błąd połączenia." -#: src/slic3r/GUI/Tab.cpp:3612 +#: src/slic3r/GUI/Tab.cpp:3627 msgid "Connection of the support sticks and junctions" msgstr "Łączenia słupków i skrzyżowań podpór" @@ -1345,7 +1391,7 @@ msgstr "Połączenie z FlashAir działa poprawnie a przesyłanie jest włączone msgid "Connection to OctoPrint works correctly." msgstr "Połączenie z OctoPrint pomyślne." -#: src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1928 msgid "Connection to printer works correctly." msgstr "Połączenie z drukarką pomyślne." @@ -1361,11 +1407,11 @@ msgstr "Odstęp w osi Z" msgid "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others." msgstr "Wkład: Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik i wielu innych." -#: src/libslic3r/PrintConfig.cpp:2650 +#: src/libslic3r/PrintConfig.cpp:2659 msgid "Controls the bridge type between two neighboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars." msgstr "Kontroluje typ mostu pomiędzy sąsiadującymi słupkami. Może być zyg-zagowy, krzyżowy (podwójny zyg-zag) lub dynamiczny, który oznacza automatyczne przełączanie się pomiędzy pierwszymi dwoma, w zależności od odstępu pomiędzy słupkami." -#: src/slic3r/GUI/Tab.cpp:1446 +#: src/slic3r/GUI/Tab.cpp:1444 msgid "Cooling" msgstr "Chłodzenie" @@ -1377,19 +1423,23 @@ msgstr "Ruchy chłodzące przyspieszają zaczynając od tej prędkości." msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Ruchy chłodzące przyspieszają kończąc z tą prędkością." -#: src/slic3r/GUI/Tab.cpp:1467 +#: src/slic3r/GUI/Tab.cpp:1465 msgid "Cooling thresholds" msgstr "Progi chłodzenia" -#: src/libslic3r/PrintConfig.cpp:317 +#: src/libslic3r/PrintConfig.cpp:327 msgid "Cooling tube length" msgstr "Długość rurki chłodzącej" -#: src/libslic3r/PrintConfig.cpp:309 +#: src/libslic3r/PrintConfig.cpp:319 msgid "Cooling tube position" msgstr "Pozycja rurki chłodzącej" -#: src/slic3r/GUI/GLCanvas3D.cpp:4554 +#: src/slic3r/GUI/Plater.cpp:4752 +msgid "Copies of the selected object" +msgstr "Kopie wybranego modelu" + +#: src/slic3r/GUI/GLCanvas3D.cpp:4505 msgid "Copy" msgstr "Kopiuj" @@ -1397,7 +1447,7 @@ msgstr "Kopiuj" msgid "Copy selection to clipboard" msgstr "Skopiuj zaznaczenie do schowka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:132 msgid "Copy to clipboard" msgstr "Skopiuj do schowka" @@ -1405,36 +1455,48 @@ msgstr "Skopiuj do schowka" msgid "Copy to Clipboard" msgstr "Kopiuj do Schowka" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:472 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:121 +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "Kopiowanie tymczasowego pliku G-code zostało zakończone, ale nie można otworzyć wyeksportowanego pliku w celu weryfikacji kopiowania. Wynikowy G-code znajduje się w lokalizacji %2%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "Kopiowanie tymczasowego pliku G-code zostało zakończone, ale nie można otworzyć oryginalnego pliku w lokalizacji %1% w celu weryfikacji kopiowania. Wynikowy G-code znajduje się w lokalizacji %2%.tmp." + +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:480 msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Kopiowanie tymczasowego G-code do wyjściowego nie powiodło się" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:118 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109 msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?" msgstr "Kopiowanie tymczasowego G-code do wyjściowego nie powiodło się. Sprawdź, czy karta nie jest zabezpieczona przed zapisem." +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:112 +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "Niepowodzenie kopiowania tymczasowego pliku G-code do pliku docelowego. Może być to spowodowane problemem z urządzeniem docelowym. Spróbuj wyeksportować G-code ponownie lub użyj innego urządzenia. Uszkodzony plik wynikowy G-code znajduje się w lokalizacji %1%.tmp." + #: src/slic3r/GUI/AboutDialog.cpp:127 src/slic3r/GUI/AboutDialog.cpp:256 msgid "Copyright" msgstr "Prawa autorskie" -#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2563 +#: src/libslic3r/PrintConfig.cpp:2571 src/libslic3r/PrintConfig.cpp:2572 msgid "Correction for expansion" msgstr "Korekcja rozszerzania" -#: src/slic3r/GUI/Tab.cpp:2098 src/slic3r/GUI/Tab.cpp:3503 +#: src/slic3r/GUI/Tab.cpp:2100 src/slic3r/GUI/Tab.cpp:3519 msgid "Corrections" msgstr "Korekcje" -#: src/slic3r/GUI/Plater.cpp:1241 src/libslic3r/PrintConfig.cpp:760 -#: src/libslic3r/PrintConfig.cpp:2501 src/libslic3r/PrintConfig.cpp:2502 +#: src/slic3r/GUI/Plater.cpp:1243 src/libslic3r/PrintConfig.cpp:760 +#: src/libslic3r/PrintConfig.cpp:2510 src/libslic3r/PrintConfig.cpp:2511 msgid "Cost" msgstr "Koszt" -#: src/slic3r/GUI/Plater.cpp:241 +#: src/slic3r/GUI/Plater.cpp:239 msgid "Cost (money)" msgstr "Koszt (pieniędzy)" -#: src/slic3r/GUI/Plater.cpp:2819 +#: src/slic3r/GUI/Plater.cpp:2835 msgid "Could not arrange model objects! Some geometries may be invalid." msgstr "Nie można ułożyć modeli! Niektóre geometrie mogą być nieprawidłowe." @@ -1458,7 +1520,7 @@ msgstr "Nie można połączyć się z OctoPrint" msgid "Could not connect to Prusa SLA" msgstr "Nie można połączyć się z Prusa SLA" -#: src/slic3r/GUI/Tab.cpp:1689 +#: src/slic3r/GUI/Tab.cpp:1687 msgid "Could not get a valid Printer Host reference" msgstr "Brak prawidłowego odwołania do serwera druku" @@ -1478,15 +1540,15 @@ msgstr "Szpary mniejsze niż dwukrotność wartości parametru \"promień zamyka msgid "CRC-32 check failed" msgstr "Weryfikacja CRC-32 nie powiodła się" -#: src/libslic3r/PrintConfig.cpp:2848 +#: src/libslic3r/PrintConfig.cpp:2857 msgid "Create pad around object and ignore the support elevation" msgstr "Dodaj podkładkę wokół modelu i zignoruj podniesienie na podporach" -#: src/libslic3r/PrintConfig.cpp:2715 +#: src/libslic3r/PrintConfig.cpp:2724 msgid "Critical angle" msgstr "Kąt krytyczny" -#: src/libslic3r/PrintConfig.cpp:2659 +#: src/libslic3r/PrintConfig.cpp:2668 msgid "Cross" msgstr "Krzyżowy" @@ -1495,28 +1557,28 @@ msgid "Cubic" msgstr "Sześcienny" #: src/slic3r/GUI/wxExtensions.cpp:704 -#, possible-c-format +#, c-format msgid "Current mode is %s" msgstr "Obecny tryb to %s" -#: src/slic3r/GUI/Tab.cpp:959 +#: src/slic3r/GUI/Tab.cpp:957 msgid "Current preset is inherited from the default preset." msgstr "Obecny zestaw ustawień jest dziedziczony z zestawu domyślnego." -#: src/slic3r/GUI/Tab.cpp:962 -#, possible-c-format -msgid "Current preset is inherited from:\n\t%s" -msgstr "Obecny zestaw ustawień jest dziedziczony z:\n%s" +#: src/slic3r/GUI/Tab.cpp:960 +#, c-format +msgid "" +"Current preset is inherited from:\n" +"\t%s" +msgstr "" +"Obecny zestaw ustawień jest dziedziczony z:\n" +"%s" #: src/slic3r/GUI/UpdateDialogs.cpp:43 msgid "Current version:" msgstr "Obecna wersja:" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 -msgid "Cusp (mm)" -msgstr "Wierzchołek (mm)" - -#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:251 +#: src/slic3r/GUI/BedShapeDialog.cpp:98 src/slic3r/GUI/GUI_Preview.cpp:249 #: src/libslic3r/ExtrusionEntity.cpp:322 msgid "Custom" msgstr "Własny" @@ -1525,18 +1587,14 @@ msgstr "Własny" msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." msgstr "Dla połączeń HTTPS z OctoPrint może zostać użyty własny plik certyfikatu CA w formacie crt/pem. Jeśli pole zostanie puste, to zostanie użyty plik z systemowego repozytorium CA." -#: src/slic3r/GUI/Tab.cpp:1529 src/slic3r/GUI/Tab.cpp:1973 +#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1975 msgid "Custom G-code" msgstr "Własny G-code" -#: src/slic3r/GUI/DoubleSlider.cpp:1591 +#: src/slic3r/GUI/DoubleSlider.cpp:1619 msgid "Custom G-code on current layer (%1% mm)." msgstr "Własny G-code na obecnej warstwie (%1% mm)." -#: src/slic3r/GUI/wxExtensions.cpp:3500 -msgid "Custom Gcode on current layer (%1% mm)." -msgstr "Własny G-code na obecnej warstwie (%1% mm)." - #: src/slic3r/GUI/ConfigWizard.cpp:732 msgid "Custom Printer" msgstr "Własna Drukarka" @@ -1550,31 +1608,31 @@ msgid "Custom profile name:" msgstr "Nazwa własnego profilu:" #: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:42 -#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3387 +#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:144 src/libslic3r/PrintConfig.cpp:3402 msgid "Cut" msgstr "Przetnij" -#: src/slic3r/GUI/Plater.cpp:4801 +#: src/slic3r/GUI/Plater.cpp:4786 msgid "Cut by Plane" msgstr "Tnij Płaszczyzną" -#: src/libslic3r/PrintConfig.cpp:3388 +#: src/libslic3r/PrintConfig.cpp:3403 msgid "Cut model at the given Z." msgstr "Przetnij model na wysokości Z." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Cylinder" msgstr "Cylinder" #: src/slic3r/GUI/MainFrame.cpp:568 msgid "D&eselect all" -msgstr "O&dznacz wszystko" +msgstr "&Odznacz wszystko" -#: src/libslic3r/PrintConfig.cpp:3489 +#: src/libslic3r/PrintConfig.cpp:3504 msgid "Data directory" msgstr "Katalog danych" -#: src/slic3r/GUI/Mouse3DController.cpp:332 +#: src/slic3r/GUI/Mouse3DController.cpp:313 msgid "Deadzone:" msgstr "Martwa strefa:" @@ -1582,23 +1640,23 @@ msgstr "Martwa strefa:" msgid "decompression failed or archive is corrupted" msgstr "niepowodzenie rozpakowywania lub uszkodzone archiwum" -#: src/slic3r/GUI/Plater.cpp:4735 +#: src/slic3r/GUI/Plater.cpp:4720 msgid "Decrease Instances" -msgstr "Zmniejsz ilość kopii" +msgstr "Zmniejsz ilość instancji" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1680 src/libslic3r/PrintConfig.cpp:325 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1704 src/libslic3r/PrintConfig.cpp:335 msgid "Default" msgstr "Domyślnie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:455 src/slic3r/GUI/GUI_ObjectList.cpp:467 -#: src/slic3r/GUI/GUI_ObjectList.cpp:915 src/slic3r/GUI/GUI_ObjectList.cpp:3941 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3951 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3986 +#: src/slic3r/GUI/GUI_ObjectList.cpp:457 src/slic3r/GUI/GUI_ObjectList.cpp:469 +#: src/slic3r/GUI/GUI_ObjectList.cpp:917 src/slic3r/GUI/GUI_ObjectList.cpp:3967 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3977 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4012 #: src/slic3r/GUI/ObjectDataViewModel.cpp:200 #: src/slic3r/GUI/ObjectDataViewModel.cpp:257 #: src/slic3r/GUI/ObjectDataViewModel.cpp:282 #: src/slic3r/GUI/ObjectDataViewModel.cpp:490 -#: src/slic3r/GUI/ObjectDataViewModel.cpp:1725 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:1753 msgid "default" msgstr "domyślnie" @@ -1610,53 +1668,53 @@ msgstr "Domyślny kąt linii wypełnienia. Mosty będą wypełniane z użyciem n msgid "Default extrusion width" msgstr "Domyślna szerokość linii" -#: src/slic3r/GUI/Tab.cpp:989 +#: src/slic3r/GUI/Tab.cpp:987 msgid "default filament profile" msgstr "domyślny profil filamentu" -#: src/libslic3r/PrintConfig.cpp:335 +#: src/libslic3r/PrintConfig.cpp:345 msgid "Default filament profile" msgstr "Domyślny profil filamentu" -#: src/libslic3r/PrintConfig.cpp:336 +#: src/libslic3r/PrintConfig.cpp:346 msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated." msgstr "Domyślny profil filamentu powiązany z obecnym profilem drukarki. Przy wybraniu obecnego profilu drukarki automatycznie zostanie wybrany ten profil filamentu." -#: src/slic3r/GUI/Tab.cpp:2903 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2919 +#, c-format msgid "Default preset (%s)" msgstr "Domyślny zestaw ustawień (%s)" -#: src/slic3r/GUI/GLCanvas3D.cpp:909 src/slic3r/GUI/GLCanvas3D.cpp:938 +#: src/slic3r/GUI/GLCanvas3D.cpp:904 src/slic3r/GUI/GLCanvas3D.cpp:933 msgid "Default print color" msgstr "Domyślny kolor druku" -#: src/slic3r/GUI/Tab.cpp:986 +#: src/slic3r/GUI/Tab.cpp:984 msgid "default print profile" msgstr "domyślny profil druku" -#: src/libslic3r/PrintConfig.cpp:342 +#: src/libslic3r/PrintConfig.cpp:352 msgid "Default print profile" msgstr "Domyślny profil druku" -#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:2583 -#: src/libslic3r/PrintConfig.cpp:2594 +#: src/libslic3r/PrintConfig.cpp:353 src/libslic3r/PrintConfig.cpp:2592 +#: src/libslic3r/PrintConfig.cpp:2603 msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated." msgstr "Domyślny profil druku powiązany z obecnym profilem drukarki. Przy wybraniu obecnego profilu drukarki automatycznie zostanie wybrany ten profil filamentu." -#: src/slic3r/GUI/Tab.cpp:1003 +#: src/slic3r/GUI/Tab.cpp:1001 msgid "default SLA material profile" msgstr "domyślny profil materiału SLA" -#: src/libslic3r/PrintConfig.cpp:2582 src/libslic3r/PrintConfig.cpp:2593 +#: src/libslic3r/PrintConfig.cpp:2591 src/libslic3r/PrintConfig.cpp:2602 msgid "Default SLA material profile" msgstr "Domyślny profil materiału SLA" -#: src/slic3r/GUI/Tab.cpp:1007 +#: src/slic3r/GUI/Tab.cpp:1005 msgid "default SLA print profile" msgstr "domyślny profil druku SLA" -#: src/slic3r/GUI/Field.cpp:131 +#: src/slic3r/GUI/Field.cpp:136 msgid "default value" msgstr "wartość domyślna" @@ -1664,11 +1722,11 @@ msgstr "wartość domyślna" msgid "Define a custom printer profile" msgstr "Zdefiniuj własny profil drukarki" -#: src/libslic3r/PrintConfig.cpp:2789 +#: src/libslic3r/PrintConfig.cpp:2798 msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes peeling the print off the vat foil difficult." msgstr "Definiuje wgłębienie podkładki. Ustaw 0 aby je wyłączyć. Zachowaj ostrożność przy ustawianiu wgłębienia, ponieważ niektóre żywice mogą powodować bardzo silny efekt zasysania wewnątrz wgłębienia, co może powodować trudności z oddzieleniem wydruku od folii zbiornika." -#: src/slic3r/GUI/GUI_ObjectList.cpp:344 +#: src/slic3r/GUI/GUI_ObjectList.cpp:346 msgid "degenerate facets" msgstr "ponowne generowanie ścianek" @@ -1676,13 +1734,13 @@ msgstr "ponowne generowanie ścianek" msgid "Delay after unloading" msgstr "Opóźnienie po rozładowaniu" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "delete" msgstr "usuń" -#: src/slic3r/GUI/GLCanvas3D.cpp:4524 src/slic3r/GUI/GUI_ObjectList.cpp:1692 -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/GLCanvas3D.cpp:4475 src/slic3r/GUI/GUI_ObjectList.cpp:1718 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Delete" msgstr "Usuń" @@ -1690,100 +1748,89 @@ msgstr "Usuń" msgid "Delete &all" msgstr "Usuń &wszystko" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 -msgid "Delete All" -msgstr "Usuń wszystko" - -#: src/slic3r/GUI/GLCanvas3D.cpp:4533 src/slic3r/GUI/Plater.cpp:4684 +#: src/slic3r/GUI/GLCanvas3D.cpp:4484 src/slic3r/GUI/KBShortcutsDialog.cpp:129 +#: src/slic3r/GUI/Plater.cpp:4669 msgid "Delete all" msgstr "Usuń wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2150 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2176 msgid "Delete All Instances from Object" msgstr "Usuń wszystkie kopie modelu" -#: src/slic3r/GUI/DoubleSlider.cpp:1488 +#: src/slic3r/GUI/DoubleSlider.cpp:1516 msgid "Delete color change" msgstr "Usuń zmianę koloru" -#: src/slic3r/GUI/wxExtensions.cpp:3092 -msgid "Delete color change for Extruder %1%" -msgstr "Usuń zmianę kolor dla ekstrudera %1%" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:202 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:219 msgid "Delete color change marker for current layer" msgstr "Usuń punkt zmiany filamentu na obecnej warstwie" -#: src/slic3r/GUI/DoubleSlider.cpp:1491 +#: src/slic3r/GUI/DoubleSlider.cpp:1519 msgid "Delete custom G-code" msgstr "Usuń własny G-code" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:530 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:539 msgid "Delete drainage hole" msgstr "Usuń otwór odpływowy" -#: src/slic3r/GUI/wxExtensions.cpp:3095 -msgid "Delete extruder change to \"%1%\"" -msgstr "Usuń zmianę ekstrudera do \"%1%\"" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:2166 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2192 msgid "Delete Height Range" msgstr "Usuń zakres wysokości" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2220 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2246 msgid "Delete Instance" -msgstr "Usuń Kopię" +msgstr "Usuń instancję" -#: src/slic3r/GUI/Plater.cpp:2696 +#: src/slic3r/GUI/Plater.cpp:2712 msgid "Delete Object" msgstr "Usuń Model" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:101 -#, possible-c-format +#, c-format msgid "Delete Option %s" msgstr "Usuń Opcję %s" -#: src/slic3r/GUI/DoubleSlider.cpp:1490 +#: src/slic3r/GUI/DoubleSlider.cpp:1518 msgid "Delete pause print" msgstr "Usuń pauzę wydruku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 msgid "Delete selected" msgstr "Usuń zaznaczone" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2806 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2830 msgid "Delete Selected" msgstr "Usuń Zaznaczone" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2669 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2693 msgid "Delete Selected Item" msgstr "Usuń Wybrany Obiekt" -#: src/slic3r/GUI/Plater.cpp:4692 +#: src/slic3r/GUI/Plater.cpp:4677 msgid "Delete Selected Objects" msgstr "Usuń Zaznaczone Modele" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2126 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2152 msgid "Delete Settings" msgstr "Usuń Ustawienia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2201 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2227 msgid "Delete Subobject" msgstr "Usuń Model Podrzędny" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:615 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631 msgid "Delete support point" msgstr "Usuń punkt podpory" -#: src/slic3r/GUI/Tab.cpp:136 +#: src/slic3r/GUI/Tab.cpp:134 msgid "Delete this preset" msgstr "Usuń ten zestaw ustawień" -#: src/slic3r/GUI/DoubleSlider.cpp:1001 +#: src/slic3r/GUI/DoubleSlider.cpp:1035 msgid "Delete tick mark - Left click or press \"-\" key" msgstr "Usuń zaznaczenie - kliknij lewym przyciskiem lub wciśnij klawisz \"-\"" -#: src/slic3r/GUI/DoubleSlider.cpp:1489 +#: src/slic3r/GUI/DoubleSlider.cpp:1517 msgid "Delete tool change" msgstr "Usuń zmianę narzędzia" @@ -1795,8 +1842,8 @@ msgstr "Usuwa wszystkie modele" msgid "Deletes the current selection" msgstr "Usuwa zaznaczenie" -#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2494 -#: src/libslic3r/PrintConfig.cpp:2495 +#: src/libslic3r/PrintConfig.cpp:717 src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2504 msgid "Density" msgstr "Gęstość" @@ -1804,9 +1851,9 @@ msgstr "Gęstość" msgid "Density of internal infill, expressed in the range 0% - 100%." msgstr "Gęstość wypełnienia wewnętrznego, wyrażana w zakresie 0% - 100%." -#: src/slic3r/GUI/Tab.cpp:1260 src/slic3r/GUI/Tab.cpp:1550 -#: src/slic3r/GUI/Tab.cpp:2017 src/slic3r/GUI/Tab.cpp:2131 -#: src/slic3r/GUI/Tab.cpp:3528 src/slic3r/GUI/Tab.cpp:3656 +#: src/slic3r/GUI/Tab.cpp:1258 src/slic3r/GUI/Tab.cpp:1548 +#: src/slic3r/GUI/Tab.cpp:2019 src/slic3r/GUI/Tab.cpp:2135 +#: src/slic3r/GUI/Tab.cpp:3543 src/slic3r/GUI/Tab.cpp:3671 msgid "Dependencies" msgstr "Zależności" @@ -1818,7 +1865,7 @@ msgstr "Prędkość powrotu retrakcji" msgid "Deselect all" msgstr "Odznacz wszystko" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Deselect by rectangle" msgstr "Odznaczenie prostokątem" @@ -1838,15 +1885,15 @@ msgstr "Wykrywaj ściany o grubości jednego obrysu (obszary, gdzie 2 obrysy nie msgid "Detect thin walls" msgstr "Wykrywanie cienkich ścian" -#: src/libslic3r/PrintConfig.cpp:3457 +#: src/libslic3r/PrintConfig.cpp:3472 msgid "Detect unconnected parts in the given model(s) and split them into separate objects." msgstr "Wykryj niepołączone elementy załadowanych modelu i odłącz je, tworząc osobne modele." -#: src/slic3r/GUI/Plater.cpp:2352 +#: src/slic3r/GUI/Plater.cpp:2368 msgid "Detected advanced data" msgstr "Wykryto zaawansowane dane" -#: src/slic3r/GUI/Mouse3DController.cpp:306 +#: src/slic3r/GUI/Mouse3DController.cpp:289 msgid "Device:" msgstr "Urządzenie:" @@ -1854,15 +1901,15 @@ msgstr "Urządzenie:" msgid "Diameter" msgstr "Średnica" -#: src/libslic3r/PrintConfig.cpp:2685 +#: src/libslic3r/PrintConfig.cpp:2694 msgid "Diameter in mm of the pillar base" msgstr "Średnica podstawy słupka w mm" -#: src/libslic3r/PrintConfig.cpp:2641 +#: src/libslic3r/PrintConfig.cpp:2650 msgid "Diameter in mm of the support pillars" msgstr "Średnica słupków podpór w mm" -#: src/libslic3r/PrintConfig.cpp:2613 +#: src/libslic3r/PrintConfig.cpp:2622 msgid "Diameter of the pointing side of the head" msgstr "Średnica spiczastej części łącznika" @@ -1874,7 +1921,7 @@ msgstr "Średnica stołu. Z założenia punkt bazowy (0, 0) jest zlokalizowany n msgid "Direction" msgstr "Kierunek" -#: src/libslic3r/PrintConfig.cpp:349 +#: src/libslic3r/PrintConfig.cpp:359 msgid "Disable fan for the first" msgstr "Wyłącz wentylator przy pierwszych" @@ -1882,24 +1929,20 @@ msgstr "Wyłącz wentylator przy pierwszych" msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)." msgstr "Wyłącza retrakcję gdy ruch jałowy nie wykracza poza zewnętrzny obrys górnej warstwy (więc jakiekolwiek wycieki z dyszy prawdopodobnie i tak nie będą widoczne)." -#: src/slic3r/GUI/DoubleSlider.cpp:925 +#: src/slic3r/GUI/DoubleSlider.cpp:952 msgid "Discard all custom changes" msgstr "Odrzuć wszystkie własne zmiany" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:53 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1354 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1375 msgid "Discard changes" msgstr "Odrzuć zmiany" -#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2930 +#: src/slic3r/GUI/GUI_App.cpp:932 src/slic3r/GUI/Tab.cpp:2946 msgid "Discard changes and continue anyway?" msgstr "Odrzucić zmiany i kontynuować?" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Displacement (mm)" -msgstr "Rozstaw (mm)" - -#: src/slic3r/GUI/Tab.cpp:2076 +#: src/slic3r/GUI/Tab.cpp:2078 msgid "Display" msgstr "Wyświetlacz" @@ -1917,7 +1960,7 @@ msgstr "Pokaż orientację" #: src/slic3r/GUI/MainFrame.cpp:648 msgid "Display the Print Host Upload Queue window" -msgstr "Wyświetl okno kolejki Serwera Druku" +msgstr "Wyświetl okno kolejki serwera druku" #: src/libslic3r/PrintConfig.cpp:2385 msgid "Display vertical mirroring" @@ -1927,7 +1970,7 @@ msgstr "Pokaż odbicie pionowe" msgid "Display width" msgstr "Orientacja wyświetlacza" -#: src/libslic3r/PrintConfig.cpp:367 +#: src/libslic3r/PrintConfig.cpp:377 msgid "Distance between copies" msgstr "Odstęp pomiędzy kopiami" @@ -1935,7 +1978,7 @@ msgstr "Odstęp pomiędzy kopiami" msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion." msgstr "Odległość skirtu od modelu. Ustaw zero aby dołączyć do modelu i uzyskać obramowanie dla lepszej przyczepności." -#: src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2882 msgid "Distance between two connector sticks which connect the object and the generated pad." msgstr "Odstęp pomiędzy dwoma słupkami łączącymi model z wygenerowaną podkładką." @@ -1947,7 +1990,7 @@ msgstr "Odstęp od modelu" msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." msgstr "Odległość koordynaty punktu zerowego od przedniego lewego rogu prostokąta." -#: src/libslic3r/PrintConfig.cpp:310 +#: src/libslic3r/PrintConfig.cpp:320 msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "Odległość punktu centralnego rurki chłodzącej od końcówki ekstrudera." @@ -1955,22 +1998,28 @@ msgstr "Odległość punktu centralnego rurki chłodzącej od końcówki ekstrud msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." msgstr "Odległość końcówki ekstrudera do miejsca zatrzymania filamentu po rozładowaniu. Ta wartość powinna odpowiadać tej ustawionej w firmware drukarki." -#: src/libslic3r/PrintConfig.cpp:368 +#: src/libslic3r/PrintConfig.cpp:378 msgid "Distance used for the auto-arrange feature of the plater." msgstr "Odstęp używany przy automatycznym rozmieszczaniu modeli na stole." -#: src/libslic3r/PrintConfig.cpp:3471 +#: src/libslic3r/PrintConfig.cpp:3486 msgid "Do not fail if a file supplied to --load does not exist." msgstr "Nie przerywaj jeśli plik dołączony do --load nie istnieje." -#: src/libslic3r/PrintConfig.cpp:3415 +#: src/libslic3r/PrintConfig.cpp:3430 msgid "Do not rearrange the given models before merging and keep their original XY coordinates." msgstr "Nie przestawiaj modeli przed łączeniem i zachowaj ich początkowe koordynaty XY." -#: src/slic3r/GUI/Field.cpp:235 -#, possible-c-format -msgid "Do you mean %s%% instead of %s %s?\nSelect YES if you want to change this value to %s%%, \nor NO if you are sure that %s %s is a correct value." -msgstr "Czy masz na myśli %s %% zamiast %s %s ?\nKliknij TAK, jeśli chcesz zmienić wartość na %s %%,\nlub NIE, jeśli masz pewność, że %s %s jest prawidłową wartością." +#: src/slic3r/GUI/Field.cpp:240 +#, c-format +msgid "" +"Do you mean %s%% instead of %s %s?\n" +"Select YES if you want to change this value to %s%%, \n" +"or NO if you are sure that %s %s is a correct value." +msgstr "" +"Czy masz na myśli %s %% zamiast %s %s ?\n" +"Kliknij TAK, jeśli chcesz zmienić wartość na %s %%,\n" +"lub NIE, jeśli masz pewność, że %s %s jest prawidłową wartością." #: src/slic3r/GUI/ConfigWizard.cpp:1761 msgid "Do you want to automatic select default filaments?" @@ -1980,7 +2029,7 @@ msgstr "Czy chcesz automatycznie wybrać domyślne filamenty?" msgid "Do you want to automatic select default materials?" msgstr "Czy chcesz automatycznie wybrać domyślne materiały?" -#: src/slic3r/GUI/DoubleSlider.cpp:1893 +#: src/slic3r/GUI/DoubleSlider.cpp:1920 msgid "Do you want to delete all saved tool changes?" msgstr "Czy chcesz usunąć wszystkie zmiany narzędzi?" @@ -1988,15 +2037,15 @@ msgstr "Czy chcesz usunąć wszystkie zmiany narzędzi?" msgid "Do you want to proceed?" msgstr "Czy chcesz kontynuować?" -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "Do you want to retry" msgstr "Czy chcesz spróbować ponownie" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1045 msgid "Do you want to save your manually edited support points?" msgstr "Czy chcesz zapisać ręcznie edytowane punkty podpór?" -#: src/libslic3r/PrintConfig.cpp:3414 +#: src/libslic3r/PrintConfig.cpp:3429 msgid "Don't arrange" msgstr "Nie układaj" @@ -2004,7 +2053,7 @@ msgstr "Nie układaj" msgid "Don't notify about new releases any more" msgstr "Nie powiadamiaj o nowych wersjach" -#: src/libslic3r/PrintConfig.cpp:359 +#: src/libslic3r/PrintConfig.cpp:369 msgid "Don't support bridges" msgstr "Nie używaj podpór pod mostami" @@ -2012,17 +2061,17 @@ msgstr "Nie używaj podpór pod mostami" msgid "Downgrade" msgstr "Deaktualizacja" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1348 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1369 msgid "Drag" msgstr "Przeciągnij" -#: src/libslic3r/SLAPrintSteps.cpp:42 +#: src/libslic3r/SLAPrintSteps.cpp:44 msgid "Drilling holes into model." msgstr "Wiercenie otworów odpływowych w modelu." -#: src/libslic3r/SLAPrintSteps.cpp:163 +#: src/libslic3r/SLAPrintSteps.cpp:199 msgid "Drilling holes into the mesh failed. This is usually caused by broken model. Try to fix it first." msgstr "Niepowodzenie wiercenia otworów w siatce. Zazwyczaj dzieje się tak przez błędy w modelu. Spróbuj najpierw go naprawić." @@ -2031,11 +2080,11 @@ msgstr "Niepowodzenie wiercenia otworów w siatce. Zazwyczaj dzieje się tak prz msgid "Drop to bed" msgstr "Upuść na stół" -#: src/libslic3r/PrintConfig.cpp:3418 +#: src/libslic3r/PrintConfig.cpp:3433 msgid "Duplicate" msgstr "Duplikuj" -#: src/libslic3r/PrintConfig.cpp:3423 +#: src/libslic3r/PrintConfig.cpp:3438 msgid "Duplicate by grid" msgstr "Duplikuj wg siatki" @@ -2043,51 +2092,51 @@ msgstr "Duplikuj wg siatki" msgid "During the other layers, fan" msgstr "Na pozostałych warstwach, wentylator" -#: src/libslic3r/PrintConfig.cpp:2660 +#: src/libslic3r/PrintConfig.cpp:2669 msgid "Dynamic" msgstr "Dynamicznie" -#: src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:749 msgid "E&xport" msgstr "&Eksport" -#: src/slic3r/GUI/GUI_ObjectList.cpp:345 +#: src/slic3r/GUI/GUI_ObjectList.cpp:347 msgid "edges fixed" msgstr "naprawiono krawędzie" -#: src/slic3r/GUI/DoubleSlider.cpp:1480 +#: src/slic3r/GUI/DoubleSlider.cpp:1508 msgid "Edit color" msgstr "Edytuj kolor" -#: src/slic3r/GUI/DoubleSlider.cpp:933 +#: src/slic3r/GUI/DoubleSlider.cpp:960 msgid "Edit current color - Right click the colored slider segment" msgstr "Edytuj kolor - kliknij prawym przyciskiem na kolorowy segment suwaka" -#: src/slic3r/GUI/DoubleSlider.cpp:1482 +#: src/slic3r/GUI/DoubleSlider.cpp:1510 msgid "Edit custom G-code" msgstr "Edytuj własny G-code" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2979 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3003 msgid "Edit Height Range" msgstr "Edytuj Zakres Wysokości" -#: src/slic3r/GUI/DoubleSlider.cpp:1481 +#: src/slic3r/GUI/DoubleSlider.cpp:1509 msgid "Edit pause print message" msgstr "Edytuj komunikat wstrzymania wydruku" -#: src/slic3r/GUI/DoubleSlider.cpp:1003 +#: src/slic3r/GUI/DoubleSlider.cpp:1037 msgid "Edit tick mark - Ctrl + Left click" msgstr "Edytuj zaznaczenie - Ctrl + Klik lewym przyciskiem" -#: src/slic3r/GUI/DoubleSlider.cpp:1004 +#: src/slic3r/GUI/DoubleSlider.cpp:1038 msgid "Edit tick mark - Right click" msgstr "Edytuj zaznaczenie - kliknij prawym przyciskiem" -#: src/slic3r/GUI/GUI_ObjectList.cpp:280 src/slic3r/GUI/GUI_ObjectList.cpp:392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:282 src/slic3r/GUI/GUI_ObjectList.cpp:394 msgid "Editing" msgstr "Edytowanie" -#: src/libslic3r/PrintConfig.cpp:375 +#: src/libslic3r/PrintConfig.cpp:118 msgid "Elephant foot compensation" msgstr "Kompensacja \"stopy słonia\"" @@ -2107,12 +2156,12 @@ msgstr "Umieść M73 P[postęp w procentach] R[pozostały czas w minutach] co 1 msgid "Empty layers detected, the output would not be printable." msgstr "Wykryto puste warstwy - plik wynikowy nie będzie możliwy do wydrukowania." -#: src/slic3r/GUI/Tab.cpp:1447 src/libslic3r/PrintConfig.cpp:1355 +#: src/slic3r/GUI/Tab.cpp:1445 src/libslic3r/PrintConfig.cpp:1355 #: src/libslic3r/PrintConfig.cpp:2200 msgid "Enable" msgstr "Włącz" -#: src/libslic3r/PrintConfig.cpp:303 +#: src/libslic3r/PrintConfig.cpp:313 msgid "Enable auto cooling" msgstr "Włącz automatyczne chłodzenie" @@ -2120,7 +2169,7 @@ msgstr "Włącz automatyczne chłodzenie" msgid "Enable fan if layer print time is below" msgstr "Włącz chłodzenie jeśli czas druku warstwy wynosi poniżej" -#: src/libslic3r/PrintConfig.cpp:2899 +#: src/libslic3r/PrintConfig.cpp:2908 msgid "Enable hollowing" msgstr "Włącz drążenie" @@ -2148,10 +2197,10 @@ msgstr "Zmienna wysokość warstwy" msgid "Enable vertical mirroring of output images" msgstr "Włącz odbicie pionowe dla obrazów wyjściowych" -#: src/slic3r/GUI/Tab.cpp:1536 src/slic3r/GUI/Tab.cpp:1980 +#: src/slic3r/GUI/Tab.cpp:1534 src/slic3r/GUI/Tab.cpp:1982 #: src/libslic3r/PrintConfig.cpp:385 src/libslic3r/PrintConfig.cpp:395 msgid "End G-code" -msgstr "Końcowy G-code" +msgstr "G-code końcowy" #: src/libslic3r/PrintConfig.cpp:1924 msgid "Enforce support for the first" @@ -2170,39 +2219,39 @@ msgstr "Zakolejkowano" msgid "Ensure vertical shell thickness" msgstr "Zagwarantuj odpowiednią grubość ścianki" -#: src/slic3r/GUI/DoubleSlider.cpp:1590 +#: src/slic3r/GUI/DoubleSlider.cpp:1618 msgid "Enter custom G-code used on current layer" msgstr "Wprowadź własny G-code do wykonania na tej warstwie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Enter new name" msgstr "Wprowadź nową nazwę" -#: src/slic3r/GUI/wxExtensions.cpp:3513 -msgid "Enter short message shown on Printer display during pause print" -msgstr "Wpisz krótki komunikat pokazywany na wyświetlaczu drukarki podczas wstrzymania wydruku" - -#: src/slic3r/GUI/DoubleSlider.cpp:1606 +#: src/slic3r/GUI/DoubleSlider.cpp:1634 msgid "Enter short message shown on Printer display when a print is paused" msgstr "Wpisz krótką wiadomość wyświetlaną na ekranie drukarki, gdy druk jest wstrzymany" -#: src/slic3r/GUI/ConfigWizard.cpp:1048 +#: src/slic3r/GUI/ConfigWizard.cpp:1047 msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed." msgstr "Wprowadź temperaturę potrzebną do dobrego przylegania filamentu do powierzchni podgrzewanego stołu." -#: src/slic3r/GUI/ConfigWizard.cpp:980 +#: src/slic3r/GUI/ConfigWizard.cpp:979 msgid "Enter the diameter of your filament." msgstr "Wprowadź średnicę filamentu." -#: src/slic3r/GUI/ConfigWizard.cpp:967 +#: src/slic3r/GUI/ConfigWizard.cpp:966 msgid "Enter the diameter of your printer's hot end nozzle." msgstr "Wprowadź średnicę dyszy hotendu." -#: src/slic3r/GUI/DoubleSlider.cpp:1622 +#: src/slic3r/GUI/DoubleSlider.cpp:1650 msgid "Enter the height you want to jump to" -msgstr "Wprowadź wysokość, do której chcesz przejść." +msgstr "Wprowadź wysokość, do której chcesz przejść" -#: src/slic3r/GUI/ConfigWizard.cpp:1034 +#: src/slic3r/GUI/Plater.cpp:4751 +msgid "Enter the number of copies:" +msgstr "Wpisz liczbę kopii:" + +#: src/slic3r/GUI/ConfigWizard.cpp:1033 msgid "Enter the temperature needed for extruding your filament." msgstr "Wprowadź temperaturę potrzebną do ekstruzji filamentu." @@ -2218,27 +2267,27 @@ msgstr "Wprowadź gęstość filamentu. Służy tylko statystykom. Dobrą metod msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Wprowadź średnicę filamentu. Wymagana jest precyzja, więc użyj suwmiarki i zmierz filament w kilku miejscach, potem oblicz średnią." -#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:787 +#: src/slic3r/GUI/MainFrame.cpp:422 src/slic3r/GUI/MainFrame.cpp:785 #: src/slic3r/GUI/PrintHostDialogs.cpp:231 msgid "Error" msgstr "Błąd" #: src/slic3r/GUI/FirmwareDialog.cpp:645 -#, possible-c-format +#, c-format msgid "Error accessing port at %s: %s" msgstr "Brak dostępu do portu %s: %s" -#: src/slic3r/GUI/Plater.cpp:3441 +#: src/slic3r/GUI/Plater.cpp:3433 msgid "Error during reload" msgstr "Błąd podczas przeładowywania" -#: src/slic3r/GUI/Plater.cpp:5073 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5043 +#, c-format msgid "Error exporting 3MF file %s" msgstr "Błąd eksportowania pliku 3MF %s" -#: src/slic3r/GUI/Plater.cpp:5025 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:5005 +#, c-format msgid "Error exporting AMF file %s" msgstr "Błąd eksportu pliku AMF %s" @@ -2246,7 +2295,7 @@ msgstr "Błąd eksportu pliku AMF %s" msgid "Error Message" msgstr "Komunikat o błędzie" -#: src/slic3r/GUI/AppConfig.cpp:118 +#: src/slic3r/GUI/AppConfig.cpp:114 msgid "Error parsing PrusaSlicer config file, it is probably corrupted. Try to manually delete the file to recover from the error. Your user profiles will not be affected." msgstr "Błąd przetwarzania pliku konfiguracyjnego PrusaSlicer. Prawdopodobnie jest uszkodzony. Spróbuj ręcznie usunąć plik, aby pozbyć się błędu. Nie wpłynie to na Twoje profile." @@ -2258,7 +2307,7 @@ msgstr "Błąd wysyłania do serwera druku:" msgid "Error with zip archive" msgstr "Błąd archiwum .zip" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1892 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1918 msgid "Error!" msgstr "Błąd!" @@ -2267,7 +2316,7 @@ msgid "Error! Invalid model" msgstr "Błąd! Nieprawidłowy model" #: src/slic3r/GUI/FirmwareDialog.cpp:647 -#, possible-c-format +#, c-format msgid "Error: %s" msgstr "Błąd: %s" @@ -2275,12 +2324,12 @@ msgstr "Błąd: %s" msgid "ERROR: not enough resources to execute a new job." msgstr "BŁĄD: brak zasobów do wykonania nowego zadania." -#: src/slic3r/GUI/Plater.cpp:242 src/slic3r/GUI/Plater.cpp:1213 -#: src/slic3r/GUI/Plater.cpp:1255 +#: src/slic3r/GUI/Plater.cpp:240 src/slic3r/GUI/Plater.cpp:1216 +#: src/slic3r/GUI/Plater.cpp:1258 msgid "Estimated printing time" msgstr "Szacowany czas druku" -#: src/slic3r/GUI/Plater.cpp:499 +#: src/slic3r/GUI/Plater.cpp:502 msgid "Everywhere" msgstr "Wszędzie" @@ -2292,16 +2341,16 @@ msgstr "za wyjątkiem pierwszych %1% warstw." msgid "except for the first layer." msgstr "za wyjątkiem pierwszej warstwy." -#: src/libslic3r/Print.cpp:1373 +#: src/libslic3r/Print.cpp:1377 msgid "Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm" msgstr "Wartość %1%=%2% mm jest zbyt duża, żeby mogła być wydrukowana z dyszą o średnicy %3% mm" #: src/slic3r/GUI/UpdateDialogs.cpp:191 src/slic3r/GUI/UpdateDialogs.cpp:246 -#, possible-c-format +#, c-format msgid "Exit %s" msgstr "Wyjście %s" -#: src/libslic3r/PrintConfig.cpp:361 +#: src/libslic3r/PrintConfig.cpp:371 msgid "Experimental option for preventing support material from being generated under bridged areas." msgstr "Funkcja eksperymentalna mająca zapobiegać tworzeniu podpór pod mostami." @@ -2313,7 +2362,7 @@ msgstr "Opcja eksperymentalna dostosowująca przepływ przy zwisach (zostanie za msgid "Expert" msgstr "Ekspert" -#: src/slic3r/GUI/ConfigWizard.cpp:823 +#: src/slic3r/GUI/ConfigWizard.cpp:822 msgid "Expert mode" msgstr "Tryb Eksperta" @@ -2321,7 +2370,7 @@ msgstr "Tryb Eksperta" msgid "Expert View Mode" msgstr "Tryb Widoku Eksperta" -#: src/slic3r/GUI/Plater.cpp:5555 +#: src/slic3r/GUI/Plater.cpp:5521 msgid "Export" msgstr "Eksport" @@ -2329,7 +2378,7 @@ msgstr "Eksport" msgid "Export &Config" msgstr "Eksport Konfigura&cji" -#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:751 +#: src/slic3r/GUI/MainFrame.cpp:477 src/slic3r/GUI/MainFrame.cpp:749 msgid "Export &G-code" msgstr "Eksport &G-code" @@ -2337,7 +2386,7 @@ msgstr "Eksport &G-code" msgid "Export &toolpaths as OBJ" msgstr "Ekspor&t ścieżek narzędzi jako OBJ" -#: src/libslic3r/PrintConfig.cpp:3323 +#: src/libslic3r/PrintConfig.cpp:3338 msgid "Export 3MF" msgstr "Eksport 3MF" @@ -2345,15 +2394,15 @@ msgstr "Eksport 3MF" msgid "Export all presets to file" msgstr "Eksport wszystkich zestawów ustawień do pliku" -#: src/libslic3r/PrintConfig.cpp:3328 +#: src/libslic3r/PrintConfig.cpp:3343 msgid "Export AMF" msgstr "Eksport AMF" -#: src/slic3r/GUI/Plater.cpp:2582 +#: src/slic3r/GUI/Plater.cpp:2598 msgid "Export AMF file:" msgstr "Eksport pliku AMF:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1657 src/slic3r/GUI/Plater.cpp:3966 msgid "Export as STL" msgstr "Eksport jako STL" @@ -2363,7 +2412,7 @@ msgstr "Eksport konfiguracji" #: src/slic3r/GUI/MainFrame.cpp:503 msgid "Export Config &Bundle" -msgstr "Eksport Paczki Konfi&guracyjnej" +msgstr "Eks&port Paczki Konfiguracyjnej" #: src/slic3r/GUI/MainFrame.cpp:500 msgid "Export current configuration to file" @@ -2385,7 +2434,7 @@ msgstr "Eksport zawartości stołu jako STL" msgid "Export current plate as STL including supports" msgstr "Eksport zawartości stołu jako STL wraz z podporami" -#: src/slic3r/GUI/Plater.cpp:3673 +#: src/slic3r/GUI/Plater.cpp:3664 msgid "Export failed" msgstr "Niepowodzenie eksportu" @@ -2393,21 +2442,20 @@ msgstr "Niepowodzenie eksportu" msgid "Export full pathnames of models and parts sources into 3mf and amf files" msgstr "Eksport pełnych ścieżek źródłowych modeli i części do plików 3MF i AMF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:110 src/slic3r/GUI/Plater.cpp:888 -#: src/slic3r/GUI/Plater.cpp:5555 src/libslic3r/PrintConfig.cpp:3338 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 src/slic3r/GUI/Plater.cpp:891 +#: src/slic3r/GUI/Plater.cpp:5521 src/libslic3r/PrintConfig.cpp:3353 msgid "Export G-code" msgstr "Eksport G-code" -#: src/libslic3r/PrintConfig.cpp:3305 +#: src/libslic3r/PrintConfig.cpp:3320 msgid "Export OBJ" msgstr "Eksport OBJ" -#: src/slic3r/GUI/Plater.cpp:2594 +#: src/slic3r/GUI/Plater.cpp:2610 msgid "Export OBJ file:" msgstr "Eksport pliku OBJ:" -#: src/slic3r/Utils/FixModelByWin10.cpp:369 -#: src/slic3r/Utils/FixModelByWin10.cpp:374 +#: src/slic3r/Utils/FixModelByWin10.cpp:368 msgid "Export of a temporary 3mf file failed" msgstr "Niepowodzenie eksportu tymczasowego pliku 3MF" @@ -2421,45 +2469,45 @@ msgstr "Eksport zawartości stołu jako &STL" #: src/slic3r/GUI/MainFrame.cpp:489 msgid "Export plate as STL &including supports" -msgstr "Eksportuj zawartość stołu do STL zaw&ierając podpory" +msgstr "Eksport zawartośc&i stołu z podporami do STL" -#: src/libslic3r/PrintConfig.cpp:3317 +#: src/libslic3r/PrintConfig.cpp:3332 msgid "Export SLA" msgstr "Eksport SLA" -#: src/slic3r/GUI/Preferences.cpp:73 +#: src/slic3r/GUI/Preferences.cpp:72 msgid "Export sources full pathnames to 3mf and amf" msgstr "Eksport pełnych ścieżek do 3MF i AMF" -#: src/libslic3r/PrintConfig.cpp:3333 +#: src/libslic3r/PrintConfig.cpp:3348 msgid "Export STL" msgstr "Eksport STL" -#: src/slic3r/GUI/Plater.cpp:2575 +#: src/slic3r/GUI/Plater.cpp:2591 msgid "Export STL file:" msgstr "Eksport pliku STL:" -#: src/libslic3r/PrintConfig.cpp:3324 +#: src/libslic3r/PrintConfig.cpp:3339 msgid "Export the model(s) as 3MF." msgstr "Eksport model(i) jako 3MF." -#: src/libslic3r/PrintConfig.cpp:3329 +#: src/libslic3r/PrintConfig.cpp:3344 msgid "Export the model(s) as AMF." msgstr "Eksport model(i) jako AMF." -#: src/libslic3r/PrintConfig.cpp:3306 +#: src/libslic3r/PrintConfig.cpp:3321 msgid "Export the model(s) as OBJ." msgstr "Eksport model(i) jako OBJ." -#: src/libslic3r/PrintConfig.cpp:3334 +#: src/libslic3r/PrintConfig.cpp:3349 msgid "Export the model(s) as STL." msgstr "Eksport modeli jako STL." -#: src/slic3r/GUI/Plater.cpp:3975 +#: src/slic3r/GUI/Plater.cpp:3966 msgid "Export the selected object as STL file" msgstr "Eksport wybranego modelu jako plik STL" -#: src/slic3r/GUI/Plater.cpp:877 +#: src/slic3r/GUI/Plater.cpp:880 msgid "Export to SD card / Flash drive" msgstr "Eksport na kartę SD / pamięć flash" @@ -2467,7 +2515,7 @@ msgstr "Eksport na kartę SD / pamięć flash" msgid "Export toolpaths as OBJ" msgstr "Eksport ścieżek narzędzi jako OBJ" -#: src/libslic3r/Print.cpp:1634 +#: src/libslic3r/Print.cpp:1638 msgid "Exporting G-code" msgstr "Eksportowanie G-code" @@ -2484,15 +2532,15 @@ msgstr "Eksport modelu źródłowego" msgid "Exposition time is out of printer profile bounds." msgstr "Czas naświetlania jest poza zakresem profilu drukarki." -#: src/slic3r/GUI/Tab.cpp:2113 src/slic3r/GUI/Tab.cpp:3499 +#: src/slic3r/GUI/Tab.cpp:2117 src/slic3r/GUI/Tab.cpp:3515 msgid "Exposure" msgstr "Naświetlanie" -#: src/libslic3r/PrintConfig.cpp:2532 src/libslic3r/PrintConfig.cpp:2533 +#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2542 msgid "Exposure time" msgstr "Czas naświetlania" -#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:311 +#: src/slic3r/GUI/GUI_Preview.cpp:238 src/libslic3r/ExtrusionEntity.cpp:311 msgid "External perimeter" msgstr "Obrys zewnętrzny" @@ -2520,23 +2568,23 @@ msgstr "Dodatkowa długość ładowania" msgid "Extra perimeters if needed" msgstr "Dodatkowe obrysy jeśli potrzebne" -#: src/slic3r/GUI/GUI_ObjectList.cpp:276 src/slic3r/GUI/Tab.cpp:1436 +#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1434 #: src/slic3r/GUI/wxExtensions.cpp:598 src/libslic3r/PrintConfig.cpp:487 msgid "Extruder" msgstr "Ekstruder" -#: src/slic3r/GUI/DoubleSlider.cpp:1102 src/slic3r/GUI/DoubleSlider.cpp:1138 -#: src/slic3r/GUI/GLCanvas3D.cpp:982 src/slic3r/GUI/Tab.cpp:2316 -#: src/libslic3r/GCode/PreviewData.cpp:445 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:1134 src/slic3r/GUI/DoubleSlider.cpp:1170 +#: src/slic3r/GUI/GLCanvas3D.cpp:977 src/slic3r/GUI/GUI_ObjectList.cpp:1704 +#: src/slic3r/GUI/Tab.cpp:2320 src/libslic3r/GCode/PreviewData.cpp:445 +#, c-format msgid "Extruder %d" msgstr "Ekstruder %d" -#: src/slic3r/GUI/DoubleSlider.cpp:978 +#: src/slic3r/GUI/DoubleSlider.cpp:1011 msgid "Extruder (tool) is changed to Extruder \"%1%\"" msgstr "Ekstruder został zmieniony na ekstruder \"%1%\"" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Extruder and Bed Temperatures" msgstr "Temperatury ekstrudera i stołu" @@ -2544,7 +2592,7 @@ msgstr "Temperatury ekstrudera i stołu" msgid "Extruder changed to" msgstr "Ekstruder zmieniony na" -#: src/slic3r/GUI/Tab.cpp:1235 +#: src/slic3r/GUI/Tab.cpp:1233 msgid "Extruder clearance (mm)" msgstr "Odstęp od ekstrudera (mm)" @@ -2564,8 +2612,8 @@ msgstr "Temperatura ekstrudera dla pierwszej warstwy. Jeśli chcesz ręcznie kon msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output." msgstr "Temperatura ekstrudera dla warstw powyżej pierwszej. Ustaw zero aby wyłączyć komendy kontrolujące temperaturę w pliku wyjściowym." -#: src/slic3r/GUI/GUI_ObjectList.cpp:97 src/slic3r/GUI/GUI_ObjectList.cpp:615 -#: src/slic3r/GUI/Tab.cpp:1182 src/slic3r/GUI/Tab.cpp:1836 +#: src/slic3r/GUI/GUI_ObjectList.cpp:99 src/slic3r/GUI/GUI_ObjectList.cpp:617 +#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:1838 #: src/libslic3r/PrintConfig.cpp:488 src/libslic3r/PrintConfig.cpp:1002 #: src/libslic3r/PrintConfig.cpp:1409 src/libslic3r/PrintConfig.cpp:1737 #: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1965 @@ -2580,15 +2628,15 @@ msgstr "Oś ekstruzji" msgid "Extrusion multiplier" msgstr "Współczynnik ekstruzji" -#: src/slic3r/GUI/ConfigWizard.cpp:1038 +#: src/slic3r/GUI/ConfigWizard.cpp:1037 msgid "Extrusion Temperature:" msgstr "Temperatura ekstrudera:" -#: src/slic3r/GUI/Tab.cpp:1207 +#: src/slic3r/GUI/Tab.cpp:1205 msgid "Extrusion width" msgstr "Szerokość ekstruzji" -#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_ObjectList.cpp:100 src/slic3r/GUI/GUI_ObjectList.cpp:618 #: src/libslic3r/PrintConfig.cpp:447 src/libslic3r/PrintConfig.cpp:555 #: src/libslic3r/PrintConfig.cpp:877 src/libslic3r/PrintConfig.cpp:1010 #: src/libslic3r/PrintConfig.cpp:1418 src/libslic3r/PrintConfig.cpp:1757 @@ -2596,23 +2644,23 @@ msgstr "Szerokość ekstruzji" msgid "Extrusion Width" msgstr "Szerokość Ekstruzji" -#: src/slic3r/GUI/Plater.cpp:164 +#: src/slic3r/GUI/Plater.cpp:162 msgid "Facets" msgstr "Powierzchnie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:347 +#: src/slic3r/GUI/GUI_ObjectList.cpp:349 msgid "facets added" msgstr "dodano powierzchnie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:346 +#: src/slic3r/GUI/GUI_ObjectList.cpp:348 msgid "facets removed" msgstr "usunięto powierzchnie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:348 +#: src/slic3r/GUI/GUI_ObjectList.cpp:350 msgid "facets reversed" msgstr "odwrócono powierzchnie" -#: src/libslic3r/PrintConfig.cpp:2508 +#: src/libslic3r/PrintConfig.cpp:2517 msgid "Faded layers" msgstr "Warstwy przejściowe" @@ -2632,11 +2680,11 @@ msgstr "Błąd przetwarzania wzoru output_filename_format (format nazwy pliku wy msgid "Fan" msgstr "Wentylator" -#: src/slic3r/GUI/Tab.cpp:1458 +#: src/slic3r/GUI/Tab.cpp:1456 msgid "Fan settings" msgstr "Ustawienia wentylatora" -#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/Tab.cpp:1459 +#: src/slic3r/GUI/GUI_Preview.cpp:225 src/slic3r/GUI/Tab.cpp:1457 msgid "Fan speed" msgstr "Prędkość wentylatora" @@ -2656,33 +2704,33 @@ msgstr "Szybkie przechylanie" msgid "Fatal error" msgstr "Błąd krytyczny" -#: src/slic3r/GUI/GUI_Preview.cpp:223 src/slic3r/GUI/GUI_Preview.cpp:577 +#: src/slic3r/GUI/GUI_Preview.cpp:221 src/slic3r/GUI/GUI_Preview.cpp:575 #: src/libslic3r/GCode/PreviewData.cpp:345 msgid "Feature type" msgstr "Rodzaj funkcji" -#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/GUI_Preview.cpp:237 +#: src/slic3r/GUI/GUI_Preview.cpp:234 src/slic3r/GUI/GUI_Preview.cpp:235 msgid "Feature types" msgstr "Rodzaje funkcji" -#: src/slic3r/GUI/ConfigWizard.cpp:1528 +#: src/slic3r/GUI/ConfigWizard.cpp:1525 msgid "FFF Technology Printers" msgstr "Drukarki FFF" -#: src/slic3r/GUI/Plater.cpp:813 src/slic3r/GUI/Tab.cpp:1427 -#: src/slic3r/GUI/Tab.cpp:1428 +#: src/slic3r/GUI/Plater.cpp:816 src/slic3r/GUI/Tab.cpp:1425 +#: src/slic3r/GUI/Tab.cpp:1426 msgid "Filament" msgstr "Filament" -#: src/slic3r/GUI/Preset.cpp:1472 +#: src/slic3r/GUI/Preset.cpp:1522 msgid "filament" msgstr "filament" -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Filament and Nozzle Diameters" msgstr "Średnice filamentu i dyszy" -#: src/slic3r/GUI/ConfigWizard.cpp:984 +#: src/slic3r/GUI/ConfigWizard.cpp:983 msgid "Filament Diameter:" msgstr "Średnica Filamentu:" @@ -2698,7 +2746,7 @@ msgstr "Czas ładowania filamentu" msgid "Filament notes" msgstr "Notatki do filamentu" -#: src/slic3r/GUI/Tab.cpp:1325 src/slic3r/GUI/Tab.cpp:1380 +#: src/slic3r/GUI/Tab.cpp:1323 src/slic3r/GUI/Tab.cpp:1378 msgid "Filament Overrides" msgstr "Nadpisywane Ustawienia" @@ -2706,15 +2754,15 @@ msgstr "Nadpisywane Ustawienia" msgid "Filament parking position" msgstr "Pozycja zatrzymania filamentu" -#: src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filament Profiles Selection" msgstr "Wybór profili filamentu" -#: src/slic3r/GUI/Tab.cpp:1473 +#: src/slic3r/GUI/Tab.cpp:1471 msgid "Filament properties" msgstr "Właściwości filamentu" -#: src/slic3r/GUI/Tab.hpp:354 +#: src/slic3r/GUI/Tab.hpp:355 msgid "Filament Settings" msgstr "Ustawienia Filamentu" @@ -2730,7 +2778,7 @@ msgstr "Czas rozładowania filamentu" msgid "filaments" msgstr "filamenty" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2014 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2013 msgid "Filaments" msgstr "Filamenty" @@ -2742,7 +2790,7 @@ msgstr "niepowodzenia zamykania pliku" msgid "file create failed" msgstr "niepowodzenie tworzenia pliku" -#: src/slic3r/GUI/MainFrame.cpp:793 +#: src/slic3r/GUI/MainFrame.cpp:791 msgid "File Not Found" msgstr "Nie znaleziono pliku" @@ -2806,7 +2854,7 @@ msgstr "Wzór wypełnienia górnej warstwy. Ma wpływ jedynie na zewnętrzne wid msgid "Finished" msgstr "Zakończono" -#: src/slic3r/GUI/ConfigWizard.cpp:892 src/slic3r/GUI/Tab.cpp:1945 +#: src/slic3r/GUI/ConfigWizard.cpp:891 src/slic3r/GUI/Tab.cpp:1947 msgid "Firmware" msgstr "Firmware" @@ -2818,11 +2866,11 @@ msgstr "Flasher firmware" msgid "Firmware image:" msgstr "Obraz firmware:" -#: src/slic3r/GUI/Tab.cpp:2573 +#: src/slic3r/GUI/Tab.cpp:2577 msgid "Firmware Retraction" msgstr "Retrakcja z firmware" -#: src/slic3r/GUI/ConfigWizard.cpp:892 +#: src/slic3r/GUI/ConfigWizard.cpp:891 msgid "Firmware Type" msgstr "Typ firmware" @@ -2835,7 +2883,7 @@ msgstr "Pierwsza warstwa" msgid "First layer height" msgstr "Wysokość pierwszej warstwy" -#: src/libslic3r/Print.cpp:1418 +#: src/libslic3r/Print.cpp:1422 msgid "First layer height can't be greater than nozzle diameter" msgstr "Wysokość pierwszej warstwy nie może być większa od średnicy dyszy" @@ -2847,11 +2895,11 @@ msgstr "Prędkość pierwszej warstwy" msgid "First layer volumetric" msgstr "Na pierwszej warstwie" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1637 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1647 msgid "Fix through the Netfabb" msgstr "Napraw używając Netfabb" -#: src/slic3r/GUI/Plater.cpp:3482 +#: src/slic3r/GUI/Plater.cpp:3473 msgid "Fix Throught NetFabb" msgstr "Napraw przez NetFabb" @@ -2883,7 +2931,7 @@ msgstr "Flashowanie w toku. Proszę nie odłączać drukarki!" msgid "Flashing succeeded!" msgstr "Flashowanie pomyślne!" -#: src/slic3r/GUI/Tab.cpp:1220 +#: src/slic3r/GUI/Tab.cpp:1218 msgid "Flow" msgstr "Przepływ" @@ -2891,48 +2939,34 @@ msgstr "Przepływ" msgid "flow rate is maximized" msgstr "przepływ osiąga wartości szczytowe" -#: src/slic3r/GUI/wxExtensions.cpp:3088 -msgid "For add another code use right mouse button click" -msgstr "Kliknij prawym przyciskiem myszy, aby dodać nowy kod." - -#: src/slic3r/GUI/wxExtensions.cpp:3087 -msgid "For add change extruder use left mouse button click" -msgstr "Kliknij lewym przyciskiem myszki, aby dodać zmianę ekstrudera" - -#: src/slic3r/GUI/wxExtensions.cpp:3086 -msgid "For add color change use left mouse button click" -msgstr "Kliknij lewym przyciskiem myszy, aby dodać zmianę koloru" - -#: src/slic3r/GUI/wxExtensions.cpp:3096 -msgid "For Delete \"%1%\" code use left mouse button click\nFor Edit \"%1%\" code use right mouse button click" -msgstr "Aby usunąć kod \"%1%\", kliknij lewym przyciskiem myszki\nAby edytować kod \"%1%\", kliknij prawym przyciskiem" - -#: src/slic3r/GUI/wxExtensions.cpp:3090 -msgid "For Delete color change use left mouse button click\nFor Edit color use right mouse button click" -msgstr "Aby usunąć zmianę koloru, kliknij lewym przyciskiem myszy\nAby edytować kolor, kliknij prawym przyciskiem" - #: src/slic3r/GUI/UpdateDialogs.cpp:286 msgid "For more information please visit our wiki page:" msgstr "Aby uzyskać więcej informacji odwiedź naszą wiki:" -#: src/slic3r/GUI/Plater.cpp:498 src/slic3r/GUI/Plater.cpp:621 +#: src/slic3r/GUI/Plater.cpp:501 src/slic3r/GUI/Plater.cpp:624 msgid "For support enforcers only" msgstr "Tylko dla wymuszania podpór" #. TRN Description for "WHITE BULLET" -#: src/slic3r/GUI/Tab.cpp:3249 -msgid "for the left button: \tindicates a non-system (or non-default) preset,\nfor the right button: \tindicates that the settings hasn't been modified." -msgstr "dla lewego przycisku: wskazuje na niesystemowy (lub inny niż domyślny) zestaw ustawień,\ndla prawego przycisku: wskazuje, że ustawienia nie zostały zmodyfikowane." +#: src/slic3r/GUI/Tab.cpp:3265 +msgid "" +"for the left button: \tindicates a non-system (or non-default) preset,\n" +"for the right button: \tindicates that the settings hasn't been modified." +msgstr "" +"dla lewego przycisku: wskazuje na niesystemowy (lub inny niż domyślny) zestaw ustawień,\n" +"dla prawego przycisku: wskazuje, że ustawienia nie zostały zmodyfikowane." #: src/slic3r/GUI/ConfigManipulation.cpp:136 -msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers." +msgid "" +"For the Wipe Tower to work with the soluble supports, the support layers\n" +"need to be synchronized with the object layers." msgstr "Do działania wieży czyszczącej z podporami rozpuszczalnymi konieczna jest synchronizacja wysokości warstw modelu i podpór." -#: src/libslic3r/Print.cpp:1392 +#: src/libslic3r/Print.cpp:1396 msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers." msgstr "Do działania wieży czyszczącej z podporami rozpuszczalnymi konieczna jest synchronizacja wysokości warstw modelu i podpór." -#: src/libslic3r/PrintConfig.cpp:2855 +#: src/libslic3r/PrintConfig.cpp:2864 msgid "Force pad around object everywhere" msgstr "Wymuś podkładkę wokół wszystkich modeli, wszędzie" @@ -2948,7 +2982,7 @@ msgstr "Wymuś generowanie zwartych powłok pomiędzy przylegającymi do siebie msgid "From" msgstr "Od" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2197 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2223 msgid "From Object List You can't delete the last solid part from object." msgstr "Nie możesz usunąć ostatniej bryły modelu z Listy Modeli." @@ -2960,19 +2994,23 @@ msgstr "Przód" msgid "Front View" msgstr "Widok przodu" -#: src/slic3r/GUI/Tab.cpp:1015 +#: src/slic3r/GUI/Tab.cpp:1013 msgid "full profile name" msgstr "pełna nazwa profilu" -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "G-code" msgstr "G-code" -#: src/slic3r/GUI/DoubleSlider.cpp:987 -msgid "G-code associated to this tick mark is in a conflict with print mode.\nEditing it will cause changes of Slider data." -msgstr "G-code powiązany z tym zaznaczeniem powoduje konflikt z obecnym trybem drukowania.\nEdytowanie go spowoduje zmianę danych suwaka." +#: src/slic3r/GUI/DoubleSlider.cpp:1021 +msgid "" +"G-code associated to this tick mark is in a conflict with print mode.\n" +"Editing it will cause changes of Slider data." +msgstr "" +"G-code powiązany z tym zaznaczeniem powoduje konflikt z obecnym trybem drukowania.\n" +"Edytowanie go spowoduje zmianę danych suwaka." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:122 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:130 msgid "G-code file exported to %1%" msgstr "Plik G-code wyeksportowany do %1%" @@ -2984,17 +3022,17 @@ msgstr "Rodzaj G-code" msgid "g/cm³" msgstr "g/cm³" -#: src/libslic3r/PrintConfig.cpp:2496 +#: src/libslic3r/PrintConfig.cpp:2505 msgid "g/ml" msgstr "g/ml" -#: src/slic3r/GUI/GUI_Preview.cpp:246 src/libslic3r/ExtrusionEntity.cpp:317 +#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:317 #: src/libslic3r/PrintConfig.cpp:918 msgid "Gap fill" msgstr "Wypełnienie szpar" -#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1794 -#: src/slic3r/GUI/Tab.cpp:2038 +#: src/slic3r/GUI/Preferences.cpp:22 src/slic3r/GUI/Tab.cpp:1796 +#: src/slic3r/GUI/Tab.cpp:2040 msgid "General" msgstr "Ogólne" @@ -3010,23 +3048,23 @@ msgstr "Generuj materiał podporowy" msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate." msgstr "Generuj materiał podporowy dla określonej liczby warstw licząc od dołu, niezależnie od tego czy normalny materiał podporowy jest włączony i niezależnie od progu kąta. Przydaje się aby uzyskać lepszą przyczepność modelu, które mają bardzo małą powierzchnię kontaktu z powierzchnią druku." -#: src/libslic3r/PrintConfig.cpp:2604 +#: src/libslic3r/PrintConfig.cpp:2613 msgid "Generate supports" msgstr "Generowanie podpór" -#: src/libslic3r/PrintConfig.cpp:2606 +#: src/libslic3r/PrintConfig.cpp:2615 msgid "Generate supports for the models" msgstr "Generowanie podpór dla modeli" -#: src/libslic3r/Print.cpp:1610 +#: src/libslic3r/Print.cpp:1614 msgid "Generating brim" msgstr "Generowanie obramowania (brim)" -#: src/libslic3r/Print.cpp:1638 +#: src/libslic3r/Print.cpp:1642 msgid "Generating G-code" msgstr "Generowanie G-code" -#: src/libslic3r/SLAPrintSteps.cpp:46 +#: src/libslic3r/SLAPrintSteps.cpp:48 msgid "Generating pad" msgstr "Generowanie podkładki" @@ -3034,7 +3072,7 @@ msgstr "Generowanie podkładki" msgid "Generating perimeters" msgstr "Generowanie obrysów" -#: src/libslic3r/Print.cpp:1602 +#: src/libslic3r/Print.cpp:1606 msgid "Generating skirt" msgstr "Generowanie skirtu" @@ -3042,35 +3080,35 @@ msgstr "Generowanie skirtu" msgid "Generating support material" msgstr "Generowanie materiału podporowego" -#: src/libslic3r/SLAPrintSteps.cpp:44 src/libslic3r/SLAPrintSteps.cpp:325 +#: src/libslic3r/SLAPrintSteps.cpp:46 src/libslic3r/SLAPrintSteps.cpp:356 msgid "Generating support points" msgstr "Generowanie punktów podpór" -#: src/libslic3r/SLAPrintSteps.cpp:45 +#: src/libslic3r/SLAPrintSteps.cpp:47 msgid "Generating support tree" msgstr "Generowanie drzewa podpór" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1996 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2022 msgid "Generic" msgstr "Źródłowy" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:147 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:175 msgid "Gizmo cut" msgstr "Cięcie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:144 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:172 msgid "Gizmo move" msgstr "Przemieszczanie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:148 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:176 msgid "Gizmo Place face on bed" msgstr "Położenie na płaszczyźnie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:174 msgid "Gizmo rotate" msgstr "Obracanie przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:145 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:173 msgid "Gizmo scale" msgstr "Skalowanie przy pomocy \"uchwytów\"" @@ -3078,25 +3116,25 @@ msgstr "Skalowanie przy pomocy \"uchwytów\"" msgid "Gizmo SLA hollow" msgstr "Drążenie SLA z uchwytem" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:178 msgid "Gizmo SLA support points" msgstr "Punkty podpór SLA przy pomocy \"uchwytów\"" -#: src/slic3r/GUI/GLCanvas3D.cpp:2945 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:573 +#: src/slic3r/GUI/GLCanvas3D.cpp:2921 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:562 msgid "Gizmo-Move" msgstr "Uchwyt-Przesuń" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:500 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:489 msgid "Gizmo-Place on Face" msgstr "Uchwyt-Połóż na Płaszczyźnie" -#: src/slic3r/GUI/GLCanvas3D.cpp:3025 -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:575 +#: src/slic3r/GUI/GLCanvas3D.cpp:3001 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:564 msgid "Gizmo-Rotate" msgstr "Uchwyt-Obróć" -#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:574 +#: src/slic3r/GUI/Gizmos/GLGizmosManager.cpp:563 msgid "Gizmo-Scale" msgstr "Uchwyt-Skaluj" @@ -3108,7 +3146,7 @@ msgstr "Uchwyty" msgid "GNU Affero General Public License, version 3" msgstr "Ogólna Licencja Publiczna (GPL) GNU Affero, wersja 3" -#: src/slic3r/GUI/ConfigWizard.cpp:981 +#: src/slic3r/GUI/ConfigWizard.cpp:980 msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average." msgstr "Wymagana jest spora precyzja, użyj więc suwmiarki i przeprowadź kilka pomiarów w sporych odstępach od siebie i oblicz średnią." @@ -3116,11 +3154,11 @@ msgstr "Wymagana jest spora precyzja, użyj więc suwmiarki i przeprowadź kilka msgid "Grid" msgstr "Kratka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2454 msgid "Group manipulation" msgstr "Manipulacja grupą" -#: src/slic3r/GUI/Preferences.cpp:137 +#: src/slic3r/GUI/Preferences.cpp:133 msgid "GUI" msgstr "GUI" @@ -3128,7 +3166,7 @@ msgstr "GUI" msgid "Gyroid" msgstr "Gyroidalny" -#: src/slic3r/GUI/Tab.cpp:2921 +#: src/slic3r/GUI/Tab.cpp:2937 msgid "has the following unsaved changes:" msgstr "ma następujące niezapisane zmiany:" @@ -3144,7 +3182,7 @@ msgstr "Przenikanie łączników nie powinno być większe niż ich średnica." msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output." msgstr "Temperatura podgrzewanego stołu dla pierwszej warstwy. Ustaw zero aby wyłączyć komendy kontrolujące temperaturę stołu w pliku wyjściowym." -#: src/slic3r/GUI/GUI_Preview.cpp:224 src/libslic3r/PrintConfig.cpp:500 +#: src/slic3r/GUI/GUI_Preview.cpp:222 src/libslic3r/PrintConfig.cpp:500 msgid "Height" msgstr "Wysokość" @@ -3160,32 +3198,32 @@ msgstr "Wysokość skirtu wyrażona w warstwach. Ustawienie wysokiej wartości s msgid "Height of the display" msgstr "Wysokość wyświetlacza" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1498 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1500 msgid "Height range Modifier" msgstr "Modyfikator zakresu wysokości" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Height ranges" msgstr "Zakres wysokości" -#: src/libslic3r/PrintConfig.cpp:251 +#: src/libslic3r/PrintConfig.cpp:261 msgid "Heights at which a filament change is to occur." msgstr "Wysokość w osi Z, na której ma nastąpić zmiana filamentu." #: src/slic3r/GUI/ConfigWizard.cpp:433 -#, possible-c-format +#, c-format msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print." msgstr "Witaj w %s! Ten %s pomoże Ci z konfiguracją początkową - wszystko będzie gotowe do drukowania po zaledwie kilku kliknięciach." -#: src/libslic3r/PrintConfig.cpp:3350 +#: src/libslic3r/PrintConfig.cpp:3365 msgid "Help" msgstr "Pomoc" -#: src/libslic3r/PrintConfig.cpp:3356 +#: src/libslic3r/PrintConfig.cpp:3371 msgid "Help (FFF options)" msgstr "Pomoc (opcje FFF)" -#: src/libslic3r/PrintConfig.cpp:3361 +#: src/libslic3r/PrintConfig.cpp:3376 msgid "Help (SLA options)" msgstr "Pomoc (opcje SLA)" @@ -3197,7 +3235,7 @@ msgstr "To ustawienie odpowiada za objętość czyszczonego filamentu w (mm³) d msgid "High extruder current on filament swap" msgstr "Zwiększenie prądu ekstrudera przy zmianie filamentu" -#: src/slic3r/GUI/GLCanvas3D.cpp:282 +#: src/slic3r/GUI/GLCanvas3D.cpp:277 msgid "Higher print quality versus higher print speed." msgstr "Wyższa jakość druku vs wyższa prędkość." @@ -3205,7 +3243,7 @@ msgstr "Wyższa jakość druku vs wyższa prędkość." msgid "Hilbert Curve" msgstr "Krzywa Hilberta" -#: src/slic3r/GUI/Plater.cpp:1039 +#: src/slic3r/GUI/Plater.cpp:1042 msgid "Hold Shift to Slice & Export G-code" msgstr "Przytrzymaj Shift aby Pociąć i Wyeksportować G-code" @@ -3217,76 +3255,64 @@ msgstr "Głębokość otworu" msgid "Hole diameter" msgstr "Średnica otworu" -#: src/slic3r/GUI/Plater.cpp:2744 +#: src/slic3r/GUI/Plater.cpp:2760 msgid "Hollow" msgstr "Drążenie" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:960 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:977 msgid "Hollow and drill" msgstr "Drążenie i wiercenie" -#: src/libslic3r/PrintConfig.cpp:2901 +#: src/libslic3r/PrintConfig.cpp:2910 msgid "Hollow out a model to have an empty interior" -msgstr "Wydrąż model, aby uzyskać puste wnętrze." +msgstr "Wydrąż model, aby uzyskać puste wnętrze" #: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:41 msgid "Hollow this object" msgstr "Wydrąż ten model" -#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/Tab.cpp:3639 -#: src/slic3r/GUI/Tab.cpp:3640 src/libslic3r/SLA/Hollowing.cpp:46 +#: src/slic3r/GUI/GUI_ObjectList.cpp:108 src/slic3r/GUI/Tab.cpp:3654 +#: src/slic3r/GUI/Tab.cpp:3655 src/libslic3r/SLA/Hollowing.cpp:46 #: src/libslic3r/SLA/Hollowing.cpp:58 src/libslic3r/SLA/Hollowing.cpp:67 -#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2900 -#: src/libslic3r/PrintConfig.cpp:2907 src/libslic3r/PrintConfig.cpp:2917 -#: src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/SLA/Hollowing.cpp:76 src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2916 src/libslic3r/PrintConfig.cpp:2926 +#: src/libslic3r/PrintConfig.cpp:2935 msgid "Hollowing" msgstr "Drążenie" -#: src/libslic3r/PrintConfig.cpp:2916 -msgid "Hollowing accuracy" -msgstr "Dokładność" - -#: src/slic3r/GUI/Plater.cpp:2910 +#: src/slic3r/GUI/Plater.cpp:2926 msgid "Hollowing cancelled." msgstr "Drążenie anulowane." -#: src/libslic3r/PrintConfig.cpp:2925 -msgid "Hollowing closing distance" -msgstr "Dystans domykania" - -#: src/slic3r/GUI/Plater.cpp:2911 +#: src/slic3r/GUI/Plater.cpp:2927 msgid "Hollowing done." msgstr "Drążenie zakończone." -#: src/slic3r/GUI/Plater.cpp:2913 +#: src/slic3r/GUI/Plater.cpp:2929 msgid "Hollowing failed." msgstr "Drążenie nie powiodło się." -#: src/libslic3r/PrintConfig.cpp:2928 +#: src/libslic3r/PrintConfig.cpp:2937 msgid "Hollowing is done in two steps: first, an imaginary interior is calculated deeper (offset plus the closing distance) in the object and then it's inflated back to the specified offset. A greater closing distance makes the interior more rounded. At zero, the interior will resemble the exterior the most." msgstr "Drążenie wnętrza odbywa się w dwóch etapach: w pierwszym obliczana jest wewnątrz pusta przestrzeń o rozmiarach równych sumie grubości powłoki i dystansu domykania, a w kolejnym jest \"nadmuchiwane\" z powrotem do zadanej grubości. Większy dystans zamykania tworzy większe promienie we wnętrzu. Wartość \"0\" odda wnętrze najbardziej zbliżone do zewnętrznej powłoki." -#: src/libslic3r/SLAPrintSteps.cpp:41 +#: src/libslic3r/SLAPrintSteps.cpp:43 msgid "Hollowing model" msgstr "Drążenie modelu" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:791 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:813 msgid "Hollowing parameter change" msgstr "Zmiana parametrów drążenia" -#: src/libslic3r/PrintConfig.cpp:2906 -msgid "Hollowing thickness" -msgstr "Grubość ścianki" - #: src/libslic3r/PrintConfig.cpp:850 src/libslic3r/PrintConfig.cpp:2011 msgid "Honeycomb" msgstr "Plaster miodu" -#: src/slic3r/GUI/Tab.cpp:1066 +#: src/slic3r/GUI/Tab.cpp:1064 msgid "Horizontal shells" msgstr "Powłoka pozioma" -#: src/libslic3r/PrintConfig.cpp:235 +#: src/libslic3r/PrintConfig.cpp:245 msgid "Horizontal width of the brim that will be printed around each object on the first layer." msgstr "Szerokość brim (obramowania), drukowanego wokół każdego z modeli na pierwszej warstwie." @@ -3296,7 +3322,7 @@ msgstr "Host" #: src/libslic3r/PrintConfig.cpp:1332 msgid "Host Type" -msgstr "Rodzaj Serwera" +msgstr "Rodzaj serwera" #: src/slic3r/GUI/BonjourDialog.cpp:73 msgid "Hostname" @@ -3304,25 +3330,29 @@ msgstr "Nazwa hosta" #: src/libslic3r/PrintConfig.cpp:97 msgid "Hostname, IP or URL" -msgstr "Nazwa Hosta, IP lub URL" +msgstr "Nazwa hosta, IP lub URL" -#: src/slic3r/GUI/Tab.cpp:141 -msgid "Hover the cursor over buttons to find more information \nor click this button." -msgstr "Umieść kursor nad przyciskiem aby uzyskać więcej informacji\nlub kliknij ten przycisk." +#: src/slic3r/GUI/Tab.cpp:139 +msgid "" +"Hover the cursor over buttons to find more information \n" +"or click this button." +msgstr "" +"Umieść kursor nad przyciskiem aby uzyskać więcej informacji\n" +"lub kliknij ten przycisk." -#: src/libslic3r/PrintConfig.cpp:2803 +#: src/libslic3r/PrintConfig.cpp:2812 msgid "How far should the pad extend around the contained geometry" msgstr "Jak daleko poza kształt powinna sięgać podkładka" -#: src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2901 msgid "How much should the tiny connectors penetrate into the model body." msgstr "Głębokość, na którą malutkie łączniki podpór powinny wnikać w powłokę modelu." -#: src/libslic3r/PrintConfig.cpp:2622 +#: src/libslic3r/PrintConfig.cpp:2631 msgid "How much the pinhead has to penetrate the model surface" msgstr "Głębokość, na którą łącznik podpory powinien wnikać w powłokę modelu" -#: src/libslic3r/PrintConfig.cpp:2746 +#: src/libslic3r/PrintConfig.cpp:2755 msgid "How much the supports should lift up the supported object. If \"Pad around object\" is enabled, this value is ignored." msgstr "Odległość, na którą model zostanie podniesiony na podporach. Jeśli opcja \"Podkładka wokół modelu\" jest włączona, to ten parametr zostanie zignorowany." @@ -3334,12 +3364,17 @@ msgstr "Plik certyfikatu HTTPS CA" msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "Plik HTTPS CA jest opcjonalny. Jest potrzebny jedynie w sytuacji, gdy używasz HTTPS z certyfikatem samopodpisanym." -#: src/slic3r/GUI/Tab.cpp:1755 -#, possible-c-format -msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "Plik certyfikatu HTTPS:\nW tym systemie, %s używa certyfikatu HTTPS z magazynu systemowego (Certificate Store) lub Keychain. Aby użyć własnego certyfikatu, zaimportuj plik do Certificate Store / Keychain." +#: src/slic3r/GUI/Tab.cpp:1757 +#, c-format +msgid "" +"HTTPS CA File:\n" +" \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n" +" \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "" +"Plik certyfikatu HTTPS:\n" +"W tym systemie, %s używa certyfikatu HTTPS z magazynu systemowego (Certificate Store) lub Keychain. Aby użyć własnego certyfikatu, zaimportuj plik do Certificate Store / Keychain." -#: src/slic3r/GUI/Preferences.cpp:226 +#: src/slic3r/GUI/Preferences.cpp:222 msgid "Icon size in a respect to the default size" msgstr "Rozmiar ikon w odniesieniu do domyślnego" @@ -3351,13 +3386,13 @@ msgstr "ID" msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only." msgstr "Jeśli ta opcja będzie zaznaczona, to podpory zostaną wygenerowane automatycznie, na podstawie ustawionego progu zwisu. Jeśli ją odznaczysz, to podpory będą generowane jedynie w środku modyfikatora wymuszającego podpory." -#: src/slic3r/GUI/ConfigWizard.cpp:772 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:773 +#, c-format msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "To ustawienie spowoduje wyszukiwanie nowych wersji aplikacji %s online. Po pojawieniu się nowej wersji, przy kolejnym uruchomieniu zostanie wyświetlone powiadomienie (nie pojawi się, gdy aplikacja będzie uruchomiona). Jest to tylko mechanizm powiadamiania - nie instaluje aktualizacji automatycznie." -#: src/slic3r/GUI/ConfigWizard.cpp:782 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:783 +#, c-format msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup." msgstr "Jeśli aktywna, to %s będzie pobierać aktualizacje wbudowanych zestawów ustawień w tle. Będą one pobierane do folderu tymczasowego. Opcja aktualizacji ustawień będzie oferowana przy starcie aplikacji." @@ -3366,10 +3401,14 @@ msgid "If enabled, all printing extruders will be primed at the front edge of th msgstr "Jeśli ta opcja będzie aktywna, to wszystkie ekstrudery będą czyszczone na przedniej krawędzi stołu na początku wydruku." #: src/slic3r/GUI/ConfigWizard.cpp:805 -msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\nIf not enabled, the Reload from disk command will ask to select each file using an open file dialog." -msgstr "Jeśli włączone, pozwala poleceniu Wczytaj ponownie z dysku automatycznie odnaleźć i wczytać pliki.\nJeśli wyłączone, to polecenie będzie otwierać okno dialogowe, w którym wskażesz plik do przeładowania." +msgid "" +"If enabled, allows the Reload from disk command to automatically find and load the files when invoked.\n" +"If not enabled, the Reload from disk command will ask to select each file using an open file dialog." +msgstr "" +"Jeśli włączone, pozwala poleceniu \"Wczytaj ponownie z dysku\" automatycznie odnaleźć i wczytać pliki.\n" +"Jeśli wyłączone, to polecenie będzie otwierać okno dialogowe, w którym wskażesz plik źródłowy." -#: src/slic3r/GUI/Preferences.cpp:75 +#: src/slic3r/GUI/Preferences.cpp:74 msgid "If enabled, allows the Reload from disk command to automatically find and load the files when invoked." msgstr "Jeśli włączone, pozwala poleceniu Wczytaj ponownie z dysku automatycznie odnaleźć i wczytać pliki." @@ -3377,11 +3416,11 @@ msgstr "Jeśli włączone, pozwala poleceniu Wczytaj ponownie z dysku automatycz msgid "If enabled, PrusaSlicer will check for the new versions of itself online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done." msgstr "Włączenie automatycznego sprawdzania dostępności nowych wersji PrusaSlicer online. Pojawienie się nowej wersji spowoduje wyświetlenie powiadomienia przy starcie aplikacji (nigdy podczas jej pracy). Ta funkcja służy tylko powiadamianiu, nie instaluje aktualizacji automatycznie." -#: src/slic3r/GUI/Preferences.cpp:84 +#: src/slic3r/GUI/Preferences.cpp:82 msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup." msgstr "Włączenie powoduje pobieranie wbudowanych systemowych zestawów ustawień w tle. Te ustawienia są pobierane do oddzielnej lokalizacji tymczasowej. Jeśli pojawi się nowa wersja to opcja jej instalacji pojawi się przy starcie aplikacji." -#: src/slic3r/GUI/Preferences.cpp:108 +#: src/slic3r/GUI/Preferences.cpp:106 msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help." msgstr "Po włączeniu podgląd 3D będzie renderowany w rozdzielczości Retina. Wyłącz tę opcję w przypadku wystąpienia problemów z wydajnością 3D." @@ -3389,15 +3428,15 @@ msgstr "Po włączeniu podgląd 3D będzie renderowany w rozdzielczości Retina. msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." msgstr "Po włączeniu wieża czyszcząca nie będzie drukowana na warstwach, na których nie ma zmian koloru. Na kolejnych warstwach ze zmianami koloru ekstruder zjedzie w dół, aby kontynuować czyszczenie na wieży. Użytkownik musi upewnić się, że nie nastąpi kolizja głowicy z wydrukiem." -#: src/slic3r/GUI/Preferences.cpp:131 +#: src/slic3r/GUI/Preferences.cpp:128 msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Jeśli włączone, to używany będę wolny widok. Jeśli wyłączone, to widok będzie ograniczony." -#: src/slic3r/GUI/Preferences.cpp:123 +#: src/slic3r/GUI/Preferences.cpp:121 msgid "If enabled, use perspective camera. If not enabled, use orthographic camera." msgstr "Po włączeniu będzie wyświetlony widok perspektywiczny. Po wyłączeniu, ortograficzny." -#: src/slic3r/GUI/Preferences.cpp:149 +#: src/slic3r/GUI/Preferences.cpp:145 msgid "If enabled, you can change size of toolbar icons manually." msgstr "Włączenie umożliwi ręczną zmianę rozmiaru ikon pasków narzędzi." @@ -3461,7 +3500,7 @@ msgstr "Jeśli oprogramowanie układowe (firmware) Twojej drukarki nie obsługuj msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values." msgstr "Jeśli Twój firmware wymaga względnych wartości E, zaznacz to pole. W innym przypadku zostaw puste. Większość układów obsługuje wartości absolutne." -#: src/libslic3r/PrintConfig.cpp:3470 +#: src/libslic3r/PrintConfig.cpp:3485 msgid "Ignore non-existent config files" msgstr "Ignoruj nieistniejące pliki konfiguracyjne" @@ -3481,15 +3520,15 @@ msgstr "Import Konfiguracji z &projektu" msgid "Import Config from ini/amf/3mf/gcode" msgstr "Importuj konfigurację z ini/amf/3mf/gcode" -#: src/slic3r/GUI/Plater.cpp:4616 +#: src/slic3r/GUI/Plater.cpp:4603 msgid "Import Object" msgstr "Import Modelu" -#: src/slic3r/GUI/Plater.cpp:4620 +#: src/slic3r/GUI/Plater.cpp:4607 msgid "Import Objects" msgstr "Importuj Modele" -#: src/slic3r/Utils/FixModelByWin10.cpp:390 +#: src/slic3r/Utils/FixModelByWin10.cpp:383 msgid "Import of the repaired 3mf file failed" msgstr "Niepowodzenie importu naprawionego pliku 3MF" @@ -3497,16 +3536,12 @@ msgstr "Niepowodzenie importu naprawionego pliku 3MF" msgid "Import STL/OBJ/AM&F/3MF" msgstr "Import STL/OBJ/AM&F/3MF" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 -msgid "Import STL/OBJ/AMF/3MF without config, keep bed" -msgstr "Otwórz projekt STL/OBJ/AMF/3MF bez konfiguracji, zachowaj stół" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:118 msgid "Import STL/OBJ/AMF/3MF without config, keep plater" msgstr "Otwórz STL/OBJ/AMF/3MF bez konfiguracji, zachowaj zawartość stołu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3396 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3422 +#, c-format msgid "In this mode you can select only other %s Items%s" msgstr "W tym trybie możesz wybrać jedynie %s elementów %s" @@ -3515,42 +3550,50 @@ msgid "Incompatible bundles:" msgstr "Niekompatybilne zestawy ustawień:" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:75 -#, possible-c-format +#, c-format msgid "Incompatible with this %s" msgstr "Brak kompatybilności z %s" -#: src/slic3r/GUI/Plater.cpp:4700 +#: src/slic3r/GUI/Plater.cpp:4685 msgid "Increase Instances" -msgstr "Zwiększ ilość kopii" +msgstr "Zwiększ ilość instancji" -#: src/slic3r/GUI/GLCanvas3D.cpp:269 +#: src/slic3r/GUI/GLCanvas3D.cpp:264 msgid "Increase/decrease edit area" msgstr "Zmniejsz/zwiększ obszar edycji" -#: src/slic3r/GUI/Plater.cpp:2906 +#: src/slic3r/GUI/Plater.cpp:2922 msgid "Indexing hollowed object" msgstr "Indeksowanie wydrążonego obiektu" #. TRN Description for "UNLOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3242 -msgid "indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." -msgstr "oznacza, że niektóre ustawienia zostały zmodyfikowane i nie odpowiadają wartościom systemowym (lub domyślnym) w obecnej grupie opcji. \nKliknij ikonę OTWARTEJ KŁÓDKI, aby zresetować wszystkie ustawienia obecnej grupy ustawień do wartości systemowych (lub domyślnych)." +#: src/slic3r/GUI/Tab.cpp:3258 +msgid "" +"indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system (or default) values." +msgstr "" +"oznacza, że niektóre ustawienia zostały zmodyfikowane i nie odpowiadają wartościom systemowym (lub domyślnym) w obecnej grupie opcji. \n" +"Kliknij ikonę OTWARTEJ KŁÓDKI, aby zresetować wszystkie ustawienia obecnej grupy ustawień do wartości systemowych (lub domyślnych)." #. TRN Description for "LOCKED LOCK" -#: src/slic3r/GUI/Tab.cpp:3238 +#: src/slic3r/GUI/Tab.cpp:3254 msgid "indicates that the settings are the same as the system (or default) values for the current option group" msgstr "wskazuje na to, że ustawienia są takie same jak systemowe (lub domyślne) wartości dla danej grupy opcji" #. TRN Description for "BACK ARROW" -#: src/slic3r/GUI/Tab.cpp:3254 -msgid "indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset." -msgstr "oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy opcji.\nKliknij ikonę STRZAŁKI W TYŁ aby zresetować wszystkie ustawienia w obecnej grupie opcji do tych z ostatnio zapisanego zestawu ustawień." +#: src/slic3r/GUI/Tab.cpp:3270 +msgid "" +"indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n" +"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset." +msgstr "" +"oznacza, że ustawienia zostały zmodyfikowane i nie odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy opcji.\n" +"Kliknij ikonę STRZAŁKI W TYŁ aby zresetować wszystkie ustawienia w obecnej grupie opcji do tych z ostatnio zapisanego zestawu ustawień." #: src/slic3r/GUI/ConfigManipulation.cpp:211 -#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:94 -#: src/slic3r/GUI/GUI_ObjectList.cpp:612 src/slic3r/GUI/Plater.cpp:524 -#: src/slic3r/GUI/Tab.cpp:1093 src/slic3r/GUI/Tab.cpp:1094 -#: src/libslic3r/PrintConfig.cpp:193 src/libslic3r/PrintConfig.cpp:416 +#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/GUI_ObjectList.cpp:96 +#: src/slic3r/GUI/GUI_ObjectList.cpp:614 src/slic3r/GUI/Plater.cpp:527 +#: src/slic3r/GUI/Tab.cpp:1091 src/slic3r/GUI/Tab.cpp:1092 +#: src/libslic3r/PrintConfig.cpp:203 src/libslic3r/PrintConfig.cpp:416 #: src/libslic3r/PrintConfig.cpp:436 src/libslic3r/PrintConfig.cpp:776 #: src/libslic3r/PrintConfig.cpp:790 src/libslic3r/PrintConfig.cpp:827 #: src/libslic3r/PrintConfig.cpp:981 src/libslic3r/PrintConfig.cpp:991 @@ -3576,12 +3619,12 @@ msgstr "Ekstruder dla wypełnienia" msgid "Infill/perimeters overlap" msgstr "Nakładanie wypełnienia na obrysy" -#: src/libslic3r/Print.cpp:1580 +#: src/libslic3r/Print.cpp:1584 msgid "Infilling layers" msgstr "Warstwy wypełniające" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3404 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3479 src/slic3r/GUI/Plater.cpp:143 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3505 src/slic3r/GUI/Plater.cpp:141 msgid "Info" msgstr "Info" @@ -3593,15 +3636,15 @@ msgstr "Dziedziczy profil" msgid "Initial exposition time is out of printer profile bounds." msgstr "Początkowy czas naświetlania jest poza zakresem profilu drukarki." -#: src/libslic3r/PrintConfig.cpp:2555 src/libslic3r/PrintConfig.cpp:2556 +#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2565 msgid "Initial exposure time" msgstr "Początkowy czas naświetlania" -#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2474 +#: src/libslic3r/PrintConfig.cpp:2482 src/libslic3r/PrintConfig.cpp:2483 msgid "Initial layer height" msgstr "Wysokość pierwszej warstwy" -#: src/slic3r/GUI/Field.cpp:199 +#: src/slic3r/GUI/Field.cpp:204 msgid "Input value is out of range" msgstr "Wartość poza zakresem" @@ -3611,11 +3654,11 @@ msgstr "Sprawdzenie / aktywacja zrzutów konfiguracji" #: src/slic3r/GUI/ObjectDataViewModel.cpp:60 #: src/slic3r/GUI/ObjectDataViewModel.cpp:216 -#, possible-c-format +#, c-format msgid "Instance %d" msgstr "Kopia %d" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2476 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2500 msgid "Instance manipulation" msgstr "Manipulacja kopią modelu" @@ -3623,8 +3666,8 @@ msgstr "Manipulacja kopią modelu" msgid "Instances" msgstr "Instancje (kopie)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1089 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3755 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1091 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3781 msgid "Instances to Separated Objects" msgstr "Kopie jako Osobne Modele" @@ -3648,11 +3691,11 @@ msgstr "Powłoki łączące" msgid "internal error" msgstr "błąd wewnętrzny" -#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:313 +#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/ExtrusionEntity.cpp:313 msgid "Internal infill" msgstr "Wypełnienie wewnętrzne" -#: src/slic3r/GUI/Plater.cpp:3090 +#: src/slic3r/GUI/Plater.cpp:3106 msgid "Invalid data" msgstr "Nieprawidłowe dane" @@ -3673,7 +3716,7 @@ msgstr "Nieprawidłowe przenikanie łączników podpór" msgid "invalid header or archive is corrupted" msgstr "niewłaściwy nagłówek lub uszkodzone archiwum" -#: src/slic3r/GUI/Field.cpp:190 src/slic3r/GUI/Field.cpp:221 +#: src/slic3r/GUI/Field.cpp:195 src/slic3r/GUI/Field.cpp:226 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:376 msgid "Invalid numeric input." msgstr "Nieprawidłowa wartość numeryczna." @@ -3691,15 +3734,11 @@ msgstr "Błędna średnica łącznika" msgid "is licensed under the" msgstr "ma licencję na warunkach" -#: src/slic3r/GUI/UpdateDialogs.cpp:148 -msgid "Is necessary to install a configuration update. " -msgstr "Do instalacji jest wymagana aktualizacja konfiguracji." - -#: src/slic3r/GUI/Tab.cpp:2925 +#: src/slic3r/GUI/Tab.cpp:2941 msgid "is not compatible with print profile" msgstr "nie jest kompatybilne z profilem druku" -#: src/slic3r/GUI/Tab.cpp:2924 +#: src/slic3r/GUI/Tab.cpp:2940 msgid "is not compatible with printer" msgstr "nie jest kompatybilne z drukarką" @@ -3711,23 +3750,23 @@ msgstr "Izometryczny" msgid "Iso View" msgstr "Widok izometryczny" -#: src/slic3r/GUI/Tab.cpp:966 +#: src/slic3r/GUI/Tab.cpp:964 msgid "It can't be deleted or modified." msgstr "Nie można usunąć ani zmodyfikować." -#: src/slic3r/GUI/Plater.cpp:3307 +#: src/slic3r/GUI/Plater.cpp:3321 msgid "It is not allowed to change the file to reload" -msgstr "Zmiana modelu do ponownego wczytania jest niemożliwa." +msgstr "Zmiana modelu do ponownego wczytania jest niemożliwa" #: src/libslic3r/PrintConfig.cpp:974 msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." msgstr "Zwiększenie prądu podawanego do silnika ekstrudera może mieć pozytywny wpływ podczas zmiany filamentu, pomagając kształtować końcówkę przez wyciskanie oraz przepychać filament z nieprawidłowo ukształtowaną końcówką." -#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2942 +#: src/slic3r/GUI/GUI_App.cpp:1084 src/slic3r/GUI/Tab.cpp:2958 msgid "It's impossible to print multi-part object(s) with SLA technology." msgstr "Drukowanie modeli złożonych z wielu elementów jest niemożliwe w technologii SLA." -#: src/slic3r/GUI/Tab.cpp:2225 +#: src/slic3r/GUI/Tab.cpp:2229 msgid "Jerk limits" msgstr "Limity jerku" @@ -3735,13 +3774,13 @@ msgstr "Limity jerku" msgid "Jitter" msgstr "Jitter" -#: src/slic3r/GUI/DoubleSlider.cpp:930 src/slic3r/GUI/DoubleSlider.cpp:1501 -#: src/slic3r/GUI/DoubleSlider.cpp:1623 +#: src/slic3r/GUI/DoubleSlider.cpp:957 src/slic3r/GUI/DoubleSlider.cpp:1529 +#: src/slic3r/GUI/DoubleSlider.cpp:1651 msgid "Jump to height" msgstr "Przejdź do wysokości" -#: src/slic3r/GUI/DoubleSlider.cpp:928 -#, possible-c-format +#: src/slic3r/GUI/DoubleSlider.cpp:955 +#, c-format msgid "Jump to height %s or Set extruder sequence for the entire print" msgstr "Przejdź na wysokość %s lub ustaw sekwencję ekstruderów dla całego wydruku" @@ -3753,7 +3792,7 @@ msgstr "Wentylator zawsze włączony" msgid "Keep lower part" msgstr "Zachowaj dolną część" -#: src/slic3r/GUI/GLCanvas3D.cpp:309 +#: src/slic3r/GUI/GLCanvas3D.cpp:304 msgid "Keep min" msgstr "Zachowaj min" @@ -3761,7 +3800,7 @@ msgstr "Zachowaj min" msgid "Keep upper part" msgstr "Zachowaj górną część" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:14 src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:41 src/slic3r/GUI/MainFrame.cpp:708 msgid "Keyboard Shortcuts" msgstr "Skróty klawiszowe" @@ -3769,7 +3808,7 @@ msgstr "Skróty klawiszowe" msgid "Keyboard shortcuts" msgstr "Skróty klawiszowe" -#: src/libslic3r/PrintConfig.cpp:2489 +#: src/libslic3r/PrintConfig.cpp:2498 msgid "kg" msgstr "kg" @@ -3789,57 +3828,57 @@ msgstr "Język" msgid "Language selection" msgstr "Wybór języka" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2114 -#: src/slic3r/GUI/GUI_ObjectList.cpp:2216 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2140 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2242 msgid "Last instance of an object cannot be deleted." msgstr "Ostatnia kopia modelu nie może zostać usunięta." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 msgid "Layer" msgstr "Warstwa" #: src/slic3r/GUI/ConfigManipulation.cpp:49 -#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1051 +#: src/slic3r/GUI/GUI_ObjectLayers.cpp:27 src/slic3r/GUI/Tab.cpp:1049 #: src/libslic3r/PrintConfig.cpp:71 msgid "Layer height" msgstr "Wysokość warstwy" -#: src/libslic3r/Print.cpp:1423 +#: src/libslic3r/Print.cpp:1427 msgid "Layer height can't be greater than nozzle diameter" msgstr "Wysokość pierwszej warstwy nie może być większa od średnicy dyszy" -#: src/slic3r/GUI/Tab.cpp:2358 +#: src/slic3r/GUI/Tab.cpp:2362 msgid "Layer height limits" msgstr "Limit wysokości warstw" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "Layer height:" msgstr "Wysokość warstwy:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2464 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2488 msgid "Layer range Settings to modify" msgstr "Zakres warstw dla modyfikacji ustawień" #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:52 -#: src/libslic3r/PrintConfig.cpp:352 src/libslic3r/PrintConfig.cpp:994 +#: src/libslic3r/PrintConfig.cpp:362 src/libslic3r/PrintConfig.cpp:994 #: src/libslic3r/PrintConfig.cpp:1505 src/libslic3r/PrintConfig.cpp:1690 #: src/libslic3r/PrintConfig.cpp:1750 src/libslic3r/PrintConfig.cpp:1930 #: src/libslic3r/PrintConfig.cpp:1976 msgid "layers" msgstr "warstwy" -#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3496 -#: src/slic3r/GUI/Tab.cpp:3585 +#: src/slic3r/GUI/ObjectDataViewModel.cpp:67 src/slic3r/GUI/Tab.cpp:3512 +#: src/slic3r/GUI/Tab.cpp:3600 msgid "Layers" msgstr "Warstwy" -#: src/slic3r/GUI/Tab.cpp:1050 src/slic3r/GUI/Tab.cpp:3583 +#: src/slic3r/GUI/Tab.cpp:1048 src/slic3r/GUI/Tab.cpp:3598 msgid "Layers and perimeters" msgstr "Warstwy i obrysy" -#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:93 -#: src/slic3r/GUI/GUI_ObjectList.cpp:611 src/libslic3r/PrintConfig.cpp:72 -#: src/libslic3r/PrintConfig.cpp:165 src/libslic3r/PrintConfig.cpp:174 +#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_ObjectList.cpp:95 +#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/libslic3r/PrintConfig.cpp:72 +#: src/libslic3r/PrintConfig.cpp:175 src/libslic3r/PrintConfig.cpp:184 #: src/libslic3r/PrintConfig.cpp:408 src/libslic3r/PrintConfig.cpp:470 #: src/libslic3r/PrintConfig.cpp:478 src/libslic3r/PrintConfig.cpp:890 #: src/libslic3r/PrintConfig.cpp:1075 src/libslic3r/PrintConfig.cpp:1374 @@ -3853,16 +3892,12 @@ msgstr "Warstwy i Obrysy" msgid "Layers Slider" msgstr "Suwak warstw" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 -msgid "Layers Slider Shortcuts" -msgstr "Skróty suwaka warstw" - -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Bottom" msgstr "Spód" -#: src/slic3r/GUI/OptionsGroup.cpp:253 +#: src/slic3r/GUI/OptionsGroup.cpp:258 msgctxt "Layers" msgid "Top" msgstr "Góra" @@ -3871,13 +3906,13 @@ msgstr "Góra" msgid "Left" msgstr "Lewo" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1342 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1363 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1366 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Left click" msgstr "Lewy przycisk" -#: src/slic3r/GUI/GLCanvas3D.cpp:242 +#: src/slic3r/GUI/GLCanvas3D.cpp:237 msgid "Left mouse button:" msgstr "Lewy przycisk myszki:" @@ -3885,7 +3920,7 @@ msgstr "Lewy przycisk myszki:" msgid "Left View" msgstr "Widok lewy" -#: src/slic3r/GUI/GUI_Preview.cpp:259 +#: src/slic3r/GUI/GUI_Preview.cpp:257 msgid "Legend" msgstr "Legenda" @@ -3893,7 +3928,7 @@ msgstr "Legenda" msgid "Length" msgstr "Długość" -#: src/libslic3r/PrintConfig.cpp:318 +#: src/libslic3r/PrintConfig.cpp:328 msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Długość rurki chłodzącej ograniczająca ruchy chłodzące do jej zakresu." @@ -3910,7 +3945,7 @@ msgstr "Z-hop" msgid "Line" msgstr "Linia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1425 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1427 msgid "Load" msgstr "Załaduj" @@ -3918,22 +3953,14 @@ msgstr "Załaduj" msgid "Load a model" msgstr "Wczytaj model" -#: src/libslic3r/PrintConfig.cpp:3490 +#: src/libslic3r/PrintConfig.cpp:3505 msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." msgstr "Załaduj i przechowuj ustawienia w podanej lokalizacji. Jest to przydatne przy używaniu wielu profili lub konfiguracji z lokalizacji sieciowej." -#: src/libslic3r/PrintConfig.cpp:3474 +#: src/libslic3r/PrintConfig.cpp:3489 msgid "Load config file" msgstr "Wczytaj plik konfiguracyjny" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 -msgid "Load Config from .ini/amf/3mf/gcode" -msgstr "Wczytaj Konfigurację z .ini/amf/3mf/gcode" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:112 -msgid "Load Config from .ini/amf/3mf/gcode and merge" -msgstr "Wczytaj Konfigurację z .ini/amf/3mf/gcode i złącz" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:120 msgid "Load Config from ini/amf/3mf/gcode and merge" msgstr "Wczytaj Konfigurację z ini/amf/3mf/gcode i złącz" @@ -3942,7 +3969,7 @@ msgstr "Wczytaj Konfigurację z ini/amf/3mf/gcode i złącz" msgid "Load configuration from project file" msgstr "Wczytaj konfigurację z pliku projektu" -#: src/libslic3r/PrintConfig.cpp:3475 +#: src/libslic3r/PrintConfig.cpp:3490 msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files." msgstr "Wczytaj konfigurację z określonego pliku. Może być użyte więcej niż raz, aby wczytać opcje z wielu plików." @@ -3950,15 +3977,15 @@ msgstr "Wczytaj konfigurację z określonego pliku. Może być użyte więcej ni msgid "Load exported configuration file" msgstr "Wczytaj wyeksportowany plik konfiguracyjny" -#: src/slic3r/GUI/Plater.cpp:1375 +#: src/slic3r/GUI/Plater.cpp:1395 msgid "Load File" msgstr "Wczytaj Plik" -#: src/slic3r/GUI/Plater.cpp:1379 +#: src/slic3r/GUI/Plater.cpp:1399 msgid "Load Files" msgstr "Wczytaj Pliki" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1853 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1879 msgid "Load Part" msgstr "Wczytaj Element" @@ -3966,7 +3993,7 @@ msgstr "Wczytaj Element" msgid "Load presets from a bundle" msgstr "Wczytaj zestaw ustawień" -#: src/slic3r/GUI/Plater.cpp:4588 +#: src/slic3r/GUI/Plater.cpp:4575 msgid "Load Project" msgstr "Wczytaj Projekt" @@ -3982,11 +4009,11 @@ msgstr "Załaduje..." msgid "loaded" msgstr "załadowano" -#: src/slic3r/GUI/Plater.cpp:2410 +#: src/slic3r/GUI/Plater.cpp:2426 msgid "Loaded" msgstr "Wczytano" -#: src/slic3r/GUI/Plater.cpp:2257 +#: src/slic3r/GUI/Plater.cpp:2273 msgid "Loading" msgstr "Ładowanie" @@ -3999,7 +4026,7 @@ msgid "Loading of current presets" msgstr "Wczytywanie aktualnych zestawów ustawień" #: src/slic3r/Utils/FixModelByWin10.cpp:251 -#: src/slic3r/Utils/FixModelByWin10.cpp:385 +#: src/slic3r/Utils/FixModelByWin10.cpp:378 msgid "Loading repaired model" msgstr "Ładowanie naprawionego modelu" @@ -4020,19 +4047,19 @@ msgstr "Lokalny układ współrzędnych" msgid "Lock supports under new islands" msgstr "Zablokuj podpory pod nowymi wyspami" -#: src/slic3r/GUI/Tab.cpp:3236 +#: src/slic3r/GUI/Tab.cpp:3252 msgid "LOCKED LOCK" msgstr "ZAMKNIĘTA KŁÓDKA" -#: src/slic3r/GUI/Tab.cpp:3264 +#: src/slic3r/GUI/Tab.cpp:3280 msgid "LOCKED LOCK icon indicates that the settings are the same as the system (or default) values for the current option group" msgstr "ZAMKNIĘTA KŁÓDKA oznacza, że ustawienia są takie same jak wartości systemowe (lub domyślne) w obecnej grupie ustawień" -#: src/slic3r/GUI/Tab.cpp:3280 +#: src/slic3r/GUI/Tab.cpp:3296 msgid "LOCKED LOCK icon indicates that the value is the same as the system (or default) value." msgstr "ZAMKNIĘTA KŁÓDKA oznacza, że wartości są takie same jak systemowe (lub domyślne)." -#: src/libslic3r/PrintConfig.cpp:3493 +#: src/libslic3r/PrintConfig.cpp:3508 msgid "Logging level" msgstr "Poziom logowania" @@ -4040,12 +4067,12 @@ msgstr "Poziom logowania" msgid "Loops (minimum)" msgstr "Pętle (minimum)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:186 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:188 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:205 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:207 msgid "Lower Layer" msgstr "Dolna Warstwa" -#: src/slic3r/GUI/Tab.cpp:2184 src/slic3r/GUI/Tab.cpp:2269 +#: src/slic3r/GUI/Tab.cpp:2188 src/slic3r/GUI/Tab.cpp:2273 #: src/libslic3r/PrintConfig.cpp:1129 src/libslic3r/PrintConfig.cpp:1146 #: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1179 #: src/libslic3r/PrintConfig.cpp:1189 src/libslic3r/PrintConfig.cpp:1199 @@ -4053,11 +4080,7 @@ msgstr "Dolna Warstwa" msgid "Machine limits" msgstr "Limity maszynowe" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:131 -msgid "Main Shortcuts" -msgstr "Główne skróty" - -#: src/slic3r/GUI/Plater.cpp:168 +#: src/slic3r/GUI/Plater.cpp:166 msgid "Manifold" msgstr "Model zamknięty" @@ -4065,23 +4088,23 @@ msgstr "Model zamknięty" msgid "Manual editing" msgstr "Edycja ręczna" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:172 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:180 msgid "Masked SLA file exported to %1%" msgstr "Maskowany plik SLA wyeksportowany do %1%" -#: src/slic3r/GUI/MainFrame.cpp:754 +#: src/slic3r/GUI/MainFrame.cpp:752 msgid "Mate&rial Settings Tab" msgstr "Ustawienia Mate&riału" -#: src/slic3r/GUI/Tab.cpp:3462 src/slic3r/GUI/Tab.cpp:3464 +#: src/slic3r/GUI/Tab.cpp:3478 src/slic3r/GUI/Tab.cpp:3480 msgid "Material" msgstr "Materiał" -#: src/slic3r/GUI/Tab.hpp:415 +#: src/slic3r/GUI/Tab.hpp:416 msgid "Material Settings" msgstr "Ustawienia Materiału" -#: src/slic3r/GUI/Plater.cpp:165 +#: src/slic3r/GUI/Plater.cpp:163 msgid "Materials" msgstr "Materiały" @@ -4089,15 +4112,15 @@ msgstr "Materiały" msgid "Max" msgstr "Max" -#: src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2734 msgid "Max bridge length" msgstr "Maksymalna długość mostu" -#: src/libslic3r/PrintConfig.cpp:2813 +#: src/libslic3r/PrintConfig.cpp:2822 msgid "Max merge distance" msgstr "Maksymalny dystans łączenia" -#: src/libslic3r/PrintConfig.cpp:2734 +#: src/libslic3r/PrintConfig.cpp:2743 msgid "Max pillar linking distance" msgstr "Maksymalny dystans łączenia słupków" @@ -4181,11 +4204,11 @@ msgstr "Maksymalne przyspieszenie Y" msgid "Maximum acceleration Z" msgstr "Maksymalne przyspieszenie Z" -#: src/slic3r/GUI/Tab.cpp:2218 +#: src/slic3r/GUI/Tab.cpp:2222 msgid "Maximum accelerations" msgstr "Maksymalne przyspieszenia" -#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2525 +#: src/libslic3r/PrintConfig.cpp:2533 src/libslic3r/PrintConfig.cpp:2534 msgid "Maximum exposure time" msgstr "Maksymalny czas naświetlania" @@ -4221,11 +4244,11 @@ msgstr "Maksymalny posuw Y" msgid "Maximum feedrate Z" msgstr "Maksymalny posuw Z" -#: src/slic3r/GUI/Tab.cpp:2213 +#: src/slic3r/GUI/Tab.cpp:2217 msgid "Maximum feedrates" msgstr "Maksymalne prędkości posuwu" -#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2548 +#: src/libslic3r/PrintConfig.cpp:2556 src/libslic3r/PrintConfig.cpp:2557 msgid "Maximum initial exposure time" msgstr "Maksymalny początkowy czas naświetlania" @@ -4265,15 +4288,15 @@ msgstr "Maksymalny jerk Z" msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit." msgstr "Maksymalna prędkość objętościowa dla tego filamentu. Ogranicza maksymalną prędkość objętościową do minimum objętościowej prędkości druku i filamentu. Ustaw zero aby usunąć ograniczenie." -#: src/libslic3r/PrintConfig.cpp:3427 +#: src/libslic3r/PrintConfig.cpp:3442 msgid "Merge" msgstr "Łączenie" -#: src/libslic3r/PrintConfig.cpp:2674 +#: src/libslic3r/PrintConfig.cpp:2683 msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase." msgstr "Łączenie mostów lub słupków podpór z innymi może zwiększyć ich promień. 0 oznacza brak zmiany, 1 oznacza zmianę w całości." -#: src/libslic3r/SLAPrintSteps.cpp:62 +#: src/libslic3r/SLAPrintSteps.cpp:64 msgid "Merging slices and calculating statistics" msgstr "Łączenie cięć i obliczanie statystyk" @@ -4281,14 +4304,10 @@ msgstr "Łączenie cięć i obliczanie statystyk" msgid "Mesh repair failed." msgstr "Niepowodzenie naprawy siatki." -#: src/slic3r/GUI/DoubleSlider.cpp:1607 +#: src/slic3r/GUI/DoubleSlider.cpp:1635 msgid "Message for pause print on current layer (%1% mm)." msgstr "Komenda pauzująca wydruk na danej warstwie (%1% mm)." -#: src/libslic3r/PrintConfig.cpp:3120 -msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal" -msgstr "Komunikaty o ważności niższej lub równej loglevel będą zapisywane: 0:śledzenie, 1:debugowanie, 2:info, 3:ostrzeżenie, 4:błąd, 5:krytyczny" - #: src/libslic3r/PrintConfig.cpp:1280 src/libslic3r/PrintConfig.cpp:1289 msgid "Min" msgstr "Min" @@ -4301,7 +4320,7 @@ msgstr "Minimalna prędkość druku" msgid "min PrusaSlicer version" msgstr "min wersja PrusaSlicer" -#: src/libslic3r/PrintConfig.cpp:2763 +#: src/libslic3r/PrintConfig.cpp:2772 msgid "Minimal distance of the support points" msgstr "Minimalne rozmieszczenie punktów podpór" @@ -4317,11 +4336,11 @@ msgstr "Minimalny dystans pomiędzy punktami" msgid "Minimal purge on wipe tower" msgstr "Minimalna objętość czyszczenia" -#: src/libslic3r/PrintConfig.cpp:177 +#: src/libslic3r/PrintConfig.cpp:187 msgid "Minimum bottom shell thickness" msgstr "Minimalna grubość dolnej powłoki" -#: src/slic3r/GUI/PresetHints.cpp:335 +#: src/slic3r/GUI/PresetHints.cpp:339 msgid "Minimum bottom shell thickness is %1% mm." msgstr "Minimalna grubość dolnej powłoki to %1% mm." @@ -4329,7 +4348,7 @@ msgstr "Minimalna grubość dolnej powłoki to %1% mm." msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input." msgstr "Minimalna rozdzielczość, używana do uproszczenia modelu wejściowego, co prowadzi do przyspieszenia procesu cięcia. Modele w wysokiej rozdzielczości mogą zawierać więcej szczegółów niż drukarka jest w stanie przetworzyć. Ustaw zero aby wyłączyć upraszczanie i użyć pełnej rozdzielczości pliku wejściowego." -#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2517 +#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2526 msgid "Minimum exposure time" msgstr "Minimalny czas naświetlania" @@ -4341,15 +4360,15 @@ msgstr "Minimalna prędkość posuwu z ekstruzją" msgid "Minimum feedrate when extruding (M205 S)" msgstr "Minimalna prędkość posuwu z ekstruzją (M205 S)" -#: src/slic3r/GUI/Tab.cpp:2230 +#: src/slic3r/GUI/Tab.cpp:2234 msgid "Minimum feedrates" msgstr "Minimalna prędkość posuwu" -#: src/libslic3r/PrintConfig.cpp:2539 src/libslic3r/PrintConfig.cpp:2540 +#: src/libslic3r/PrintConfig.cpp:2548 src/libslic3r/PrintConfig.cpp:2549 msgid "Minimum initial exposure time" msgstr "Minimalny początkowy czas naświetlania" -#: src/slic3r/GUI/Tab.cpp:1071 +#: src/slic3r/GUI/Tab.cpp:1069 msgid "Minimum shell thickness" msgstr "Minimalna grubość powłoki" @@ -4361,7 +4380,7 @@ msgstr "Minimalna grubość górnej/dolnej powłoki" msgid "Minimum top shell thickness" msgstr "Minimalna grubość górnej powłoki" -#: src/slic3r/GUI/PresetHints.cpp:316 +#: src/slic3r/GUI/PresetHints.cpp:320 msgid "Minimum top shell thickness is %1% mm." msgstr "Minimalna grubość górnej powłoki to %1% mm." @@ -4377,7 +4396,7 @@ msgstr "Minimalna prędkość posuwu ruchu jałowego" msgid "Minimum travel feedrate (M205 T)" msgstr "Minimalna prędkość posuwu ruchu jałowego (M205 T)" -#: src/libslic3r/PrintConfig.cpp:2908 +#: src/libslic3r/PrintConfig.cpp:2917 msgid "Minimum wall thickness of a hollowed model." msgstr "Minimalna grubość ścianki drążonego modelu." @@ -4385,7 +4404,7 @@ msgstr "Minimalna grubość ścianki drążonego modelu." msgid "Minimum width of features to maintain when doing elephant foot compensation." msgstr "Minimalna szerokość detali do zachowania podczas kompensacji stopy słonia." -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror" msgstr "Lustrzane" @@ -4393,23 +4412,23 @@ msgstr "Lustrzane" msgid "Mirror horizontally" msgstr "Odbij w poziomie" -#: src/slic3r/GUI/GLCanvas3D.cpp:2075 +#: src/slic3r/GUI/GLCanvas3D.cpp:2053 msgid "Mirror Object" msgstr "Odbicie Lustrzane" -#: src/slic3r/GUI/Plater.cpp:4011 +#: src/slic3r/GUI/Plater.cpp:4002 msgid "Mirror the selected object" msgstr "Odbicie lustrzane wybranego modelu" -#: src/slic3r/GUI/Plater.cpp:4004 +#: src/slic3r/GUI/Plater.cpp:3995 msgid "Mirror the selected object along the X axis" msgstr "Odbicie lustrzane wybranego modelu w osi X" -#: src/slic3r/GUI/Plater.cpp:4006 +#: src/slic3r/GUI/Plater.cpp:3997 msgid "Mirror the selected object along the Y axis" msgstr "Odbicie lustrzane wybranego modelu w osi Y" -#: src/slic3r/GUI/Plater.cpp:4008 +#: src/slic3r/GUI/Plater.cpp:3999 msgid "Mirror the selected object along the Z axis" msgstr "Odbicie lustrzane wybranego modelu w osi Z" @@ -4418,7 +4437,7 @@ msgid "Mirror vertically" msgstr "Odbij w poziomie" #: src/slic3r/Utils/AstroBox.cpp:68 src/slic3r/Utils/OctoPrint.cpp:68 -#, possible-c-format +#, c-format msgid "Mismatched type of print host: %s" msgstr "Niepasujący typ serwera wydruku: %s" @@ -4426,21 +4445,21 @@ msgstr "Niepasujący typ serwera wydruku: %s" msgid "Mixed" msgstr "Mieszane" -#: src/libslic3r/PrintConfig.cpp:2482 +#: src/libslic3r/PrintConfig.cpp:2491 msgid "ml" msgstr "ml" #: src/slic3r/GUI/BedShapeDialog.cpp:92 src/slic3r/GUI/ConfigWizard.cpp:218 -#: src/slic3r/GUI/ConfigWizard.cpp:971 src/slic3r/GUI/ConfigWizard.cpp:985 +#: src/slic3r/GUI/ConfigWizard.cpp:970 src/slic3r/GUI/ConfigWizard.cpp:984 #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:87 #: src/slic3r/GUI/GUI_ObjectLayers.cpp:135 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:333 #: src/slic3r/GUI/ObjectDataViewModel.cpp:94 #: src/slic3r/GUI/WipeTowerDialog.cpp:85 src/libslic3r/PrintConfig.cpp:75 #: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:91 -#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:236 -#: src/libslic3r/PrintConfig.cpp:311 src/libslic3r/PrintConfig.cpp:319 -#: src/libslic3r/PrintConfig.cpp:369 src/libslic3r/PrintConfig.cpp:379 +#: src/libslic3r/PrintConfig.cpp:122 src/libslic3r/PrintConfig.cpp:188 +#: src/libslic3r/PrintConfig.cpp:246 src/libslic3r/PrintConfig.cpp:321 +#: src/libslic3r/PrintConfig.cpp:329 src/libslic3r/PrintConfig.cpp:379 #: src/libslic3r/PrintConfig.cpp:505 src/libslic3r/PrintConfig.cpp:516 #: src/libslic3r/PrintConfig.cpp:534 src/libslic3r/PrintConfig.cpp:712 #: src/libslic3r/PrintConfig.cpp:1231 src/libslic3r/PrintConfig.cpp:1292 @@ -4455,17 +4474,18 @@ msgstr "ml" #: src/libslic3r/PrintConfig.cpp:2226 src/libslic3r/PrintConfig.cpp:2233 #: src/libslic3r/PrintConfig.cpp:2240 src/libslic3r/PrintConfig.cpp:2270 #: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2290 -#: src/libslic3r/PrintConfig.cpp:2475 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2450 src/libslic3r/PrintConfig.cpp:2484 #: src/libslic3r/PrintConfig.cpp:2623 src/libslic3r/PrintConfig.cpp:2632 -#: src/libslic3r/PrintConfig.cpp:2642 src/libslic3r/PrintConfig.cpp:2686 -#: src/libslic3r/PrintConfig.cpp:2696 src/libslic3r/PrintConfig.cpp:2708 -#: src/libslic3r/PrintConfig.cpp:2728 src/libslic3r/PrintConfig.cpp:2738 -#: src/libslic3r/PrintConfig.cpp:2748 src/libslic3r/PrintConfig.cpp:2766 -#: src/libslic3r/PrintConfig.cpp:2781 src/libslic3r/PrintConfig.cpp:2795 -#: src/libslic3r/PrintConfig.cpp:2806 src/libslic3r/PrintConfig.cpp:2819 -#: src/libslic3r/PrintConfig.cpp:2864 src/libslic3r/PrintConfig.cpp:2874 -#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2893 -#: src/libslic3r/PrintConfig.cpp:2909 +#: src/libslic3r/PrintConfig.cpp:2641 src/libslic3r/PrintConfig.cpp:2651 +#: src/libslic3r/PrintConfig.cpp:2695 src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2717 src/libslic3r/PrintConfig.cpp:2737 +#: src/libslic3r/PrintConfig.cpp:2747 src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2775 src/libslic3r/PrintConfig.cpp:2790 +#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2828 src/libslic3r/PrintConfig.cpp:2873 +#: src/libslic3r/PrintConfig.cpp:2883 src/libslic3r/PrintConfig.cpp:2892 +#: src/libslic3r/PrintConfig.cpp:2902 src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2942 msgid "mm" msgstr "mm" @@ -4482,7 +4502,7 @@ msgstr "mm (zero aby wyłączyć)" msgid "mm or %" msgstr "mm lub %" -#: src/libslic3r/PrintConfig.cpp:227 src/libslic3r/PrintConfig.cpp:609 +#: src/libslic3r/PrintConfig.cpp:237 src/libslic3r/PrintConfig.cpp:609 #: src/libslic3r/PrintConfig.cpp:617 src/libslic3r/PrintConfig.cpp:626 #: src/libslic3r/PrintConfig.cpp:634 src/libslic3r/PrintConfig.cpp:661 #: src/libslic3r/PrintConfig.cpp:680 src/libslic3r/PrintConfig.cpp:922 @@ -4501,7 +4521,7 @@ msgstr "mm/s" msgid "mm/s or %" msgstr "mm/s lub %" -#: src/libslic3r/PrintConfig.cpp:186 src/libslic3r/PrintConfig.cpp:329 +#: src/libslic3r/PrintConfig.cpp:196 src/libslic3r/PrintConfig.cpp:339 #: src/libslic3r/PrintConfig.cpp:862 src/libslic3r/PrintConfig.cpp:984 #: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1201 #: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1403 @@ -4527,7 +4547,7 @@ msgstr "mm³/s²" #: src/slic3r/GUI/GUI_App.cpp:820 msgid "Mode" -msgstr "Tryb" +msgstr "&Tryb" #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:63 msgid "model" @@ -4541,24 +4561,24 @@ msgstr "Model" msgid "Model fixing" msgstr "Naprawianie modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model Repair by the Netfabb service" msgstr "Naprawianie Modelu przez usługę Netfabb" -#: src/slic3r/Utils/FixModelByWin10.cpp:413 +#: src/slic3r/Utils/FixModelByWin10.cpp:406 msgid "Model repair canceled" msgstr "Anulowano naprawę modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:433 +#: src/slic3r/Utils/FixModelByWin10.cpp:426 msgid "Model repair failed:" msgstr "Niepowodzenie naprawy modelu:" -#: src/slic3r/Utils/FixModelByWin10.cpp:407 +#: src/slic3r/Utils/FixModelByWin10.cpp:400 msgid "Model repair finished" msgstr "Ukończono naprawę modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:430 +#: src/slic3r/Utils/FixModelByWin10.cpp:423 msgid "Model repaired successfully" msgstr "Model naprawiono pomyślnie" @@ -4566,15 +4586,15 @@ msgstr "Model naprawiono pomyślnie" msgid "modified" msgstr "zmodyfikowano" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Modifier" msgstr "Modyfikator" -#: src/slic3r/GUI/Tab.cpp:1163 +#: src/slic3r/GUI/Tab.cpp:1161 msgid "Modifiers" msgstr "Modyfikatory" -#: src/libslic3r/PrintConfig.cpp:2503 +#: src/libslic3r/PrintConfig.cpp:2512 msgid "money/bottle" msgstr "pieniędzy/butelkę" @@ -4582,11 +4602,11 @@ msgstr "pieniędzy/butelkę" msgid "money/kg" msgstr "pieniędzy/kg" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Mouse wheel" msgstr "Kółko myszy" -#: src/slic3r/GUI/GLCanvas3D.cpp:266 +#: src/slic3r/GUI/GLCanvas3D.cpp:261 msgid "Mouse wheel:" msgstr "Kółko myszy:" @@ -4594,27 +4614,27 @@ msgstr "Kółko myszy:" msgid "Move" msgstr "Przesuń" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1351 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1372 msgid "Move clipping plane" msgstr "Przesunięcie płaszczyzny przecinania" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:198 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:215 msgid "Move current slider thumb Down" msgstr "Przesuń suwak w dół" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:214 msgid "Move current slider thumb Up" msgstr "Przesuń suwak w górę" -#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1033 +#: src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp:1059 msgid "Move drainage hole" msgstr "Przesuń otwór odpływowy" -#: src/slic3r/GUI/GLCanvas3D.cpp:3538 +#: src/slic3r/GUI/GLCanvas3D.cpp:3505 msgid "Move Object" msgstr "Przesuń Model" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1344 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1365 msgid "Move point" msgstr "Przesuń punkt" @@ -4634,7 +4654,7 @@ msgstr "Przesuń zaznaczenie o +10 mm w osi X" msgid "Move selection 10 mm in positive Y direction" msgstr "Przesuń zaznaczenie o +10 mm w osi Y" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1076 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1097 msgid "Move support point" msgstr "Przenieś plik podpory" @@ -4650,36 +4670,41 @@ msgstr "Krok przesunięcia ustawiony na 1 mm" msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower." msgstr "Drukarki pracujące z kilkoma filamentami na raz (multi-material) mogą wymagać czyszczenia głowicy przy zmianie filamentu. Nadmiar materiału jest wytłaczany w formie wieży czyszczącej." -#: src/slic3r/GUI/Plater.cpp:2344 src/slic3r/GUI/Plater.cpp:2397 +#: src/slic3r/GUI/Plater.cpp:2360 src/slic3r/GUI/Plater.cpp:2413 msgid "Multi-part object detected" msgstr "Wykryto obiekt wieloczęściowy" #: src/slic3r/GUI/FirmwareDialog.cpp:419 src/slic3r/GUI/FirmwareDialog.cpp:454 -#, possible-c-format +#, c-format msgid "Multiple %s devices found. Please only connect one at a time for flashing." msgstr "Wiele urządzeń %s znaleziono. Proszę zostawić tylko jedno podłączone podczas flashowania." -#: src/slic3r/GUI/Tab.cpp:1181 +#: src/slic3r/GUI/Tab.cpp:1179 msgid "Multiple Extruders" msgstr "Kilka ekstruderów" -#: src/slic3r/GUI/Plater.cpp:2394 -msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?" -msgstr "Kilka obiektów zostało załadowanych dla drukarki typu multi-material.\nTraktować je jako jeden model zawierający kilka części?" +#: src/slic3r/GUI/Plater.cpp:2410 +msgid "" +"Multiple objects were loaded for a multi-material printer.\n" +"Instead of considering them as multiple objects, should I consider\n" +"these files to represent a single object having multiple parts?" +msgstr "" +"Kilka obiektów zostało załadowanych dla drukarki typu multi-material.\n" +"Traktować je jako jeden model zawierający kilka części?" -#: src/libslic3r/PrintConfig.cpp:3424 +#: src/libslic3r/PrintConfig.cpp:3439 msgid "Multiply copies by creating a grid." msgstr "Pomnóż ilość kopii przez stworzenie siatki." -#: src/libslic3r/PrintConfig.cpp:3419 +#: src/libslic3r/PrintConfig.cpp:3434 msgid "Multiply copies by this factor." msgstr "Pomnóż ilość kopii przez tę wartość." -#: src/slic3r/GUI/Field.cpp:145 src/slic3r/GUI/OptionsGroup.cpp:574 +#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/OptionsGroup.cpp:580 msgid "N/A" msgstr "N/D" -#: src/slic3r/GUI/GUI_ObjectList.cpp:268 +#: src/slic3r/GUI/GUI_ObjectList.cpp:270 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 msgid "Name" msgstr "Nazwa" @@ -4704,7 +4729,7 @@ msgstr "Najbliższy" msgid "Network lookup" msgstr "Podgląd sieci" -#: src/slic3r/GUI/Plater.cpp:2135 +#: src/slic3r/GUI/Plater.cpp:2151 msgid "New Project" msgstr "Nowy Projekt" @@ -4713,7 +4738,7 @@ msgid "New project, clear plater" msgstr "Nowy projekt, wyczyść stół" #: src/slic3r/GUI/UpdateDialogs.cpp:38 -#, possible-c-format +#, c-format msgid "New version of %s is available" msgstr "Dostępna jest nowa wersja: %s" @@ -4721,11 +4746,11 @@ msgstr "Dostępna jest nowa wersja: %s" msgid "New version:" msgstr "Nowa wersja:" -#: src/slic3r/GUI/GLCanvas3D.cpp:4722 +#: src/slic3r/GUI/GLCanvas3D.cpp:4673 msgid "Next Redo action: %1%" msgstr "Następna akcja do powtórzenia: %1%" -#: src/slic3r/GUI/GLCanvas3D.cpp:4690 +#: src/slic3r/GUI/GLCanvas3D.cpp:4641 msgid "Next Undo action: %1%" msgstr "Następna akcja do cofnięcia: %1%" @@ -4733,11 +4758,11 @@ msgstr "Następna akcja do cofnięcia: %1%" msgid "No extrusion" msgstr "Brak ekstruzji" -#: src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:453 msgid "No pad can be generated for this model with the current configuration" -msgstr "Nie ma możliwości wygenerowania podkładki dla tego modelu przy obecnych ustawieniach " +msgstr "Nie ma możliwości wygenerowania podkładki dla tego modelu przy obecnych ustawieniach" -#: src/slic3r/GUI/MainFrame.cpp:786 +#: src/slic3r/GUI/MainFrame.cpp:784 msgid "No previously sliced file." msgstr "Brak poprzednio pociętych plików." @@ -4749,25 +4774,25 @@ msgstr "BRAK WYCISKANIA" msgid "No sparse layers (EXPERIMENTAL)" msgstr "Brak warstw bez czyszczenia (EKSPERYMENTALNE)" -#: src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2774 msgid "No support points will be placed closer than this threshold." msgstr "Punkty nie zostaną umieszczone bliżej siebie niż ustawiona wartość." #: src/slic3r/GUI/UpdateDialogs.cpp:303 -msgid "No updates aviable" +msgid "No updates available" msgstr "Brak dostępnych aktualizacji" #: src/slic3r/GUI/ConfigWizard.cpp:291 src/slic3r/GUI/ConfigWizard.cpp:574 -#: src/slic3r/GUI/Plater.cpp:496 src/slic3r/GUI/Plater.cpp:636 +#: src/slic3r/GUI/Plater.cpp:499 src/slic3r/GUI/Plater.cpp:639 #: src/libslic3r/ExtrusionEntity.cpp:309 msgid "None" msgstr "Brak" -#: src/slic3r/GUI/Tab.cpp:2199 +#: src/slic3r/GUI/Tab.cpp:2203 msgid "Normal" msgstr "Normalny" -#: src/slic3r/GUI/Plater.cpp:1258 +#: src/slic3r/GUI/Plater.cpp:1286 msgid "normal mode" msgstr "tryb normalny" @@ -4776,10 +4801,10 @@ msgid "not a ZIP archive" msgstr "nie jest archiwum ZIP" #: src/slic3r/GUI/BedShapeDialog.cpp:223 src/slic3r/GUI/BedShapeDialog.cpp:302 -msgid "Not found: " +msgid "Not found:" msgstr "Nie znaleziono:" -#: src/slic3r/GUI/DoubleSlider.cpp:985 +#: src/slic3r/GUI/DoubleSlider.cpp:1019 msgid "Note" msgstr "Uwaga" @@ -4795,20 +4820,20 @@ msgstr "Uwaga: Wymagana jest karta FlashAir z FW 2.00.02 lub nowszym z włączon msgid "Note: OctoPrint version at least 1.1.0 is required." msgstr "Uwaga: wymagany jest OctoPrint w wersji 1.1.0 lub wyższej." -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1324 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1345 msgid "Note: some shortcuts work in (non)editing mode only." msgstr "Uwaga: niektóre skróty działają tylko poza trybem edycji." -#: src/slic3r/GUI/Tab.cpp:1253 src/slic3r/GUI/Tab.cpp:1254 -#: src/slic3r/GUI/Tab.cpp:1542 src/slic3r/GUI/Tab.cpp:1543 -#: src/slic3r/GUI/Tab.cpp:2010 src/slic3r/GUI/Tab.cpp:2011 -#: src/slic3r/GUI/Tab.cpp:2124 src/slic3r/GUI/Tab.cpp:2125 -#: src/slic3r/GUI/Tab.cpp:3520 src/slic3r/GUI/Tab.cpp:3521 +#: src/slic3r/GUI/Tab.cpp:1251 src/slic3r/GUI/Tab.cpp:1252 +#: src/slic3r/GUI/Tab.cpp:1540 src/slic3r/GUI/Tab.cpp:1541 +#: src/slic3r/GUI/Tab.cpp:2012 src/slic3r/GUI/Tab.cpp:2013 +#: src/slic3r/GUI/Tab.cpp:2128 src/slic3r/GUI/Tab.cpp:2129 +#: src/slic3r/GUI/Tab.cpp:3535 src/slic3r/GUI/Tab.cpp:3536 msgid "Notes" msgstr "Notatki" -#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1878 -#: src/slic3r/GUI/DoubleSlider.cpp:1899 src/slic3r/GUI/GUI.cpp:240 +#: src/slic3r/GUI/ConfigWizard.cpp:1751 src/slic3r/GUI/DoubleSlider.cpp:1905 +#: src/slic3r/GUI/DoubleSlider.cpp:1926 src/slic3r/GUI/GUI.cpp:245 msgid "Notice" msgstr "Uwaga" @@ -4816,12 +4841,12 @@ msgstr "Uwaga" msgid "nozzle" msgstr "dysza" -#: src/slic3r/GUI/Tab.cpp:1868 src/slic3r/GUI/Tab.cpp:2336 +#: src/slic3r/GUI/Tab.cpp:1870 src/slic3r/GUI/Tab.cpp:2340 #: src/libslic3r/PrintConfig.cpp:1326 msgid "Nozzle diameter" msgstr "Średnica dyszy" -#: src/slic3r/GUI/ConfigWizard.cpp:970 +#: src/slic3r/GUI/ConfigWizard.cpp:969 msgid "Nozzle Diameter:" msgstr "Średnica dyszy:" @@ -4829,7 +4854,7 @@ msgstr "Średnica dyszy:" msgid "Number of cooling moves" msgstr "Ilość ruchów chłodzących" -#: src/slic3r/GUI/Tab.cpp:1837 +#: src/slic3r/GUI/Tab.cpp:1839 msgid "Number of extruders of the printer." msgstr "Liczba ekstruderów drukarki." @@ -4853,7 +4878,7 @@ msgstr "Liczba pikseli w osi X" msgid "Number of pixels in Y" msgstr "Liczba pikseli w osi Y" -#: src/libslic3r/PrintConfig.cpp:166 +#: src/libslic3r/PrintConfig.cpp:176 msgid "Number of solid layers to generate on bottom surfaces." msgstr "Liczba zwartych warstw dolnych." @@ -4865,19 +4890,19 @@ msgstr "Liczba zwartych warstw górnych i dolnych." msgid "Number of solid layers to generate on top surfaces." msgstr "Liczba zwartych warstw górnych." -#: src/libslic3r/PrintConfig.cpp:2509 +#: src/libslic3r/PrintConfig.cpp:2518 msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time" msgstr "Liczba warstw potrzebnych, aby zmienić czas naświetlania z początkowego do stałego" -#: src/slic3r/GUI/Plater.cpp:243 +#: src/slic3r/GUI/Plater.cpp:241 msgid "Number of tool changes" msgstr "Ilość zmian narzędzi" -#: src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2753 msgid "Object elevation" msgstr "Podniesienie modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2442 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2466 msgid "Object manipulation" msgstr "Manipulowanie modelem" @@ -4885,19 +4910,19 @@ msgstr "Manipulowanie modelem" msgid "Object name" msgstr "Nazwa modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3391 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3417 msgid "Object or Instance" msgstr "Model lub Kopia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Object reordered" msgstr "Model przeorganizowany" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2455 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2479 msgid "Object Settings to modify" msgstr "Ustawienia Modelu do modyfikacji" -#: src/slic3r/GUI/Plater.cpp:2513 +#: src/slic3r/GUI/Plater.cpp:2529 msgid "Object too large?" msgstr "Model zbyt duży?" @@ -4905,11 +4930,11 @@ msgstr "Model zbyt duży?" msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result." msgstr "Modele zostaną użyte do czyszczenia dyszy po zmianie narzędzia (filamentu) aby oszczędzić materiał, który inaczej zostałby wyekstrudowany do wieży czyszczącej i aby skrócić czas wydruku. W rezultacie kolor tego modelu będzie niejednolity." -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "object(s)" msgstr "model(e)" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "objects" msgstr "modele" @@ -4921,7 +4946,7 @@ msgstr "Spirala ośmiokątna" msgid "OctoPrint version" msgstr "Wersja OctoPrint" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3399 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3425 msgid "of a current Object" msgstr "obecnego Modelu" @@ -4929,15 +4954,15 @@ msgstr "obecnego Modelu" msgid "Offset" msgstr "Offset" -#: src/slic3r/GUI/DoubleSlider.cpp:923 +#: src/slic3r/GUI/DoubleSlider.cpp:950 msgid "One layer mode" msgstr "Tryb jednej warstwy" -#: src/libslic3r/Print.cpp:1361 +#: src/libslic3r/Print.cpp:1365 msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Jeden lub więcej modeli zostało przypisanych do ekstrudera, którego drukarka nie posiada." -#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2667 +#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2676 msgid "Only create support if it lies on a build plate. Don't create support on a print." msgstr "Tworzenie podpór tylko na stole. Nie będą tworzone na wydruku." @@ -4945,7 +4970,7 @@ msgstr "Tworzenie podpór tylko na stole. Nie będą tworzone na wydruku." msgid "Only infill where needed" msgstr "Tylko potrzebne wypełnienie" -#: src/slic3r/GUI/Tab.cpp:2369 +#: src/slic3r/GUI/Tab.cpp:2373 msgid "Only lift Z" msgstr "Z-hop tylko" @@ -4961,11 +4986,11 @@ msgstr "Z-hop tylko poniżej" msgid "Only retract when crossing perimeters" msgstr "Retrakcja tylko przy przechodzeniu nad obrysami" -#: src/slic3r/GUI/Tab.cpp:1189 +#: src/slic3r/GUI/Tab.cpp:1187 msgid "Ooze prevention" msgstr "Zapobieganie wyciekom (ooze)" -#: src/libslic3r/Print.cpp:1262 +#: src/libslic3r/Print.cpp:1266 msgid "Ooze prevention is currently not supported with the wipe tower enabled." msgstr "Zapobieganie wyciekom jest obecnie niedostępne przy włączonej wieży czyszczącej." @@ -4973,7 +4998,7 @@ msgstr "Zapobieganie wyciekom jest obecnie niedostępne przy włączonej wieży msgid "Open a project file" msgstr "Otwórz plik projektu" -#: src/slic3r/GUI/Tab.cpp:1727 +#: src/slic3r/GUI/Tab.cpp:1729 msgid "Open CA certificate file" msgstr "Otwórz plik certyfikatu CA" @@ -4990,52 +5015,48 @@ msgstr "Otwórz stronę pobierania" msgid "Open project STL/OBJ/AMF/3MF with config, clear plater" msgstr "Otwórz projekt STL/OBJ/AMF/3MF z konfiguracją, wyczyść stół" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:107 -msgid "Open project STL/OBJ/AMF/3MF with config, delete bed" -msgstr "Otwórz projekt STL/OBJ/AMF/3MF z konfiguracją, wyczyść stół" - -#: src/slic3r/GUI/MainFrame.cpp:695 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:693 +#, c-format msgid "Open the %s website in your browser" msgstr "Otwórz stronę %s w przeglądarce" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Open the Prusa3D drivers download page in your browser" msgstr "Otwórz stronę Prusa3D ze sterownikami w przeglądarce" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Open the software releases page in your browser" msgstr "Otwórz stronę z wersjami oprogramowania w przeglądarce" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize orientation" msgstr "Optymalizuj orientację" -#: src/slic3r/GUI/Plater.cpp:2751 +#: src/slic3r/GUI/Plater.cpp:2767 msgid "Optimize Rotation" msgstr "Optymalizuj obrót" -#: src/slic3r/GUI/Plater.cpp:4049 +#: src/slic3r/GUI/Plater.cpp:4040 msgid "Optimize the rotation of the object for better print results." msgstr "Optymalizuj obrót modelu dla lepszych efektów." -#: src/libslic3r/PrintConfig.cpp:127 +#: src/libslic3r/PrintConfig.cpp:137 msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation." msgstr "Optymalizuj ruchy jałowe aby zminimalizować przejeżdżanie nad obrysami. Ta funkcja jest przydatna szczególne przy ekstruderach typu bowden, podatnych na wyciekanie filamentu z dyszy. Włączenie tej funkcji wydłuża zarówno czas druku jak i czas generowania G-code." -#: src/slic3r/GUI/Tab.cpp:1133 +#: src/slic3r/GUI/Tab.cpp:1131 msgid "Options for support material and raft" msgstr "Opcje materiału podporowego i tratwy (raft)" -#: src/slic3r/GUI/DoubleSlider.cpp:960 +#: src/slic3r/GUI/DoubleSlider.cpp:989 msgid "or press \"+\" key" msgstr "lub naciśnij klawisz \"+\"" -#: src/slic3r/GUI/Plater.cpp:2876 +#: src/slic3r/GUI/Plater.cpp:2892 msgid "Orientation found." msgstr "Znaleziono orientację." -#: src/slic3r/GUI/Plater.cpp:2875 +#: src/slic3r/GUI/Plater.cpp:2891 msgid "Orientation search canceled." msgstr "Anulowano ustawianie orientacji." @@ -5043,23 +5064,23 @@ msgstr "Anulowano ustawianie orientacji." msgid "Origin" msgstr "Punkt zerowy" -#: src/slic3r/GUI/Tab.cpp:1229 +#: src/slic3r/GUI/Tab.cpp:1227 msgid "Other" msgstr "Inne" -#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:2064 +#: src/libslic3r/PrintConfig.cpp:144 src/libslic3r/PrintConfig.cpp:2064 msgid "Other layers" msgstr "Inne warstwy" -#: src/slic3r/GUI/ConfigWizard.cpp:857 +#: src/slic3r/GUI/ConfigWizard.cpp:856 msgid "Other Vendors" msgstr "Inni dostawcy" -#: src/slic3r/GUI/Tab.cpp:1240 src/slic3r/GUI/Tab.cpp:3651 +#: src/slic3r/GUI/Tab.cpp:1238 src/slic3r/GUI/Tab.cpp:3666 msgid "Output file" msgstr "Plik wyjściowy" -#: src/libslic3r/PrintConfig.cpp:3478 +#: src/libslic3r/PrintConfig.cpp:3493 msgid "Output File" msgstr "Plik Wyjściowy" @@ -5067,15 +5088,15 @@ msgstr "Plik Wyjściowy" msgid "Output filename format" msgstr "Format pliku wyjściowego" -#: src/libslic3r/PrintConfig.cpp:3366 +#: src/libslic3r/PrintConfig.cpp:3381 msgid "Output Model Info" msgstr "Informacje o Modelu wyjściowym" -#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:3650 +#: src/slic3r/GUI/Tab.cpp:1230 src/slic3r/GUI/Tab.cpp:3665 msgid "Output options" msgstr "Opcje wyjściowe" -#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:312 +#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:312 msgid "Overhang perimeter" msgstr "Obrys zwisu" @@ -5083,7 +5104,7 @@ msgstr "Obrys zwisu" msgid "Overhang threshold" msgstr "Próg zwisu" -#: src/slic3r/GUI/Tab.cpp:1217 +#: src/slic3r/GUI/Tab.cpp:1215 msgid "Overlap" msgstr "Nakładanie" @@ -5091,15 +5112,15 @@ msgstr "Nakładanie" msgid "P&rint Settings Tab" msgstr "Ustawienia D&ruku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:105 src/slic3r/GUI/GUI_ObjectList.cpp:623 -#: src/slic3r/GUI/Plater.cpp:632 src/slic3r/GUI/Tab.cpp:3621 -#: src/slic3r/GUI/Tab.cpp:3622 src/libslic3r/PrintConfig.cpp:2772 -#: src/libslic3r/PrintConfig.cpp:2779 src/libslic3r/PrintConfig.cpp:2793 -#: src/libslic3r/PrintConfig.cpp:2804 src/libslic3r/PrintConfig.cpp:2814 -#: src/libslic3r/PrintConfig.cpp:2836 src/libslic3r/PrintConfig.cpp:2847 -#: src/libslic3r/PrintConfig.cpp:2854 src/libslic3r/PrintConfig.cpp:2861 -#: src/libslic3r/PrintConfig.cpp:2872 src/libslic3r/PrintConfig.cpp:2881 -#: src/libslic3r/PrintConfig.cpp:2890 +#: src/slic3r/GUI/GUI_ObjectList.cpp:107 src/slic3r/GUI/GUI_ObjectList.cpp:625 +#: src/slic3r/GUI/Plater.cpp:635 src/slic3r/GUI/Tab.cpp:3636 +#: src/slic3r/GUI/Tab.cpp:3637 src/libslic3r/PrintConfig.cpp:2781 +#: src/libslic3r/PrintConfig.cpp:2788 src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2813 src/libslic3r/PrintConfig.cpp:2823 +#: src/libslic3r/PrintConfig.cpp:2845 src/libslic3r/PrintConfig.cpp:2856 +#: src/libslic3r/PrintConfig.cpp:2863 src/libslic3r/PrintConfig.cpp:2870 +#: src/libslic3r/PrintConfig.cpp:2881 src/libslic3r/PrintConfig.cpp:2890 +#: src/libslic3r/PrintConfig.cpp:2899 msgid "Pad" msgstr "Podkładka" @@ -5107,15 +5128,15 @@ msgstr "Podkładka" msgid "Pad and Support" msgstr "Podkładka i Podpory" -#: src/libslic3r/PrintConfig.cpp:2846 +#: src/libslic3r/PrintConfig.cpp:2855 msgid "Pad around object" msgstr "Podkładka wokół modelu" -#: src/libslic3r/PrintConfig.cpp:2853 +#: src/libslic3r/PrintConfig.cpp:2862 msgid "Pad around object everywhere" msgstr "Podkładka wokół wszystkich modeli" -#: src/libslic3r/PrintConfig.cpp:2802 +#: src/libslic3r/PrintConfig.cpp:2811 msgid "Pad brim size" msgstr "Rozmiar brimu dla podkładki" @@ -5123,31 +5144,31 @@ msgstr "Rozmiar brimu dla podkładki" msgid "Pad brim size is too small for the current configuration." msgstr "Rozmiar brimu podkładki jest zbyt mały dla obecnej konfiguracji." -#: src/libslic3r/PrintConfig.cpp:2889 +#: src/libslic3r/PrintConfig.cpp:2898 msgid "Pad object connector penetration" msgstr "Przenikanie łącznika podkładki z modelem" -#: src/libslic3r/PrintConfig.cpp:2871 +#: src/libslic3r/PrintConfig.cpp:2880 msgid "Pad object connector stride" msgstr "Rozmieszczenie łączników podkładki z modelem" -#: src/libslic3r/PrintConfig.cpp:2880 +#: src/libslic3r/PrintConfig.cpp:2889 msgid "Pad object connector width" msgstr "Szerokość łącznika podkładki z modelem" -#: src/libslic3r/PrintConfig.cpp:2860 +#: src/libslic3r/PrintConfig.cpp:2869 msgid "Pad object gap" msgstr "Odstęp modelu od podkładki" -#: src/libslic3r/PrintConfig.cpp:2788 +#: src/libslic3r/PrintConfig.cpp:2797 msgid "Pad wall height" msgstr "Wysokość ścianki podkładki" -#: src/libslic3r/PrintConfig.cpp:2835 +#: src/libslic3r/PrintConfig.cpp:2844 msgid "Pad wall slope" msgstr "Kąt pochylenia ścianki podkładki" -#: src/libslic3r/PrintConfig.cpp:2778 +#: src/libslic3r/PrintConfig.cpp:2787 msgid "Pad wall thickness" msgstr "Grubość ścianki podkładki" @@ -5159,28 +5180,28 @@ msgstr "Page Down" msgid "Page Up" msgstr "Page Up" -#: src/slic3r/GUI/Field.cpp:134 +#: src/slic3r/GUI/Field.cpp:139 msgid "parameter name" msgstr "nazwa parametru" -#: src/slic3r/GUI/Field.cpp:238 +#: src/slic3r/GUI/Field.cpp:243 msgid "Parameter validation" msgstr "Weryfikacja parametru" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3392 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3418 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Part" msgstr "Część" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2470 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2494 msgid "Part manipulation" msgstr "Manipulacja częścią" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2459 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 msgid "Part Settings to modify" msgstr "Ustawienia Części do modyfikacji" -#: src/slic3r/GUI/GLCanvas3D.cpp:4563 +#: src/slic3r/GUI/GLCanvas3D.cpp:4514 msgid "Paste" msgstr "Wklej" @@ -5188,11 +5209,11 @@ msgstr "Wklej" msgid "Paste clipboard" msgstr "Wklej zawartość schowka" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:143 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:133 msgid "Paste from clipboard" msgstr "Wklej ze schowka" -#: src/slic3r/GUI/Plater.cpp:5640 +#: src/slic3r/GUI/Plater.cpp:5606 msgid "Paste From Clipboard" msgstr "Wklej Ze Schowka" @@ -5212,12 +5233,16 @@ msgstr "Rozstaw wzoru" msgid "Pattern used to generate support material." msgstr "Wzór podpór." -#: src/slic3r/GUI/DoubleSlider.cpp:976 +#: src/slic3r/GUI/Plater.cpp:1261 +msgid "Pause" +msgstr "Pauza" + +#: src/slic3r/GUI/DoubleSlider.cpp:1009 msgid "Pause print (\"%1%\")" msgstr "Wstrzymaj wydruk (\"%1%\")" -#: src/slic3r/GUI/GLCanvas3D.cpp:939 src/slic3r/GUI/GLCanvas3D.cpp:948 -#: src/slic3r/GUI/GLCanvas3D.cpp:987 +#: src/slic3r/GUI/GLCanvas3D.cpp:934 src/slic3r/GUI/GLCanvas3D.cpp:943 +#: src/slic3r/GUI/GLCanvas3D.cpp:982 msgid "Pause print or custom G-code" msgstr "Pauza wydruku lub własny G-code" @@ -5225,11 +5250,11 @@ msgstr "Pauza wydruku lub własny G-code" msgid "Perform cut" msgstr "Przetnij" -#: src/libslic3r/PrintConfig.cpp:2918 +#: src/libslic3r/PrintConfig.cpp:2927 msgid "Performance vs accuracy of calculation. Lower values may produce unwanted artifacts." msgstr "Kalkulacja prędkości względem dokładności. Niższe wartości mogą powodować artefakty." -#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/ExtrusionEntity.cpp:310 +#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/ExtrusionEntity.cpp:310 msgid "Perimeter" msgstr "Obrys" @@ -5246,8 +5271,8 @@ msgstr "obrysy" msgid "Perimeters" msgstr "Obrysy" -#: src/slic3r/GUI/ConfigWizard.cpp:861 -#, possible-c-format +#: src/slic3r/GUI/ConfigWizard.cpp:860 +#, c-format msgid "Pick another vendor supported by %s" msgstr "Wybierz innego producenta obsługiwanego przez %s" @@ -5255,7 +5280,7 @@ msgstr "Wybierz innego producenta obsługiwanego przez %s" msgid "Picture sizes to be stored into a .gcode and .sl1 files" msgstr "Rozmiary obrazów będą przechowywane w plikach .gcode i .sl1" -#: src/libslic3r/PrintConfig.cpp:2672 +#: src/libslic3r/PrintConfig.cpp:2681 msgid "Pillar widening factor" msgstr "Współczynnik rozszerzania słupka" @@ -5263,35 +5288,27 @@ msgstr "Współczynnik rozszerzania słupka" msgid "Pinhead diameter should be smaller than the pillar diameter." msgstr "Średnica łączników podpór powinna być mniejsza niż średnica słupków." -#: src/slic3r/GUI/wxExtensions.cpp:2325 -msgid "Place bearings in slots and resume" -msgstr "Umieść łożyska w gniazdach i wznów" - #: src/slic3r/GUI/DoubleSlider.cpp:79 msgid "Place bearings in slots and resume printing" -msgstr "Umieść łożyska w gniazdach i wznów drukowanie." +msgstr "Umieść łożyska w gniazdach i wznów drukowanie" #: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:45 msgid "Place on face" msgstr "Połóż na płaszczyźnie" -#: src/slic3r/GUI/MainFrame.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:192 src/slic3r/GUI/MainFrame.cpp:204 msgid "Plater" msgstr "Zawartość Stołu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:170 -msgid "Plater Shortcuts" -msgstr "Skróty widoku stołu" - #: src/slic3r/GUI/GUI_App.cpp:1085 msgid "Please check and fix your object list." msgstr "Sprawdź i popraw listę modeli." -#: src/slic3r/GUI/Plater.cpp:2296 src/slic3r/GUI/Tab.cpp:2943 +#: src/slic3r/GUI/Plater.cpp:2312 src/slic3r/GUI/Tab.cpp:2959 msgid "Please check your object list before preset changing." msgstr "Sprawdź listę modeli przed zmianą zestawu ustawień." -#: src/slic3r/GUI/Plater.cpp:3272 +#: src/slic3r/GUI/Plater.cpp:3286 msgid "Please select the file to reload" msgstr "Wybierz plik do przeładowania" @@ -5308,14 +5325,10 @@ msgstr "Tryb Portretowy" msgid "Position" msgstr "Pozycja" -#: src/slic3r/GUI/Tab.cpp:2363 +#: src/slic3r/GUI/Tab.cpp:2367 msgid "Position (for multi-extruder printers)" msgstr "Pozycja (dla drukarek z kilkoma ekstruderami)" -#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177 -msgid "Position (mm)" -msgstr "Pozycja (mm)" - #: src/libslic3r/PrintConfig.cpp:1623 msgid "Position of perimeters starting points." msgstr "Pozycja startowa druku obrysów." @@ -5328,7 +5341,7 @@ msgstr "Pozycja X" msgid "Position Y" msgstr "Pozycja Y" -#: src/slic3r/GUI/Tab.cpp:1247 src/libslic3r/PrintConfig.cpp:1453 +#: src/slic3r/GUI/Tab.cpp:1245 src/libslic3r/PrintConfig.cpp:1453 msgid "Post-processing scripts" msgstr "Skrypty do przetwarzania końcowego" @@ -5336,7 +5349,7 @@ msgstr "Skrypty do przetwarzania końcowego" msgid "Pre&view" msgstr "Pod&gląd" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Preferences.cpp:10 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:149 src/slic3r/GUI/Preferences.cpp:10 msgid "Preferences" msgstr "Preferencje" @@ -5352,67 +5365,59 @@ msgstr "Preferowany kierunek szwu - jitter" msgid "Preparing infill" msgstr "Przygotowywanie wypełnienia" -#: src/slic3r/GUI/Tab.cpp:2904 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:2920 +#, c-format msgid "Preset (%s)" msgstr "Zestaw ustawień (%s)" -#: src/slic3r/GUI/Tab.cpp:3066 +#: src/slic3r/GUI/Tab.cpp:3082 msgid "Preset with name \"%1%\" already exists." msgstr "Zestaw ustawień o nazwie \"%1%\" już istnieje." -#: src/slic3r/GUI/Tab.cpp:3029 +#: src/slic3r/GUI/Tab.cpp:3045 msgctxt "PresetName" msgid "%1% - Copy" msgstr "%1% - Kopia" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:152 -msgid "Press to activate deselection rectangle\nor to scale or rotate selected objects\naround their own center" -msgstr "Naciśnij aby aktywować prostokąt odznaczający\nlub skalować bądź obracać wybrane modele\nwokół ich środka" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:163 msgid "Press to activate deselection rectangle" msgstr "Naciśnij aby aktywować prostokąt odznaczający" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:153 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:197 msgid "Press to activate one direction scaling in Gizmo scale" msgstr "Naciśnij aby aktywować skalowanie uchwytem w jednym kierunku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:150 -#, no-c-format -msgid "Press to activate selection rectangle\nor to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Naciśnij aby aktywować prostokąt zaznaczający\nlub przyciągać co 5% podczas skalowania z uchwytem\nlub przyciągać co 1 mm podczas przemieszczania z uchwytem" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:162 msgid "Press to activate selection rectangle" msgstr "Naciśnij, aby aktywować prostokąt zaznaczający" #: src/slic3r/GUI/KBShortcutsDialog.cpp:198 -msgid "Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\nselected objects around their own center" -msgstr "Naciśnij, aby skalować (z uchwytem) lub obracać (z uchwytem)\nzaznaczone modele wokół ich środków" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 -msgid "Press to scale selection to fit print volume\nin Gizmo scale" -msgstr "Naciśnij aby skalować zaznaczenie do wielkości przestrzeni roboczej\nw skalowaniu z uchwytem" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:129 -msgid "Press to select multiple object or move multiple object with mouse" -msgstr "Kliknij aby wybrać wiele modeli lub przesunąć je przy pomocy myszki" +msgid "" +"Press to scale (in Gizmo scale) or rotate (in Gizmo rotate)\n" +"selected objects around their own center" +msgstr "" +"Naciśnij, aby skalować (z uchwytem) lub obracać (z uchwytem)\n" +"zaznaczone modele wokół ich środków" #: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with mouse" -msgstr "Kliknij aby wybrać wiele modeli\nlub przesunąć je przy pomocy myszki" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 -msgid "Press to select multiple objects\nor move multiple objects with a mouse" -msgstr "Kliknij aby wybrać wiele modeli\nlub przesunąć je przy pomocy myszki" +msgid "" +"Press to select multiple objects\n" +"or move multiple objects with mouse" +msgstr "" +"Kliknij aby wybrać wiele modeli\n" +"lub przesunąć je przy pomocy myszki" #: src/slic3r/GUI/KBShortcutsDialog.cpp:195 #, no-c-format -msgid "Press to snap by 5% in Gizmo scale\nor to snap by 1mm in Gizmo move" -msgstr "Naciśnij, aby a przyciągać co 5% podczas skalowania z uchwytem\nlub przyciągać co 1 mm podczas przemieszczania z uchwytem" +msgid "" +"Press to snap by 5% in Gizmo scale\n" +"or to snap by 1mm in Gizmo move" +msgstr "" +"Naciśnij, aby a przyciągać co 5% podczas skalowania z uchwytem\n" +"lub przyciągać co 1 mm podczas przemieszczania z uchwytem" -#: src/slic3r/GUI/Plater.cpp:4116 src/slic3r/GUI/Tab.cpp:2386 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:211 src/slic3r/GUI/Plater.cpp:4105 +#: src/slic3r/GUI/Tab.cpp:2390 msgid "Preview" msgstr "Podgląd cięcia" @@ -5420,11 +5425,7 @@ msgstr "Podgląd cięcia" msgid "Preview hollowed and drilled model" msgstr "Podgląd wydrążonego modelu z otworem" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:191 -msgid "Preview Shortcuts" -msgstr "Skróty podglądu cięcia" - -#: src/slic3r/GUI/MainFrame.cpp:792 +#: src/slic3r/GUI/MainFrame.cpp:790 msgid "Previously sliced file (" msgstr "Poprzednio pocięty plik (" @@ -5432,44 +5433,44 @@ msgstr "Poprzednio pocięty plik (" msgid "Prime all printing extruders" msgstr "Wyczyść wszystkie używane ekstrudery" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1471 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Preset.cpp:1521 msgid "print" msgstr "druk" #: src/slic3r/GUI/MainFrame.cpp:648 msgid "Print &Host Upload Queue" -msgstr "Kolej&ka Zadań Serwera Druku" +msgstr "Kolej&ka zadań serwera druku" #: src/libslic3r/PrintConfig.cpp:471 msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order." msgstr "Drukuj obrysy od zewnątrz do wewnątrz zamiast domyślnego ustawienia węwnątrz-zewnątrz." -#: src/slic3r/GUI/ConfigWizard.cpp:953 +#: src/slic3r/GUI/ConfigWizard.cpp:952 msgid "Print Diameters" msgstr "Średnice wydruku" -#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2119 +#: src/slic3r/GUI/Tab.cpp:1944 src/slic3r/GUI/Tab.cpp:2123 msgid "Print Host upload" -msgstr "Wysyłanie do Serwera Druku" +msgstr "Wysyłanie do serwera druku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:124 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:142 #: src/slic3r/GUI/PrintHostDialogs.cpp:136 msgid "Print host upload queue" msgstr "Kolejka serwera druku" -#: src/slic3r/GUI/DoubleSlider.cpp:941 +#: src/slic3r/GUI/DoubleSlider.cpp:970 msgid "Print mode" msgstr "Tryb drukowania" -#: src/slic3r/GUI/Tab.hpp:327 src/slic3r/GUI/Tab.hpp:430 +#: src/slic3r/GUI/Tab.hpp:328 src/slic3r/GUI/Tab.hpp:431 msgid "Print Settings" msgstr "Ustawienia Druku" -#: src/slic3r/GUI/Plater.cpp:812 +#: src/slic3r/GUI/Plater.cpp:815 msgid "Print settings" msgstr "Ustawienia druku" -#: src/slic3r/GUI/Tab.cpp:1480 +#: src/slic3r/GUI/Tab.cpp:1478 msgid "Print speed override" msgstr "Nadpisanie prędkości druku" @@ -5481,15 +5482,15 @@ msgstr "Druk z" msgid "Print&er Settings Tab" msgstr "Ustawi&enia Drukarki" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1621 msgid "Printable" msgstr "Do druku" -#: src/slic3r/GUI/Plater.cpp:816 +#: src/slic3r/GUI/Plater.cpp:819 msgid "Printer" msgstr "Drukarka" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1475 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53 src/slic3r/GUI/Preset.cpp:1525 msgid "printer" msgstr "drukarka" @@ -5497,11 +5498,11 @@ msgstr "drukarka" msgid "Printer absolute correction" msgstr "Korekcje bezwzględne drukarki" -#: src/libslic3r/PrintConfig.cpp:2447 src/libslic3r/PrintConfig.cpp:2448 +#: src/libslic3r/PrintConfig.cpp:2456 src/libslic3r/PrintConfig.cpp:2457 msgid "Printer gamma correction" msgstr "Korekcja gamma drukarki" -#: src/slic3r/GUI/Tab.cpp:978 +#: src/slic3r/GUI/Tab.cpp:976 msgid "printer model" msgstr "model drukarki" @@ -5514,7 +5515,7 @@ msgstr "Notatki o drukarce" msgid "Printer scaling correction" msgstr "Korekcja skalowania drukarki" -#: src/slic3r/GUI/Tab.hpp:390 +#: src/slic3r/GUI/Tab.hpp:391 msgid "Printer Settings" msgstr "Ustawienia Drukarki" @@ -5534,18 +5535,18 @@ msgstr "Wariant drukarki" msgid "Printer vendor" msgstr "Dostawca drukarki" -#: src/libslic3r/Print.cpp:1384 +#: src/libslic3r/Print.cpp:1388 msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter." msgstr "Druk ekstruderami o różnych średnicach dysz. Jeśli podpory mają być drukowane obecnie ustawionym ekstruderem (support_material_extruder == 0 lub support_material_interface_extruder == 0) to wszystkie dysze muszą mieć taką samą średnicę." #. TRN "Processing input_file_basename" -#: src/slic3r/GUI/MainFrame.cpp:851 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:849 +#, c-format msgid "Processing %s" msgstr "Przetwarzanie %s" -#: src/slic3r/GUI/Plater.cpp:2267 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2283 +#, c-format msgid "Processing input file %s" msgstr "Przetwarzanie pliku wejściowego %s" @@ -5553,9 +5554,9 @@ msgstr "Przetwarzanie pliku wejściowego %s" msgid "Processing triangulated mesh" msgstr "Przetwarzanie siatki trójkątów" -#: src/slic3r/GUI/Tab.cpp:1261 src/slic3r/GUI/Tab.cpp:1551 -#: src/slic3r/GUI/Tab.cpp:2018 src/slic3r/GUI/Tab.cpp:2132 -#: src/slic3r/GUI/Tab.cpp:3529 src/slic3r/GUI/Tab.cpp:3657 +#: src/slic3r/GUI/Tab.cpp:1259 src/slic3r/GUI/Tab.cpp:1549 +#: src/slic3r/GUI/Tab.cpp:2020 src/slic3r/GUI/Tab.cpp:2136 +#: src/slic3r/GUI/Tab.cpp:3544 src/slic3r/GUI/Tab.cpp:3672 msgid "Profile dependencies" msgstr "Zależności profilowe" @@ -5571,15 +5572,15 @@ msgstr "Postęp" msgid "Progress:" msgstr "Postęp:" -#: src/slic3r/GUI/MainFrame.cpp:686 +#: src/slic3r/GUI/MainFrame.cpp:684 msgid "Prusa 3D &Drivers" msgstr "Sterowniki Prusa 3&D" -#: src/slic3r/GUI/ConfigWizard.cpp:1998 +#: src/slic3r/GUI/ConfigWizard.cpp:1995 msgid "Prusa FFF Technology Printers" msgstr "Drukarki Prusa w technologii FFF" -#: src/slic3r/GUI/ConfigWizard.cpp:2001 +#: src/slic3r/GUI/ConfigWizard.cpp:1998 msgid "Prusa MSLA Technology Printers" msgstr "Drukarki Prusa w technologii MSLA" @@ -5588,23 +5589,33 @@ msgid "PrusaSlicer is based on Slic3r by Alessandro Ranellucci and the RepRap co msgstr "PrusaSlicer bazuje na projekcie Slic3r autorstwa Alessandro Ranelucciego i społeczności RepRap." #: src/slic3r/GUI/GLCanvas3DManager.cpp:284 -#, possible-c-format -msgid "PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \nwhile OpenGL version %s, render %s, vendor %s was detected." -msgstr "PrusaSlicer wymaga karty graficznej kompatybilnej z OpenGL 2.0, aby działać prawidłowo.\nwykryto OpenGL w wersji %s, render %s, producent %s ." +#, c-format +msgid "" +"PrusaSlicer requires OpenGL 2.0 capable graphics driver to run correctly, \n" +"while OpenGL version %s, render %s, vendor %s was detected." +msgstr "" +"PrusaSlicer wymaga karty graficznej kompatybilnej z OpenGL 2.0, aby działać prawidłowo.\n" +"wykryto OpenGL w wersji %s, render %s, producent %s ." #: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 msgid "PrusaSlicer version" msgstr "wersja PrusaSlicer" -#: src/slic3r/GUI/ConfigWizard.cpp:816 -msgid "PrusaSlicer's user interfaces comes in three variants:\nSimple, Advanced, and Expert.\nThe Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." -msgstr "Interfejs PrusaSlicer ma trzy warianty do wyboru:\nProsty, Zaawansowany i Ekspercki.\nTryb Prosty wyświetla tylko najczęściej używane ustawienia potrzebne w codziennym druku 3D. Pozostałe dwa oferują coraz większe możliwości konfiguracji i są przeznaczone odpowiednio dla użytkowników zaawansowanych i ekspertów." +#: src/slic3r/GUI/ConfigWizard.cpp:815 +msgid "" +"PrusaSlicer's user interfaces comes in three variants:\n" +"Simple, Advanced, and Expert.\n" +"The Simple mode shows only the most frequently used settings relevant for regular 3D printing. The other two offer progressively more sophisticated fine-tuning, they are suitable for advanced and expert users, respectively." +msgstr "" +"Interfejs PrusaSlicer ma trzy warianty do wyboru:\n" +"Prosty, Zaawansowany i Ekspercki.\n" +"Tryb Prosty wyświetla tylko najczęściej używane ustawienia potrzebne w codziennym druku 3D. Pozostałe dwa oferują coraz większe możliwości konfiguracji i są przeznaczone odpowiednio dla użytkowników zaawansowanych i ekspertów." #: src/libslic3r/PrintConfig.cpp:2254 msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves." msgstr "Czyszczenie po zmianie filamentu następować wewnątrz wypełnienia tego modelu. Obniża to ilość zużywanego materiału, jednak może skutkować wydłużeniem czasu druku przez dodatkowe ruchy jałowe." -#: src/slic3r/GUI/Plater.cpp:541 +#: src/slic3r/GUI/Plater.cpp:544 msgid "Purging volumes" msgstr "Objętości czyszczenia" @@ -5620,19 +5631,19 @@ msgstr "Objętości czyszczenia - formuła" msgid "Quality" msgstr "Jakość" -#: src/slic3r/GUI/Tab.cpp:1082 +#: src/slic3r/GUI/Tab.cpp:1080 msgid "Quality (slower slicing)" msgstr "Jakość (wolniejsze cięcie)" -#: src/slic3r/GUI/GLCanvas3D.cpp:278 +#: src/slic3r/GUI/GLCanvas3D.cpp:273 msgid "Quality / Speed" msgstr "Jakość / Prędkość" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1180 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1528 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1534 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1823 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:1182 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1530 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1536 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1849 +#, c-format msgid "Quick Add Settings (%s)" msgstr "Szybkie Dodanie Ustawień (%s)" @@ -5645,15 +5656,15 @@ msgid "Quick Slice and Save As" msgstr "Szybkie cięcie i Zapis jako" #: src/slic3r/GUI/MainFrame.cpp:540 -#, possible-c-format +#, c-format msgid "Quit %s" msgstr "Wyjście z %s" -#: src/slic3r/GUI/GLCanvas3D.cpp:299 src/libslic3r/PrintConfig.cpp:511 +#: src/slic3r/GUI/GLCanvas3D.cpp:294 src/libslic3r/PrintConfig.cpp:511 msgid "Radius" msgstr "Promień" -#: src/slic3r/GUI/Tab.cpp:1129 +#: src/slic3r/GUI/Tab.cpp:1127 msgid "Raft" msgstr "Tratwa (raft)" @@ -5666,8 +5677,14 @@ msgid "Ramming customization" msgstr "Dostosowywanie wyciskania" #: src/slic3r/GUI/WipeTowerDialog.cpp:41 -msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." -msgstr "Wyciskanie oznacza szybką ekstruzję bezpośrednio przed zmianą narzędzia w drukarce typu MultiMaterial z jednym ekstruderem (narzędzie w tym przypadku oznacza filament). Jego zadaniem jest odpowiednie ukształtowanie końcówki rozładowywanego filamentu, aby jego ponowne załadowanie mogło odbyć się bez przeszkód. Ta faza procesu zmiany filamentu jest bardzo ważna a różne filamenty mogą potrzebować różnej prędkości wyciskania aby uzyskać odpowiedni kształt końcówki. Z tego powodu można edytować jego parametry.\n\nTo jest ustawienie dla zaawansowanych użytkowników. Nieprawidłowe wartości mogą powodować blokady, ścieranie filamentu przez radełko itp." +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +msgstr "" +"Wyciskanie oznacza szybką ekstruzję bezpośrednio przed zmianą narzędzia w drukarce typu MultiMaterial z jednym ekstruderem (narzędzie w tym przypadku oznacza filament). Jego zadaniem jest odpowiednie ukształtowanie końcówki rozładowywanego filamentu, aby jego ponowne załadowanie mogło odbyć się bez przeszkód. Ta faza procesu zmiany filamentu jest bardzo ważna a różne filamenty mogą potrzebować różnej prędkości wyciskania aby uzyskać odpowiedni kształt końcówki. Z tego powodu można edytować jego parametry.\n" +"\n" +"To jest ustawienie dla zaawansowanych użytkowników. Nieprawidłowe wartości mogą powodować blokady, ścieranie filamentu przez radełko itp." #: src/slic3r/GUI/WipeTowerDialog.cpp:91 msgid "Ramming line spacing" @@ -5681,7 +5698,7 @@ msgstr "Szerokość linii wyciskania" msgid "Ramming parameters" msgstr "Parametry wyciskania" -#: src/slic3r/GUI/Tab.cpp:1507 +#: src/slic3r/GUI/Tab.cpp:1505 msgid "Ramming settings" msgstr "Ustawienia wyciskania" @@ -5693,13 +5710,13 @@ msgstr "Dowolny" msgid "Range" msgstr "Zakres" -#: src/libslic3r/SLAPrintSteps.cpp:63 +#: src/libslic3r/SLAPrintSteps.cpp:65 msgid "Rasterizing layers" msgstr "Rasteryzowanie warstw" #: src/slic3r/GUI/MainFrame.cpp:596 msgid "Re&load from disk" -msgstr "Wczyta&j ponownie z dysku" +msgstr "Wczytaj ponownie z d&ysku" #: src/slic3r/GUI/UpdateDialogs.cpp:249 msgid "Re-configure" @@ -5709,7 +5726,7 @@ msgstr "Ponowna konfiguracja" msgid "Ready" msgstr "Gotowe" -#: src/slic3r/GUI/Plater.cpp:3099 +#: src/slic3r/GUI/Plater.cpp:3115 msgid "Ready to slice" msgstr "Gotowość do cięcia" @@ -5723,10 +5740,10 @@ msgstr "Widok z tyłu" #: src/slic3r/GUI/MainFrame.cpp:413 msgid "Recent projects" -msgstr "Ostatnie projekty" +msgstr "Ostatni&e projekty" #: src/slic3r/GUI/PresetHints.cpp:263 -#, possible-c-format +#, c-format msgid "Recommended object thin wall thickness for layer height %.2f and" msgstr "Zalecana grubość ściany modelu dla wysokości warstwy %.2f i" @@ -5755,12 +5772,13 @@ msgstr "Linie równoległe" msgid "Rectilinear grid" msgstr "Linie równoległe - kratka" -#: src/slic3r/GUI/GLCanvas3D.cpp:4706 src/slic3r/GUI/MainFrame.cpp:584 +#: src/slic3r/GUI/GLCanvas3D.cpp:4657 src/slic3r/GUI/KBShortcutsDialog.cpp:131 +#: src/slic3r/GUI/MainFrame.cpp:584 msgid "Redo" msgstr "Powtórz" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Redo %1$d Action" msgid_plural "Redo %1$d Actions" msgstr[0] "Powtórz %1$d akcję" @@ -5768,26 +5786,26 @@ msgstr[1] "Powtórz %1$d akcje" msgstr[2] "Powtórz %1$d akcji" msgstr[3] "Powtórz %1$d akcji" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Redo History" msgstr "Historia Powtórzeń" -#: src/slic3r/GUI/Tab.cpp:1100 +#: src/slic3r/GUI/Tab.cpp:1098 msgid "Reducing printing time" msgstr "Obniżanie czasu wydruku" -#: src/slic3r/GUI/Plater.cpp:3461 +#: src/slic3r/GUI/Plater.cpp:3452 msgid "Reload all from disk" msgstr "Wczytaj ponownie wszystko z dysku" -#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3209 -#: src/slic3r/GUI/Plater.cpp:3943 src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/ConfigWizard.cpp:798 src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3225 +#: src/slic3r/GUI/Plater.cpp:3934 src/slic3r/GUI/Plater.cpp:3963 msgid "Reload from disk" msgstr "Wczytaj ponownie z dysku" -#: src/slic3r/GUI/Plater.cpp:3328 -msgid "Reload from: " +#: src/slic3r/GUI/Plater.cpp:3339 +msgid "Reload from:" msgstr "Wczytaj z:" #: src/slic3r/GUI/KBShortcutsDialog.cpp:134 @@ -5798,12 +5816,12 @@ msgstr "Przeładuj wirtualny stół z dysku" msgid "Reload the plater from disk" msgstr "Przeładuj wirtualny stół z dysku" -#: src/slic3r/GUI/Plater.cpp:3972 +#: src/slic3r/GUI/Plater.cpp:3963 msgid "Reload the selected object from disk" msgstr "Wczytaj wybrany model ponownie z dysku" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1654 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3930 src/slic3r/GUI/Plater.cpp:3943 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1664 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3956 src/slic3r/GUI/Plater.cpp:3934 msgid "Reload the selected volumes from disk" msgstr "Wczytaj wybrane kształty ponownie z dysku" @@ -5811,12 +5829,12 @@ msgstr "Wczytaj wybrane kształty ponownie z dysku" msgid "Remember output directory" msgstr "Zapamiętaj katalog wyjściowy" -#: src/slic3r/GUI/Tab.cpp:3105 +#: src/slic3r/GUI/Tab.cpp:3121 msgid "remove" msgstr "usuń" #: src/slic3r/GUI/BedShapeDialog.cpp:190 src/slic3r/GUI/BedShapeDialog.cpp:269 -#: src/slic3r/GUI/Tab.cpp:3108 +#: src/slic3r/GUI/Tab.cpp:3124 msgid "Remove" msgstr "Usuń" @@ -5828,11 +5846,11 @@ msgstr "Usuń wszystkie otwory" msgid "Remove all points" msgstr "Usuń wszystkie punkty" -#: src/slic3r/GUI/GLCanvas3D.cpp:251 +#: src/slic3r/GUI/GLCanvas3D.cpp:246 msgid "Remove detail" msgstr "Niższa szczegółowość" -#: src/slic3r/GUI/Plater.cpp:876 +#: src/slic3r/GUI/Plater.cpp:879 msgid "Remove device" msgstr "Usuń urządzenie" @@ -5840,31 +5858,31 @@ msgstr "Usuń urządzenie" msgid "Remove extruder from sequence" msgstr "Usuń ekstruder z sekwencji" -#: src/slic3r/GUI/GLCanvas3D.cpp:4586 src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/GLCanvas3D.cpp:4537 src/slic3r/GUI/Plater.cpp:3942 msgid "Remove instance" -msgstr "Usuń kopię" +msgstr "Usuń instancję" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:127 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:160 msgid "Remove Instance of the selected object" -msgstr "Usuń kopię zaznaczonego modelu" +msgstr "Usuń instancję zaznaczonego modelu" #: src/slic3r/GUI/GUI_ObjectLayers.cpp:153 msgid "Remove layer range" msgstr "Usuń zakres warstw" -#: src/slic3r/GUI/Plater.cpp:3951 +#: src/slic3r/GUI/Plater.cpp:3942 msgid "Remove one instance of the selected object" -msgstr "Usuń jedną kopię zaznaczonego modelu" +msgstr "Usuń jedną instancję zaznaczonego modelu" #: src/slic3r/GUI/GUI_ObjectSettings.cpp:95 msgid "Remove parameter" msgstr "Usuń parametr" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Remove point" msgstr "Usuń punkt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1346 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1367 msgid "Remove point from selection" msgstr "Usuń punkt z zaznaczenia" @@ -5873,11 +5891,11 @@ msgid "Remove selected holes" msgstr "Usuń zaznaczone otwory" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:50 -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1350 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1371 msgid "Remove selected points" msgstr "Usuń zaznaczone punkty" -#: src/slic3r/GUI/Plater.cpp:3940 src/slic3r/GUI/Plater.cpp:3962 +#: src/slic3r/GUI/Plater.cpp:3931 src/slic3r/GUI/Plater.cpp:3953 msgid "Remove the selected object" msgstr "Usuń wybrany model" @@ -5885,47 +5903,51 @@ msgstr "Usuń wybrany model" msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)" msgstr "Usuń profile użytkownika - czysta instalacja (najpierw zostanie wykonany zrzut)" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1626 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1636 msgid "Rename" msgstr "Zmień nazwę" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Object" msgstr "Zmień Nazwę Modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:549 +#: src/slic3r/GUI/GUI_ObjectList.cpp:551 msgid "Rename Sub-object" msgstr "Zmień Nazwę Modelu Podrzędnego" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3777 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3803 msgid "Renaming" msgstr "Zmiana nazwy" -#: src/libslic3r/PrintConfig.cpp:3500 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:115 +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "Niepowodzenie zmiany nazwy pliku G-code po skopiowaniu do folderu docelowego. Obecna ścieżka to %1%.tmp. Spróbuj wyeksportować G-code ponownie." + +#: src/libslic3r/PrintConfig.cpp:3515 msgid "Render with a software renderer" msgstr "Renderuj programowo" -#: src/libslic3r/PrintConfig.cpp:3501 +#: src/libslic3r/PrintConfig.cpp:3516 msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver." msgstr "Renderowanie software'owe. Dołączony silnik MESA zostanie użyty zamiast domyślnego OpenGL." -#: src/slic3r/GUI/MainFrame.cpp:913 src/libslic3r/PrintConfig.cpp:3432 +#: src/slic3r/GUI/MainFrame.cpp:911 src/libslic3r/PrintConfig.cpp:3447 msgid "Repair" msgstr "Naprawa" -#: src/slic3r/Utils/FixModelByWin10.cpp:394 +#: src/slic3r/Utils/FixModelByWin10.cpp:387 msgid "Repaired 3MF file contains more than one object" msgstr "Naprawiony plik 3MF zawiera więcej niż jeden model" -#: src/slic3r/Utils/FixModelByWin10.cpp:398 +#: src/slic3r/Utils/FixModelByWin10.cpp:391 msgid "Repaired 3MF file contains more than one volume" msgstr "Naprawiony plik 3MF zawiera więcej niż jeden obiekt" -#: src/slic3r/Utils/FixModelByWin10.cpp:392 +#: src/slic3r/Utils/FixModelByWin10.cpp:385 msgid "Repaired 3MF file does not contain any object" msgstr "Naprawiony plik 3MF nie zawiera żadnego modelu" -#: src/slic3r/Utils/FixModelByWin10.cpp:396 +#: src/slic3r/Utils/FixModelByWin10.cpp:389 msgid "Repaired 3MF file does not contain any volume" msgstr "Naprawiony plik 3MF nie zawiera żadnej objętości" @@ -5941,31 +5963,31 @@ msgstr "Powtórz ostatnie szybkie cięcie" msgid "Repeat Last Quick Slice" msgstr "Powtórz Ostatnie Szybkie Cięcie" -#: src/slic3r/GUI/Tab.cpp:3067 +#: src/slic3r/GUI/Tab.cpp:3083 msgid "Replace?" msgstr "Zamienić?" -#: src/slic3r/GUI/MainFrame.cpp:705 +#: src/slic3r/GUI/MainFrame.cpp:703 msgid "Report an I&ssue" msgstr "Zgło&szenie problemu" -#: src/slic3r/GUI/MainFrame.cpp:705 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:703 +#, c-format msgid "Report an issue on %s" msgstr "Zgłoś problem z %s" #: src/slic3r/Utils/PresetUpdater.cpp:713 -#, possible-c-format +#, c-format msgid "requires max. %s" msgstr "wymaga max %s" #: src/slic3r/Utils/PresetUpdater.cpp:710 -#, possible-c-format +#, c-format msgid "requires min. %s" msgstr "wymaga min. %s" #: src/slic3r/Utils/PresetUpdater.cpp:705 -#, possible-c-format +#, c-format msgid "requires min. %s and max. %s" msgstr "wymaga min. %s i max. %s" @@ -5973,15 +5995,15 @@ msgstr "wymaga min. %s i max. %s" msgid "Rescan" msgstr "Skanuj ponownie" -#: src/slic3r/GUI/Tab.cpp:1904 +#: src/slic3r/GUI/Tab.cpp:1906 msgid "Rescan serial ports" msgstr "Przeskanuj porty szeregowe" -#: src/slic3r/GUI/GLCanvas3D.cpp:318 +#: src/slic3r/GUI/GLCanvas3D.cpp:313 msgid "Reset" msgstr "Reset" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1352 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1373 msgid "Reset clipping plane" msgstr "Reset płaszczyzny przecinania" @@ -5990,7 +6012,7 @@ msgstr "Reset płaszczyzny przecinania" msgid "Reset direction" msgstr "Reset kierunku" -#: src/slic3r/GUI/Plater.cpp:2707 +#: src/slic3r/GUI/Plater.cpp:2723 msgid "Reset Project" msgstr "Resetuj Projekt" @@ -6007,11 +6029,11 @@ msgstr "Resetuj Obrót" msgid "Reset scale" msgstr "Resetuj skalę" -#: src/slic3r/GUI/GLCanvas3D.cpp:257 +#: src/slic3r/GUI/GLCanvas3D.cpp:252 msgid "Reset to base" -msgstr "Resetuj do bazowego ust." +msgstr "Resetuj do bazowego ust" -#: src/slic3r/GUI/Tab.cpp:2390 +#: src/slic3r/GUI/Tab.cpp:2394 msgid "Reset to Filament Color" msgstr "Zresetuj do koloru filamentu" @@ -6027,8 +6049,8 @@ msgstr "Długość retrakcji przed ruchem czyszczącym" msgid "Retract on layer change" msgstr "Retrakcja przy zmianie warstwy" -#: src/slic3r/GUI/Tab.cpp:1326 src/slic3r/GUI/Tab.cpp:1385 -#: src/slic3r/GUI/Tab.cpp:2366 +#: src/slic3r/GUI/Tab.cpp:1324 src/slic3r/GUI/Tab.cpp:1383 +#: src/slic3r/GUI/Tab.cpp:2370 msgid "Retraction" msgstr "Retrakcja" @@ -6048,11 +6070,11 @@ msgstr "Długość Retrakcji (zmiana narzędzia)" msgid "Retraction Speed" msgstr "Prędkość retrakcji" -#: src/slic3r/GUI/Tab.cpp:2382 +#: src/slic3r/GUI/Tab.cpp:2386 msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)" msgstr "Retrakcja gdy dany ekstruder nie jest w użyciu (funkcja zaawansowana dla drukarek z kilkoma ekstruderami)" -#: src/slic3r/GUI/GUI_Preview.cpp:256 +#: src/slic3r/GUI/GUI_Preview.cpp:254 msgid "Retractions" msgstr "Retrakcje" @@ -6060,23 +6082,23 @@ msgstr "Retrakcje" msgid "Right" msgstr "Prawo" -#: src/slic3r/GUI/GUI_ObjectList.cpp:400 +#: src/slic3r/GUI/GUI_ObjectList.cpp:402 msgid "Right button click the icon to change the object printable property" msgstr "Kliknij na ikonę prawym przyciskiem, aby włączyć/wyłączyć drukowanie modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:396 msgid "Right button click the icon to change the object settings" msgstr "Kliknij na ikonę prawym przyciskiem, aby zmienić ustawienia modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:357 +#: src/slic3r/GUI/GUI_ObjectList.cpp:359 msgid "Right button click the icon to fix STL through Netfabb" msgstr "Kliknij prawym przyciskiem myszy na ikonę, aby naprawić plik STL przez serwis Netfabb" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1343 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1364 msgid "Right click" msgstr "Prawy przycisk" -#: src/slic3r/GUI/GLCanvas3D.cpp:248 +#: src/slic3r/GUI/GLCanvas3D.cpp:243 msgid "Right mouse button:" msgstr "Prawy przycisk myszki:" @@ -6088,15 +6110,15 @@ msgstr "Widok prawy" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:480 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:499 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:517 -#: src/libslic3r/PrintConfig.cpp:3436 +#: src/libslic3r/PrintConfig.cpp:3451 msgid "Rotate" msgstr "Obróć" -#: src/libslic3r/PrintConfig.cpp:3441 +#: src/libslic3r/PrintConfig.cpp:3456 msgid "Rotate around X" msgstr "Obróć wokół osi X" -#: src/libslic3r/PrintConfig.cpp:3446 +#: src/libslic3r/PrintConfig.cpp:3461 msgid "Rotate around Y" msgstr "Obróć wokół osi Y" @@ -6114,85 +6136,81 @@ msgstr "Obróć zaznaczone o 45 stopni w prawo" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:216 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:458 +#: src/slic3r/GUI/Mouse3DController.cpp:304 #: src/slic3r/GUI/Mouse3DController.cpp:321 -#: src/slic3r/GUI/Mouse3DController.cpp:344 msgid "Rotation" msgstr "Obrót" -#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491 -msgid "Rotation (deg)" -msgstr "Obrót (stopnie)" - -#: src/libslic3r/PrintConfig.cpp:3442 +#: src/libslic3r/PrintConfig.cpp:3457 msgid "Rotation angle around the X axis in degrees." msgstr "Kąt obrotu w stopniach wokół osi X." -#: src/libslic3r/PrintConfig.cpp:3447 +#: src/libslic3r/PrintConfig.cpp:3462 msgid "Rotation angle around the Y axis in degrees." msgstr "Kąt obrotu w stopniach wokół osi Y." -#: src/libslic3r/PrintConfig.cpp:3437 +#: src/libslic3r/PrintConfig.cpp:3452 msgid "Rotation angle around the Z axis in degrees." msgstr "Kąt obrotu w stopniach wokół osi Z." #: src/slic3r/GUI/GUI_App.cpp:797 -#, possible-c-format +#, c-format msgid "Run %s" msgstr "Uruchom %s" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:120 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:470 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:128 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:478 msgid "Running post-processing scripts" msgstr "Wykonywanie skryptów przetwarzania końcowego (post-processing)" #: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:83 #: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:688 #: src/libslic3r/PrintConfig.cpp:703 src/libslic3r/PrintConfig.cpp:2408 -#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2518 -#: src/libslic3r/PrintConfig.cpp:2526 src/libslic3r/PrintConfig.cpp:2534 -#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2549 -#: src/libslic3r/PrintConfig.cpp:2557 +#: src/libslic3r/PrintConfig.cpp:2417 src/libslic3r/PrintConfig.cpp:2527 +#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2543 +#: src/libslic3r/PrintConfig.cpp:2550 src/libslic3r/PrintConfig.cpp:2558 +#: src/libslic3r/PrintConfig.cpp:2566 msgid "s" msgstr "" -#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:481 src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end G-code" -msgstr "W&yślij G-code" +msgstr "Wyślij G-cod&e" -#: src/slic3r/GUI/MainFrame.cpp:752 +#: src/slic3r/GUI/MainFrame.cpp:750 msgid "S&end to print" msgstr "W&yślij do druku" #. TRN Preset -#: src/slic3r/GUI/Tab.cpp:3401 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:3417 +#, c-format msgid "Save %s as:" msgstr "Zapisz %s jako:" -#: src/slic3r/GUI/MainFrame.cpp:828 -#, possible-c-format +#: src/slic3r/GUI/MainFrame.cpp:826 +#, c-format msgid "Save %s file as:" msgstr "Zapisz plik %s jako:" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1046 msgid "Save changes?" msgstr "Zapisać zmiany?" -#: src/libslic3r/PrintConfig.cpp:3371 +#: src/libslic3r/PrintConfig.cpp:3386 msgid "Save config file" msgstr "Zapisz plik konfiguracyjny" -#: src/slic3r/GUI/MainFrame.cpp:927 +#: src/slic3r/GUI/MainFrame.cpp:925 msgid "Save configuration as:" msgstr "Zapisz konfigurację jako:" -#: src/libslic3r/PrintConfig.cpp:3372 +#: src/libslic3r/PrintConfig.cpp:3387 msgid "Save configuration to the specified file." msgstr "Zapisz konfigurację jako wskazany plik." #. TRN "Save current Settings" -#: src/slic3r/GUI/Tab.cpp:135 -#, possible-c-format +#: src/slic3r/GUI/Tab.cpp:133 +#, c-format msgid "Save current %s" msgstr "Zapisz bieżące %s" @@ -6204,23 +6222,23 @@ msgstr "Zapisz obecny projekt" msgid "Save current project file as" msgstr "Zapisz obecny projekt jako" -#: src/slic3r/GUI/Plater.cpp:2588 +#: src/slic3r/GUI/Plater.cpp:2604 msgid "Save file as:" msgstr "Zapisz plik jako:" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save G-code file as:" msgstr "Zapisz plik G-code jako:" -#: src/slic3r/GUI/MainFrame.cpp:901 +#: src/slic3r/GUI/MainFrame.cpp:899 msgid "Save OBJ file (less prone to coordinate errors than STL) as:" msgstr "Zapisz plik OBJ (mniej podatny na błędy współrzędnych niż STL) jako:" -#: src/slic3r/GUI/Tab.hpp:442 +#: src/slic3r/GUI/Tab.hpp:443 msgid "Save preset" msgstr "Zapisz zestaw ustawień" -#: src/slic3r/GUI/MainFrame.cpp:982 +#: src/slic3r/GUI/MainFrame.cpp:980 msgid "Save presets bundle as:" msgstr "Zapisz paczkę ustawień jako:" @@ -6230,17 +6248,17 @@ msgstr "Zapisz Projekt j&ako" #: src/slic3r/GUI/KBShortcutsDialog.cpp:114 msgid "Save project (3mf)" -msgstr "Zapisz projekt (3mf)" +msgstr "Zapisz Projekt (3mf)" #: src/slic3r/GUI/KBShortcutsDialog.cpp:115 msgid "Save project as (3mf)" -msgstr "Zapisz projekt jako (3mf)" +msgstr "Zapisz Projekt jako (3mf)" -#: src/slic3r/GUI/Plater.cpp:4854 +#: src/slic3r/GUI/Plater.cpp:4839 msgid "Save SL1 file as:" msgstr "Zapisz plik SL1 jako:" -#: src/slic3r/GUI/MainFrame.cpp:840 +#: src/slic3r/GUI/MainFrame.cpp:838 msgid "Save zip file as:" msgstr "Zapisz plik .zip jako:" @@ -6254,27 +6272,27 @@ msgstr "Niepowodzenie zapisywania siatki jako 3MF." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:500 #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:518 -#: src/libslic3r/PrintConfig.cpp:3451 +#: src/libslic3r/PrintConfig.cpp:3466 msgid "Scale" msgstr "Skaluj" -#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276 -msgid "Scale (%)" -msgstr "Skala (%)" - #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:459 msgid "Scale factors" msgstr "Współczynnik skalowania" #: src/slic3r/GUI/KBShortcutsDialog.cpp:196 -msgid "Scale selection to fit print volume\nin Gizmo scale" -msgstr "Skaluj zaznaczenie do wielkości przestrzeni roboczej\nw skalowaniu z uchwytem" +msgid "" +"Scale selection to fit print volume\n" +"in Gizmo scale" +msgstr "" +"Skaluj zaznaczenie do wielkości przestrzeni roboczej\n" +"w skalowaniu z uchwytem" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale the selected object to fit the print volume" msgstr "Skaluj wybrany model, aby zmieścił się w przestrzeni roboczej" -#: src/libslic3r/PrintConfig.cpp:3460 +#: src/libslic3r/PrintConfig.cpp:3475 msgid "Scale to Fit" msgstr "Skaluj, aby dopasować" @@ -6282,19 +6300,19 @@ msgstr "Skaluj, aby dopasować" msgid "Scale To Fit" msgstr "Skaluj aby zmieścić" -#: src/libslic3r/PrintConfig.cpp:3461 +#: src/libslic3r/PrintConfig.cpp:3476 msgid "Scale to fit the given volume." msgstr "Skaluj, aby wypełnić zadaną objętość." -#: src/slic3r/GUI/GUI_ObjectList.cpp:1698 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1724 msgid "Scale to print volume" msgstr "Skaluj do obszaru roboczego" -#: src/libslic3r/PrintConfig.cpp:3452 +#: src/libslic3r/PrintConfig.cpp:3467 msgid "Scaling factor or percentage." msgstr "Współczynnik lub procent skalowania." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:497 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:505 msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Ustawianie harmonogramu przesyłania do `%1%`. Zobacz okno -> Kolejka serwera druku" @@ -6314,7 +6332,7 @@ msgstr "Kierunek jitter wyznaczany przez szew" msgid "Searching for devices" msgstr "Wyszukiwanie urządzeń" -#: src/slic3r/GUI/Plater.cpp:2842 +#: src/slic3r/GUI/Plater.cpp:2858 msgid "Searching for optimal orientation" msgstr "Wyszukiwanie optymalnej orientacji" @@ -6326,19 +6344,19 @@ msgstr "Wybierz plik gcode:" msgid "Select all objects" msgstr "Zaznacz wszystkie modele" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1349 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1370 msgid "Select all points" msgstr "Zaznacz wszystkie punkty" -#: src/slic3r/GUI/ConfigWizard.cpp:1979 +#: src/slic3r/GUI/ConfigWizard.cpp:1976 msgid "Select all standard printers" msgstr "Zaznacz wszystkie podstawowe drukarki" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1347 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1368 msgid "Select by rectangle" msgstr "Zaznaczenie prostokątem" -#: src/slic3r/GUI/MainFrame.cpp:946 src/slic3r/GUI/MainFrame.cpp:1008 +#: src/slic3r/GUI/MainFrame.cpp:944 src/slic3r/GUI/MainFrame.cpp:1006 msgid "Select configuration to load:" msgstr "Wybierz konfigurację do wczytania:" @@ -6346,35 +6364,27 @@ msgstr "Wybierz konfigurację do wczytania:" msgid "Select coordinate space, in which the transformation will be performed." msgstr "Wybierz płaszczyznę, w której ma nastąpić przekształcenie." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 -msgid "Select extruder number for selected objects and/or parts" -msgstr "Wybierz numer ekstrudera dla wybranych modeli i/lub części" - -#: src/slic3r/GUI/GUI_ObjectList.cpp:3945 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3971 msgid "Select extruder number:" msgstr "Wybierz numer ekstrudera:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:119 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:138 msgid "Select Filament Settings Tab" msgstr "Wybierz Zakładkę Ustawień Filamentu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1686 -msgid "Select new extruder for the object/part" -msgstr "Wybierz nowy ekstruder dla modelu/części" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:136 msgid "Select Plater Tab" msgstr "Wybierz Zakładkę Podglądu Stołu" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:118 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:137 msgid "Select Print Settings Tab" msgstr "Wybierz Zakładkę Ustawień Druku" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:120 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:139 msgid "Select Printer Settings Tab" msgstr "Wybierz Zakładkę Ustawień Drukarki" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1263 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1265 msgid "Select showing settings" msgstr "Wybierz widok ustawień" @@ -6382,37 +6392,43 @@ msgstr "Wybierz widok ustawień" msgid "Select the language" msgstr "Wybierz język" -#: src/slic3r/GUI/Tab.cpp:59 +#: src/slic3r/GUI/Tab.cpp:57 msgid "Select the print profiles this profile is compatible with." msgstr "Wybierz profile druku, z którymi kompatybilny jest ten profil." -#: src/slic3r/GUI/Tab.cpp:53 +#: src/slic3r/GUI/Tab.cpp:51 msgid "Select the printers this profile is compatible with." msgstr "Wybierz drukarki kompatybilne z tym profilem." -#: src/slic3r/GUI/MainFrame.cpp:891 +#: src/slic3r/GUI/MainFrame.cpp:889 msgid "Select the STL file to repair:" msgstr "Wybierz plik STL do naprawy:" -#: src/slic3r/GUI/Preferences.cpp:241 +#: src/slic3r/GUI/Preferences.cpp:237 msgid "Select toolbar icon size in respect to the default one." msgstr "Wybierz rozmiar ikon w odniesieniu do domyślnego." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Select type of part" msgstr "Wybierz rodzaj części" -#: src/slic3r/GUI/Plater.cpp:635 +#: src/slic3r/GUI/Plater.cpp:638 msgid "Select what kind of pad do you need" msgstr "Wybierz rodzaj wymaganej podkładki" -#: src/slic3r/GUI/Plater.cpp:495 +#: src/slic3r/GUI/Plater.cpp:498 msgid "Select what kind of support do you need" msgstr "Wybierz rodzaj potrzebnych podpór" -#: src/slic3r/GUI/DoubleSlider.cpp:1890 -msgid "Select YES if you want to delete all saved tool changes, \n\tNO if you want all tool changes switch to color changes, \n\tor CANCEL to leave it unchanged" -msgstr "Wybierz TAK, jeśli chcesz usunąć wszystkie zapisane zmiany narzędzi,\nNIE, jeśli chcesz przełączyć zmiany narzędzi na zmiany koloru lub\nANULUJ, aby pozostawić bez zmian." +#: src/slic3r/GUI/DoubleSlider.cpp:1917 +msgid "" +"Select YES if you want to delete all saved tool changes, \n" +"\tNO if you want all tool changes switch to color changes, \n" +"\tor CANCEL to leave it unchanged." +msgstr "" +"Wybierz TAK, jeśli chcesz usunąć wszystkie zapisane zmiany narzędzi,\n" +"NIE, jeśli chcesz przełączyć zmiany narzędzi na zmiany koloru lub\n" +"ANULUJ, aby pozostawić bez zmian." #: src/slic3r/GUI/Selection.cpp:146 msgid "Selection-Add" @@ -6422,17 +6438,17 @@ msgstr "Zaznaczenie-Dodaj" msgid "Selection-Add All" msgstr "Zaznaczenie-Dodaj wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3273 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3299 msgid "Selection-Add from list" msgstr "Zaznaczenie-Dodaj z listy" -#: src/slic3r/GUI/GLCanvas3D.cpp:6659 +#: src/slic3r/GUI/GLCanvas3D.cpp:6598 msgid "Selection-Add from rectangle" msgstr "Zaznaczenie-Dodaj z prostokąta" #: src/slic3r/GUI/Selection.cpp:256 msgid "Selection-Add Instance" -msgstr "Zaznaczenie-Dodaj kopię" +msgstr "Zaznaczenie-Dodaj instancję" #: src/slic3r/GUI/Selection.cpp:219 msgid "Selection-Add Object" @@ -6446,11 +6462,11 @@ msgstr "Zaznaczenie-Usuń" msgid "Selection-Remove All" msgstr "Zaznaczenie-Usuń Wszystko" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3265 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3291 msgid "Selection-Remove from list" msgstr "Zaznaczenie-Usunięcie z listy" -#: src/slic3r/GUI/GLCanvas3D.cpp:6678 +#: src/slic3r/GUI/GLCanvas3D.cpp:6617 msgid "Selection-Remove from rectangle" msgstr "Zaznaczenie-Usuń z prostokąta" @@ -6466,7 +6482,7 @@ msgstr "Zaznaczenie-Usuń model" msgid "Selects all objects" msgstr "Zaznacza wszystkie modele" -#: src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:123 src/slic3r/GUI/Plater.cpp:5522 msgid "Send G-code" msgstr "Wyślij G-code" @@ -6478,19 +6494,19 @@ msgstr "Wyślij G-code do serwera druku" msgid "Send to print current plate as G-code" msgstr "Wyślij zawartość stołu do druku jako G-code" -#: src/slic3r/GUI/Plater.cpp:875 src/slic3r/GUI/Plater.cpp:5556 +#: src/slic3r/GUI/Plater.cpp:878 src/slic3r/GUI/Plater.cpp:5522 msgid "Send to printer" msgstr "Wyślij do drukarki" -#: src/slic3r/GUI/GLCanvas3D.cpp:1306 +#: src/slic3r/GUI/GLCanvas3D.cpp:1305 msgid "Seq." msgstr "Sekw." -#: src/slic3r/GUI/Tab.cpp:1233 +#: src/slic3r/GUI/Tab.cpp:1231 msgid "Sequential printing" msgstr "Drukowanie sekwencyjne (model po modelu)" -#: src/slic3r/GUI/Tab.cpp:1899 src/libslic3r/PrintConfig.cpp:1661 +#: src/slic3r/GUI/Tab.cpp:1901 src/libslic3r/PrintConfig.cpp:1661 msgid "Serial port" msgstr "Port szeregowy" @@ -6506,17 +6522,17 @@ msgstr "Port szeregowy:" msgid "Service name" msgstr "Nazwa usługi" -#: src/slic3r/GUI/Tab.cpp:1800 src/slic3r/GUI/Tab.cpp:2044 -#: src/slic3r/GUI/Tab.cpp:3160 +#: src/slic3r/GUI/Tab.cpp:1802 src/slic3r/GUI/Tab.cpp:2046 +#: src/slic3r/GUI/Tab.cpp:3176 msgid "Set" msgstr "Ustaw" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1589 -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1599 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Object" msgstr "Ustaw jako osobny model" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1601 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1611 msgid "Set as a Separated Objects" msgstr "Ustaw jako Osobne Modele" @@ -6524,7 +6540,7 @@ msgstr "Ustaw jako Osobne Modele" msgid "Set extruder change for every" msgstr "Ustaw zmianę ekstrudera dla każdej" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1671 msgid "Set extruder for selected items" msgstr "Ustaw ekstruder dla wybranych elementów" @@ -6532,19 +6548,15 @@ msgstr "Ustaw ekstruder dla wybranych elementów" msgid "Set extruder sequence" msgstr "Ustaw sekwencję ekstruderów" -#: src/slic3r/GUI/DoubleSlider.cpp:1504 +#: src/slic3r/GUI/DoubleSlider.cpp:1532 msgid "Set extruder sequence for the entire print" msgstr "Ustaw sekwencję ekstruderów dla całego wydruku" -#: src/slic3r/GUI/wxExtensions.cpp:3080 -msgid "Set extruder sequence for whole print" -msgstr "Ustaw sekwencję ekstruderów dla całego wydruku" - #: src/slic3r/GUI/ExtruderSequenceDialog.cpp:136 msgid "Set extruder(tool) sequence" -msgstr "Ustaw sekwencję ekstruderów (narzędzi) " +msgstr "Ustaw sekwencję ekstruderów (narzędzi)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:200 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:217 msgid "Set lower thumb to current slider thumb" msgstr "Ustaw punkt zmiany koloru na poziomie dolnego suwaka" @@ -6552,14 +6564,14 @@ msgstr "Ustaw punkt zmiany koloru na poziomie dolnego suwaka" msgid "Set Mirror" msgstr "Ustaw Odbicie" -#: src/slic3r/GUI/Plater.cpp:3953 +#: src/slic3r/GUI/Plater.cpp:3944 msgid "Set number of instances" msgstr "Ustaw liczbę kopii" -#: src/slic3r/GUI/Plater.cpp:4771 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4756 +#, c-format msgid "Set numbers of copies to %d" -msgstr "Ustaw ilość kopii na %d" +msgstr "Ustaw ilość instancji na %d" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:781 msgid "Set Orientation" @@ -6569,7 +6581,7 @@ msgstr "Ustaw Orientację" msgid "Set Position" msgstr "Ustaw Pozycję" -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Printable" msgstr "Zaznacz do drukowania" @@ -6585,7 +6597,7 @@ msgstr "Ustaw Skalę" msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees." msgstr "Ustaw właściwą orientację ekranu LCD wewnątrz drukarki SLA. Tryb portretowy spowoduje zamianę parametrów szerokości i wysokości a obrazek wyjściowy będzie obrócony o 90 stopni." -#: src/slic3r/GUI/ConfigWizard.cpp:933 +#: src/slic3r/GUI/ConfigWizard.cpp:932 msgid "Set the shape of your printer's bed." msgstr "Ustaw kształt stołu roboczego drukarki." @@ -6633,7 +6645,7 @@ msgstr "Ustaw tutaj maksymalną wysokość, jaką może osiągnąć Twój ekstru msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects." msgstr "Określa pionową odległość końcówki dyszy od (zazwyczaj) prętów osi X. Inaczej mówiąc (matematycznie), jest to wysokość cylindra opisanego na zespole ekstrudera i określa maksymalną głębokość, na którą może opuścić się ekstruder aby nie uderzyć w obiekt znajdujący się bezpośrednio pod prętami osi X." -#: src/slic3r/GUI/GUI_ObjectList.cpp:4068 src/slic3r/GUI/Selection.cpp:1474 +#: src/slic3r/GUI/GUI_ObjectList.cpp:4094 src/slic3r/GUI/Selection.cpp:1474 msgid "Set Unprintable" msgstr "Zaznacz do ignorowania przy drukowaniu" @@ -6641,19 +6653,23 @@ msgstr "Zaznacz do ignorowania przy drukowaniu" msgid "Set Unprintable Instance" msgstr "Ignoruj drukowanie kopii" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:199 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:216 msgid "Set upper thumb to current slider thumb" msgstr "Ustaw punkt zmiany koloru na poziomie górnego suwaka" -#: src/libslic3r/PrintConfig.cpp:3494 -msgid "Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\nFor example. loglevel=2 logs fatal, error and warning level messages." -msgstr "Ustawia czułość logowania. 0:krytyczne, 1:błędy, 2:ostrzeżenia, 3:info, 4:debug, 5:trace\nNp: loglevel=2 loguje krytyczne, błędy i ostrzeżenia." +#: src/libslic3r/PrintConfig.cpp:3509 +msgid "" +"Sets logging sensitivity. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +"For example. loglevel=2 logs fatal, error and warning level messages." +msgstr "" +"Ustawia czułość logowania. 0:krytyczne, 1:błędy, 2:ostrzeżenia, 3:info, 4:debug, 5:trace\n" +"Np: loglevel=2 loguje krytyczne, błędy i ostrzeżenia." #: src/slic3r/GUI/BedShapeDialog.cpp:155 msgid "Settings" msgstr "Ustawienia" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2483 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2507 msgid "Settings for height range" msgstr "Ustawienie zakresu wysokości" @@ -6677,35 +6693,35 @@ msgstr "Czy chcesz zmienić wzór wypełnienia na linie równoległe?" msgid "Shall I synchronize support layers in order to enable the Wipe Tower?" msgstr "Czy chcesz zsynchronizować warstwy podporowe, aby włączyć wieżę czyszczącą?" -#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2033 +#: src/slic3r/GUI/BedShapeDialog.cpp:66 src/slic3r/GUI/GUI_ObjectList.cpp:2059 msgid "Shape" msgstr "Kształt" -#: src/slic3r/GUI/GUI_Preview.cpp:258 +#: src/slic3r/GUI/GUI_Preview.cpp:256 msgid "Shells" msgstr "Powłoki" -#: src/slic3r/GUI/GLCanvas3D.cpp:254 +#: src/slic3r/GUI/GLCanvas3D.cpp:249 msgid "Shift + Left mouse button:" msgstr "Shift + lewy przycisk myszki:" -#: src/slic3r/GUI/GLCanvas3D.cpp:260 +#: src/slic3r/GUI/GLCanvas3D.cpp:255 msgid "Shift + Right mouse button:" msgstr "Shift + Prawy przycisk myszki:" -#: src/slic3r/GUI/GUI_Preview.cpp:233 +#: src/slic3r/GUI/GUI_Preview.cpp:231 msgid "Show" msgstr "Pokaż" -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show &Configuration Folder" -msgstr "Pokaż folder &Konfiguracyjny" +msgstr "Pokaż folder Konfigura&cyjny" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show &labels" -msgstr "Pokaż e&tykiety" +msgstr "Pokaż &etykiety" -#: src/slic3r/GUI/MainFrame.cpp:707 +#: src/slic3r/GUI/MainFrame.cpp:705 msgid "Show about dialog" msgstr "Pokaż okienko" @@ -6717,15 +6733,15 @@ msgstr "Pokaż ustawienia zaawansowane" msgid "Show error message" msgstr "Pokaż komunikat błędu" -#: src/slic3r/GUI/Preferences.cpp:97 +#: src/slic3r/GUI/Preferences.cpp:95 msgid "Show incompatible print and filament presets" msgstr "Pokaż niekompatybilne ustawienia druku i filamentów" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:128 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:151 msgid "Show keyboard shortcuts list" msgstr "Pokaż listę skrótów klawiszowych" -#: src/slic3r/GUI/MainFrame.cpp:677 +#: src/slic3r/GUI/MainFrame.cpp:676 msgid "Show object/instance labels in 3D scene" msgstr "Pokaż etykiety modelu/kopii w widoku edycji 3D" @@ -6737,7 +6753,7 @@ msgstr "Pokaż ustawienia uproszczone" msgid "Show supports" msgstr "Pokaż podpory" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "Show system information" msgstr "Pokaż informacje o systemie" @@ -6753,15 +6769,15 @@ msgstr "Pokaż podgląd cięcia 3D" msgid "Show the filament settings" msgstr "Pokaż ustawienia filamentu" -#: src/libslic3r/PrintConfig.cpp:3357 +#: src/libslic3r/PrintConfig.cpp:3372 msgid "Show the full list of print/G-code configuration options." msgstr "Pokaż pełną listę opcji konfiguracji druku/G-code." -#: src/libslic3r/PrintConfig.cpp:3362 +#: src/libslic3r/PrintConfig.cpp:3377 msgid "Show the full list of SLA print configuration options." msgstr "Pokaż pełną listę opcji konfiguracji druku SLA." -#: src/slic3r/GUI/MainFrame.cpp:710 +#: src/slic3r/GUI/MainFrame.cpp:708 msgid "Show the list of the keyboard shortcuts" msgstr "Pokaż listę skrótów klawiszowych" @@ -6777,19 +6793,15 @@ msgstr "Pokaż ustawienia druku" msgid "Show the printer settings" msgstr "Pokaż ustawienia drukarki" -#: src/libslic3r/PrintConfig.cpp:3351 +#: src/libslic3r/PrintConfig.cpp:3366 msgid "Show this help." msgstr "Pokaż tą wskazówkę pomocy." -#: src/slic3r/GUI/MainFrame.cpp:703 +#: src/slic3r/GUI/MainFrame.cpp:701 msgid "Show user configuration folder (datadir)" msgstr "Pokaż folder z konfiguracjami użytkownika (datadir)" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:189 -msgid "Show/Hide (L)egend" -msgstr "Pokaż/Ukryj (L)egendę" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:163 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Pokaż/ukryj ustawienia urządzeń 3Dconnexion" @@ -6797,7 +6809,7 @@ msgstr "Pokaż/ukryj ustawienia urządzeń 3Dconnexion" msgid "Show/Hide Legend" msgstr "Pokaż/ukryj legendę" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:161 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:146 msgid "Show/Hide object/instance labels" msgstr "Ukryj/pokaż etykiety modelu/kopii" @@ -6805,7 +6817,7 @@ msgstr "Ukryj/pokaż etykiety modelu/kopii" msgid "Simple" msgstr "Prosty" -#: src/slic3r/GUI/ConfigWizard.cpp:821 +#: src/slic3r/GUI/ConfigWizard.cpp:820 msgid "Simple mode" msgstr "Tryb Prosty" @@ -6813,7 +6825,7 @@ msgstr "Tryb Prosty" msgid "Simple View Mode" msgstr "Tryb Widoku Prostego" -#: src/slic3r/GUI/Tab.cpp:2294 src/slic3r/GUI/Tab.cpp:2302 +#: src/slic3r/GUI/Tab.cpp:2298 src/slic3r/GUI/Tab.cpp:2306 msgid "Single extruder MM setup" msgstr "Ustawienia MM dla jednego ekstrudera" @@ -6821,21 +6833,27 @@ msgstr "Ustawienia MM dla jednego ekstrudera" msgid "Single Extruder Multi Material" msgstr "Multi Material z jednym ekstruderem" -#: src/slic3r/GUI/Tab.cpp:1865 -msgid "Single Extruder Multi Material is selected, \nand all extruders must have the same diameter.\nDo you want to change the diameter for all extruders to first extruder nozzle diameter value?" -msgstr "Wybrano Multi Material z jednym ekstruderem,\nwięc wszystkie ekstrudery muszą mieć taką samą średnicę dyszy.\nCzy chcesz zmienić średnicę dyszy dla wszystkich ekstruderów na wartość z pierwszego?" +#: src/slic3r/GUI/Tab.cpp:1867 +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" +msgstr "" +"Wybrano Multi Material z jednym ekstruderem,\n" +"więc wszystkie ekstrudery muszą mieć taką samą średnicę dyszy.\n" +"Czy chcesz zmienić średnicę dyszy dla wszystkich ekstruderów na wartość z pierwszego?" -#: src/slic3r/GUI/Tab.cpp:2303 +#: src/slic3r/GUI/Tab.cpp:2307 msgid "Single extruder multimaterial parameters" msgstr "Parametry multimaterial przy jednym ekstruderze" #: src/slic3r/GUI/BedShapeDialog.cpp:77 -#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:162 -#: src/slic3r/GUI/Tab.cpp:2320 +#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:160 +#: src/slic3r/GUI/Tab.cpp:2324 msgid "Size" msgstr "Rozmiar" -#: src/slic3r/GUI/Tab.cpp:1795 src/slic3r/GUI/Tab.cpp:2039 +#: src/slic3r/GUI/Tab.cpp:1797 src/slic3r/GUI/Tab.cpp:2041 msgid "Size and coordinates" msgstr "Rozmiar i koordynaty" @@ -6843,12 +6861,12 @@ msgstr "Rozmiar i koordynaty" msgid "Size in X and Y of the rectangular plate." msgstr "Rozmiar X i Y stołu prostokątnego." -#: src/slic3r/GUI/GUI_Preview.cpp:247 src/slic3r/GUI/Tab.cpp:1113 +#: src/slic3r/GUI/GUI_Preview.cpp:245 src/slic3r/GUI/Tab.cpp:1111 #: src/libslic3r/ExtrusionEntity.cpp:318 msgid "Skirt" msgstr "Skirt" -#: src/slic3r/GUI/Tab.cpp:1112 +#: src/slic3r/GUI/Tab.cpp:1110 msgid "Skirt and brim" msgstr "Skirt i brim" @@ -6860,59 +6878,59 @@ msgstr "Wysokość skirt" msgid "Skirt Loops" msgstr "Liczba obrysów skirt" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1313 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1334 msgid "SLA gizmo keyboard shortcuts" msgstr "Skróty klawiszowe \"uchwytów\" SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1037 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1058 msgid "SLA gizmo turned off" msgstr "Uchwyt SLA wyłączony" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:999 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1017 msgid "SLA gizmo turned on" msgstr "Uchwyt SLA włączony" -#: src/slic3r/GUI/Plater.cpp:815 src/slic3r/GUI/Preset.cpp:1474 +#: src/slic3r/GUI/Plater.cpp:818 src/slic3r/GUI/Preset.cpp:1524 msgid "SLA material" msgstr "Materiał SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Material Profiles Selection" msgstr "Wybór profili materiałów SLA" -#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2462 +#: src/libslic3r/PrintConfig.cpp:2470 src/libslic3r/PrintConfig.cpp:2471 msgid "SLA material type" msgstr "Rodzaj materiału SLA" -#: src/slic3r/GUI/ConfigWizard.cpp:1474 src/slic3r/GUI/ConfigWizard.cpp:2016 +#: src/slic3r/GUI/ConfigWizard.cpp:1471 src/slic3r/GUI/ConfigWizard.cpp:2015 msgid "SLA Materials" msgstr "Materiały SLA" -#: src/slic3r/GUI/Preset.cpp:1473 +#: src/slic3r/GUI/Preset.cpp:1523 msgid "SLA print" msgstr "Druk SLA" -#: src/libslic3r/PrintConfig.cpp:2569 +#: src/libslic3r/PrintConfig.cpp:2578 msgid "SLA print material notes" msgstr "Notatki dla materiału SLA" -#: src/slic3r/GUI/Plater.cpp:814 +#: src/slic3r/GUI/Plater.cpp:817 msgid "SLA print settings" msgstr "Ustawienia Druku SLA" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:978 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:996 msgid "SLA Support Points" msgstr "Punkty podpór SLA" -#: src/slic3r/GUI/GLCanvas3D.cpp:692 +#: src/slic3r/GUI/GLCanvas3D.cpp:687 msgid "SLA supports outside the print area were detected" msgstr "Wykryto podpory SLA poza obszarem roboczym" -#: src/slic3r/GUI/ConfigWizard.cpp:1533 +#: src/slic3r/GUI/ConfigWizard.cpp:1530 msgid "SLA Technology Printers" msgstr "Drukarki SLA" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Slab" msgstr "Tafla" @@ -6932,7 +6950,7 @@ msgstr "Slic3r może przesyłać pliki G-code do serwera druku. Ta sekcja powinn msgid "Slic3r will not scale speed down below this speed." msgstr "Slic3r nie będzie skalował prędkości poniżej tej wartości." -#: src/libslic3r/PrintConfig.cpp:3344 +#: src/libslic3r/PrintConfig.cpp:3359 msgid "Slice" msgstr "Cięcie" @@ -6948,35 +6966,35 @@ msgstr "Cięcie jako G-code, zapisz jako" msgid "Slice gap closing radius" msgstr "Promień zamykania szpar" -#: src/slic3r/GUI/Plater.cpp:889 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5140 +#: src/slic3r/GUI/Plater.cpp:892 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5110 msgid "Slice now" msgstr "Cięcie" -#: src/libslic3r/PrintConfig.cpp:3318 +#: src/libslic3r/PrintConfig.cpp:3333 msgid "Slice the model and export SLA printing layers as PNG." msgstr "Cięcie modelu i eksport warstw SLA jako PNG." -#: src/libslic3r/PrintConfig.cpp:3339 +#: src/libslic3r/PrintConfig.cpp:3354 msgid "Slice the model and export toolpaths as G-code." msgstr "Cięcie modelu i eksport ścieżek narzędzi jako G-code." -#: src/libslic3r/PrintConfig.cpp:3345 +#: src/libslic3r/PrintConfig.cpp:3360 msgid "Slice the model as FFF or SLA based on the printer_technology configuration value." msgstr "Cięcie modelu jako FFF lub SLA oparte o ustawienie konfiguracji printer_technology." -#: src/slic3r/GUI/Plater.cpp:218 +#: src/slic3r/GUI/Plater.cpp:216 msgid "Sliced Info" msgstr "Informacje o cięciu" -#: src/slic3r/GUI/MainFrame.cpp:849 src/slic3r/GUI/Plater.cpp:3105 -#: src/slic3r/GUI/Plater.cpp:5137 src/slic3r/GUI/Tab.cpp:1223 -#: src/slic3r/GUI/Tab.cpp:3647 +#: src/slic3r/GUI/MainFrame.cpp:847 src/slic3r/GUI/Plater.cpp:3121 +#: src/slic3r/GUI/Plater.cpp:5107 src/slic3r/GUI/Tab.cpp:1221 +#: src/slic3r/GUI/Tab.cpp:3662 msgid "Slicing" msgstr "Cięcie" -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:126 -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:176 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:134 +#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:184 msgid "Slicing complete" msgstr "Cięcie zakończone" @@ -6984,19 +7002,19 @@ msgstr "Cięcie zakończone" msgid "Slicing done" msgstr "Cięcie zakończone" -#: src/slic3r/GUI/MainFrame.cpp:876 +#: src/slic3r/GUI/MainFrame.cpp:874 msgid "Slicing Done!" msgstr "Cięcie zakończone!" -#: src/libslic3r/SLAPrintSteps.cpp:209 +#: src/libslic3r/SLAPrintSteps.cpp:245 msgid "Slicing had to be stopped due to an internal error: Inconsistent slice index." msgstr "Cięcie zostało zatrzymane z powodu błędu wewnętrznego: nieciągły indeks cięcia." -#: src/libslic3r/SLAPrintSteps.cpp:43 +#: src/libslic3r/SLAPrintSteps.cpp:45 msgid "Slicing model" msgstr "Cięcie modelu" -#: src/libslic3r/SLAPrintSteps.cpp:47 +#: src/libslic3r/SLAPrintSteps.cpp:49 msgid "Slicing supports" msgstr "Cięcie podpór" @@ -7016,11 +7034,11 @@ msgstr "Wolne przechylanie" msgid "Small perimeters" msgstr "Małe obrysy" -#: src/slic3r/GUI/GLCanvas3D.cpp:293 +#: src/slic3r/GUI/GLCanvas3D.cpp:288 msgid "Smooth" msgstr "Gładki" -#: src/slic3r/GUI/GLCanvas3D.cpp:263 +#: src/slic3r/GUI/GLCanvas3D.cpp:258 msgid "Smoothing" msgstr "Wygładzanie" @@ -7028,15 +7046,15 @@ msgstr "Wygładzanie" msgid "Snapshot name" msgstr "Nazwa zrzutu" -#: src/slic3r/GUI/MainFrame.cpp:688 +#: src/slic3r/GUI/MainFrame.cpp:686 msgid "Software &Releases" -msgstr "Wersje oprogramowania" +msgstr "Wersje oprog&ramowania" #: src/slic3r/GUI/PresetHints.cpp:184 msgid "solid infill" msgstr "zwarte wypełnienie" -#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/ExtrusionEntity.cpp:314 +#: src/slic3r/GUI/GUI_Preview.cpp:241 src/libslic3r/ExtrusionEntity.cpp:314 #: src/libslic3r/PrintConfig.cpp:1756 src/libslic3r/PrintConfig.cpp:1767 msgid "Solid infill" msgstr "Zwarte wypełnienie" @@ -7053,7 +7071,7 @@ msgstr "Ekstruder do zwartego wypełnienia" msgid "Solid infill threshold area" msgstr "Min. powierzchnia zwartego wypełnienia" -#: src/slic3r/GUI/Tab.cpp:1067 src/libslic3r/PrintConfig.cpp:1780 +#: src/slic3r/GUI/Tab.cpp:1065 src/libslic3r/PrintConfig.cpp:1780 msgid "Solid layers" msgstr "Zwarte warstwy" @@ -7069,23 +7087,19 @@ msgstr "Materiał rozpuszczalny jest używany zazwyczaj do rozpuszczalnych podp msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents PrusaSlicer from exporting any extrusion value at all." msgstr "Niektóre komendy kodu G/M, wliczając kontrolę temperatury i inne, nie są uniwersalne. Ustaw tą opcję w firmware Twojej drukarki, aby uzyskać kompatybilny plik wyjściowy. Wariant \"no extrusion\" wyłączy generowanie jakichkolwiek wartości ekstruzji." -#: src/slic3r/GUI/GLCanvas3D.cpp:693 +#: src/slic3r/GUI/GLCanvas3D.cpp:688 msgid "Some objects are not visible" msgstr "Niektóre obiekty są niewidoczne" -#: src/slic3r/GUI/GLCanvas3D.cpp:721 -msgid "Some objects are not visible when editing supports" -msgstr "Niektóre elementy nie będą widoczne podczas edytowania podpór" - -#: src/libslic3r/Print.cpp:1222 +#: src/libslic3r/Print.cpp:1226 msgid "Some objects are too close; your extruder will collide with them." msgstr "Niektóre modele są zbyt blisko; ekstruder zderzy się z którymś z nich." -#: src/libslic3r/Print.cpp:1224 +#: src/libslic3r/Print.cpp:1228 msgid "Some objects are too tall and cannot be printed without extruder collisions." msgstr "Niektóre modele są zbyt wysokie aby można było wydrukować je bez kolizji." -#: src/libslic3r/PrintConfig.cpp:2815 +#: src/libslic3r/PrintConfig.cpp:2824 msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad." msgstr "Niektóre modele można wydrukować z kilkoma mniejszymi podkładkami, zamiast jednej dużej. Ten parametr określa jak daleko od siebie powinny znajdować się dwie mniejsze podkładki. Jeśli znajdą się zbyt blisko, to zostaną złączone w jedną, dużą podkładkę." @@ -7101,9 +7115,9 @@ msgstr "Rozstaw linii warstwy łączącej. Ustaw zero dla zwartej warstwy łącz msgid "Spacing between support material lines." msgstr "Rozstaw linii materiału podporowego." -#: src/slic3r/GUI/GUI_ObjectList.cpp:96 src/slic3r/GUI/GUI_ObjectList.cpp:614 -#: src/slic3r/GUI/GUI_Preview.cpp:226 src/slic3r/GUI/Tab.cpp:1147 -#: src/libslic3r/PrintConfig.cpp:225 src/libslic3r/PrintConfig.cpp:458 +#: src/slic3r/GUI/GUI_ObjectList.cpp:98 src/slic3r/GUI/GUI_ObjectList.cpp:616 +#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/Tab.cpp:1145 +#: src/libslic3r/PrintConfig.cpp:235 src/libslic3r/PrintConfig.cpp:458 #: src/libslic3r/PrintConfig.cpp:919 src/libslic3r/PrintConfig.cpp:1048 #: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1668 #: src/libslic3r/PrintConfig.cpp:1716 src/libslic3r/PrintConfig.cpp:1768 @@ -7123,7 +7137,7 @@ msgstr "Prędkość (mm/s)" msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling." msgstr "Prędkość wypełniania szczelin krótkimi ruchami typu zygzak. Ustaw tą wartość na tyle nisko aby uniknąć wibracji i rezonansu. Ustaw 0 aby wyłączyć wypełnianie szczelin." -#: src/slic3r/GUI/Tab.cpp:1160 +#: src/slic3r/GUI/Tab.cpp:1158 msgid "Speed for non-print moves" msgstr "Prędkość ruchów jałowych" @@ -7131,11 +7145,11 @@ msgstr "Prędkość ruchów jałowych" msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto." msgstr "Prędkość obrysów (inaczej powłoki pionowej). Ustaw 0 dla prędkości automatycznej." -#: src/slic3r/GUI/Tab.cpp:1148 +#: src/slic3r/GUI/Tab.cpp:1146 msgid "Speed for print moves" msgstr "Prędkość ruchów drukujących" -#: src/libslic3r/PrintConfig.cpp:226 +#: src/libslic3r/PrintConfig.cpp:236 msgid "Speed for printing bridges." msgstr "Prędkość drukowania mostów." @@ -7187,11 +7201,11 @@ msgstr "Prędkość rozładowywania filamentu dla wieży czyszczącej (nie wpły msgid "Speed used for unloading the tip of the filament immediately after ramming." msgstr "Prędkość wycofywania (rozładowywania) końcówki filamentu bezpośrednio po wyciskaniu." -#: src/slic3r/GUI/Mouse3DController.cpp:313 +#: src/slic3r/GUI/Mouse3DController.cpp:296 msgid "Speed:" msgstr "Prędkość:" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1430 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1432 msgid "Sphere" msgstr "Kula" @@ -7203,36 +7217,36 @@ msgstr "Tryb wazy" msgid "Spiral Vase" msgstr "Tryb wazy" -#: src/slic3r/GUI/Plater.cpp:4028 src/slic3r/GUI/Plater.cpp:4043 -#: src/slic3r/GUI/Plater.cpp:4057 src/libslic3r/PrintConfig.cpp:3456 +#: src/slic3r/GUI/Plater.cpp:4019 src/slic3r/GUI/Plater.cpp:4034 +#: src/slic3r/GUI/Plater.cpp:4048 src/libslic3r/PrintConfig.cpp:3471 msgid "Split" msgstr "Podziel" -#: src/slic3r/GUI/Plater.cpp:4028 +#: src/slic3r/GUI/Plater.cpp:4019 msgid "Split the selected object" msgstr "Podziel zaznaczony model" -#: src/slic3r/GUI/Plater.cpp:4023 src/slic3r/GUI/Plater.cpp:4043 +#: src/slic3r/GUI/Plater.cpp:4014 src/slic3r/GUI/Plater.cpp:4034 msgid "Split the selected object into individual objects" msgstr "Podziel wybrany model na osobne modele" -#: src/slic3r/GUI/Plater.cpp:4025 src/slic3r/GUI/Plater.cpp:4057 +#: src/slic3r/GUI/Plater.cpp:4016 src/slic3r/GUI/Plater.cpp:4048 msgid "Split the selected object into individual sub-parts" msgstr "Podziel wybrany model na części" -#: src/slic3r/GUI/GLCanvas3D.cpp:4599 +#: src/slic3r/GUI/GLCanvas3D.cpp:4550 msgid "Split to objects" msgstr "Podziel na osobne modele" -#: src/slic3r/GUI/Plater.cpp:2965 +#: src/slic3r/GUI/Plater.cpp:2981 msgid "Split to Objects" msgstr "Podziel na modele" -#: src/slic3r/GUI/GLCanvas3D.cpp:4609 src/slic3r/GUI/GUI_ObjectList.cpp:1485 +#: src/slic3r/GUI/GLCanvas3D.cpp:4560 src/slic3r/GUI/GUI_ObjectList.cpp:1487 msgid "Split to parts" msgstr "Podziel na części" -#: src/slic3r/GUI/GUI_ObjectList.cpp:2248 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2274 msgid "Split to Parts" msgstr "Podziel na części" @@ -7252,7 +7266,7 @@ msgstr "Rozpocznij nowy projekt" msgid "Start at height" msgstr "Zakres od" -#: src/slic3r/GUI/Tab.cpp:1530 src/slic3r/GUI/Tab.cpp:1974 +#: src/slic3r/GUI/Tab.cpp:1528 src/slic3r/GUI/Tab.cpp:1976 #: src/libslic3r/PrintConfig.cpp:1813 src/libslic3r/PrintConfig.cpp:1828 msgid "Start G-code" msgstr "G-code startowy" @@ -7273,16 +7287,16 @@ msgstr "Stan" msgid "Status:" msgstr "Stan:" -#: src/slic3r/GUI/Tab.cpp:2205 +#: src/slic3r/GUI/Tab.cpp:2209 msgid "Stealth" msgstr "Stealth" -#: src/slic3r/GUI/Plater.cpp:1267 +#: src/slic3r/GUI/Plater.cpp:1291 msgid "stealth mode" msgstr "tryb stealth" -#: src/slic3r/GUI/Plater.cpp:5001 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:4985 +#, c-format msgid "STL file exported to %s" msgstr "Plik STL wyeksportowany do %s" @@ -7290,7 +7304,7 @@ msgstr "Plik STL wyeksportowany do %s" msgid "Stop at height" msgstr "Zakres do" -#: src/slic3r/GUI/Tab.cpp:1695 src/slic3r/GUI/Tab.cpp:1926 +#: src/slic3r/GUI/Tab.cpp:1693 src/slic3r/GUI/Tab.cpp:1928 msgid "Success!" msgstr "Powodzenie!" @@ -7298,23 +7312,23 @@ msgstr "Powodzenie!" msgid "support" msgstr "podpora" -#: src/libslic3r/PrintConfig.cpp:2683 +#: src/libslic3r/PrintConfig.cpp:2692 msgid "Support base diameter" msgstr "Średnica stopy podpory" -#: src/libslic3r/PrintConfig.cpp:2693 +#: src/libslic3r/PrintConfig.cpp:2702 msgid "Support base height" msgstr "Wysokość stopy podpory" -#: src/libslic3r/PrintConfig.cpp:2702 +#: src/libslic3r/PrintConfig.cpp:2711 msgid "Support base safety distance" msgstr "Bezpieczna odległość stopy podpory" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Blocker" msgstr "Blokada podpór" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3525 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3551 msgid "Support Enforcer" msgstr "Wymuszenie podpór" @@ -7322,19 +7336,19 @@ msgstr "Wymuszenie podpór" msgid "Support Generator" msgstr "Generator podpór" -#: src/slic3r/GUI/Tab.cpp:3593 +#: src/slic3r/GUI/Tab.cpp:3608 msgid "Support head" msgstr "Łącznik podpory" -#: src/libslic3r/PrintConfig.cpp:2611 +#: src/libslic3r/PrintConfig.cpp:2620 msgid "Support head front diameter" msgstr "Średnica początku łącznika" -#: src/libslic3r/PrintConfig.cpp:2620 +#: src/libslic3r/PrintConfig.cpp:2629 msgid "Support head penetration" msgstr "Przenikanie łączników podpór" -#: src/libslic3r/PrintConfig.cpp:2629 +#: src/libslic3r/PrintConfig.cpp:2638 msgid "Support head width" msgstr "Szerokość łączników podpór" @@ -7342,10 +7356,10 @@ msgstr "Szerokość łączników podpór" msgid "support interface" msgstr "warstwa łącząca podpory z modelem" -#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:95 -#: src/slic3r/GUI/GUI_ObjectList.cpp:613 src/slic3r/GUI/GUI_Preview.cpp:248 -#: src/slic3r/GUI/Tab.cpp:1122 src/slic3r/GUI/Tab.cpp:1123 -#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:360 +#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/slic3r/GUI/GUI_ObjectList.cpp:97 +#: src/slic3r/GUI/GUI_ObjectList.cpp:615 src/slic3r/GUI/GUI_Preview.cpp:246 +#: src/slic3r/GUI/Tab.cpp:1120 src/slic3r/GUI/Tab.cpp:1121 +#: src/libslic3r/ExtrusionEntity.cpp:319 src/libslic3r/PrintConfig.cpp:370 #: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1866 #: src/libslic3r/PrintConfig.cpp:1872 src/libslic3r/PrintConfig.cpp:1880 #: src/libslic3r/PrintConfig.cpp:1892 src/libslic3r/PrintConfig.cpp:1902 @@ -7359,7 +7373,7 @@ msgstr "warstwa łącząca podpory z modelem" msgid "Support material" msgstr "Materiał podporowy" -#: src/slic3r/GUI/GUI_Preview.cpp:249 src/libslic3r/ExtrusionEntity.cpp:320 +#: src/slic3r/GUI/GUI_Preview.cpp:247 src/libslic3r/ExtrusionEntity.cpp:320 #: src/libslic3r/PrintConfig.cpp:1991 msgid "Support material interface" msgstr "Warstwa łącząca podpory z modelem" @@ -7376,51 +7390,51 @@ msgstr "Ekstruder dla podpór/warstw łączących raft z modelem" msgid "Support material/raft/skirt extruder" msgstr "Ekstruder dla podpór/tratwy (raft)/skirtu" -#: src/slic3r/GUI/Plater.cpp:497 src/libslic3r/PrintConfig.cpp:1901 -#: src/libslic3r/PrintConfig.cpp:2665 +#: src/slic3r/GUI/Plater.cpp:500 src/libslic3r/PrintConfig.cpp:1901 +#: src/libslic3r/PrintConfig.cpp:2674 msgid "Support on build plate only" msgstr "Podpory tylko na stole" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:872 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888 msgid "Support parameter change" msgstr "Zmiana parametrów podpór" -#: src/slic3r/GUI/Tab.cpp:3598 +#: src/slic3r/GUI/Tab.cpp:3613 msgid "Support pillar" msgstr "Słupek podpory" -#: src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2658 msgid "Support pillar connection mode" msgstr "Tryb łączenia słupków podpór" -#: src/libslic3r/PrintConfig.cpp:2639 +#: src/libslic3r/PrintConfig.cpp:2648 msgid "Support pillar diameter" msgstr "Średnica słupków podpór" #: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:55 -#: src/libslic3r/PrintConfig.cpp:2755 +#: src/libslic3r/PrintConfig.cpp:2764 msgid "Support points density" msgstr "Gęstość punktów podpór" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1175 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1196 msgid "Support points edit" msgstr "Edycja punktów podpór" -#: src/slic3r/GUI/GUI_ObjectList.cpp:104 src/slic3r/GUI/GUI_ObjectList.cpp:622 -#: src/slic3r/GUI/Plater.cpp:492 src/slic3r/GUI/Tab.cpp:3589 -#: src/slic3r/GUI/Tab.cpp:3590 src/libslic3r/PrintConfig.cpp:2605 -#: src/libslic3r/PrintConfig.cpp:2612 src/libslic3r/PrintConfig.cpp:2621 -#: src/libslic3r/PrintConfig.cpp:2630 src/libslic3r/PrintConfig.cpp:2640 -#: src/libslic3r/PrintConfig.cpp:2666 src/libslic3r/PrintConfig.cpp:2673 -#: src/libslic3r/PrintConfig.cpp:2684 src/libslic3r/PrintConfig.cpp:2694 -#: src/libslic3r/PrintConfig.cpp:2703 src/libslic3r/PrintConfig.cpp:2716 -#: src/libslic3r/PrintConfig.cpp:2726 src/libslic3r/PrintConfig.cpp:2735 -#: src/libslic3r/PrintConfig.cpp:2745 src/libslic3r/PrintConfig.cpp:2756 -#: src/libslic3r/PrintConfig.cpp:2764 +#: src/slic3r/GUI/GUI_ObjectList.cpp:106 src/slic3r/GUI/GUI_ObjectList.cpp:624 +#: src/slic3r/GUI/Plater.cpp:495 src/slic3r/GUI/Tab.cpp:3604 +#: src/slic3r/GUI/Tab.cpp:3605 src/libslic3r/PrintConfig.cpp:2614 +#: src/libslic3r/PrintConfig.cpp:2621 src/libslic3r/PrintConfig.cpp:2630 +#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2649 +#: src/libslic3r/PrintConfig.cpp:2675 src/libslic3r/PrintConfig.cpp:2682 +#: src/libslic3r/PrintConfig.cpp:2693 src/libslic3r/PrintConfig.cpp:2703 +#: src/libslic3r/PrintConfig.cpp:2712 src/libslic3r/PrintConfig.cpp:2725 +#: src/libslic3r/PrintConfig.cpp:2735 src/libslic3r/PrintConfig.cpp:2744 +#: src/libslic3r/PrintConfig.cpp:2754 src/libslic3r/PrintConfig.cpp:2765 +#: src/libslic3r/PrintConfig.cpp:2773 msgid "Supports" msgstr "Podpory" -#: src/slic3r/GUI/Plater.cpp:1191 +#: src/slic3r/GUI/Plater.cpp:1194 msgid "supports and pad" msgstr "podpory i podkładka" @@ -7433,55 +7447,66 @@ msgid "Supports stealth mode" msgstr "Wspiera tryb Stealth" #: src/slic3r/GUI/ConfigManipulation.cpp:159 -msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters" -msgstr "Podpory działają lepiej, jeśli włączone jest poniższe ustawienie:\n- Wykrywanie mostów przy obrysach" +msgid "" +"Supports work better, if the following feature is enabled:\n" +"- Detect bridging perimeters" +msgstr "" +"Podpory działają lepiej, jeśli włączone jest poniższe ustawienie:\n" +"- Wykrywanie mostów przy obrysach" -#: src/slic3r/GUI/Preferences.cpp:89 +#: src/slic3r/GUI/Preferences.cpp:87 msgid "Suppress \" - default - \" presets" msgstr "Ukryj \" - domyślne - \" zestawy ustawień" -#: src/slic3r/GUI/Preferences.cpp:91 +#: src/slic3r/GUI/Preferences.cpp:89 msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available." msgstr "Ukryj \" - domyślne - \" zestawy ustawień w zakładkach Druk / Filament / Drukarka gdy dostępne są inne kompatybilne ustawienia." -#: src/slic3r/GUI/MainFrame.cpp:828 +#: src/slic3r/GUI/MainFrame.cpp:826 msgid "SVG" msgstr "SVG" -#: src/slic3r/GUI/DoubleSlider.cpp:1112 +#: src/slic3r/GUI/DoubleSlider.cpp:1144 msgid "Switch code to Change extruder" msgstr "Przełącz kod na zmianę ekstrudera" -#: src/slic3r/GUI/DoubleSlider.cpp:1147 +#: src/slic3r/GUI/DoubleSlider.cpp:1179 msgid "Switch code to Color change (%1%) for:" msgstr "Zmień kod na zmianę koloru (%1%) dla:" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:140 msgid "Switch to 3D" msgstr "Przełącz na 3D" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1355 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1376 msgid "Switch to editing mode" msgstr "Tryb edycji" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:122 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:141 msgid "Switch to Preview" -msgstr " Przełącz na Podgląd cięcia" +msgstr "Przełącz na Podgląd cięcia" #: src/slic3r/GUI/wxExtensions.cpp:703 -#, possible-c-format +#, c-format msgid "Switch to the %s mode" msgstr "Przełącz na tryb %s" #: src/slic3r/GUI/GUI_App.cpp:882 -msgid "Switching the language will trigger application restart.\nYou will lose content of the plater." -msgstr "Zmiana języka spowoduje zrestartowanie aplikacji.\nZawartość stołu zostanie wyczyszczona." +msgid "" +"Switching the language will trigger application restart.\n" +"You will lose content of the plater." +msgstr "" +"Zmiana języka spowoduje zrestartowanie aplikacji.\n" +"Zawartość stołu zostanie wyczyszczona." #: src/slic3r/GUI/WipeTowerDialog.cpp:365 -msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?" +msgid "" +"Switching to simple settings will discard changes done in the advanced mode!\n" +"\n" +"Do you want to proceed?" msgstr "Włączenie trybu prostego spowoduje odrzucenie zmian wprowadzonych w trybie zaawansowanym! Czy chcesz kontynować?" -#: src/slic3r/GUI/Tab.cpp:1016 +#: src/slic3r/GUI/Tab.cpp:1014 msgid "symbolic profile name" msgstr "skrócona nazwa profilu" @@ -7493,7 +7518,7 @@ msgstr "Synchronizuj warstwy podporowe z warstwami modelu. Przydaje się przy dr msgid "Synchronize with object layers" msgstr "Synchronizuj z warstwami modelu" -#: src/slic3r/GUI/MainFrame.cpp:701 +#: src/slic3r/GUI/MainFrame.cpp:699 msgid "System &Info" msgstr "&Informacje o Systemie" @@ -7501,21 +7526,21 @@ msgstr "&Informacje o Systemie" msgid "System Information" msgstr "Informacje o systemie" -#: src/slic3r/GUI/Preset.cpp:1059 src/slic3r/GUI/Preset.cpp:1114 -#: src/slic3r/GUI/Preset.cpp:1192 src/slic3r/GUI/Preset.cpp:1234 -#: src/slic3r/GUI/PresetBundle.cpp:1576 src/slic3r/GUI/PresetBundle.cpp:1665 +#: src/slic3r/GUI/Preset.cpp:1109 src/slic3r/GUI/Preset.cpp:1164 +#: src/slic3r/GUI/Preset.cpp:1242 src/slic3r/GUI/Preset.cpp:1284 +#: src/slic3r/GUI/PresetBundle.cpp:1583 src/slic3r/GUI/PresetBundle.cpp:1672 msgid "System presets" msgstr "Ustawienia systemowe" #: src/slic3r/GUI/GUI_App.cpp:801 msgid "Take Configuration &Snapshot" -msgstr "Wykonaj Zr&zut Konfiguracji" +msgstr "Wykonaj Zrzu&t Konfiguracji" #: src/slic3r/GUI/GUI_App.cpp:839 msgid "Taking configuration snapshot" msgstr "Zrzucanie konfiguracji" -#: src/slic3r/GUI/Tab.cpp:1435 src/libslic3r/PrintConfig.cpp:2067 +#: src/slic3r/GUI/Tab.cpp:1433 src/libslic3r/PrintConfig.cpp:2067 msgid "Temperature" msgstr "Temperatura" @@ -7527,11 +7552,11 @@ msgstr "Różnica temperatur mająca zastosowanie gdy ekstruder nie jest używan msgid "Temperature variation" msgstr "Zmiana temperatury" -#: src/slic3r/GUI/ConfigWizard.cpp:1018 +#: src/slic3r/GUI/ConfigWizard.cpp:1017 msgid "Temperatures" msgstr "Temperatury" -#: src/slic3r/GUI/Tab.cpp:1679 src/slic3r/GUI/Tab.cpp:1913 +#: src/slic3r/GUI/Tab.cpp:1677 src/slic3r/GUI/Tab.cpp:1915 msgid "Test" msgstr "Test" @@ -7544,20 +7569,29 @@ msgid "The %1% infill pattern is not supposed to work at 100%% density." msgstr "Wzór wypełnienia %1% nie działa z gęstością ustawioną na 100%%." #: src/slic3r/GUI/FirmwareDialog.cpp:548 -#, possible-c-format +#, c-format msgid "The %s device could not have been found" msgstr "Nie znaleziono urządzenia %s" #: src/slic3r/GUI/FirmwareDialog.cpp:436 -#, possible-c-format -msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..." -msgstr "Nie znaleziono urządzenia %s .\nJeśli urządzenie jest podłączone, to naciśnij przycisk Reset obok złącza USB ..." +#, c-format +msgid "" +"The %s device was not found.\n" +"If the device is connected, please press the Reset button next to the USB connector ..." +msgstr "" +"Nie znaleziono urządzenia %s .\n" +"Jeśli urządzenie jest podłączone, to naciśnij przycisk Reset obok złącza USB ..." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:875 -msgid "The currently manipulated object is tilted (rotation angles are not multiples of 90°).\nNon-uniform scaling of tilted objects is only possible in the World coordinate system,\nonce the rotation is embedded into the object coordinates." -msgstr "Obecnie przekształcany model jest przechylony (kąty obrotu nie są wielokrotnością 90°).\nNierównomierne skalowanie przechylonych modeli jest możliwe tylko w globalnym systemie koordynat, po osadzeniu kątów obrotu w koordynatach modelu." +msgid "" +"The currently manipulated object is tilted (rotation angles are not multiples of 90°).\n" +"Non-uniform scaling of tilted objects is only possible in the World coordinate system,\n" +"once the rotation is embedded into the object coordinates." +msgstr "" +"Obecnie przekształcany model jest przechylony (kąty obrotu nie są wielokrotnością 90°).\n" +"Nierównomierne skalowanie przechylonych modeli jest możliwe tylko w globalnym systemie koordynat, po osadzeniu kątów obrotu w koordynatach modelu." -#: src/libslic3r/PrintConfig.cpp:2717 +#: src/libslic3r/PrintConfig.cpp:2726 msgid "The default angle for connecting support sticks and junctions." msgstr "Domyślny kąt łączenia słupków i \"skrzyżowań\" podpór." @@ -7593,7 +7627,7 @@ msgstr "Ekstruder używany przy druku podpór, tratwy (raft) i skirtu (1+, zero msgid "The filament material type for use in custom G-codes." msgstr "Rodzaj filamentu używanego przy własnym G-code." -#: src/libslic3r/PrintConfig.cpp:3479 +#: src/libslic3r/PrintConfig.cpp:3494 msgid "The file where the output will be written (if not specified, it will be based on the input file)." msgstr "Plik, w którym będzie zapisany efekt wyjściowy (jeśli nie zostanie określony, to będzie bazować na pliku wejściowym)." @@ -7601,60 +7635,52 @@ msgstr "Plik, w którym będzie zapisany efekt wyjściowy (jeśli nie zostanie o msgid "The firmware supports stealth mode" msgstr "Firmware wspiera tryb Stealth" -#: src/libslic3r/PrintConfig.cpp:377 +#: src/libslic3r/PrintConfig.cpp:120 msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect." msgstr "Pierwsza warstwa zostanie zmniejszona o tą wartość w osiach X i Y aby zniwelować efekt stopy słonia (Elephant Foot - gdy pierwsza warstwa \"rozjeżdża\" się na boki)." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3794 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3901 src/slic3r/GUI/Tab.cpp:3441 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3820 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3927 src/slic3r/GUI/Tab.cpp:3457 msgid "the following characters are not allowed:" msgstr "następujące znaki nie są dozwolone:" -#: src/slic3r/GUI/Tab.cpp:3445 +#: src/slic3r/GUI/Tab.cpp:3461 msgid "the following suffix is not allowed:" msgstr "następujący sufiks nie jest dozwolony:" -#: src/libslic3r/PrintConfig.cpp:2862 +#: src/libslic3r/PrintConfig.cpp:2871 msgid "The gap between the object bottom and the generated pad in zero elevation mode." msgstr "Odstęp między najniższą częścią modelu a wygenerowaną podkładką w trybie zerowego podniesienia." -#: src/libslic3r/PrintConfig.cpp:2695 +#: src/libslic3r/PrintConfig.cpp:2704 msgid "The height of the pillar base cone" msgstr "Wysokość stożka bazowego podpory" -#: src/slic3r/GUI/DoubleSlider.cpp:1895 +#: src/slic3r/GUI/DoubleSlider.cpp:1922 msgid "The last color change data was saved for a multi extruder printing with tool changes for whole print." msgstr "Dane ostatniej zmiany koloru zostały zapisane dla drukarki wielomateriałowej ze zmianami narzędzi dla całego wydruku." -#: src/slic3r/GUI/DoubleSlider.cpp:1889 +#: src/slic3r/GUI/DoubleSlider.cpp:1900 src/slic3r/GUI/DoubleSlider.cpp:1916 msgid "The last color change data was saved for a multi extruder printing." msgstr "Dane ostatniej zmiany koloru zostały zapisane dla druku wielomateriałowego." -#: src/slic3r/GUI/DoubleSlider.cpp:1873 -msgid "The last color change data was saved for a multiple extruder printer profile." -msgstr "Dane ostatniej zmiany koloru zostały zapisane dla profilu drukarki z wieloma ekstruderami." - -#: src/slic3r/GUI/DoubleSlider.cpp:1872 -msgid "The last color change data was saved for a single extruder printer profile." -msgstr "Dane ostatniej zmiany koloru zostały zapisane dla profilu drukarki z jednym ekstruderem." - -#: src/slic3r/GUI/DoubleSlider.cpp:1897 +#: src/slic3r/GUI/DoubleSlider.cpp:1899 msgid "The last color change data was saved for a single extruder printing." msgstr "Dane ostatniej zmiany koloru zostały zapisane dla druku z jednym ekstruderem." -#: src/libslic3r/PrintConfig.cpp:2736 +#: src/libslic3r/PrintConfig.cpp:2745 msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading." msgstr "Maksymalny dystans pomiędzy słupkami podpór, które powinny zostać połączone. Wartość 0 zapobiegnie łączeniu słupków podpór." -#: src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2736 msgid "The max length of a bridge" msgstr "Maksymalna długość mostu" -#: src/libslic3r/PrintConfig.cpp:2705 +#: src/libslic3r/PrintConfig.cpp:2714 msgid "The minimum distance of the pillar base from the model in mm. Makes sense in zero elevation mode where a gap according to this parameter is inserted between the model and the pad." msgstr "Minimalny odstęp stopy słupka od modelu, wyrażony w mm. Ma zastosowanie w trybie zerowego podniesienia, gdy odstęp określony tym parametrem będzie oddzielał model od podkładki." -#: src/libslic3r/PrintConfig.cpp:175 +#: src/libslic3r/PrintConfig.cpp:185 msgid "The number of bottom solid layers is increased above bottom_solid_layers if necessary to satisfy minimum thickness of bottom shell." msgstr "Liczba dolnych warstw jest zwiększona ponad bottom_solid_layers, jeśli to konieczne, aby spełnić warunek minimalnej grubości powłoki." @@ -7671,8 +7697,14 @@ msgid "The object will be raised by this number of layers, and support material msgstr "Model zostanie podniesiony o zadaną ilość warstw i umieszczony na podporach." #: src/libslic3r/PrintConfig.cpp:2424 -msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt" -msgstr "Procentowa powierzchnia stołu.\nJeśli gabaryty wydruku przekraczają zadaną wartość,\nto zostanie użyte wolne przechylanie, w innym przypadku - szybkie" +msgid "" +"The percentage of the bed area. \n" +"If the print area exceeds the specified value, \n" +"then a slow tilt will be used, otherwise - a fast tilt" +msgstr "" +"Procentowa powierzchnia stołu.\n" +"Jeśli gabaryty wydruku przekraczają zadaną wartość,\n" +"to zostanie użyte wolne przechylanie, w innym przypadku - szybkie" #: src/slic3r/GUI/GUI_App.cpp:932 msgid "The presets on the following tabs were modified" @@ -7698,11 +7730,11 @@ msgstr "Wybrany plik nie zawiera żadnego kształtu." msgid "The selected file contains several disjoint areas. This is not supported." msgstr "Wybrany plik zawiera kilka rozłączonych obszarów. Taki plik nie jest obsługiwany." -#: src/slic3r/GUI/Plater.cpp:2954 +#: src/slic3r/GUI/Plater.cpp:2970 msgid "The selected object can't be split because it contains more than one volume/material." msgstr "Wybrany model nie może być podzielony ponieważ składa się z więcej niż jednej części lub zawiera więcej niż jeden materiał." -#: src/slic3r/GUI/GUI_ObjectList.cpp:2244 src/slic3r/GUI/Plater.cpp:2962 +#: src/slic3r/GUI/GUI_ObjectList.cpp:2270 src/slic3r/GUI/Plater.cpp:2978 msgid "The selected object couldn't be split because it contains only one part." msgstr "Wybrany model nie może być rozdzielony ponieważ zawiera tylko jedną część." @@ -7710,11 +7742,17 @@ msgstr "Wybrany model nie może być rozdzielony ponieważ zawiera tylko jedną msgid "The selected project is no more available" msgstr "Wybrany projekt nie jest dostępny" -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "The sequential print is on.\nIt's impossible to apply any custom G-code for objects printing sequentually.\nThis code won't be processed during G-code generation." -msgstr "Druk sekwencyjny jest włączony.\nNiemożliwe jest dodawanie własnego G-code do modeli drukowanych sekwencyjnie.\nTen kod nie będzie przetwarzany podczas generowania pliku G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:998 +msgid "" +"The sequential print is on.\n" +"It's impossible to apply any custom G-code for objects printing sequentually.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Druk sekwencyjny jest włączony.\n" +"Niemożliwe jest dodawanie własnego G-code do modeli drukowanych sekwencyjnie.\n" +"Ten kod nie będzie przetwarzany podczas generowania pliku G-code." -#: src/libslic3r/PrintConfig.cpp:2837 +#: src/libslic3r/PrintConfig.cpp:2846 msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls." msgstr "Kąt pochylenia ścian podkładki względem powierzchni stołu. 90 stopni oznacza proste ściany." @@ -7728,41 +7766,50 @@ msgstr "Prędkość retrakcji (stosowana tylko dla silnika ekstrudera)." #: src/slic3r/GUI/ConfigManipulation.cpp:81 #, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- Ensure vertical shell thickness enabled\n- Detect thin walls disabled" -msgstr "Wymagania trybu wazy:\n- jeden obrys\n- brak górnych warstw\n- 0% wypełnienia\n- brak materiału podporowego\n- wyłączone ustawienie \"Zagwarantuj grubość ścianki\"\n- wyłączone wykrywanie cienkich ścian" +msgid "" +"The Spiral Vase mode requires:\n" +"- one perimeter\n" +"- no top solid layers\n" +"- 0% fill density\n" +"- no support material\n" +"- Ensure vertical shell thickness enabled\n" +"- Detect thin walls disabled" +msgstr "" +"Wymagania trybu wazy:\n" +"- jeden obrys\n" +"- brak górnych warstw\n" +"- 0% wypełnienia\n" +"- brak materiału podporowego\n" +"- wyłączone ustawienie \"Zagwarantuj grubość ścianki\"\n" +"- wyłączone wykrywanie cienkich ścian" -#: src/slic3r/GUI/ConfigManipulation.cpp:75 -#, no-c-format -msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- inactive Ensure vertical shell thickness" -msgstr "Wymagania trybu wazy:\n- jeden obrys\n- brak górnych warstw\n- 0% wypełnienia\n- brak materiału podporowego\n- wyłączone ustawienie \"Zagwarantuj grubość ścianki\"" - -#: src/libslic3r/Print.cpp:1233 +#: src/libslic3r/Print.cpp:1237 msgid "The Spiral Vase option can only be used when printing a single object." msgstr "Tryb Wazy może być aktywny tylko podczas druku pojedynczego modelu." -#: src/libslic3r/Print.cpp:1240 +#: src/libslic3r/Print.cpp:1244 msgid "The Spiral Vase option can only be used when printing single material objects." msgstr "Tryb Wazy może być używany jedynie podczas druku z jednego materiału." -#: src/slic3r/GUI/Tab.cpp:3052 +#: src/slic3r/GUI/Tab.cpp:3068 msgid "The supplied name is empty. It can't be saved." msgstr "Podana nazwa jest pusta. Nie można zapisać." -#: src/slic3r/GUI/Tab.cpp:3449 +#: src/slic3r/GUI/Tab.cpp:3465 msgid "The supplied name is not available." msgstr "Podana nazwa jest niedostępna." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3793 -#: src/slic3r/GUI/GUI_ObjectList.cpp:3900 src/slic3r/GUI/Tab.cpp:3440 -#: src/slic3r/GUI/Tab.cpp:3444 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3819 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3926 src/slic3r/GUI/Tab.cpp:3456 +#: src/slic3r/GUI/Tab.cpp:3460 msgid "The supplied name is not valid;" msgstr "Podana nazwa nie jest prawidłowa;" -#: src/libslic3r/Print.cpp:1218 +#: src/libslic3r/Print.cpp:1222 msgid "The supplied settings will cause an empty print." msgstr "Wprowadzone ustawienia spowodują pusty wydruk." -#: src/libslic3r/PrintConfig.cpp:2780 +#: src/libslic3r/PrintConfig.cpp:2789 msgid "The thickness of the pad and its optional cavity walls." msgstr "Grubość podkładki i opcjonalnie wydrążenie ścianek." @@ -7770,80 +7817,101 @@ msgstr "Grubość podkładki i opcjonalnie wydrążenie ścianek." msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer." msgstr "Dystans w pionie między modelem a warstwą łączącą materiału podporowego. Ustawienie na 0 wyłączy ustawienie mostu (prędkości i przepływu) dla pierwszej warstwy modelu nad warstwą łączącą." -#: src/slic3r/GUI/Tab.cpp:2571 -msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?" -msgstr "Opcja czyszczenia dyszy nie jest dostępna z funkcją Retrakcji w Firmware (Firmware Retraction).\n\nWyłączyć ją aby włączyć Firmware Retraction?" +#: src/slic3r/GUI/Tab.cpp:2575 +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"Opcja czyszczenia dyszy nie jest dostępna z funkcją Retrakcji w Firmware (Firmware Retraction).\n" +"\n" +"Wyłączyć ją aby włączyć Firmware Retraction?" -#: src/libslic3r/Print.cpp:1264 +#: src/libslic3r/Print.cpp:1268 msgid "The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)." msgstr "Wieża czyszcząca obecnie nie obsługuje wolumetrycznego parametru E (use_volumetric_e=0)." #: src/slic3r/GUI/ConfigManipulation.cpp:115 -msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0)." +msgid "" +"The Wipe Tower currently supports the non-soluble supports only\n" +"if they are printed with the current extruder without triggering a tool change.\n" +"(both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "Wieża czyszcząca obsługuje podpory nierozpuszczalne jedynie, gdy są drukowane tym samym ekstruderem - bez wywoływania zmiany narzędzia (zarówno support_material_extruder i support_material_interface_extruder muszą być ustawione na 0)." -#: src/libslic3r/Print.cpp:1396 +#: src/libslic3r/Print.cpp:1400 msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)." msgstr "Wieża Czyszcząca obsługuje podpory nierozpuszczalne jedynie, gdy są drukowane tym samym ekstruderem - bez wywoływania zmiany narzędzia (zarówno support_material_extruder i support_material_interface_extruder muszą być ustawione na 0)." -#: src/libslic3r/Print.cpp:1266 +#: src/libslic3r/Print.cpp:1270 msgid "The Wipe Tower is currently not supported for multimaterial sequential prints." msgstr "Wieża czyszcząca jest obecnie niedostępna dla wielomateriałowego druku sekwencyjnego." -#: src/libslic3r/Print.cpp:1258 +#: src/libslic3r/Print.cpp:1262 msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors." msgstr "Wieża Czyszcząca jest obecnie dostępna tylko dla G-code w stylu Marlin, RepRap/Sprinter i Repetier." -#: src/libslic3r/Print.cpp:1260 +#: src/libslic3r/Print.cpp:1264 msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." msgstr "Wieża Czyszcząca jest obecnie dostępna tylko przy relatywnym adresowaniu ekstrudera (use_relative_e_distances=1)." -#: src/libslic3r/Print.cpp:1289 +#: src/libslic3r/Print.cpp:1293 msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers" msgstr "Wieża Czyszcząca jest dostępna dla wielu modeli tylko gdy są drukowane na takiej samej ilości warstw tratwy (raft)" -#: src/libslic3r/Print.cpp:1291 +#: src/libslic3r/Print.cpp:1295 msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance" msgstr "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że ustawienie support_material_contact_distance jest jednakowe dla każdego z nich" -#: src/libslic3r/Print.cpp:1293 +#: src/libslic3r/Print.cpp:1297 msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally." msgstr "Wieża Czyszcząca jest dostępna dla kilku modeli tylko jeśli są cięte z taką samą wysokością warstwy." -#: src/libslic3r/Print.cpp:1287 +#: src/libslic3r/Print.cpp:1291 msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heights" msgstr "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że mają one równą wysokość warstwy" -#: src/libslic3r/Print.cpp:1253 +#: src/libslic3r/Print.cpp:1257 msgid "The wipe tower is only supported if all extruders have the same nozzle diameter and use filaments of the same diameter." msgstr "Wieża Czyszcząca jest dostępna tylko, gdy wszystkie ekstrudery mają taką samą średnicę dyszy i używają filamentów i takiej samej średnicy." -#: src/libslic3r/Print.cpp:1335 +#: src/libslic3r/Print.cpp:1339 msgid "The Wipe tower is only supported if all objects have the same variable layer height" msgstr "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że mają one taką samą wysokość warstwy" -#: src/libslic3r/SLAPrintSteps.cpp:596 +#: src/libslic3r/SLAPrintSteps.cpp:621 msgid "There are unprintable objects. Try to adjust support settings to make the objects printable." msgstr "Na stole są modele niemożliwe do wydrukowania. Spróbuj zmienić ustawienia podpór, aby możliwe było ich drukowanie." -#: src/slic3r/GUI/DoubleSlider.cpp:996 -msgid "There is a color change for extruder that has not been used before.\nCheck your settings to avoid redundant color changes." -msgstr "Występuje zmiana koloru dla ekstrudera, który nie był jeszcze używany.\nSprawdź ustawienia, aby uniknąć niepotrzebnych zmian koloru." +#: src/slic3r/GUI/DoubleSlider.cpp:1030 +msgid "" +"There is a color change for extruder that has not been used before.\n" +"Check your settings to avoid redundant color changes." +msgstr "" +"Występuje zmiana koloru dla ekstrudera, który nie był jeszcze używany.\n" +"Sprawdź ustawienia, aby uniknąć niepotrzebnych zmian koloru." -#: src/slic3r/GUI/DoubleSlider.cpp:990 -msgid "There is a color change for extruder that won't be used till the end of print job.\nThis code won't be processed during G-code generation." -msgstr "Występuje zmiana koloru dla ekstrudera, który nie będzie używany do końca tego wydruku.\nTen kod nie będzie przetwarzany podczas generowania G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:1024 +msgid "" +"There is a color change for extruder that won't be used till the end of print job.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Występuje zmiana koloru dla ekstrudera, który nie będzie używany do końca tego wydruku.\n" +"Ten kod nie będzie przetwarzany podczas generowania G-code." -#: src/slic3r/GUI/DoubleSlider.cpp:993 -msgid "There is an extruder change set to the same extruder.\nThis code won't be processed during G-code generation." -msgstr "Występuje zmiana koloru na używany przez ten sam ekstruder.\nTen kod nie będzie przetwarzany podczas generowania G-code." +#: src/slic3r/GUI/DoubleSlider.cpp:1027 +msgid "" +"There is an extruder change set to the same extruder.\n" +"This code won't be processed during G-code generation." +msgstr "" +"Występuje zmiana koloru na używany przez ten sam ekstruder.\n" +"Ten kod nie będzie przetwarzany podczas generowania G-code." #: src/slic3r/GUI/UpdateDialogs.cpp:225 -#, possible-c-format +#, c-format msgid "This %s version: %s" msgstr "%s wersja: %s" -#: src/libslic3r/PrintConfig.cpp:155 +#: src/libslic3r/PrintConfig.cpp:165 msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want." msgstr "Ten kod jest wykonywany pomiędzy drukiem poszczególnych modeli w trybie druku sekwencyjnego. Domyślnie przy komendzie non-wait temperatury dyszy i stołu są resetowane; jednakże jeśli przy tej opcji zostaną użyte komendy M104, M109, M140 lub M190 to Slic3r nie doda własnych komend do kontroli temperatury. Pamiętaj, że możesz używać zmiennych typu placeholder, więc np. komendę \"M109 S[first_layer_temperature]\" (temperatura pierwszej warstwy) możesz umieścić gdzie chcesz." @@ -7851,7 +7919,7 @@ msgstr "Ten kod jest wykonywany pomiędzy drukiem poszczególnych modeli w trybi msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ten kod jest wykonywany przy każdej zmianie warstwy - zaraz po podniesieniu głowicy na wysokość kolejnej warstwy ale zanim ekstruder przejdzie do pierwszego punktu nowej warstwy. Pamiętaj, że możesz użyć zmiennych typu placeholder dla wszystkich ustawień Slic3r, jak np. [layer_num] (numer warstwy) i [layer_z] (położenie warstwy w osi Z)." -#: src/libslic3r/PrintConfig.cpp:144 +#: src/libslic3r/PrintConfig.cpp:154 msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]." msgstr "Ten kod jest wykonywany przy każdej zmianie warstwy, zaraz przed podniesieniem ekstrudera na wysokość nowej warstwy. Pamiętaj, że możesz użyć zmiennych typu placeholder dla wszystkich ustawień PrusaSlicer, jak np. [layer_num] (numer warstwy) i [layer_z] (położenie warstwy w osi Z)." @@ -7883,11 +7951,11 @@ msgstr "Ta eksperymentalna funkcja używa komend G10 i G11 aby przerzucić kontr msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin." msgstr "Ta eksperymentalna funkcja określa wyjściowe dane E (ilość ekstruzji) w milimetrach sześciennych zamiast długości. Jeśli średnica filamentu nie została jeszcze ustawiona w firmware, możesz użyć komendy \"M200 D[filament_diameter_0] T0\" w skrypcie startowym aby włączyć tryb objętościowy i użyć filamentu powiązanego z ustawionym w Slic3r. Ta funkcja jest wspierana jedynie przez najnowsze wersje Marlina." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3946 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3972 msgid "This extruder will be set for selected items" msgstr "Ten ekstruder zostanie ustawiony dla wybranych elementów" -#: src/libslic3r/PrintConfig.cpp:214 +#: src/libslic3r/PrintConfig.cpp:224 msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this." msgstr "Ten współczynnik określa ilość plastiku wytłaczaną przy drukowaniu mostów. Możesz delikatnie zmniejszyć tą wartość aby zapobiec opadaniu drukowanej linii, jednakże standardowe ustawienia są zazwyczaj dobrze dobrane i najpierw poeksperymentuj z chłodzeniem wydruku." @@ -7895,7 +7963,7 @@ msgstr "Ten współczynnik określa ilość plastiku wytłaczaną przy drukowani msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps." msgstr "Ten współczynnik określa proporcjonalną ilość przepływu plastiku. Możesz zmienić tą wartość aby uzyskać gładsze powierzchnie i poprawną szerokość ścian drukowanych z 1 linii. Ten współczynnik waha się zazwyczaj od 0.9 do 1.1. Jeśli musisz wykroczyć poza ten zakres to najpierw zmierz średnicę filamentu i kroki ekstrudera (E steps)." -#: src/libslic3r/PrintConfig.cpp:204 +#: src/libslic3r/PrintConfig.cpp:214 msgid "This fan speed is enforced during all bridges and overhangs." msgstr "Ta prędkość wentylatora zostanie zastosowana przy druku mostów i zwisów." @@ -7911,24 +7979,42 @@ msgstr "Ta funkcja pozwoli wstawić zwartą warstwę wypełnienia pomiędzy okre msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object." msgstr "Ta funkcja pozwala drukować modele z 1 zewnętrzną ścianką z ciągłym podnoszeniem Z, aby uniknąć widocznego szwu (czyli ekstruder nie będzie drukował po 1 warstwie na 1 wysokości, lecz będzie podnosił się płynnie w formie spirali). Wymaga użycia 1 obrysu, zerowego wypełnienia, braku warstw górnych i braku podpór. Możesz ustawić dowolną ilość dolnych warstw jak i obrysów skirt/brim. Nie zadziała przy druku więcej niż jednego modelu." -#: src/slic3r/GUI/Plater.cpp:2351 +#: src/slic3r/GUI/Plater.cpp:2367 msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?" msgstr "Ten plik nie może zostać wczytany w Trybie Prostym. Czy chcesz przełączyć na Tryb Zaawansowany?" -#: src/slic3r/GUI/Plater.cpp:2341 -msgid "This file contains several objects positioned at multiple heights.\nInstead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?" -msgstr "Ten plik zawiera kilka modeli umieszczonych na różnych wysokościach. \nPotraktować go jako\njeden model składający się z kilku części?" +#: src/slic3r/GUI/Plater.cpp:2357 +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should I consider\n" +"this file as a single object having multiple parts?" +msgstr "" +"Ten plik zawiera kilka modeli umieszczonych na różnych wysokościach. \n" +"Potraktować go jako\n" +"jeden model składający się z kilku części?" #: src/slic3r/GUI/FirmwareDialog.cpp:332 -#, possible-c-format -msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do." -msgstr "Ten plik .hex z firmware nie jest przeznaczony dla tej drukarki.\nPlik .hex jest przeznaczony dla: %s\nWykryta drukarka: %s\n\nCzy chcesz kontynuować i mimo wszystko wgrać ten plik .hex?\nKontynuuj tylko, jeśli wiesz, że tak powinno być." +#, c-format +msgid "" +"This firmware hex file does not match the printer model.\n" +"The hex file is intended for: %s\n" +"Printer reported: %s\n" +"\n" +"Do you want to continue and flash this hex file anyway?\n" +"Please only continue if you are sure this is the right thing to do." +msgstr "" +"Ten plik .hex z firmware nie jest przeznaczony dla tej drukarki.\n" +"Plik .hex jest przeznaczony dla: %s\n" +"Wykryta drukarka: %s\n" +"\n" +"Czy chcesz kontynuować i mimo wszystko wgrać ten plik .hex?\n" +"Kontynuuj tylko, jeśli wiesz, że tak powinno być." -#: src/libslic3r/PrintConfig.cpp:304 +#: src/libslic3r/PrintConfig.cpp:314 msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time." msgstr "Ta flaga umożliwia automatyczne sterowanie chłodzeniem przez zmianę prędkości druku i wentylatora względem czasu druku jednej warstwy." -#: src/slic3r/GUI/Plater.cpp:533 +#: src/slic3r/GUI/Plater.cpp:536 msgid "This flag enables the brim that will be printed around each object on the first layer." msgstr "Ta flaga włącza brim, który zostanie wydrukowany na pierwszej warstwie wokół każdego modelu." @@ -7940,19 +8026,19 @@ msgstr "Ta flaga wymusza retrakcję przy każdej zmianie wysokości Z." msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders." msgstr "Ta flaga włączy ruch dyszy przy retrakcji aby zminimalizować formowanie się kropli filamentu wokół końcówki dyszy przy ekstruderach, które mają tendencję do wyciekania filamentu." -#: src/slic3r/GUI/Tab.cpp:955 +#: src/slic3r/GUI/Tab.cpp:953 msgid "This is a default preset." msgstr "To jest domyślny zestaw ustawień." -#: src/libslic3r/PrintConfig.cpp:2757 +#: src/libslic3r/PrintConfig.cpp:2766 msgid "This is a relative measure of support points density." msgstr "To jest względna miara gęstości punktów podpór." -#: src/slic3r/GUI/Tab.cpp:2334 +#: src/slic3r/GUI/Tab.cpp:2338 msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?" msgstr "To jest drukarka wielomateriałowa z jednym ekstruderem, więc średnice wszystkich ekstruderów zostaną zastąpione nową wartością. Kontynuować?" -#: src/slic3r/GUI/Tab.cpp:957 +#: src/slic3r/GUI/Tab.cpp:955 msgid "This is a system preset." msgstr "To jest systemowy zestaw ustawień." @@ -7960,11 +8046,11 @@ msgstr "To jest systemowy zestaw ustawień." msgid "This is only used in the Slic3r interface as a visual help." msgstr "Ta funkcja jest używana jedynie w interfejsie Slic3ra jako pomoc wizualna." -#: src/libslic3r/PrintConfig.cpp:326 +#: src/libslic3r/PrintConfig.cpp:336 msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all." msgstr "Do tej wartości przyspieszenia drukarka wróci gdy ustawione zostaną przyspieszenia dla określonych ruchów (obrysy/wypełnienie). Ustaw zero aby wyłączyć resetowanie przyspieszeń." -#: src/libslic3r/PrintConfig.cpp:184 +#: src/libslic3r/PrintConfig.cpp:194 msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges." msgstr "To jest przyspieszenie stosowane przy druku mostów. Ustaw zero aby wyłączyć osobne ustawienia przyspieszenia dla mostów." @@ -8002,8 +8088,12 @@ msgid "This matrix describes volumes (in cubic milimetres) required to purge the msgstr "Ta formuła określa objętość (w milimetrach sześciennych) wymaganą do wyczyszczenia filamentu na wieży czyszczącej dla danej pary narzędzi (filamentów)." #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:878 -msgid "This operation is irreversible.\nDo you want to proceed?" -msgstr "Tej czynności nie można cofnąć.\nCzy chcesz kontynuować?" +msgid "" +"This operation is irreversible.\n" +"Do you want to proceed?" +msgstr "" +"Tej czynności nie można cofnąć.\n" +"Czy chcesz kontynuować?" #: src/libslic3r/PrintConfig.cpp:1442 msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled." @@ -8066,11 +8156,19 @@ msgid "This vector saves required volumes to change from/to each tool used on th msgstr "To ustawienie określa wymaganą objętość wieży czyszczącej przy zmianie danego narzędzia. Te wartości używane są do uproszczenia określenia pełnych wartości czyszczenia poniżej." #: src/slic3r/GUI/UpdateDialogs.cpp:216 -#, possible-c-format -msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." -msgstr "Ta wersja %s nie jest kompatybilna z aktualnie zainstalowanym zestawem konfiguracji.\nPrawdopodobnie stało się tak, ponieważ uruchomiono starszy %s po użyciu nowszego.\n\nMożesz zamknąć %s i spróbować ponownie z nowszą wersją, lub możesz też uruchomić ponownie konfigurację początkową. Spowoduje to stworzenie kopii istniejącej konfiguracji przed zainstalowaniem plików kompatybilnych z %s ." +#, c-format +msgid "" +"This version of %s is not compatible with currently installed configuration bundles.\n" +"This probably happened as a result of running an older %s after using a newer one.\n" +"\n" +"You may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s." +msgstr "" +"Ta wersja %s nie jest kompatybilna z aktualnie zainstalowanym zestawem konfiguracji.\n" +"Prawdopodobnie stało się tak, ponieważ uruchomiono starszy %s po użyciu nowszego.\n" +"\n" +"Możesz zamknąć %s i spróbować ponownie z nowszą wersją, lub możesz też uruchomić ponownie konfigurację początkową. Spowoduje to stworzenie kopii istniejącej konfiguracji przed zainstalowaniem plików kompatybilnych z %s ." -#: src/libslic3r/PrintConfig.cpp:2449 +#: src/libslic3r/PrintConfig.cpp:2458 msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons." msgstr "To ustawienie zastosuje korekcję gamma do zrasteryzowanych wielokątów 2D. Wartość 0 oznacza ustawienie progu w środku zakresu. Spowoduje to wyeliminowanie antaliasing bez utraty otworów w wielokątach." @@ -8082,11 +8180,11 @@ msgstr "Wątki" msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors." msgstr "Wątki są używane do równoległego przetwarzania zadań wymagających używa wielu zasobów. Optymalna liczba wątków powinna być odrobinę większa od dostępnej liczby rdzeni lub procesorów." -#: src/slic3r/GUI/Tab.cpp:2091 +#: src/slic3r/GUI/Tab.cpp:2093 msgid "Tilt" msgstr "Przechylanie" -#: src/slic3r/GUI/Tab.cpp:2092 +#: src/slic3r/GUI/Tab.cpp:2094 msgid "Tilt time" msgstr "Czas przechylania" @@ -8114,32 +8212,20 @@ msgstr "Czas wolnego przechylania" msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions." msgstr "Czas bezczynności po rozładowaniu filamentu. Może pomóc w bezproblemowej zmianie narzędzia podczas druku z materiałami elastycznymi, które mogą potrzebować więcej czasu na skurcz termiczny wracając do nominalnego rozmiaru." -#: src/slic3r/GUI/DoubleSlider.cpp:962 -msgid "To add another code use Ctrl + Left click" -msgstr "Aby dodać kolejny kod, naciśnij Ctrl + lewy przycisk myszki" - -#: src/slic3r/GUI/DoubleSlider.cpp:963 -msgid "To add another code use Right click" -msgstr "Aby dodać kolejny kod, naciśnij prawy przycisk myszki" - -#: src/slic3r/GUI/Tab.cpp:968 +#: src/slic3r/GUI/Tab.cpp:966 msgid "To do that please specify a new name for the preset." msgstr "Aby to zrobić ustaw nową nazwę zestawu ustawień." -#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:100 -msgid "To except of redundant tool manipulation, \nColor change(s) for unused extruder(s) was(were) deleted" -msgstr "Aby pozbyć się niepotrzebnych zmian narzędzi,\nusunięte zostały zmiany kolorów dla nieużywanych ekstruderów." - -#: src/slic3r/GUI/Plater.cpp:4023 +#: src/slic3r/GUI/Plater.cpp:4014 msgid "To objects" msgstr "Do modeli" -#: src/slic3r/GUI/Plater.cpp:4025 +#: src/slic3r/GUI/Plater.cpp:4016 msgid "To parts" msgstr "Na części" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:263 -#, possible-c-format +#, c-format msgid "Toggle %c axis mirroring" msgstr "Włącz odbicie w osi %c" @@ -8147,13 +8233,13 @@ msgstr "Włącz odbicie w osi %c" msgid "too many files" msgstr "zbyt wiele plików" -#: src/libslic3r/SLAPrintSteps.cpp:154 +#: src/libslic3r/SLAPrintSteps.cpp:190 msgid "Too much overlapping holes." msgstr "Zbyt wiele nakładających się otworów." -#: src/slic3r/GUI/GUI_Preview.cpp:229 src/slic3r/GUI/GUI_Preview.cpp:337 -#: src/slic3r/GUI/GUI_Preview.cpp:521 src/slic3r/GUI/GUI_Preview.cpp:576 -#: src/slic3r/GUI/GUI_Preview.cpp:831 src/libslic3r/GCode/PreviewData.cpp:357 +#: src/slic3r/GUI/GUI_Preview.cpp:227 src/slic3r/GUI/GUI_Preview.cpp:335 +#: src/slic3r/GUI/GUI_Preview.cpp:519 src/slic3r/GUI/GUI_Preview.cpp:574 +#: src/slic3r/GUI/GUI_Preview.cpp:835 src/libslic3r/GCode/PreviewData.cpp:357 msgid "Tool" msgstr "Narzędzie" @@ -8161,11 +8247,11 @@ msgstr "Narzędzie" msgid "Tool #" msgstr "Narzędzie #" -#: src/slic3r/GUI/Tab.cpp:1998 src/libslic3r/PrintConfig.cpp:2093 +#: src/slic3r/GUI/Tab.cpp:2000 src/libslic3r/PrintConfig.cpp:2093 msgid "Tool change G-code" msgstr "G-code wykonywany przy zmianie narzędzia" -#: src/slic3r/GUI/Tab.cpp:1493 +#: src/slic3r/GUI/Tab.cpp:1491 msgid "Toolchange parameters with single extruder MM printers" msgstr "Parametry zmiany narzędzia dla drukarek MM z jednym ekstruderem" @@ -8176,7 +8262,7 @@ msgstr "Parametry zmiany narzędzia dla drukarek MM z jednym ekstruderem" msgid "Top" msgstr "Górne" -#: src/slic3r/GUI/PresetHints.cpp:300 +#: src/slic3r/GUI/PresetHints.cpp:304 msgid "Top / bottom shell thickness hint: Not available due to invalid layer height." msgstr "Porada dot. grubości dolnej / górnej powłoki: niedostępne z powodu nieprawidłowej wysokości warstwy." @@ -8184,11 +8270,11 @@ msgstr "Porada dot. grubości dolnej / górnej powłoki: niedostępne z powodu n msgid "Top fill pattern" msgstr "Wzór wypełnienia górnej warstwy" -#: src/slic3r/GUI/PresetHints.cpp:319 +#: src/slic3r/GUI/PresetHints.cpp:323 msgid "Top is open." msgstr "Góra jest otwarta." -#: src/slic3r/GUI/PresetHints.cpp:313 +#: src/slic3r/GUI/PresetHints.cpp:317 msgid "Top shell is %1% mm thick for layer height %2% mm." msgstr "Górna powłoka ma %1% mm grubości dla warstwy o wysokości %2% mm." @@ -8196,7 +8282,7 @@ msgstr "Górna powłoka ma %1% mm grubości dla warstwy o wysokości %2% mm." msgid "top solid infill" msgstr "zwarte wypełnienie na szczycie" -#: src/slic3r/GUI/GUI_Preview.cpp:244 src/libslic3r/ExtrusionEntity.cpp:315 +#: src/slic3r/GUI/GUI_Preview.cpp:242 src/libslic3r/ExtrusionEntity.cpp:315 #: src/libslic3r/PrintConfig.cpp:2105 src/libslic3r/PrintConfig.cpp:2117 msgid "Top solid infill" msgstr "Zwarte wypełnienie górne" @@ -8225,13 +8311,12 @@ msgstr "Całkowity czas wyciskania" msgid "Translate" msgstr "Konwersja" +#: src/slic3r/GUI/Mouse3DController.cpp:300 #: src/slic3r/GUI/Mouse3DController.cpp:317 -#: src/slic3r/GUI/Mouse3DController.cpp:337 -#: src/slic3r/GUI/Mouse3DController.cpp:339 msgid "Translation" msgstr "Tłumaczenie" -#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/PrintConfig.cpp:2152 +#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/PrintConfig.cpp:2152 msgid "Travel" msgstr "Jałowy" @@ -8239,7 +8324,7 @@ msgstr "Jałowy" msgid "Triangles" msgstr "Trójkąty" -#: src/libslic3r/PrintConfig.cpp:3433 +#: src/libslic3r/PrintConfig.cpp:3448 msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)." msgstr "Podejmij próbę naprawienia wszystkich niezamkniętych obszarów siatki (ta opcja jest dodana w przypadku, w którym potrzebujemy pociąć model, aby przeprowadzić jakieś zadanie)." @@ -8247,11 +8332,11 @@ msgstr "Podejmij próbę naprawienia wszystkich niezamkniętych obszarów siatki msgid "Type of the printer." msgstr "Rodzaj drukarki." -#: src/slic3r/GUI/ConfigWizard.cpp:2014 src/slic3r/GUI/GUI_ObjectList.cpp:3527 +#: src/slic3r/GUI/ConfigWizard.cpp:2013 src/slic3r/GUI/GUI_ObjectList.cpp:3553 msgid "Type:" msgstr "Typ:" -#: src/slic3r/GUI/Plater.cpp:3436 +#: src/slic3r/GUI/Plater.cpp:3428 msgid "Unable to reload:" msgstr "Nie można wczytać:" @@ -8259,12 +8344,13 @@ msgstr "Nie można wczytać:" msgid "undefined error" msgstr "nieznany błąd" -#: src/slic3r/GUI/GLCanvas3D.cpp:4673 src/slic3r/GUI/MainFrame.cpp:581 +#: src/slic3r/GUI/GLCanvas3D.cpp:4624 src/slic3r/GUI/KBShortcutsDialog.cpp:130 +#: src/slic3r/GUI/MainFrame.cpp:581 msgid "Undo" msgstr "Cofnij" -#: src/slic3r/GUI/GLCanvas3D.cpp:4103 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:4065 +#, c-format msgid "Undo %1$d Action" msgid_plural "Undo %1$d Actions" msgstr[0] "Cofnij %1$d akcję" @@ -8272,7 +8358,7 @@ msgstr[1] "Cofnij %1$d akcji" msgstr[2] "Cofnij %1$d akcji" msgstr[3] "Cofnij %1$d akcji" -#: src/slic3r/GUI/GLCanvas3D.cpp:4085 +#: src/slic3r/GUI/GLCanvas3D.cpp:4047 msgid "Undo History" msgstr "Historia Cofnięć" @@ -8302,23 +8388,36 @@ msgstr "Prędkość rozładowania" msgid "Unloading speed at the start" msgstr "Początkowa prędkość rozładowania" -#: src/slic3r/GUI/Tab.cpp:3240 +#: src/slic3r/GUI/Tab.cpp:3256 msgid "UNLOCKED LOCK" msgstr "OTWARTA KŁÓDKA" -#: src/slic3r/GUI/Tab.cpp:3266 -msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\nClick to reset all settings for current option group to the system (or default) values." -msgstr "OTWARTA KŁÓDKA oznacza, że niektóre ustawienia zostały zmodyfikowane i nie odpowiadają wartościom systemowym (lub domyślnym) w obecnej grupie opcji.\nKliknij aby zresetować wszystkie ustawienia obecnej grupy ustawień do wartości systemowych (lub domyślnych)." +#: src/slic3r/GUI/Tab.cpp:3282 +msgid "" +"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system (or default) values for the current option group.\n" +"Click to reset all settings for current option group to the system (or default) values." +msgstr "" +"OTWARTA KŁÓDKA oznacza, że niektóre ustawienia zostały zmodyfikowane i nie odpowiadają wartościom systemowym (lub domyślnym) w obecnej grupie opcji.\n" +"Kliknij aby zresetować wszystkie ustawienia obecnej grupy ustawień do wartości systemowych (lub domyślnych)." -#: src/slic3r/GUI/Tab.cpp:3281 -msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\nClick to reset current value to the system (or default) value." -msgstr "OTWARTA KŁÓDKA oznacza, że niektóre wartości zostały zmodyfikowane i nie odpowiadają systemowym (lub domyślnym).\nKliknij ikonę aby zresetować do wartości systemowej (lub domyślnej)." +#: src/slic3r/GUI/Tab.cpp:3297 +msgid "" +"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system (or default) value.\n" +"Click to reset current value to the system (or default) value." +msgstr "" +"OTWARTA KŁÓDKA oznacza, że niektóre wartości zostały zmodyfikowane i nie odpowiadają systemowym (lub domyślnym).\n" +"Kliknij ikonę aby zresetować do wartości systemowej (lub domyślnej)." -#: src/slic3r/GUI/GUI_Preview.cpp:257 +#: src/slic3r/GUI/Plater.cpp:5203 +#, c-format +msgid "Unmounting successful. The device %s(%s) can now be safely removed from the computer." +msgstr "Wysuwanie nośnika zakończone. Urządzenie %s (%s) może być teraz bezpiecznie odłączone od komputera." + +#: src/slic3r/GUI/GUI_Preview.cpp:255 msgid "Unretractions" msgstr "Powrót retrakcji" -#: src/slic3r/GUI/Tab.cpp:2931 +#: src/slic3r/GUI/Tab.cpp:2947 msgid "Unsaved Changes" msgstr "Niezapisane zmiany" @@ -8326,10 +8425,6 @@ msgstr "Niezapisane zmiany" msgid "Unsaved Presets" msgstr "Niezapisane zestawy ustawień" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:164 -msgid "Unselect gizmo / Clear selection" -msgstr "Odznacz uchwyt / wyczyść zaznaczenie" - #: src/slic3r/GUI/KBShortcutsDialog.cpp:179 msgid "Unselect gizmo or clear selection" msgstr "Odznacz uchwyt lub wyczyść zaznaczenie" @@ -8358,12 +8453,12 @@ msgstr "nieobsługiwane archiwum wielodyskowe" msgid "Unsupported OpenGL version" msgstr "Nieobsługiwana wersja OpenGL" -#: src/slic3r/GUI/GUI_ObjectList.cpp:3394 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3420 msgid "Unsupported selection" msgstr "Niewłaściwy wybór" -#: src/slic3r/GUI/GLCanvas3D.cpp:960 -#, possible-c-format +#: src/slic3r/GUI/GLCanvas3D.cpp:955 +#, c-format msgid "up to %.2f mm" msgstr "do %.2f mm" @@ -8371,15 +8466,15 @@ msgstr "do %.2f mm" msgid "Update available" msgstr "Dostępna jest aktualizacja" -#: src/slic3r/GUI/ConfigWizard.cpp:778 src/slic3r/GUI/Preferences.cpp:82 +#: src/slic3r/GUI/ConfigWizard.cpp:779 src/slic3r/GUI/Preferences.cpp:80 msgid "Update built-in Presets automatically" msgstr "Automatyczna aktualizacja wbudowanych zestawów ustawień" -#: src/slic3r/GUI/ConfigWizard.cpp:760 +#: src/slic3r/GUI/ConfigWizard.cpp:761 msgid "Updates" msgstr "Aktualizacje" -#: src/slic3r/GUI/ConfigWizard.cpp:785 +#: src/slic3r/GUI/ConfigWizard.cpp:786 msgid "Updates are never applied without user's consent and never overwrite user's customized settings." msgstr "Aktualizacje nie są stosowane bez wiedzy użytkownika i nigdy nie nadpisują zapisanych ustawień własnych." @@ -8397,18 +8492,18 @@ msgstr "Przesyłanie wyłączone w karcie FlashAir." #: src/slic3r/GUI/PrintHostDialogs.cpp:33 msgid "Upload to Printer Host with the following filename:" -msgstr "Prześlij do Serwera Druku z następującą nazwą pliku:" +msgstr "Prześlij do serwera druku z następującą nazwą pliku:" #: src/slic3r/GUI/PrintHostDialogs.cpp:230 msgid "Uploading" msgstr "Przesyłanie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:185 -#: src/slic3r/GUI/KBShortcutsDialog.cpp:187 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:204 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:206 msgid "Upper Layer" msgstr "Górna Warstwa" -#: src/slic3r/GUI/Tab.cpp:1898 +#: src/slic3r/GUI/Tab.cpp:1900 msgid "USB/Serial connection" msgstr "Połączenie USB/szeregowe" @@ -8416,11 +8511,11 @@ msgstr "Połączenie USB/szeregowe" msgid "USB/serial port for printer connection." msgstr "Port USB/szeregowy do połączenia z drukarką." -#: src/slic3r/GUI/DoubleSlider.cpp:1115 +#: src/slic3r/GUI/DoubleSlider.cpp:1147 msgid "Use another extruder" msgstr "Użyj innego ekstrudera" -#: src/slic3r/GUI/Preferences.cpp:147 +#: src/slic3r/GUI/Preferences.cpp:143 msgid "Use custom size for toolbar icons" msgstr "Użyj własnego rozmiaru ikon pasków narzędzi" @@ -8432,15 +8527,15 @@ msgstr "Użyj retrakcji z firmware" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Użyj prawego ukośnika ( / ) jako separatora katalogu w razie potrzeby." -#: src/slic3r/GUI/Preferences.cpp:129 +#: src/slic3r/GUI/Preferences.cpp:126 msgid "Use free camera" msgstr "Użyj wolnego widoku" -#: src/libslic3r/PrintConfig.cpp:2771 +#: src/libslic3r/PrintConfig.cpp:2780 msgid "Use pad" msgstr "Użyj podkładki" -#: src/slic3r/GUI/Preferences.cpp:121 +#: src/slic3r/GUI/Preferences.cpp:119 msgid "Use perspective camera" msgstr "Użyj widoku perspektywicznego" @@ -8448,7 +8543,7 @@ msgstr "Użyj widoku perspektywicznego" msgid "Use relative E distances" msgstr "Użyj względnych wartości E (ekstruzji)" -#: src/slic3r/GUI/Preferences.cpp:106 +#: src/slic3r/GUI/Preferences.cpp:104 msgid "Use Retina resolution for the 3D scene" msgstr "Użyj rozdzielczości Retina dla generowania podglądu 3D" @@ -8464,27 +8559,27 @@ msgstr "To ustawienie odpowiada za obrót materiału podporowego w płaszczyźni msgid "Use volumetric E" msgstr "Użyj wolumetrycznej wartości E" -#: src/slic3r/GUI/DoubleSlider.cpp:1139 +#: src/slic3r/GUI/DoubleSlider.cpp:1171 msgid "used" msgstr "używany" -#: src/slic3r/GUI/Plater.cpp:239 +#: src/slic3r/GUI/Plater.cpp:237 msgid "Used Filament (g)" msgstr "Użyty filament (g)" -#: src/slic3r/GUI/Plater.cpp:237 src/slic3r/GUI/Plater.cpp:1226 +#: src/slic3r/GUI/Plater.cpp:235 src/slic3r/GUI/Plater.cpp:1229 msgid "Used Filament (m)" msgstr "Użyty filament (m)" -#: src/slic3r/GUI/Plater.cpp:238 +#: src/slic3r/GUI/Plater.cpp:236 msgid "Used Filament (mm³)" msgstr "Użyty filament (mm³)" -#: src/slic3r/GUI/Plater.cpp:1188 +#: src/slic3r/GUI/Plater.cpp:1191 msgid "Used Material (ml)" msgstr "Używany materiał (ml)" -#: src/slic3r/GUI/Plater.cpp:240 +#: src/slic3r/GUI/Plater.cpp:238 msgid "Used Material (unit)" msgstr "Używany materiał (jednostka)" @@ -8492,8 +8587,8 @@ msgstr "Używany materiał (jednostka)" msgid "User" msgstr "Użytkownik" -#: src/slic3r/GUI/Preset.cpp:1118 src/slic3r/GUI/Preset.cpp:1238 -#: src/slic3r/GUI/PresetBundle.cpp:1670 +#: src/slic3r/GUI/Preset.cpp:1168 src/slic3r/GUI/Preset.cpp:1288 +#: src/slic3r/GUI/PresetBundle.cpp:1677 msgid "User presets" msgstr "Zestawy użytkownika" @@ -8509,31 +8604,31 @@ msgstr "Wartość jest taka sama jak systemowa" msgid "Value was changed and is not equal to the system value or the last saved preset" msgstr "Wartość została zmieniona i nie równa się wartości systemowej lub tej z ostatnio zapisanego zestawu ustawień" -#: src/slic3r/GUI/Tab.cpp:2198 +#: src/slic3r/GUI/Tab.cpp:2202 msgid "Values in this column are for Normal mode" msgstr "Wartości w tej kolumnie dotyczą trybu Normal" -#: src/slic3r/GUI/Tab.cpp:2204 +#: src/slic3r/GUI/Tab.cpp:2208 msgid "Values in this column are for Stealth mode" msgstr "Wartości w tej kolumnie dotyczą trybu Stealth" -#: src/slic3r/GUI/GLCanvas3D.cpp:239 src/slic3r/GUI/GLCanvas3D.cpp:4622 +#: src/slic3r/GUI/GLCanvas3D.cpp:234 src/slic3r/GUI/GLCanvas3D.cpp:4573 msgid "Variable layer height" msgstr "Zmienna wysokość warstwy" -#: src/slic3r/GUI/GLCanvas3D.cpp:1713 +#: src/slic3r/GUI/GLCanvas3D.cpp:1709 msgid "Variable layer height - Adaptive" msgstr "Zmienna wysokość warstwy - Adaptacyjna" -#: src/slic3r/GUI/GLCanvas3D.cpp:604 +#: src/slic3r/GUI/GLCanvas3D.cpp:599 msgid "Variable layer height - Manual edit" -msgstr " Zmienna wysokość warstwy - ręczna edycja" +msgstr "Zmienna wysokość warstwy - ręczna edycja" -#: src/slic3r/GUI/GLCanvas3D.cpp:1705 +#: src/slic3r/GUI/GLCanvas3D.cpp:1701 msgid "Variable layer height - Reset" msgstr "Zmienna wysokość warstwy - Reset" -#: src/slic3r/GUI/GLCanvas3D.cpp:1721 +#: src/slic3r/GUI/GLCanvas3D.cpp:1717 msgid "Variable layer height - Smooth all" msgstr "Zmienna wysokość warstwy - Wygładź wszystko" @@ -8541,7 +8636,7 @@ msgstr "Zmienna wysokość warstwy - Wygładź wszystko" msgid "variants" msgstr "warianty" -#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:973 +#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57 src/slic3r/GUI/Tab.cpp:971 msgid "vendor" msgstr "dostawca" @@ -8561,24 +8656,24 @@ msgstr "Wersja" msgid "version" msgstr "wersja" -#: src/slic3r/GUI/Tab.cpp:1055 +#: src/slic3r/GUI/Tab.cpp:1053 msgid "Vertical shells" msgstr "Powłoka pionowa" -#: src/slic3r/GUI/GUI_Preview.cpp:220 +#: src/slic3r/GUI/GUI_Preview.cpp:218 msgid "View" msgstr "Widok" -#: src/slic3r/GUI/ConfigWizard.cpp:814 +#: src/slic3r/GUI/ConfigWizard.cpp:813 msgid "View mode" msgstr "Widok" -#: src/libslic3r/SLAPrintSteps.cpp:382 src/libslic3r/SLAPrintSteps.cpp:391 -#: src/libslic3r/SLAPrintSteps.cpp:430 +#: src/libslic3r/SLAPrintSteps.cpp:413 src/libslic3r/SLAPrintSteps.cpp:422 +#: src/libslic3r/SLAPrintSteps.cpp:461 msgid "Visualizing supports" msgstr "Wizualizacja podpór" -#: src/slic3r/GUI/Plater.cpp:163 +#: src/slic3r/GUI/Plater.cpp:161 msgid "Volume" msgstr "Objętość" @@ -8586,7 +8681,7 @@ msgstr "Objętość" msgid "Volume to purge (mm³) when the filament is being" msgstr "Objętość do wyczyszczenia (mm³), gdy filament jest" -#: src/slic3r/GUI/GUI_ObjectList.cpp:1104 +#: src/slic3r/GUI/GUI_ObjectList.cpp:1106 msgid "Volumes in Object reordered" msgstr "Części modelu przeorganizowane" @@ -8594,11 +8689,11 @@ msgstr "Części modelu przeorganizowane" msgid "Volumetric" msgstr "Objętościowy" -#: src/slic3r/GUI/Tab.cpp:1593 +#: src/slic3r/GUI/Tab.cpp:1591 msgid "Volumetric flow hints not available" msgstr "Podpowiedzi dot. objętości przepływu są niedostępne" -#: src/slic3r/GUI/GUI_Preview.cpp:228 +#: src/slic3r/GUI/GUI_Preview.cpp:226 msgid "Volumetric flow rate" msgstr "Objętościowa wartość przepływu" @@ -8610,12 +8705,12 @@ msgstr "Objętościowy współczynnik przepływu (mm³/s)" msgid "Volumetric speed" msgstr "Prędkość objętościowa" -#: src/libslic3r/PrintConfig.cpp:2906 +#: src/libslic3r/PrintConfig.cpp:2915 msgid "Wall thickness" msgstr "Grubość ścianki" -#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1249 src/slic3r/GUI/GUI.cpp:246 -#: src/slic3r/GUI/Tab.cpp:3068 src/slic3r/GUI/WipeTowerDialog.cpp:45 +#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1270 src/slic3r/GUI/GUI.cpp:251 +#: src/slic3r/GUI/Tab.cpp:3084 src/slic3r/GUI/WipeTowerDialog.cpp:45 #: src/slic3r/GUI/WipeTowerDialog.cpp:366 msgid "Warning" msgstr "Ostrzeżenie" @@ -8625,16 +8720,16 @@ msgid "Welcome" msgstr "Witaj" #: src/slic3r/GUI/ConfigWizard.cpp:427 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Assistant" msgstr "Witamy w Asystencie Konfiguracji %s" #: src/slic3r/GUI/ConfigWizard.cpp:429 -#, possible-c-format +#, c-format msgid "Welcome to the %s Configuration Wizard" msgstr "Witamy w Asystencie Konfiguracji %s" -#: src/slic3r/GUI/Preferences.cpp:99 +#: src/slic3r/GUI/Preferences.cpp:97 msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer" msgstr "Zaznaczenie tej opcji spowoduje wyświetlanie wszystkich ustawień druku i filamentów w edytorze zestawów ustawień, nawet jeśli są oznaczone jak niekompatybilne z wybraną drukarką" @@ -8642,11 +8737,11 @@ msgstr "Zaznaczenie tej opcji spowoduje wyświetlanie wszystkich ustawień druku msgid "when printing" msgstr "podczas druku" -#: src/libslic3r/PrintConfig.cpp:243 +#: src/libslic3r/PrintConfig.cpp:253 msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)." msgstr "To ustawienie sprawi, że podczas druku modeli z wielu materiałów, PrusaSlicer przytnie nachodzące na siebie części (druga część zostanie przycięta przez pierwszą, trzecia przez pierwszą i drugą itd.)" -#: src/libslic3r/PrintConfig.cpp:295 +#: src/libslic3r/PrintConfig.cpp:305 msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware." msgstr "Włączenie tej opcji sprawi, że przy druku kilku modeli drukarka wydrukuje jeden model w całości zanim przejdzie do następnego (zaczynając od najniższej warstwy). Przydaje się aby uniknąć ryzyka niepowodzenia wydruku kilku części. Slic3r powinien ostrzec przed możliwością kolizji z ekstruderem, ale zachowaj ostrożność." @@ -8678,23 +8773,23 @@ msgstr "Jeśli retrakcja jest korygowana po zmianie narzędzia, ekstruder przepc msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." msgstr "Jeśli retrakcja jest korygowana po ruchu jałowym, ekstruder przepchnie taką dodatkową ilość filamentu. Ta opcja jest rzadko potrzebna." -#: src/slic3r/GUI/Tab.cpp:3247 +#: src/slic3r/GUI/Tab.cpp:3263 msgid "WHITE BULLET" msgstr "BIAŁA KROPKA" -#: src/slic3r/GUI/Tab.cpp:3269 +#: src/slic3r/GUI/Tab.cpp:3285 msgid "WHITE BULLET icon indicates a non system (or non default) preset." msgstr "BIAŁA KROPKA oznacza niesystemowy (lub inny niż domyślny) zestaw ustawień." -#: src/slic3r/GUI/Tab.cpp:3272 +#: src/slic3r/GUI/Tab.cpp:3288 msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group." msgstr "BIAŁA KROPKA oznacza, że ustawienia są takie same jak w ostatnio zapisanym zestawie ustawień dla obecnej grupy opcji." -#: src/slic3r/GUI/Tab.cpp:3287 +#: src/slic3r/GUI/Tab.cpp:3303 msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset." msgstr "BIAŁA KROPKA oznacza, że wartość jest taka sama jak w ostatnio zapisanym zestawie ustawień." -#: src/slic3r/GUI/GUI_Preview.cpp:225 src/libslic3r/PrintConfig.cpp:2238 +#: src/slic3r/GUI/GUI_Preview.cpp:223 src/libslic3r/PrintConfig.cpp:2238 msgid "Width" msgstr "Szerokość" @@ -8702,7 +8797,7 @@ msgstr "Szerokość" msgid "Width (mm)" msgstr "Szerokość (mm)" -#: src/libslic3r/PrintConfig.cpp:2631 +#: src/libslic3r/PrintConfig.cpp:2640 msgid "Width from the back sphere center to the front sphere center" msgstr "Odstęp pomiędzy środkami przedniej i tylnej części łącznika podpory" @@ -8710,7 +8805,7 @@ msgstr "Odstęp pomiędzy środkami przedniej i tylnej części łącznika podpo msgid "Width of a wipe tower" msgstr "Szerokość wieży czyszczącej" -#: src/libslic3r/PrintConfig.cpp:2882 +#: src/libslic3r/PrintConfig.cpp:2891 msgid "Width of the connector sticks which connect the object and the generated pad." msgstr "Średnica słupków łączących model z wygenerowaną podkładką." @@ -8738,18 +8833,18 @@ msgstr "Czyszczenie na tym modelu" msgid "Wipe into this object's infill" msgstr "Czyszczenie na wypełnieniu modelu" -#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:99 -#: src/slic3r/GUI/GUI_ObjectList.cpp:617 src/libslic3r/PrintConfig.cpp:2252 +#: src/slic3r/GUI/GUI_ObjectList.cpp:39 src/slic3r/GUI/GUI_ObjectList.cpp:101 +#: src/slic3r/GUI/GUI_ObjectList.cpp:619 src/libslic3r/PrintConfig.cpp:2252 #: src/libslic3r/PrintConfig.cpp:2260 msgid "Wipe options" msgstr "Opcje czyszczenia" -#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/Tab.cpp:1193 +#: src/slic3r/GUI/GUI_Preview.cpp:248 src/slic3r/GUI/Tab.cpp:1191 #: src/libslic3r/ExtrusionEntity.cpp:321 msgid "Wipe tower" msgstr "Wieża czyszcząca" -#: src/slic3r/GUI/Plater.cpp:1228 src/slic3r/GUI/Plater.cpp:1243 +#: src/slic3r/GUI/Plater.cpp:1231 src/slic3r/GUI/Plater.cpp:1245 msgid "wipe tower" msgstr "wieża czyszcząca" @@ -8762,7 +8857,7 @@ msgstr "Wieża czyszcząca" msgid "Wipe tower - Purging volume adjustment" msgstr "Wieża czyszcząca - dostosowanie objętości czyszczenia" -#: src/slic3r/GUI/Tab.cpp:1490 +#: src/slic3r/GUI/Tab.cpp:1488 msgid "Wipe tower parameters" msgstr "Parametry wieży czyszczącej" @@ -8796,14 +8891,24 @@ msgid "World coordinates" msgstr "Globalny układ współrzędnych" #: src/slic3r/GUI/UpdateDialogs.cpp:92 -msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:" -msgstr "Czy chcesz kontynuować instalację?\n\nWeź pod uwagę, że najpierw zostanie stworzony zrzut konfiguracji. Może być przywrócony w każdej chwili, gdyby okazało się, że nowa wersja powoduje problemy.\n\nZaktualizowane paczki konfiguracyjne:" +msgid "" +"Would you like to install it?\n" +"\n" +"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n" +"\n" +"Updated configuration bundles:" +msgstr "" +"Czy chcesz kontynuować instalację?\n" +"\n" +"Weź pod uwagę, że najpierw zostanie stworzony zrzut konfiguracji. Może być przywrócony w każdej chwili, gdyby okazało się, że nowa wersja powoduje problemy.\n" +"\n" +"Zaktualizowane paczki konfiguracyjne:" #: src/libslic3r/Zipper.cpp:92 msgid "write calledback failed" msgstr "błąd write calledback" -#: src/libslic3r/PrintConfig.cpp:3367 +#: src/libslic3r/PrintConfig.cpp:3382 msgid "Write information about the model to the console." msgstr "Zapis informacji o modelu do konsoli." @@ -8831,7 +8936,7 @@ msgstr "Korekta wymiarów XY" msgid "Y coordinate of the left front corner of a wipe tower" msgstr "Koordynata wieży czyszczącej w osi Y od przedniego lewego narożnika" -#: src/slic3r/GUI/Plater.cpp:1167 +#: src/slic3r/GUI/Plater.cpp:1170 msgid "Yes" msgstr "Tak" @@ -8847,11 +8952,11 @@ msgstr "Tutaj możesz umieścić notatki dotyczące filamentu." msgid "You can put your notes regarding the printer here." msgstr "Tutaj możesz umieścić notatki dotyczące drukarki." -#: src/libslic3r/PrintConfig.cpp:2570 +#: src/libslic3r/PrintConfig.cpp:2579 msgid "You can put your notes regarding the SLA print material here." msgstr "Tutaj możesz umieścić notatki dotyczące materiału druku SLA." -#: src/libslic3r/PrintConfig.cpp:350 +#: src/libslic3r/PrintConfig.cpp:360 msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse." msgstr "Wpisując tutaj wartość dodatnią możesz wyłączyć wentylator podczas druku pierwszych warstw, aby nie pogarszać przyczepności do stołu." @@ -8859,18 +8964,18 @@ msgstr "Wpisując tutaj wartość dodatnią możesz wyłączyć wentylator podcz msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]." msgstr "Możesz użyć wszystkich opcji konfiguracjnych jako zmiennych w tym szablonie, takich jak np: [layer_height] - wysokość warstwy, [fill_density] - gęstość wypełnienia, itp. Możesz również użyć [timestamp] - czas, [year] - rok, [month] - miesiąc, [day] - dzień, [hour] - godzina, [minute] - minuta, [second] - sekunda, [version] - wersja, [input_filename] - pełna nazwa pliku wejściowego, [input_filename_base] - nazwa pliku wejściowego bez rozszerzenia." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3520 +#: src/slic3r/GUI/GUI_ObjectList.cpp:3546 msgid "You can't change a type of the last solid part of the object." msgstr "Nie możesz zmienić typu ostatniej zwartej części modelu." -#: src/slic3r/GUI/Plater.cpp:2374 -#, possible-c-format +#: src/slic3r/GUI/Plater.cpp:2390 +#, c-format msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part" msgstr "Nie możesz dodać obiektu/ów z %s, ponieważ jeden lub więcej modeli składa się z wielu części" -#: src/slic3r/GUI/Plater.cpp:2295 +#: src/slic3r/GUI/Plater.cpp:2311 msgid "You cannot load SLA project with a multi-part object on the bed" -msgstr "Nie możesz wczytać projektu SLA mając na stole wieloczęściowy model." +msgstr "Nie możesz wczytać projektu SLA mając na stole wieloczęściowy model" #: src/slic3r/GUI/GUI_ObjectManipulation.cpp:578 msgid "You cannot use non-uniform scaling mode for multiple objects/parts selection" @@ -8888,85 +8993,97 @@ msgstr "Musisz wybrać co najmniej jeden materiał dla zaznaczonych drukarek" msgid "You may need to update your graphics card driver." msgstr "Może być wymagana aktualizacja sterowników karty graficznej." -#: src/slic3r/GUI/Preferences.cpp:176 -#, possible-c-format +#: src/slic3r/GUI/UpdateDialogs.cpp:148 +msgid "You must install a configuration update." +msgstr "Do instalacji jest wymagana aktualizacja konfiguracji." + +#: src/slic3r/GUI/Preferences.cpp:172 +#, c-format msgid "You need to restart %s to make the changes effective." msgstr "Wymagany jest restart %s, aby wprowadzić zmiany." -#: src/slic3r/GUI/GUI_ObjectList.cpp:3395 -#, possible-c-format +#: src/slic3r/GUI/GUI_ObjectList.cpp:3421 +#, c-format msgid "You started your selection with %s Item." msgstr "Wybór rozpoczęty przez %s." -#: src/slic3r/GUI/DoubleSlider.cpp:1875 +#: src/slic3r/GUI/DoubleSlider.cpp:1902 msgid "Your current changes will delete all saved color changes." msgstr "Wprowadzane zmiany usuną wszystkie zmiany kolorów." -#: src/slic3r/GUI/DoubleSlider.cpp:1896 +#: src/slic3r/GUI/DoubleSlider.cpp:1923 msgid "Your current changes will delete all saved extruder (tool) changes." msgstr "Obecne zmiany spowodują usunięcie wszystkich zapisanych zmian ekstruderów (narzędzi)." -#: src/slic3r/GUI/MainFrame.cpp:913 +#: src/slic3r/GUI/MainFrame.cpp:911 msgid "Your file was repaired." msgstr "Twój plik został naprawiony." -#: src/slic3r/GUI/Plater.cpp:2512 +#: src/slic3r/GUI/Plater.cpp:2528 msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed." msgstr "Importowany model przekracza wymiary przestrzeni roboczej i został przeskalowany do odpowiednich rozmiarów." #: src/libslic3r/PrintConfig.cpp:2285 msgid "Z offset" -msgstr "Z Offset" +msgstr "Z offset" #: src/slic3r/GUI/ConfigManipulation.cpp:60 -msgid "Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01." -msgstr "Zerowa wysokość pierwszej warstwy jest nieprawidłowa.\n\nWysokość pierwszej warstwy zostanie ustawiona na 0,01." +msgid "" +"Zero first layer height is not valid.\n" +"\n" +"The first layer height will be reset to 0.01." +msgstr "" +"Zerowa wysokość pierwszej warstwy jest nieprawidłowa.\n" +"\n" +"Wysokość pierwszej warstwy zostanie ustawiona na 0,01." #: src/slic3r/GUI/ConfigManipulation.cpp:48 -msgid "Zero layer height is not valid.\n\nThe layer height will be reset to 0.01." -msgstr "Zerowa wysokość warstwy jest nieprawidłowa.\n\nWysokość warstwy zostanie ustawiona na 0,01." +msgid "" +"Zero layer height is not valid.\n" +"\n" +"The layer height will be reset to 0.01." +msgstr "" +"Zerowa wysokość warstwy jest nieprawidłowa.\n" +"\n" +"Wysokość warstwy zostanie ustawiona na 0,01." -#: src/libslic3r/PrintConfig.cpp:2658 +#: src/libslic3r/PrintConfig.cpp:2667 msgid "Zig-Zag" msgstr "Zig-Zag" -#: src/slic3r/GUI/Mouse3DController.cpp:326 -#: src/slic3r/GUI/Mouse3DController.cpp:337 +#: src/slic3r/GUI/Mouse3DController.cpp:308 +#: src/slic3r/GUI/Mouse3DController.cpp:317 msgid "Zoom" msgstr "Zoom" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:158 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:183 msgid "Zoom in" msgstr "Przybliżenie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:159 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:184 msgid "Zoom out" msgstr "Oddalenie" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:156 -msgid "Zoom to all objects in scene, if none selected" -msgstr "Ustaw zbliżenie na wszystkie modele, jeśli żaden nie został wybrany" - -#: src/slic3r/GUI/KBShortcutsDialog.cpp:155 +#: src/slic3r/GUI/KBShortcutsDialog.cpp:181 msgid "Zoom to Bed" msgstr "Zbliżenie na Stół" #: src/slic3r/GUI/KBShortcutsDialog.cpp:182 -msgid "Zoom to selected object\nor all objects in scene, if none selected" -msgstr "Ustaw zbliżenie na wybrany model\nlub wszystkie na stole, jeśli żaden nie został wybrany" +msgid "" +"Zoom to selected object\n" +"or all objects in scene, if none selected" +msgstr "" +"Ustaw zbliżenie na wybrany model\n" +"lub wszystkie na stole, jeśli żaden nie został wybrany" -#: src/slic3r/GUI/KBShortcutsDialog.cpp:157 -msgid "Zoom to selected object" -msgstr "Przybliż na wybrany model" - -#: src/libslic3r/PrintConfig.cpp:197 src/libslic3r/PrintConfig.cpp:780 +#: src/libslic3r/PrintConfig.cpp:207 src/libslic3r/PrintConfig.cpp:780 #: src/libslic3r/PrintConfig.cpp:1640 src/libslic3r/PrintConfig.cpp:1650 #: src/libslic3r/PrintConfig.cpp:1894 src/libslic3r/PrintConfig.cpp:2049 -#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2718 -#: src/libslic3r/PrintConfig.cpp:2839 +#: src/libslic3r/PrintConfig.cpp:2247 src/libslic3r/PrintConfig.cpp:2727 +#: src/libslic3r/PrintConfig.cpp:2848 msgid "°" msgstr "°" -#: src/slic3r/GUI/ConfigWizard.cpp:1039 src/slic3r/GUI/ConfigWizard.cpp:1053 +#: src/slic3r/GUI/ConfigWizard.cpp:1038 src/slic3r/GUI/ConfigWizard.cpp:1052 msgid "°C" msgstr "°C" From 7c556742205b99000421b89803fd68d8644ff872 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Thu, 27 Feb 2020 17:01:50 +0100 Subject: [PATCH 78/91] Disabled implicit conversion of wxString to std::string or const char* and vice versa. Fixed one last implicit wxString conversion. --- CMakeLists.txt | 3 +++ src/slic3r/GUI/GLCanvas3D.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4e686645f..9c69052c85 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -227,6 +227,9 @@ endif(WIN32) add_definitions(-DwxUSE_UNICODE -D_UNICODE -DUNICODE -DWXINTL_NO_GETTEXT_MACRO) +# Disable unsafe implicit wxString to const char* / std::string and vice versa. This implicit conversion breaks the UTF-8 encoding quite often. +add_definitions(-DwxNO_UNSAFE_WXSTRING_CONV) + if (SLIC3R_PROFILE) message("PrusaSlicer will be built with a Shiny invasive profiler") add_definitions(-DSLIC3R_PROFILE) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index adc1e2e447..1ccebbabb9 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -734,7 +734,7 @@ static void msw_disable_cleartype(wxFont &font) ++ startpos_weight; size_t endpos_weight = font_desc.find(sep, startpos_weight); // Parse the weight field. - unsigned int weight = atoi(font_desc(startpos_weight, endpos_weight - startpos_weight)); + unsigned int weight = wxAtoi(font_desc(startpos_weight, endpos_weight - startpos_weight)); size_t startpos = endpos_weight; for (size_t i = 0; i < 6; ++ i) startpos = font_desc.find(sep, startpos + 1); From 03f17a13e756038603d471c80d22d45012f1059a Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 17:53:51 +0100 Subject: [PATCH 79/91] Bugfix: SLA pad and supports were sometimes shown on instances that should have been hidden The showing/hiding block cannot depend on whether the mesh was recently updated. It would then not hide the supports and pad, which are calculated later than the hollowed mesh. --- src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 15 +++++---------- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 17 ++++++----------- 2 files changed, 11 insertions(+), 21 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp index 5f3430a784..f33a7bd8b3 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp @@ -75,17 +75,12 @@ void GLGizmoHollow::set_sla_support_data(ModelObject*, const Selection&) if (m_c->has_drilled_mesh()) m_holes_in_drilled_mesh = m_c->m_model_object->sla_drain_holes; } + } - if (m_state == On) { - m_parent.toggle_model_objects_visibility(false); - m_parent.toggle_model_objects_visibility(true, m_c->m_model_object, m_c->m_active_instance); - m_parent.toggle_sla_auxiliaries_visibility(m_show_supports, m_c->m_model_object, m_c->m_active_instance); - } - // following was removed so that it does not show the object when it should - // be hidden because the supports gizmo is active. on_set_state takes care - // of showing the object. - //else - // m_parent.toggle_model_objects_visibility(true, nullptr, -1); + if (m_state == On) { + m_parent.toggle_model_objects_visibility(false); + m_parent.toggle_model_objects_visibility(true, m_c->m_model_object, m_c->m_active_instance); + m_parent.toggle_sla_auxiliaries_visibility(m_show_supports, m_c->m_model_object, m_c->m_active_instance); } } diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index 368dac0377..0e98f73642 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -68,22 +68,17 @@ void GLGizmoSlaSupports::set_sla_support_data(ModelObject* model_object, const S update_clipping_plane(m_c->m_clipping_plane_was_moved); - if (m_state == On) { - m_parent.toggle_model_objects_visibility(false); - m_parent.toggle_model_objects_visibility(/*! m_c->m_cavity_mesh*/ true, m_c->m_model_object, m_c->m_active_instance); - m_parent.toggle_sla_auxiliaries_visibility(! m_editing_mode, m_c->m_model_object, m_c->m_active_instance); - } - // following was removed so that it does not show the object when it should - // be hidden because the supports gizmo is active. on_set_state takes care - // of showing the object. - //else - // m_parent.toggle_model_objects_visibility(true, nullptr, -1); - disable_editing_mode(); if (m_c->m_model_object) reload_cache(); } + if (m_state == On) { + m_parent.toggle_model_objects_visibility(false); + m_parent.toggle_model_objects_visibility(true, m_c->m_model_object, m_c->m_active_instance); + m_parent.toggle_sla_auxiliaries_visibility(! m_editing_mode, m_c->m_model_object, m_c->m_active_instance); + } + // If we triggered autogeneration before, check backend and fetch results if they are there if (m_c->m_model_object) { if (m_c->m_model_object->sla_points_status == sla::PointsStatus::Generating) From dff9af20a4ee035a7dc906756b5dc15acf51625a Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Fri, 28 Feb 2020 11:19:46 +0100 Subject: [PATCH 80/91] Follow-up of 47604b6326d40bfe66c46ed471adb43d1d153e66 -> Fixed layout at startup --- src/slic3r/GUI/MainFrame.cpp | 3 +++ src/slic3r/GUI/Plater.cpp | 1 + src/slic3r/GUI/Plater.hpp | 1 + 3 files changed, 5 insertions(+) diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 966fb7c8e2..32d68b3ed3 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -143,6 +143,9 @@ DPIFrame(NULL, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_S wxGetApp().persist_window_geometry(this, true); update_ui_from_settings(); // FIXME (?) + + if (m_plater != nullptr) + m_plater->show_action_buttons(true); } void MainFrame::update_title() diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index cd6a6919a0..1e13bf3afd 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -5591,6 +5591,7 @@ void Plater::suppress_background_process(const bool stop_background_process) void Plater::fix_through_netfabb(const int obj_idx, const int vol_idx/* = -1*/) { p->fix_through_netfabb(obj_idx, vol_idx); } void Plater::update_object_menu() { p->update_object_menu(); } +void Plater::show_action_buttons(const bool is_ready_to_slice) const { p->show_action_buttons(is_ready_to_slice); } void Plater::copy_selection_to_clipboard() { diff --git a/src/slic3r/GUI/Plater.hpp b/src/slic3r/GUI/Plater.hpp index 2e4f2ca85e..249e0a043c 100644 --- a/src/slic3r/GUI/Plater.hpp +++ b/src/slic3r/GUI/Plater.hpp @@ -239,6 +239,7 @@ public: std::vector get_colors_for_color_print() const; void update_object_menu(); + void show_action_buttons(const bool is_ready_to_slice) const; wxString get_project_filename(const wxString& extension = wxEmptyString) const; void set_project_filename(const wxString& filename); From b6068b6278441f084ccacb37e047f9cd9844cc2a Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 28 Feb 2020 13:29:05 +0100 Subject: [PATCH 81/91] Camera refactored to use quaternions primarily for processing rotations due to numerical reasons (no need for normalization and orthogonalization of the rotation matrix). --- src/slic3r/GUI/Camera.cpp | 76 ++++++++++++--------------------------- src/slic3r/GUI/Camera.hpp | 7 ++-- 2 files changed, 26 insertions(+), 57 deletions(-) diff --git a/src/slic3r/GUI/Camera.cpp b/src/slic3r/GUI/Camera.cpp index d17ba7cd7c..df3d219b25 100644 --- a/src/slic3r/GUI/Camera.cpp +++ b/src/slic3r/GUI/Camera.cpp @@ -43,6 +43,7 @@ Camera::Camera() , m_distance(DefaultDistance) , m_gui_scale(1.0) , m_view_matrix(Transform3d::Identity()) + , m_view_rotation(1., 0., 0., 0.) , m_projection_matrix(Transform3d::Identity()) { set_default_orientation(); @@ -85,7 +86,13 @@ void Camera::select_next_type() void Camera::set_target(const Vec3d& target) { - translate_world(target - m_target); + Vec3d new_target = validate_target(target); + Vec3d new_displacement = new_target - m_target; + if (!new_displacement.isApprox(Vec3d::Zero())) + { + m_target = new_target; + m_view_matrix.translate(-new_displacement); + } } void Camera::update_zoom(double delta_zoom) @@ -299,17 +306,6 @@ void Camera::debug_render() const } #endif // ENABLE_CAMERA_STATISTICS -void Camera::translate_world(const Vec3d& displacement) -{ - Vec3d new_target = validate_target(m_target + displacement); - Vec3d new_displacement = new_target - m_target; - if (!new_displacement.isApprox(Vec3d::Zero())) - { - m_target += new_displacement; - m_view_matrix.translate(-new_displacement); - } -} - void Camera::rotate_on_sphere(double delta_azimut_rad, double delta_zenit_rad, bool apply_limits) { m_zenit += Geometry::rad2deg(delta_zenit_rad); @@ -324,49 +320,20 @@ void Camera::rotate_on_sphere(double delta_azimut_rad, double delta_zenit_rad, b } } - // FIXME -> The following is a HACK !!! - // When the value of the zenit rotation is large enough, the following call to rotate() shows - // numerical instability introducing some scaling into m_view_matrix (verified by checking - // that the camera space unit vectors are no more unit). - // See also https://dev.prusa3d.com/browse/SPE-1082 - // We split the zenit rotation into a set of smaller rotations which are then applied. - static const double MAX_ALLOWED = Geometry::deg2rad(0.1); - unsigned int zenit_steps_count = 1 + (unsigned int)(std::abs(delta_zenit_rad) / MAX_ALLOWED); - double zenit_step = delta_zenit_rad / (double)zenit_steps_count; - - Vec3d target = m_target; - translate_world(-target); - - if (zenit_step != 0.0) - { - Vec3d right = get_dir_right(); - for (unsigned int i = 0; i < zenit_steps_count; ++i) - { - m_view_matrix.rotate(Eigen::AngleAxisd(zenit_step, right)); - } - } - - if (delta_azimut_rad != 0.0) - m_view_matrix.rotate(Eigen::AngleAxisd(delta_azimut_rad, Vec3d::UnitZ())); - - translate_world(target); + Vec3d translation = m_view_matrix.translation() + m_view_rotation * m_target; + auto rot_z = Eigen::AngleAxisd(delta_azimut_rad, Vec3d::UnitZ()); + m_view_rotation *= rot_z * Eigen::AngleAxisd(delta_zenit_rad, rot_z.inverse() * get_dir_right()); + m_view_matrix.fromPositionOrientationScale(m_view_rotation * (- m_target) + translation, m_view_rotation, Vec3d(1., 1., 1.)); } void Camera::rotate_local_around_target(const Vec3d& rotation_rad) { - rotate_local_around_pivot(rotation_rad, m_target); -} - -void Camera::rotate_local_around_pivot(const Vec3d& rotation_rad, const Vec3d& pivot) -{ - // we use a copy of the pivot because a reference to the current m_target may be passed in (see i.e. rotate_local_around_target()) - // and m_target is modified by the translate_world() calls - Vec3d center = pivot; - translate_world(-center); - m_view_matrix.rotate(Eigen::AngleAxisd(rotation_rad(0), get_dir_right())); - m_view_matrix.rotate(Eigen::AngleAxisd(rotation_rad(1), get_dir_up())); - m_view_matrix.rotate(Eigen::AngleAxisd(rotation_rad(2), get_dir_forward())); - translate_world(center); + Vec3d translation = m_view_matrix.translation() + m_view_rotation * m_target; + auto rot_z = Eigen::AngleAxisd(rotation_rad(2), get_dir_forward()); + auto rot_y = Eigen::AngleAxisd(rotation_rad(1), rot_z.inverse() * get_dir_up()); + auto rot_x = Eigen::AngleAxisd(rotation_rad(0), rot_y.inverse() * get_dir_right()); + m_view_rotation *= rot_z * rot_y * rot_x; + m_view_matrix.fromPositionOrientationScale(m_view_rotation * (-m_target) + translation, m_view_rotation, Vec3d(1., 1., 1.)); update_zenit(); } @@ -588,6 +555,9 @@ void Camera::look_at(const Vec3d& position, const Vec3d& target, const Vec3d& up m_view_matrix(3, 2) = 0.0; m_view_matrix(3, 3) = 1.0; + // Initialize the rotation quaternion from the rotation submatrix of of m_view_matrix. + m_view_rotation = Eigen::Quaterniond(m_view_matrix.matrix().template block<3, 3>(0, 0)); + update_zenit(); } @@ -598,8 +568,8 @@ void Camera::set_default_orientation() double phi_rad = Geometry::deg2rad(45.0); double sin_theta = ::sin(theta_rad); Vec3d camera_pos = m_target + m_distance * Vec3d(sin_theta * ::sin(phi_rad), sin_theta * ::cos(phi_rad), ::cos(theta_rad)); - m_view_matrix = Transform3d::Identity(); - m_view_matrix.rotate(Eigen::AngleAxisd(theta_rad, Vec3d::UnitX())).rotate(Eigen::AngleAxisd(phi_rad, Vec3d::UnitZ())).translate(-camera_pos); + m_view_rotation = Eigen::AngleAxisd(theta_rad, Vec3d::UnitX()) * Eigen::AngleAxisd(phi_rad, Vec3d::UnitZ()); + m_view_matrix.fromPositionOrientationScale(m_view_rotation * (- camera_pos), m_view_rotation, Vec3d(1., 1., 1.)); } Vec3d Camera::validate_target(const Vec3d& target) const diff --git a/src/slic3r/GUI/Camera.hpp b/src/slic3r/GUI/Camera.hpp index 0ddaa8ff38..f592dbcd22 100644 --- a/src/slic3r/GUI/Camera.hpp +++ b/src/slic3r/GUI/Camera.hpp @@ -43,6 +43,8 @@ private: mutable std::array m_viewport; mutable Transform3d m_view_matrix; + // We are calculating the rotation part of the m_view_matrix from m_view_rotation. + mutable Eigen::Quaterniond m_view_rotation; mutable Transform3d m_projection_matrix; mutable std::pair m_frustrum_zs; @@ -107,7 +109,7 @@ public: #endif // ENABLE_CAMERA_STATISTICS // translate the camera in world space - void translate_world(const Vec3d& displacement); + void translate_world(const Vec3d& displacement) { this->set_target(m_target + displacement); } // rotate the camera on a sphere having center == m_target and radius == m_distance // using the given variations of spherical coordinates @@ -117,9 +119,6 @@ public: // rotate the camera around three axes parallel to the camera local axes and passing through m_target void rotate_local_around_target(const Vec3d& rotation_rad); - // rotate the camera around three axes parallel to the camera local axes and passing through the given pivot point - void rotate_local_around_pivot(const Vec3d& rotation_rad, const Vec3d& pivot); - // returns true if the camera z axis (forward) is pointing in the negative direction of the world z axis bool is_looking_downward() const { return get_dir_forward().dot(Vec3d::UnitZ()) < 0.0; } From 0a0219961b8b96fadbcf780b8756347573ff2c9f Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 28 Feb 2020 14:59:59 +0100 Subject: [PATCH 82/91] Free rotating camera reworked to rotate around the free rotation axis in a single step. --- src/slic3r/GUI/Camera.cpp | 16 +++++++++------- src/slic3r/GUI/GLCanvas3D.cpp | 9 ++++----- src/slic3r/GUI/Mouse3DController.cpp | 4 ++-- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/src/slic3r/GUI/Camera.cpp b/src/slic3r/GUI/Camera.cpp index df3d219b25..3f0e6b891e 100644 --- a/src/slic3r/GUI/Camera.cpp +++ b/src/slic3r/GUI/Camera.cpp @@ -326,15 +326,17 @@ void Camera::rotate_on_sphere(double delta_azimut_rad, double delta_zenit_rad, b m_view_matrix.fromPositionOrientationScale(m_view_rotation * (- m_target) + translation, m_view_rotation, Vec3d(1., 1., 1.)); } +// Virtual trackball, rotate around an axis, where the eucledian norm of the axis gives the rotation angle in radians. void Camera::rotate_local_around_target(const Vec3d& rotation_rad) { - Vec3d translation = m_view_matrix.translation() + m_view_rotation * m_target; - auto rot_z = Eigen::AngleAxisd(rotation_rad(2), get_dir_forward()); - auto rot_y = Eigen::AngleAxisd(rotation_rad(1), rot_z.inverse() * get_dir_up()); - auto rot_x = Eigen::AngleAxisd(rotation_rad(0), rot_y.inverse() * get_dir_right()); - m_view_rotation *= rot_z * rot_y * rot_x; - m_view_matrix.fromPositionOrientationScale(m_view_rotation * (-m_target) + translation, m_view_rotation, Vec3d(1., 1., 1.)); - update_zenit(); + double angle = rotation_rad.norm(); + if (std::abs(angle) > EPSILON) { + Vec3d translation = m_view_matrix.translation() + m_view_rotation * m_target; + Vec3d axis = m_view_rotation.conjugate() * rotation_rad.normalized(); + m_view_rotation *= Eigen::Quaterniond(Eigen::AngleAxisd(angle, axis)); + m_view_matrix.fromPositionOrientationScale(m_view_rotation * (-m_target) + translation, m_view_rotation, Vec3d(1., 1., 1.)); + update_zenit(); + } } double Camera::min_zoom() const diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 1ccebbabb9..a6eee73e86 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -3464,13 +3464,12 @@ void GLCanvas3D::on_mouse(wxMouseEvent& evt) // if dragging over blank area with left button, rotate if (m_hover_volume_idxs.empty() && m_mouse.is_start_position_3D_defined()) { - const Vec3d& orig = m_mouse.drag.start_position_3D; - double x = Geometry::deg2rad(pos(0) - orig(0)) * (double)TRACKBALLSIZE; - double y = Geometry::deg2rad(pos(1) - orig(1)) * (double)TRACKBALLSIZE; + const Vec3d rot = (Vec3d(pos.x(), pos.y(), 0.) - m_mouse.drag.start_position_3D) * (PI * TRACKBALLSIZE / 180.); if (wxGetApp().plater()->get_mouse3d_controller().is_running() || (wxGetApp().app_config->get("use_free_camera") == "1")) - m_camera.rotate_local_around_target(Vec3d(y, x, 0.0)); + // Virtual track ball (similar to the 3DConnexion mouse). + m_camera.rotate_local_around_target(Vec3d(rot.y(), rot.x(), 0.)); else - m_camera.rotate_on_sphere(x, y, wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() != ptSLA); + m_camera.rotate_on_sphere(rot.x(), rot.y(), wxGetApp().preset_bundle->printers.get_edited_preset().printer_technology() != ptSLA); m_dirty = true; } diff --git a/src/slic3r/GUI/Mouse3DController.cpp b/src/slic3r/GUI/Mouse3DController.cpp index 2be017e540..c925574170 100644 --- a/src/slic3r/GUI/Mouse3DController.cpp +++ b/src/slic3r/GUI/Mouse3DController.cpp @@ -162,8 +162,8 @@ bool Mouse3DController::State::apply(Camera& camera) if (has_rotation()) { - Vec3d rotation = (m_rotation_params.scale * m_rotation.queue.front()).cast(); - camera.rotate_local_around_target(Vec3d(Geometry::deg2rad(rotation(0)), Geometry::deg2rad(-rotation(2)), Geometry::deg2rad(-rotation(1)))); + Vec3d rot = (m_rotation_params.scale * m_rotation.queue.front()).cast() * (PI / 180.); + camera.rotate_local_around_target(Vec3d(rot.x(), - rot.z(), rot.y())); m_rotation.queue.pop(); ret = true; } From 7759eccf5624280ceeb2082ea43db964e446fab3 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 27 Feb 2020 14:38:39 +0100 Subject: [PATCH 83/91] Fix of dark mode detection on macOS 10.12 and 10.13 --- src/slic3r/GUI/GUI_App.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 2696844549..f45ef255a9 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -332,7 +332,11 @@ unsigned GUI_App::get_colour_approx_luma(const wxColour &colour) bool GUI_App::dark_mode() { #if __APPLE__ - return mac_dark_mode(); + // The check for dark mode returns false positive on 10.12 and 10.13, + // which allowed setting dark menu bar and dock area, which is + // is detected as dark mode. We must run on at least 10.14 where the + // proper dark mode was first introduced. + return wxPlatformInfo::Get().CheckOSVersion(10, 14) && mac_dark_mode(); #else const unsigned luma = get_colour_approx_luma(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); return luma < 128; From 192bdffb3f513018c0ebfe74086d421f71e76b0c Mon Sep 17 00:00:00 2001 From: bubnikv Date: Sat, 29 Feb 2020 10:53:18 +0100 Subject: [PATCH 84/91] Updated printer profiles, bumped up version to 2.2.0-rc. --- resources/profiles/Creality.idx | 1 + resources/profiles/Creality.ini | 2 +- resources/profiles/PrusaResearch.idx | 1 + resources/profiles/PrusaResearch.ini | 226 ++++++++++++++++++--------- src/slic3r/GUI/GUI_App.cpp | 4 +- version.inc | 2 +- 6 files changed, 157 insertions(+), 79 deletions(-) diff --git a/resources/profiles/Creality.idx b/resources/profiles/Creality.idx index 1647e1c31b..6db20df5be 100644 --- a/resources/profiles/Creality.idx +++ b/resources/profiles/Creality.idx @@ -1,4 +1,5 @@ min_slic3r_version = 2.2.0-alpha3 +0.0.2 Updated for PrusaSlicer 2.2.0-rc 0.0.2-beta Update for PrusaSlicer 2.2.0-beta 0.0.2-alpha1 Extended list of default filaments to be installed 0.0.2-alpha0 Print bed textures are now configurable from the Preset Bundle. Requires PrusaSlicer 2.2.0-alpha3 and newer. diff --git a/resources/profiles/Creality.ini b/resources/profiles/Creality.ini index 054347efb8..93006cc567 100644 --- a/resources/profiles/Creality.ini +++ b/resources/profiles/Creality.ini @@ -5,7 +5,7 @@ name = Creality # Configuration version of this file. Config file will only be installed, if the config_version differs. # This means, the server may force the PrusaSlicer configuration to be downgraded. -config_version = 0.0.2-beta +config_version = 0.0.2 # Where to get the updates from? config_update_url = http://files.prusa3d.com/wp-content/uploads/repository/PrusaSlicer-settings-master/live/Creality/ # changelog_url = http://files.prusa3d.com/?latest=slicer-profiles&lng=%1% diff --git a/resources/profiles/PrusaResearch.idx b/resources/profiles/PrusaResearch.idx index 3cc89e6fbd..9fcc8c1add 100644 --- a/resources/profiles/PrusaResearch.idx +++ b/resources/profiles/PrusaResearch.idx @@ -1,4 +1,5 @@ min_slic3r_version = 2.2.0-alpha3 +1.1.1 Added Verbatim and Fiberlogy PETG filament profiles. Updated auto cooling settings for ABS. 1.1.1-beta Updated for PrusaSlicer 2.2.0-beta 1.1.1-alpha4 Extended list of default filaments to be installed, top/bottom_solid_min_thickness defined, infill_acceleration changed etc 1.1.1-alpha3 Print bed textures are now configurable from the Preset Bundle. Requires PrusaSlicer 2.2.0-alpha3 and newer. diff --git a/resources/profiles/PrusaResearch.ini b/resources/profiles/PrusaResearch.ini index 571195c149..1b22575c08 100644 --- a/resources/profiles/PrusaResearch.ini +++ b/resources/profiles/PrusaResearch.ini @@ -5,7 +5,7 @@ name = Prusa Research # Configuration version of this file. Config file will only be installed, if the config_version differs. # This means, the server may force the PrusaSlicer configuration to be downgraded. -config_version = 1.1.1-beta +config_version = 1.1.1 # Where to get the updates from? config_update_url = http://files.prusa3d.com/wp-content/uploads/repository/PrusaSlicer-settings-master/live/PrusaResearch/ changelog_url = http://files.prusa3d.com/?latest=slicer-profiles&lng=%1% @@ -1538,12 +1538,12 @@ start_filament_gcode = "M900 K0 ; Filament gcode" [filament:*ABS*] inherits = *common* bed_temperature = 110 -bridge_fan_speed = 30 +bridge_fan_speed = 25 cooling = 0 disable_fan_first_layers = 3 fan_always_on = 0 fan_below_layer_time = 20 -filament_colour = #3A80CA +filament_colour = #FFF2EC filament_max_volumetric_speed = 11 filament_ramming_parameters = "120 100 5.70968 6.03226 7 8.25806 9 9.19355 9.3871 9.77419 10.129 10.3226 10.4516 10.5161| 0.05 5.69677 0.45 6.15484 0.95 8.76774 1.45 9.20323 1.95 9.95806 2.45 10.3871 2.95 10.5677 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" filament_type = ABS @@ -1555,6 +1555,28 @@ temperature = 255 start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{elsif nozzle_diameter[0]==0.6}18{else}30{endif} ; Filament gcode" compatible_printers_condition = printer_model!="MINI" and ! (printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK(2.5|3).*/ and single_extruder_multi_material) +[filament:*ABSC*] +inherits = *common* +bed_temperature = 110 +bridge_fan_speed = 25 +cooling = 1 +disable_fan_first_layers = 4 +fan_always_on = 0 +fan_below_layer_time = 20 +slowdown_below_layer_time = 20 +filament_colour = #FFF2EC +filament_max_volumetric_speed = 11 +filament_ramming_parameters = "120 100 5.70968 6.03226 7 8.25806 9 9.19355 9.3871 9.77419 10.129 10.3226 10.4516 10.5161| 0.05 5.69677 0.45 6.15484 0.95 8.76774 1.45 9.20323 1.95 9.95806 2.45 10.3871 2.95 10.5677 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" +filament_type = ABS +first_layer_bed_temperature = 100 +first_layer_temperature = 255 +max_fan_speed = 15 +min_fan_speed = 15 +min_print_speed = 15 +temperature = 255 +start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{elsif nozzle_diameter[0]==0.6}18{else}30{endif} ; Filament gcode" +compatible_printers_condition = printer_model!="MINI" and ! (printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK(2.5|3).*/ and single_extruder_multi_material) + [filament:*FLEX*] inherits = *common* bed_temperature = 50 @@ -1744,7 +1766,7 @@ filament_cost = 25.4 filament_density = 1.24 [filament:Fillamentum ABS] -inherits = *ABS* +inherits = *ABSC* filament_vendor = Fillamentum filament_cost = 32.4 filament_density = 1.04 @@ -1827,25 +1849,25 @@ temperature = 220 filament_retract_lift = 0.2 [filament:Generic ABS] -inherits = *ABS* +inherits = *ABSC* filament_vendor = Generic filament_cost = 27.82 filament_density = 1.04 [filament:Esun ABS] -inherits = *ABS* +inherits = *ABSC* filament_vendor = Esun filament_cost = 27.82 filament_density = 1.04 [filament:Hatchbox ABS] -inherits = *ABS* +inherits = *ABSC* filament_vendor = Hatchbox filament_cost = 27.82 filament_density = 1.04 [filament:Plasty Mladec ABS] -inherits = *ABS* +inherits = *ABSC* filament_vendor = Plasty Mladec filament_cost = 27.82 filament_density = 1.04 @@ -1867,7 +1889,6 @@ inherits = *PLA* filament_vendor = Generic filament_cost = 25.4 filament_density = 1.24 -filament_notes = "List of materials tested with standard PLA print settings:\n\nDas Filament\nEsun PLA\nEUMAKERS PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladec PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nVerbatim PLA\nVerbatim BVOH" [filament:Generic FLEX] inherits = *FLEX* @@ -1938,7 +1959,7 @@ filament_cost = 77.3 filament_density = 1.20 filament_type = PC bed_temperature = 115 -filament_colour = #3A80CA +filament_colour = #FFF2EC first_layer_bed_temperature = 100 first_layer_temperature = 270 temperature = 270 @@ -1954,7 +1975,6 @@ cooling = 0 fan_always_on = 0 filament_colour = #FFFFD7 filament_max_volumetric_speed = 3.8 -filament_notes = "List of materials tested with standard PVA print settings:\n\nPrimaSelect PVA+\nICE FILAMENTS PVA 'NAUGHTY NATURAL'" filament_ramming_parameters = "120 100 8.3871 8.6129 8.93548 9.22581 9.48387 9.70968 9.87097 10.0323 10.2258 10.4194 10.6452 10.8065| 0.05 8.34193 0.45 8.73548 0.95 9.34836 1.45 9.78385 1.95 10.0871 2.45 10.5161 2.95 10.8903 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" filament_soluble = 1 filament_type = PVA @@ -1963,11 +1983,10 @@ start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_MODEL_MINI.*/}0{elsi temperature = 195 [filament:Prusa ABS] -inherits = *ABS* +inherits = *ABSC* filament_vendor = Made for Prusa filament_cost = 27.82 filament_density = 1.08 -filament_notes = "List of materials tested with standard ABS print settings:\n\nEsun ABS\nFil-A-Gehr ABS\nHatchboxABS\nPlasty Mladec ABS" [filament:*ABS MMU2*] inherits = Prusa ABS @@ -1984,12 +2003,10 @@ filament_unloading_speed = 20 [filament:Generic ABS @MMU2] inherits = *ABS MMU2* -# alias = Generic ABS filament_vendor = Generic [filament:Prusament ASA @MMU2] inherits = *ABS MMU2* -# alias = Prusament ASA filament_vendor = Prusa Polymers filament_cost = 35.28 filament_density = 1.07 @@ -2013,7 +2030,6 @@ start_filament_gcode = "M900 K{if printer_notes=~/.*PRINTER_HAS_BOWDEN.*/}200{el [filament:Prusa ABS @MMU2] inherits = *ABS MMU2* -# alias = Prusa ABS filament_vendor = Made for Prusa [filament:Plasty Mladec ABS @MMU2] @@ -2027,7 +2043,7 @@ filament_cost = 27.3 filament_density = 1.04 bridge_fan_speed = 50 cooling = 1 -extrusion_multiplier = 0.9 +extrusion_multiplier = 1 fan_always_on = 1 fan_below_layer_time = 10 filament_colour = #FFFFD7 @@ -2063,7 +2079,20 @@ inherits = *PET* filament_vendor = Made for Prusa filament_cost = 27.82 filament_density = 1.27 -filament_notes = "List of manufacturers tested with standard PETG print settings:\n\nE3D Edge\nPlasty Mladec PETG" +compatible_printers_condition = nozzle_diameter[0]!=0.6 and printer_model!="MK2SMM" and printer_model!="MINI" and ! (printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK(2.5|3).*/ and single_extruder_multi_material) + +[filament:Verbatim PETG] +inherits = *PET* +filament_vendor = Verbatim +filament_cost = 27.90 +filament_density = 1.27 +compatible_printers_condition = nozzle_diameter[0]!=0.6 and printer_model!="MK2SMM" and printer_model!="MINI" and ! (printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK(2.5|3).*/ and single_extruder_multi_material) + +[filament:Fiberlogy PETG] +inherits = *PET* +filament_vendor = Fiberlogy +filament_cost = 21.50 +filament_density = 1.27 compatible_printers_condition = nozzle_diameter[0]!=0.6 and printer_model!="MK2SMM" and printer_model!="MINI" and ! (printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK(2.5|3).*/ and single_extruder_multi_material) [filament:Prusament PETG] @@ -2078,11 +2107,9 @@ compatible_printers_condition = nozzle_diameter[0]!=0.6 and printer_model!="MK2S [filament:Prusa PETG @0.6 nozzle] inherits = *PET06* -# alias = Prusa PETG filament_vendor = Made for Prusa filament_cost = 27.82 filament_density = 1.27 -filament_notes = "List of manufacturers tested with standard PETG print settings:\n\nE3D Edge\nPlasty Mladec PETG" [filament:Prusament PETG @0.6 nozzle] inherits = *PET06* @@ -2096,9 +2123,27 @@ filament_type = PETG [filament:Plasty Mladec PETG @0.6 nozzle] inherits = *PET06* filament_vendor = Plasty Mladec -first_layer_temperature = 240 -temperature = 250 -filament_cost = 24.99 +first_layer_temperature = 230 +temperature = 240 +filament_cost = 27.92 +filament_density = 1.27 +filament_type = PETG + +[filament:Verbatim PETG @0.6 nozzle] +inherits = *PET06* +filament_vendor = Verbatim +first_layer_temperature = 230 +temperature = 240 +filament_cost = 27.90 +filament_density = 1.27 +filament_type = PETG + +[filament:Fiberlogy PETG @0.6 nozzle] +inherits = *PET06* +filament_vendor = Fiberlogy +first_layer_temperature = 230 +temperature = 240 +filament_cost = 21.50 filament_density = 1.27 filament_type = PETG @@ -2112,7 +2157,6 @@ filament_cooling_initial_speed = 2 filament_cooling_moves = 1 filament_load_time = 15 filament_loading_speed = 14 -filament_notes = PET filament_ramming_parameters = "120 140 4.70968 4.74194 4.77419 4.80645 4.83871 4.87097 4.90323 5 5.25806 5.67742 6.29032 7.06452 7.83871 8.3871| 0.05 4.72901 0.45 4.73545 0.95 4.83226 1.45 4.88067 1.95 5.05483 2.45 5.93553 2.95 7.53556 3.45 8.6323 3.95 7.6 4.45 7.6 4.95 7.6" filament_unload_time = 12 filament_unloading_speed = 20 @@ -2128,7 +2172,6 @@ filament_max_volumetric_speed = 13 [filament:Generic PETG @MMU2] inherits = *PET MMU2* -# alias = Generic PETG filament_vendor = Generic [filament:Plasty Mladec PETG @MMU2] @@ -2137,35 +2180,29 @@ filament_vendor = Plasty Mladec [filament:Prusa PETG @MMU2] inherits = *PET MMU2* -# alias = Prusa PETG filament_vendor = Made for Prusa [filament:Prusament PETG @MMU2] inherits = *PET MMU2* filament_type = PETG -# alias = Prusament PETG filament_vendor = Prusa Polymers [filament:Generic PETG @MMU2 0.6 nozzle] inherits = *PET MMU2 06* -# alias = Generic PETG filament_vendor = Generic [filament:Prusa PETG @MMU2 0.6 nozzle] inherits = *PET MMU2 06* -# alias = Prusa PETG filament_vendor = Made for Prusa [filament:Prusament PETG @MMU2 0.6 nozzle] inherits = *PET MMU2 06* filament_type = PETG -# alias = Prusament PETG filament_vendor = Prusa Polymers [filament:Plasty Mladec PETG @MMU2 0.6 nozzle] inherits = *PET MMU2 06* filament_type = PETG -# alias = Prusament PETG filament_vendor = Plasty Mladec [filament:Prusa PLA] @@ -2321,7 +2358,6 @@ fan_always_on = 0 fan_below_layer_time = 100 filament_colour = #FFFFD7 filament_max_volumetric_speed = 4 -filament_notes = "List of materials tested with standard PVA print settings:\n\nVerbatim BVOH" filament_soluble = 1 filament_type = PVA first_layer_bed_temperature = 60 @@ -2373,7 +2409,6 @@ filament_loading_speed = 14 filament_loading_speed_start = 19 filament_max_volumetric_speed = 3.8 filament_minimal_purge_on_wipe_tower = 15 -filament_notes = "List of materials tested with standard PVA print settings:\n\nPrimaSelect PVA+" filament_ramming_parameters = "120 110 3.83871 3.90323 3.96774 4.03226 4.09677 4.19355 4.3871 4.83871 5.67742 6.93548 8.54839 10.3226 11.9677 13.2581 14.129 14.5806| 0.05 3.8258 0.45 3.89676 0.95 4.05807 1.45 4.23548 1.95 5.18386 2.45 7.80651 2.95 11.5356 3.45 13.9872 3.95 14.7613 4.45 7.6 4.95 7.6" filament_soluble = 1 filament_toolchange_delay = 0 @@ -2404,7 +2439,6 @@ fan_always_on = 1 fan_below_layer_time = 100 filament_colour = #DEE0E6 filament_max_volumetric_speed = 5 -filament_notes = "List of materials tested with standard PLA print settings:\n\nEsun PLA\nFiberlogy HD-PLA\nFillamentum PLA\nFloreon3D\nHatchbox PLA\nPlasty Mladec PLA\nPrimavalue PLA\nProto pasta Matte Fiber\nEUMAKERS PLA" filament_type = PP first_layer_bed_temperature = 100 first_layer_temperature = 220 @@ -2445,7 +2479,6 @@ temperature = 270 [filament:ColorFabb XT-CF20 @MMU1] inherits = *PETMMU1* -# alias = ColorFabb XT-CF20 filament_vendor = ColorFabb compatible_printers_condition = nozzle_diameter[0]>0.35 and printer_model=="MK2SMM" extrusion_multiplier = 1.2 @@ -2460,7 +2493,6 @@ temperature = 260 [filament:ColorFabb nGen @MMU1] inherits = *PETMMU1* -# alias = ColorFabb nGen filament_vendor = ColorFabb filament_cost = 21.2 filament_density = 1.2 @@ -2474,16 +2506,13 @@ min_fan_speed = 20 [filament:E3D Edge @MMU1] inherits = *PETMMU1* -# alias = E3D Edge filament_vendor = E3D filament_cost = 56.9 filament_density = 1.26 filament_type = EDGE -filament_notes = "List of manufacturers tested with standard PETG print settings:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladec PETG" [filament:Fillamentum CPE @MMU1] inherits = *PETMMU1* -# alias = Fillamentum CPE filament_vendor = Fillamentum filament_cost = 54.1 filament_density = 1.25 @@ -2496,29 +2525,36 @@ temperature = 275 [filament:Generic PETG @MMU1] inherits = *PETMMU1* -# alias = Generic PETG filament_vendor = Generic filament_cost = 27.82 filament_density = 1.27 [filament:Plasty Mladec PETG @MMU1] inherits = *PETMMU1* -# alias = Generic PETG filament_vendor = Plasty Mladec filament_cost = 27.82 filament_density = 1.27 +[filament:Verbatim PETG @MMU1] +inherits = *PETMMU1* +filament_vendor = Verbatim +filament_cost = 27.90 +filament_density = 1.27 + +[filament:Fiberlogy PETG @MMU1] +inherits = *PETMMU1* +filament_vendor = Fiberlogy +filament_cost = 21.50 +filament_density = 1.27 + [filament:Prusa PETG @MMU1] inherits = *PETMMU1* -# alias = Prusa PETG filament_vendor = Made for Prusa filament_cost = 27.82 filament_density = 1.27 -filament_notes = "List of manufacturers tested with standard PETG print settings:\n\nE3D Edge\nPlasty Mladec PETG" [filament:Prusament PETG @MMU1] inherits = *PETMMU1* -# alias = Prusament PETG filament_vendor = Prusa Polymers first_layer_temperature = 240 temperature = 250 @@ -2528,7 +2564,6 @@ filament_type = PETG [filament:Taulman T-Glase @MMU1] inherits = *PETMMU1* -# alias = Taulman T-Glase filament_vendor = Taulman filament_cost = 40 filament_density = 1.27 @@ -2554,7 +2589,6 @@ compatible_printers_condition = printer_model=="MK2SMM" [filament:Generic FLEX @MMU1] inherits = *FLEX* -# alias = Generic FLEX filament_vendor = Generic filament_cost = 82 filament_density = 1.22 @@ -2569,7 +2603,6 @@ compatible_printers_condition = printer_model=="MK2SMM" [filament:Generic PETG @MINI] inherits = Generic PETG; *PETMINI* filament_vendor = Generic -# alias = Generic PETG filament_cost = 27.82 filament_density = 1.27 compatible_printers_condition = printer_model=="MINI" and nozzle_diameter[0]!=0.6 @@ -2581,35 +2614,79 @@ filament_cost = 27.82 filament_density = 1.27 compatible_printers_condition = printer_model=="MINI" and nozzle_diameter[0]!=0.6 +[filament:Verbatim PETG @MINI] +inherits = Generic PETG; *PETMINI* +filament_vendor = Verbatim +filament_cost = 27.90 +filament_density = 1.27 +compatible_printers_condition = printer_model=="MINI" and nozzle_diameter[0]!=0.6 + +[filament:Fiberlogy PETG @MINI] +inherits = Generic PETG; *PETMINI* +filament_vendor = Fiberlogy +filament_cost = 21.50 +filament_density = 1.27 +compatible_printers_condition = printer_model=="MINI" and nozzle_diameter[0]!=0.6 + [filament:Generic ABS @MINI] inherits = Generic ABS; *ABSMINI* filament_vendor = Generic -# alias = Generic ABS filament_cost = 27.82 filament_density = 1.08 +fan_always_on = 0 +cooling = 1 +min_fan_speed = 15 +max_fan_speed = 15 +slowdown_below_layer_time = 20 +disable_fan_first_layers = 4 +fan_below_layer_time = 20 +bridge_fan_speed = 25 [filament:Esun ABS @MINI] inherits = Generic ABS; *ABSMINI* filament_vendor = Esun filament_cost = 27.82 filament_density = 1.08 +fan_always_on = 0 +cooling = 1 +min_fan_speed = 15 +max_fan_speed = 15 +slowdown_below_layer_time = 20 +disable_fan_first_layers = 4 +fan_below_layer_time = 20 +bridge_fan_speed = 25 [filament:Hatchbox ABS @MINI] inherits = Generic ABS; *ABSMINI* filament_vendor = Hatchbox filament_cost = 27.82 filament_density = 1.08 +fan_always_on = 0 +cooling = 1 +min_fan_speed = 15 +max_fan_speed = 15 +slowdown_below_layer_time = 20 +disable_fan_first_layers = 4 +fan_below_layer_time = 20 +bridge_fan_speed = 25 [filament:Plasty Mladec ABS @MINI] inherits = Generic ABS; *ABSMINI* filament_vendor = Plasty Mladec filament_cost = 27.82 filament_density = 1.08 +fan_always_on = 0 +cooling = 1 +min_fan_speed = 15 +max_fan_speed = 15 +slowdown_below_layer_time = 20 +disable_fan_first_layers = 4 +fan_below_layer_time = 20 +bridge_fan_speed = 25 [filament:Prusament PETG @MINI] inherits = Prusament PETG; *PETMINI* filament_vendor = Prusa Polymers -# alias = Prusament PETG first_layer_temperature = 240 temperature = 250 filament_density = 1.27 @@ -2618,7 +2695,6 @@ compatible_printers_condition = printer_model=="MINI" and nozzle_diameter[0]!=0. [filament:Prusament PETG @0.6 nozzle MINI] inherits = Prusament PETG; *PETMINI06* -# alias = Prusament PETG first_layer_temperature = 240 temperature = 250 filament_density = 1.27 @@ -2626,16 +2702,21 @@ filament_cost = 24.99 [filament:Generic PETG @0.6 nozzle MINI] inherits = Generic PETG; *PETMINI06* -# alias = Generic PETG [filament:Plasty Mladec PETG @0.6 nozzle MINI] inherits = Generic PETG; *PETMINI06* filament_vendor = Plasty Mladec -# alias = Generic PETG + +[filament:Verbatim PETG @0.6 nozzle MINI] +inherits = Generic PETG; *PETMINI06* +filament_vendor = Verbatim + +[filament:Fiberlogy PETG @0.6 nozzle MINI] +inherits = Generic PETG; *PETMINI06* +filament_vendor = Fiberlogy [filament:Prusament ASA @MINI] inherits = Prusament ASA; *ABSMINI* -# alias = Prusament ASA first_layer_temperature = 260 first_layer_bed_temperature = 100 temperature = 260 @@ -2654,7 +2735,6 @@ filament_density = 1.07 [filament:Fillamentum Flexfill 98A @MINI] inherits = SemiFlex or Flexfill 98A; *FLEXMINI* -# alias = Fillamentum Flexfill 98A filament_vendor = Fillamentum first_layer_temperature = 240 temperature = 240 @@ -2662,7 +2742,6 @@ filament_max_volumetric_speed = 1.35 [filament:Generic FLEX @MINI] inherits = SemiFlex or Flexfill 98A; *FLEXMINI* -# alias = Semiflex or Flex 98A filament_vendor = Generic fan_always_on = 0 bridge_fan_speed = 80 @@ -2673,7 +2752,6 @@ filament_max_volumetric_speed = 1.35 [filament:AmazonBasics TPU @MINI] inherits = *FLEXMINI* -# alias = AmazonBasics TPU filament_vendor = AmazonBasics filament_max_volumetric_speed = 1.5 first_layer_temperature = 235 @@ -2689,7 +2767,6 @@ filament_density = 1.21 [filament:SainSmart TPU @MINI] inherits = *FLEXMINI* -# alias = SainSmart TPU filament_vendor = SainSmart filament_max_volumetric_speed = 1.8 first_layer_temperature = 235 @@ -2708,7 +2785,6 @@ filament_density = 1.21 [filament:Filatech FilaFlex40 @MINI] inherits = *FLEXMINI* -# alias = Filatech FilaFlex40 filament_vendor = Filatech filament_max_volumetric_speed = 1.8 fan_always_on = 1 @@ -2728,7 +2804,6 @@ filament_cost = 51.45 [filament:Fillamentum Flexfill 92A @MINI] inherits = *FLEXMINI* -# alias = Fillamentum Flexfill 92A filament_vendor = Fillamentum first_layer_temperature = 245 temperature = 245 @@ -2753,7 +2828,6 @@ start_filament_gcode = "M900 K0 ; Filament gcode" [filament:Fillamentum CPE @MINI] inherits = Fillamentum CPE; *PETMINI* -# alias = Fillamentum CPE first_layer_temperature = 265 first_layer_bed_temperature = 90 temperature = 265 @@ -2763,25 +2837,29 @@ filament_density = 1.25 [filament:ColorFabb nGen @MINI] inherits = ColorFabb nGen; *PETMINI* -# alias = ColorFabb nGen filament_cost = 52.46 filament_density = 1.2 [filament:E3D PC-ABS @MINI] inherits = E3D PC-ABS; *ABSMINI* -# alias = E3D PC-ABS filament_density = 1.05 filament_cost = 28.80 [filament:Fillamentum ABS @MINI] inherits = Fillamentum ABS; *ABSMINI* -# alias = Fillamentum ABS filament_cost = 32.4 filament_density = 1.04 +fan_always_on = 0 +cooling = 1 +min_fan_speed = 15 +max_fan_speed = 15 +slowdown_below_layer_time = 20 +disable_fan_first_layers = 4 +fan_below_layer_time = 20 +bridge_fan_speed = 25 [filament:Fillamentum ASA @MINI] inherits = Fillamentum ASA; *ABSMINI* -# alias = Fillamentum ASA first_layer_temperature = 255 first_layer_bed_temperature = 100 temperature = 255 @@ -2800,11 +2878,10 @@ filament_density = 1.07 [filament:Polymaker PC-Max @MINI] inherits = Polymaker PC-Max; *ABSMINI* -# alias = Polymaker PC-Max filament_type = PC filament_max_volumetric_speed = 7 bed_temperature = 100 -filament_colour = #3A80CA +filament_colour = #FFF2EC first_layer_bed_temperature = 100 first_layer_temperature = 270 temperature = 270 @@ -2814,14 +2891,20 @@ filament_density = 1.20 [filament:Prusa ABS @MINI] inherits = *ABSMINI* -# alias = Prusa ABS filament_vendor = Made for Prusa filament_cost = 27.82 filament_density = 1.08 +fan_always_on = 0 +cooling = 1 +min_fan_speed = 15 +max_fan_speed = 15 +slowdown_below_layer_time = 20 +disable_fan_first_layers = 4 +fan_below_layer_time = 20 +bridge_fan_speed = 25 [filament:Generic HIPS @MINI] inherits = *ABSMINI* -# alias = Generic HIPS filament_vendor = Generic filament_cost = 27.3 filament_density = 1.04 @@ -2840,7 +2923,6 @@ temperature = 230 [filament:ColorFabb HT @MINI] inherits = *PETMINI* -# alias = ColorFabb HT filament_vendor = ColorFabb bed_temperature = 100 bridge_fan_speed = 30 @@ -2858,7 +2940,6 @@ temperature = 270 [filament:ColorFabb XT @MINI] inherits = *PETMINI* -# alias = ColorFabb XT filament_vendor = ColorFabb filament_type = PETG filament_cost = 62.9 @@ -2869,7 +2950,6 @@ temperature = 270 [filament:ColorFabb XT-CF20 @MINI] inherits = *PETMINI* -# alias = ColorFabb XT-CF20 filament_vendor = ColorFabb compatible_printers_condition = nozzle_diameter[0]>0.35 and printer_model=="MINI" extrusion_multiplier = 1.2 @@ -2883,7 +2963,6 @@ temperature = 260 [filament:Taulman T-Glase @MINI] inherits = *PETMINI* -# alias = Taulman T-Glase filament_vendor = Taulman filament_cost = 40 filament_density = 1.27 @@ -2897,7 +2976,6 @@ min_fan_speed = 0 [filament:E3D Edge @MINI] inherits = *PETMINI* -# alias = E3D Edge filament_vendor = E3D filament_cost = 56.9 filament_density = 1.26 @@ -2905,7 +2983,6 @@ filament_type = EDGE [filament:Prusa PETG @MINI] inherits = *PETMINI* -# alias = Prusa PETG filament_vendor = Made for Prusa filament_cost = 27.82 filament_density = 1.27 @@ -2913,7 +2990,6 @@ compatible_printers_condition = printer_model=="MINI" and nozzle_diameter[0]!=0. [filament:Prusa PETG @0.6 nozzle MINI] inherits = *PETMINI06* -# alias = Prusa PETG filament_vendor = Made for Prusa filament_cost = 27.82 filament_density = 1.27 diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index f45ef255a9..5bcfc136cc 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -187,8 +187,8 @@ bool GUI_App::on_init_inner() wxString::Format("Resources path does not exist or is not a directory: %s", resources_dir)); // Profiles for the alpha are stored into the PrusaSlicer-alpha directory to not mix with the current release. - // SetAppName(SLIC3R_APP_KEY); - SetAppName(SLIC3R_APP_KEY "-beta"); + SetAppName(SLIC3R_APP_KEY); +// SetAppName(SLIC3R_APP_KEY "-beta"); SetAppDisplayName(SLIC3R_APP_NAME); // Enable this to get the default Win32 COMCTRL32 behavior of static boxes. diff --git a/version.inc b/version.inc index 26b035484b..2e916f2610 100644 --- a/version.inc +++ b/version.inc @@ -3,7 +3,7 @@ set(SLIC3R_APP_NAME "PrusaSlicer") set(SLIC3R_APP_KEY "PrusaSlicer") -set(SLIC3R_VERSION "2.2.0-beta") +set(SLIC3R_VERSION "2.2.0-rc") set(SLIC3R_BUILD_ID "PrusaSlicer-${SLIC3R_VERSION}+UNKNOWN") set(SLIC3R_RC_VERSION "2,2,0,0") set(SLIC3R_RC_VERSION_DOTS "2.2.0.0") From c9a75bb70a2c1c88e72e0dd55961b5701431f0a6 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Sat, 29 Feb 2020 12:03:07 +0100 Subject: [PATCH 85/91] Fixed localization issue of the "Removable media unmounted" message. Generalized the Slic3r::show_info() function to std::strings and const char* --- src/slic3r/GUI/GUI.cpp | 9 ++++++++- src/slic3r/GUI/GUI.hpp | 4 +++- src/slic3r/GUI/Plater.cpp | 9 ++++----- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/slic3r/GUI/GUI.cpp b/src/slic3r/GUI/GUI.cpp index 45921b5304..caeb8da034 100644 --- a/src/slic3r/GUI/GUI.cpp +++ b/src/slic3r/GUI/GUI.cpp @@ -231,6 +231,7 @@ void show_error(wxWindow* parent, const wxString& message) void show_error(wxWindow* parent, const char* message) { + assert(message); show_error(parent, wxString::FromUTF8(message)); } @@ -242,10 +243,16 @@ void show_error_id(int id, const std::string& message) void show_info(wxWindow* parent, const wxString& message, const wxString& title) { - wxMessageDialog msg_wingow(parent, message, title.empty() ? _(L("Notice")) : title, wxOK | wxICON_INFORMATION); + wxMessageDialog msg_wingow(parent, message, wxString(SLIC3R_APP_NAME " - ") + (title.empty() ? _(L("Notice")) : title), wxOK | wxICON_INFORMATION); msg_wingow.ShowModal(); } +void show_info(wxWindow* parent, const char* message, const char* title) +{ + assert(message); + show_info(parent, wxString::FromUTF8(message), title ? wxString::FromUTF8(title) : wxString()); +} + void warning_catcher(wxWindow* parent, const wxString& message) { wxMessageDialog msg(parent, message, _(L("Warning")), wxOK | wxICON_WARNING); diff --git a/src/slic3r/GUI/GUI.hpp b/src/slic3r/GUI/GUI.hpp index b13e7c042e..2bfddf718c 100644 --- a/src/slic3r/GUI/GUI.hpp +++ b/src/slic3r/GUI/GUI.hpp @@ -42,7 +42,9 @@ void show_error(wxWindow* parent, const wxString& message); void show_error(wxWindow* parent, const char* message); inline void show_error(wxWindow* parent, const std::string& message) { show_error(parent, message.c_str()); } void show_error_id(int id, const std::string& message); // For Perl -void show_info(wxWindow* parent, const wxString& message, const wxString& title); +void show_info(wxWindow* parent, const wxString& message, const wxString& title = wxString()); +void show_info(wxWindow* parent, const char* message, const char* title = nullptr); +inline void show_info(wxWindow* parent, const std::string& message,const std::string& title = std::string()) { show_info(parent, message.c_str(), title.c_str()); } void warning_catcher(wxWindow* parent, const wxString& message); // Creates a wxCheckListBoxComboPopup inside the given wxComboCtrl, filled with the given text and items. diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 1e13bf3afd..0ebad64d1c 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -5199,11 +5199,10 @@ void Plater::drive_ejected_callback() if (RemovableDriveManager::get_instance().get_did_eject()) { RemovableDriveManager::get_instance().set_did_eject(false); - wxString message = wxString::Format( - _(L("Unmounting successful. The device %s(%s) can now be safely removed from the computer.")), - RemovableDriveManager::get_instance().get_ejected_name(), - RemovableDriveManager::get_instance().get_ejected_path()); - wxMessageBox(message); + show_info(this, + (boost::format(_utf8(L("Unmounting successful. The device %s(%s) can now be safely removed from the computer."))) + % RemovableDriveManager::get_instance().get_ejected_name() + % RemovableDriveManager::get_instance().get_ejected_path()).str()); } p->show_action_buttons(false); } From b95d635c4d9c29ddb9e038c8aa3546a8428f5580 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 2 Mar 2020 09:01:21 +0100 Subject: [PATCH 86/91] Fixed several translated strings (fix of #3748) --- resources/localization/es/PrusaSlicer.mo | Bin 251528 -> 251531 bytes resources/localization/es/PrusaSlicer_es.po | 4 ++-- resources/localization/fr/PrusaSlicer.mo | Bin 259243 -> 259246 bytes resources/localization/fr/PrusaSlicer_fr.po | 4 ++-- resources/localization/it/PrusaSlicer.mo | Bin 247922 -> 247925 bytes resources/localization/it/PrusaSlicer_it.po | 4 ++-- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/localization/es/PrusaSlicer.mo b/resources/localization/es/PrusaSlicer.mo index c5c8e2f016294055a5a1bd4ef0fd0aca0b03d68b..6f8e14beada2306b3ed3222dd698604519786e97 100644 GIT binary patch delta 16936 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 Q{R+5$M{Vnv=!Q=EKf)69BLDyZ delta 16934 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 Q<@H~zyZNKe{&Um+56hr9Pyhe` delta 16934 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 GQ~wV|vpd58 diff --git a/resources/localization/fr/PrusaSlicer_fr.po b/resources/localization/fr/PrusaSlicer_fr.po index 0e0a9accf5..235c6dd08d 100644 --- a/resources/localization/fr/PrusaSlicer_fr.po +++ b/resources/localization/fr/PrusaSlicer_fr.po @@ -5,7 +5,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 2.2.1\n" +"X-Generator: Poedit 1.8.7.1\n" "Project-Id-Version: \n" "POT-Creation-Date: \n" "PO-Revision-Date: \n" @@ -7575,7 +7575,7 @@ msgstr "Texture" #: src/slic3r/GUI/ConfigManipulation.cpp:208 msgid "The %1% infill pattern is not supposed to work at 100%% density." -msgstr "Le modèle de remplissage %1% n'est pas censé fonctionner avec une densité de 100%." +msgstr "Le modèle de remplissage %1% n'est pas censé fonctionner avec une densité de 100%%." #: src/slic3r/GUI/FirmwareDialog.cpp:548 #, c-format diff --git a/resources/localization/it/PrusaSlicer.mo b/resources/localization/it/PrusaSlicer.mo index 4367bfd2266ac31214b8dd1fe096d11b4c4b0cb9..9130c6abf4b8e4940777cb740e22c2b6e63755c3 100644 GIT binary patch delta 16936 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 delta 16934 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 Date: Mon, 2 Mar 2020 11:33:09 +0100 Subject: [PATCH 87/91] Fix of #3739 (OSX: set width of "Editing" column to avoid a column narrowing after a recreating of an application caused by a language changing) + Fix related to a bug, reported in #3617, about wrong placement of a "Purging volumes" button translated to the some languages --- src/slic3r/GUI/GUI_ObjectList.cpp | 1 + src/slic3r/GUI/OptionsGroup.cpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index efb0dd0f9d..66c859799e 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -289,6 +289,7 @@ void ObjectList::create_objects_ctrl() GetColumn(colName)->SetWidth(20*em); GetColumn(colPrint)->SetWidth(3*em); GetColumn(colExtruder)->SetWidth(8*em); + GetColumn(colEditing) ->SetWidth(7*em); } } diff --git a/src/slic3r/GUI/OptionsGroup.cpp b/src/slic3r/GUI/OptionsGroup.cpp index f507f0e4a6..f0b108bd7e 100644 --- a/src/slic3r/GUI/OptionsGroup.cpp +++ b/src/slic3r/GUI/OptionsGroup.cpp @@ -129,7 +129,8 @@ void OptionsGroup::append_line(const Line& line, wxStaticText** full_Label/* = n m_options.emplace(opt.opt_id, opt); // Set sidetext width for a better alignment of options in line - if (option_set.size() > 1) { + // "m_show_modified_btns==true" means that options groups are in tabs + if (option_set.size() > 1 && m_show_modified_btns) { sidetext_width = Field::def_width_thinner(); /* Temporary commented till UI-review will be completed if (m_show_modified_btns) // means that options groups are in tabs From 7cb92ef5e8bdd4f1110ec941ff2bbd54bc609da0 Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Mon, 2 Mar 2020 12:33:17 +0100 Subject: [PATCH 88/91] #3646 - Ask user whether remove from recent projects list a project no longer available --- src/slic3r/GUI/MainFrame.cpp | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 32d68b3ed3..9527b6c299 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -422,18 +422,19 @@ void MainFrame::init_menubar() m_plater->load_project(filename); else { - wxMessageDialog msg(this, _(L("The selected project is no more available")), _(L("Error"))); - msg.ShowModal(); - - m_recent_projects.RemoveFileFromHistory(file_id); - std::vector recent_projects; - size_t count = m_recent_projects.GetCount(); - for (size_t i = 0; i < count; ++i) + wxMessageDialog msg(this, _(L("The selected project is no longer available.\nDo you want to remove it from the recent projects list ?")), _(L("Error")), wxYES_NO | wxYES_DEFAULT); + if (msg.ShowModal() == wxID_YES) { - recent_projects.push_back(into_u8(m_recent_projects.GetHistoryFile(i))); + m_recent_projects.RemoveFileFromHistory(file_id); + std::vector recent_projects; + size_t count = m_recent_projects.GetCount(); + for (size_t i = 0; i < count; ++i) + { + recent_projects.push_back(into_u8(m_recent_projects.GetHistoryFile(i))); + } + wxGetApp().app_config->set_recent_projects(recent_projects); + wxGetApp().app_config->save(); } - wxGetApp().app_config->set_recent_projects(recent_projects); - wxGetApp().app_config->save(); } }, wxID_FILE1, wxID_FILE9); From e3a583292ad480e61ddf5815f50cbfb671c02e7d Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Mon, 2 Mar 2020 12:43:00 +0100 Subject: [PATCH 89/91] Promote max_bridges_on_pillar to be a runtime parameter. This way the user greater control over support tree branching and the amount of pillars created. --- src/libslic3r/PrintConfig.cpp | 10 ++++++++++ src/libslic3r/PrintConfig.hpp | 4 ++++ src/libslic3r/SLA/SupportTree.cpp | 1 - src/libslic3r/SLA/SupportTree.hpp | 4 +++- src/libslic3r/SLAPrint.cpp | 3 +++ src/slic3r/GUI/ConfigManipulation.cpp | 1 + src/slic3r/GUI/Preset.cpp | 1 + src/slic3r/GUI/Tab.cpp | 2 ++ 8 files changed, 24 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 2be1f8cf63..adb1f4ee3a 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2653,6 +2653,16 @@ void PrintConfigDef::init_sla_params() def->max = 15; def->mode = comSimple; def->set_default_value(new ConfigOptionFloat(1.0)); + + def = this->add("support_max_bridges_on_pillar", coInt); + def->label = L("Max bridges on a pillar"); + def->tooltip = L( + "Maximum number of bridges that can be placed on a pillar. Bridges " + "hold support point pinheads and connect to pillars as small branches."); + def->min = 0; + def->max = 50; + def->mode = comExpert; + def->set_default_value(new ConfigOptionInt(3)); def = this->add("support_pillar_connection_mode", coEnum); def->label = L("Support pillar connection mode"); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index 8c6710dad1..f6a2bd6799 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -980,6 +980,9 @@ public: // Radius in mm of the support pillars. ConfigOptionFloat support_pillar_diameter /*= 0.8*/; + + // How much bridge (supporting another pinhead) can be placed on a pillar. + ConfigOptionInt support_max_bridges_on_pillar; // How the pillars are bridged together ConfigOptionEnum support_pillar_connection_mode; @@ -1101,6 +1104,7 @@ protected: OPT_PTR(support_head_penetration); OPT_PTR(support_head_width); OPT_PTR(support_pillar_diameter); + OPT_PTR(support_max_bridges_on_pillar); OPT_PTR(support_pillar_connection_mode); OPT_PTR(support_buildplate_only); OPT_PTR(support_pillar_widening_factor); diff --git a/src/libslic3r/SLA/SupportTree.cpp b/src/libslic3r/SLA/SupportTree.cpp index 5ee35f9e0a..528778b68b 100644 --- a/src/libslic3r/SLA/SupportTree.cpp +++ b/src/libslic3r/SLA/SupportTree.cpp @@ -41,7 +41,6 @@ const double SupportConfig::max_dual_pillar_height_mm = 35.0; const double SupportConfig::optimizer_rel_score_diff = 1e-6; const unsigned SupportConfig::optimizer_max_iterations = 1000; const unsigned SupportConfig::pillar_cascade_neighbors = 3; -const unsigned SupportConfig::max_bridges_on_pillar = 3; void SupportTree::retrieve_full_mesh(TriangleMesh &outmesh) const { outmesh.merge(retrieve_mesh(MeshType::Support)); diff --git a/src/libslic3r/SLA/SupportTree.hpp b/src/libslic3r/SLA/SupportTree.hpp index acf6c10f5e..c6255aa2f2 100644 --- a/src/libslic3r/SLA/SupportTree.hpp +++ b/src/libslic3r/SLA/SupportTree.hpp @@ -83,6 +83,8 @@ struct SupportConfig // body. This is only useful when elevation is set to zero. double pillar_base_safety_distance_mm = 0.5; + unsigned max_bridges_on_pillar = 3; + double head_fullwidth() const { return 2 * head_front_radius_mm + head_width_mm + 2 * head_back_radius_mm - head_penetration_mm; @@ -103,7 +105,7 @@ struct SupportConfig static const double optimizer_rel_score_diff; static const unsigned optimizer_max_iterations; static const unsigned pillar_cascade_neighbors; - static const unsigned max_bridges_on_pillar; + }; enum class MeshType { Support, Pad }; diff --git a/src/libslic3r/SLAPrint.cpp b/src/libslic3r/SLAPrint.cpp index cca0abd5c1..4ec5aae29f 100644 --- a/src/libslic3r/SLAPrint.cpp +++ b/src/libslic3r/SLAPrint.cpp @@ -65,6 +65,8 @@ sla::SupportConfig make_support_cfg(const SLAPrintObjectConfig& c) c.support_base_safety_distance.getFloat() < EPSILON ? scfg.safety_distance_mm : c.support_base_safety_distance.getFloat(); + scfg.max_bridges_on_pillar = unsigned(c.support_max_bridges_on_pillar.getInt()); + return scfg; } @@ -946,6 +948,7 @@ bool SLAPrintObject::invalidate_state_by_config_options(const std::vector& Preset::sla_print_options() "support_head_penetration", "support_head_width", "support_pillar_diameter", + "support_max_bridges_on_pillar", "support_pillar_connection_mode", "support_buildplate_only", "support_pillar_widening_factor", diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 19d0854200..ac141caa49 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3612,6 +3612,8 @@ void TabSLAPrint::build() optgroup = page->new_optgroup(_(L("Support pillar"))); optgroup->append_single_option_line("support_pillar_diameter"); + optgroup->append_single_option_line("support_max_bridges_on_pillar"); + optgroup->append_single_option_line("support_pillar_connection_mode"); optgroup->append_single_option_line("support_buildplate_only"); // TODO: This parameter is not used at the moment. From 090ce6ca05ace0655253af059960d70ff3fb66e5 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Mon, 2 Mar 2020 12:43:00 +0100 Subject: [PATCH 90/91] Promote max_bridges_on_pillar to be a runtime parameter. This way the user greater control over support tree branching and the amount of pillars created. fixes #3728 --- src/libslic3r/PrintConfig.cpp | 10 ++++++++++ src/libslic3r/PrintConfig.hpp | 4 ++++ src/libslic3r/SLA/SupportTree.cpp | 1 - src/libslic3r/SLA/SupportTree.hpp | 4 +++- src/libslic3r/SLAPrint.cpp | 3 +++ src/slic3r/GUI/ConfigManipulation.cpp | 1 + src/slic3r/GUI/Preset.cpp | 1 + src/slic3r/GUI/Tab.cpp | 2 ++ 8 files changed, 24 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 2be1f8cf63..adb1f4ee3a 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2653,6 +2653,16 @@ void PrintConfigDef::init_sla_params() def->max = 15; def->mode = comSimple; def->set_default_value(new ConfigOptionFloat(1.0)); + + def = this->add("support_max_bridges_on_pillar", coInt); + def->label = L("Max bridges on a pillar"); + def->tooltip = L( + "Maximum number of bridges that can be placed on a pillar. Bridges " + "hold support point pinheads and connect to pillars as small branches."); + def->min = 0; + def->max = 50; + def->mode = comExpert; + def->set_default_value(new ConfigOptionInt(3)); def = this->add("support_pillar_connection_mode", coEnum); def->label = L("Support pillar connection mode"); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index 8c6710dad1..f6a2bd6799 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -980,6 +980,9 @@ public: // Radius in mm of the support pillars. ConfigOptionFloat support_pillar_diameter /*= 0.8*/; + + // How much bridge (supporting another pinhead) can be placed on a pillar. + ConfigOptionInt support_max_bridges_on_pillar; // How the pillars are bridged together ConfigOptionEnum support_pillar_connection_mode; @@ -1101,6 +1104,7 @@ protected: OPT_PTR(support_head_penetration); OPT_PTR(support_head_width); OPT_PTR(support_pillar_diameter); + OPT_PTR(support_max_bridges_on_pillar); OPT_PTR(support_pillar_connection_mode); OPT_PTR(support_buildplate_only); OPT_PTR(support_pillar_widening_factor); diff --git a/src/libslic3r/SLA/SupportTree.cpp b/src/libslic3r/SLA/SupportTree.cpp index 5ee35f9e0a..528778b68b 100644 --- a/src/libslic3r/SLA/SupportTree.cpp +++ b/src/libslic3r/SLA/SupportTree.cpp @@ -41,7 +41,6 @@ const double SupportConfig::max_dual_pillar_height_mm = 35.0; const double SupportConfig::optimizer_rel_score_diff = 1e-6; const unsigned SupportConfig::optimizer_max_iterations = 1000; const unsigned SupportConfig::pillar_cascade_neighbors = 3; -const unsigned SupportConfig::max_bridges_on_pillar = 3; void SupportTree::retrieve_full_mesh(TriangleMesh &outmesh) const { outmesh.merge(retrieve_mesh(MeshType::Support)); diff --git a/src/libslic3r/SLA/SupportTree.hpp b/src/libslic3r/SLA/SupportTree.hpp index acf6c10f5e..c6255aa2f2 100644 --- a/src/libslic3r/SLA/SupportTree.hpp +++ b/src/libslic3r/SLA/SupportTree.hpp @@ -83,6 +83,8 @@ struct SupportConfig // body. This is only useful when elevation is set to zero. double pillar_base_safety_distance_mm = 0.5; + unsigned max_bridges_on_pillar = 3; + double head_fullwidth() const { return 2 * head_front_radius_mm + head_width_mm + 2 * head_back_radius_mm - head_penetration_mm; @@ -103,7 +105,7 @@ struct SupportConfig static const double optimizer_rel_score_diff; static const unsigned optimizer_max_iterations; static const unsigned pillar_cascade_neighbors; - static const unsigned max_bridges_on_pillar; + }; enum class MeshType { Support, Pad }; diff --git a/src/libslic3r/SLAPrint.cpp b/src/libslic3r/SLAPrint.cpp index cca0abd5c1..4ec5aae29f 100644 --- a/src/libslic3r/SLAPrint.cpp +++ b/src/libslic3r/SLAPrint.cpp @@ -65,6 +65,8 @@ sla::SupportConfig make_support_cfg(const SLAPrintObjectConfig& c) c.support_base_safety_distance.getFloat() < EPSILON ? scfg.safety_distance_mm : c.support_base_safety_distance.getFloat(); + scfg.max_bridges_on_pillar = unsigned(c.support_max_bridges_on_pillar.getInt()); + return scfg; } @@ -946,6 +948,7 @@ bool SLAPrintObject::invalidate_state_by_config_options(const std::vector& Preset::sla_print_options() "support_head_penetration", "support_head_width", "support_pillar_diameter", + "support_max_bridges_on_pillar", "support_pillar_connection_mode", "support_buildplate_only", "support_pillar_widening_factor", diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 19d0854200..ac141caa49 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3612,6 +3612,8 @@ void TabSLAPrint::build() optgroup = page->new_optgroup(_(L("Support pillar"))); optgroup->append_single_option_line("support_pillar_diameter"); + optgroup->append_single_option_line("support_max_bridges_on_pillar"); + optgroup->append_single_option_line("support_pillar_connection_mode"); optgroup->append_single_option_line("support_buildplate_only"); // TODO: This parameter is not used at the moment. From aaaeafcdeb6c28e01dbed6b63589314789268d76 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 2 Mar 2020 16:15:41 +0100 Subject: [PATCH 91/91] When loading installed filaments and SLA materials from PrusaSlicer.ini, the "renamed_from" property of current profiles was not taken into account. This lead to a situation where there were no MMU or SLA materials installed after upgrade from PrusaSlicer 2.2.1 to 2.2. This should work now. --- src/slic3r/GUI/Preset.cpp | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/src/slic3r/GUI/Preset.cpp b/src/slic3r/GUI/Preset.cpp index fc98a35fed..c0af7bceae 100644 --- a/src/slic3r/GUI/Preset.cpp +++ b/src/slic3r/GUI/Preset.cpp @@ -374,12 +374,23 @@ void Preset::set_visible_from_appconfig(const AppConfig &app_config) if (type == TYPE_PRINTER) { const std::string &model = config.opt_string("printer_model"); const std::string &variant = config.opt_string("printer_variant"); - if (model.empty() || variant.empty()) { return; } + if (model.empty() || variant.empty()) + return; is_visible = app_config.get_variant(vendor->id, model, variant); - } else if (type == TYPE_FILAMENT) { - is_visible = app_config.has("filaments", name); - } else if (type == TYPE_SLA_MATERIAL) { - is_visible = app_config.has("sla_materials", name); + } else if (type == TYPE_FILAMENT || type == TYPE_SLA_MATERIAL) { + const char *section_name = (type == TYPE_FILAMENT) ? "filaments" : "sla_materials"; + if (app_config.has_section(section_name)) { + // Check whether this profile is marked as "installed" in PrusaSlicer.ini, + // or whether a profile is marked as "installed", which this profile may have been renamed from. + const std::map &installed = app_config.get_section(section_name); + auto has = [&installed](const std::string &name) { + auto it = installed.find(name); + return it != installed.end() && ! it->second.empty(); + }; + is_visible = has(this->name); + for (auto it = this->renamed_from.begin(); ! is_visible && it != this->renamed_from.end(); ++ it) + is_visible = has(*it); + } } }